William Banfield
cd0a1c812a
fix request process proposal test
2022-04-07 18:02:36 -04:00
William Banfield
51c88dd349
Merge branch 'master' into wb/issue-7950
2022-04-07 16:26:27 -04:00
Sam Kleinman
9d20e06900
statesync+blocksync: move event publications into the sync operations ( #8274 )
2022-04-07 16:23:36 -04:00
William Banfield
86e1413f70
Merge branch 'master' into wb/issue-7950
2022-04-07 12:07:09 -04:00
William Banfield
0e7970ceb9
reorder fields in docs
2022-04-07 12:03:40 -04:00
William Banfield
4fa894b580
rebuild proto buf
2022-04-07 12:00:27 -04:00
William Banfield
66b152c95d
proto fixup
2022-04-07 11:59:54 -04:00
William Banfield
f7ed681640
update proto
2022-04-07 11:55:03 -04:00
Sam Kleinman
6ed3f2d98d
node: move handshake out of constructor ( #8264 )
2022-04-07 11:21:10 -04:00
Sam Kleinman
681cdf8347
consensus: avoid panics during handshake ( #8266 )
...
There's no case where we recieve an error during handshake and don't
just return/continue, and it's at a point during startup where not
much is going on in the process, so having some classes of errors
return errors and some return panics is confusing and doesn't protect
anything.
2022-04-07 12:58:44 +00:00
M. J. Fromberger
14f41ac5e3
Fix more broken Markdown links. ( #8271 )
2022-04-07 00:15:20 -07:00
William Banfield
01ab510f3d
doc fixes
2022-04-06 22:41:05 -04:00
William Banfield
e78ee7cca4
proto fixup
2022-04-06 22:39:57 -04:00
William Banfield
7667453fd5
proto fixup
2022-04-06 22:23:51 -04:00
William Banfield
32098b4353
Merge branch 'master' into wb/issue-7950
2022-04-06 22:20:44 -04:00
William Banfield
6ef49b9315
proto fixup 2
2022-04-06 22:14:28 -04:00
William Banfield
81d5218f17
proto fixup
2022-04-06 22:12:50 -04:00
William Banfield
143fc09ad7
add next_validators_hash to abci++
2022-04-06 22:08:15 -04:00
William Banfield
8824867501
add proposer field to abci
2022-04-06 21:56:30 -04:00
Sam Kleinman
7678ab8850
statesync: tweak test performance ( #8267 )
2022-04-06 21:50:14 +00:00
M. J. Fromberger
025894c11d
Forward-port changelogs from v0.34.17 and v0.34.18 to master. ( #8265 )
...
* Forward-port changelogs from v0.34.17 and v0.34.18 to master.
* Fix broken markdown links.
2022-04-06 13:58:57 -07:00
Sam Kleinman
85364a9ba8
node: reorder service construction ( #8262 )
2022-04-06 14:59:30 -04:00
Sam Kleinman
d153388446
p2p: inject nodeinfo into router ( #8261 )
2022-04-06 14:02:07 -04:00
Sam Kleinman
2304ea70f7
consensus: remove string indented function ( #8257 )
2022-04-06 08:07:21 -07:00
dependabot[bot]
60f88194ec
build(deps): Bump github.com/BurntSushi/toml from 1.0.0 to 1.1.0 ( #8251 )
...
Bumps [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml ) from 1.0.0 to 1.1.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/BurntSushi/toml/releases ">github.com/BurntSushi/toml's releases</a>.</em></p>
<blockquote>
<h2>v1.1.0</h2>
<p>Just a few bugfixes:</p>
<ul>
<li>
<p>Skip fields with <code>toml:"-"</code> even when they're unsupported types. Previously something like this would fail to encode due to <code>func</code> being an unsupported type:</p>
<pre><code>struct {
Str string `toml:"str"
Func func() `toml:"-"`
}
</code></pre>
</li>
<li>
<p>Multiline strings can't end with <code>\</code>. This is valid:</p>
<pre><code># Valid
key = """ foo \
"""
<h1>Invalid</h1>
<p>key = """ foo \ """
</code></pre></p>
</li>
<li>
<p>Don't quote values in <code>TOMLMarshaler</code>. Previously they would always include quoting (e.g. <code>"value"</code>), while the entire point of this interface is to bypass that.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/BurntSushi/toml/commit/891d2617ddbdfa265c4095b53103c010c98e6591 "><code>891d261</code></a> Don't error out if a multiline string ends with an incomplete UTF-8 sequence</li>
<li><a href="https://github.com/BurntSushi/toml/commit/ef65e34f3fcde82d1cf252972cddd50500306633 "><code>ef65e34</code></a> Don't run Unmarshal() through Decode()</li>
<li><a href="https://github.com/BurntSushi/toml/commit/573cad4c890c637c476cf9a795bfeef22cd04aab "><code>573cad4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/347 ">#347</a> from zhsj/fix-32</li>
<li><a href="https://github.com/BurntSushi/toml/commit/f3633f4f90eb77830a6bd67b14528abd06a017ac "><code>f3633f4</code></a> Fix test on 32 bit arch</li>
<li><a href="https://github.com/BurntSushi/toml/commit/551f4a51e9f4de507ad1853b4d96783705825eae "><code>551f4a5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/BurntSushi/toml/issues/344 ">#344</a> from lucasbutn/hotfix-341-marshaler-shouldnot-writequ...</li>
<li><a href="https://github.com/BurntSushi/toml/commit/dec58255ded685c3fa854a26fce0bb475a844e21 "><code>dec5825</code></a> Removed write quote in marshal to allow write other types than strings</li>
<li><a href="https://github.com/BurntSushi/toml/commit/2249a9c68e10db78172cf3d065e3b12c6ab62779 "><code>2249a9c</code></a> Multiline strings can't end with ""</li>
<li><a href="https://github.com/BurntSushi/toml/commit/51b22f2fef3110676cc55b8f386164c669dbad7b "><code>51b22f2</code></a> Fix README</li>
<li><a href="https://github.com/BurntSushi/toml/commit/01e551605fc3abcd36d72d98c81971d431835d54 "><code>01e5516</code></a> Skip fields with toml:"-", even when they're unsupported types</li>
<li><a href="https://github.com/BurntSushi/toml/commit/87b9f055f40aa7c800dacacf3a12e153a5e69c4b "><code>87b9f05</code></a> Fix tests for older Go versions</li>
<li>See full diff in <a href="https://github.com/BurntSushi/toml/compare/v1.0.0...v1.1.0 ">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>
2022-04-05 16:56:48 +00:00
dependabot[bot]
0a23b1e51d
build(deps): Bump github.com/vektra/mockery/v2 from 2.10.2 to 2.10.4 ( #8250 )
...
Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery ) from 2.10.2 to 2.10.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/vektra/mockery/releases ">github.com/vektra/mockery/v2's releases</a>.</em></p>
<blockquote>
<h2>v2.10.4</h2>
<h2>Changelog</h2>
<ul>
<li>c943e69 Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/441 ">#441</a> from cfstras/fix/support-more-env-keys</li>
<li>ed87cf6 fix: allow configuring flags with "-" as Env var</li>
<li>17abd96 fix: unused config field <code>Tags</code></li>
<li>53114cf test: add test for env var configurations</li>
</ul>
<h2>v2.10.3</h2>
<h2>Changelog</h2>
<ul>
<li>ee25bcf Add/update mocks</li>
<li>4703d1a Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/444 ">#444</a> from vektra/remove_need_deps</li>
<li>ba1f213 Remove packages.NeedDeps</li>
<li>ed38b20 Update go.sum</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/vektra/mockery/commit/c943e696a04fb7357ae62ef162e1cf47c171cd4c "><code>c943e69</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/441 ">#441</a> from cfstras/fix/support-more-env-keys</li>
<li><a href="https://github.com/vektra/mockery/commit/4703d1a42fe803968924d87f77e8d79181dc5108 "><code>4703d1a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/444 ">#444</a> from vektra/remove_need_deps</li>
<li><a href="https://github.com/vektra/mockery/commit/ed38b20a49e7122f22a89a8a24c74d4e6bd76afb "><code>ed38b20</code></a> Update go.sum</li>
<li><a href="https://github.com/vektra/mockery/commit/ee25bcfcb54c98ea7bcb6ac95d098db2390ce11f "><code>ee25bcf</code></a> Add/update mocks</li>
<li><a href="https://github.com/vektra/mockery/commit/ba1f213e177e70df3146e65b6e99731c9bf4faaa "><code>ba1f213</code></a> Remove packages.NeedDeps</li>
<li><a href="https://github.com/vektra/mockery/commit/17abd96c5774761020102a6b1c9edb748a4f6999 "><code>17abd96</code></a> fix: unused config field <code>Tags</code></li>
<li><a href="https://github.com/vektra/mockery/commit/53114cfce4dac4ef74eaed9625f228f52dd9dfcd "><code>53114cf</code></a> test: add test for env var configurations</li>
<li><a href="https://github.com/vektra/mockery/commit/ed87cf671a9acc321bef505ff84c44596cb4c4e9 "><code>ed87cf6</code></a> fix: allow configuring flags with "-" as Env var</li>
<li>See full diff in <a href="https://github.com/vektra/mockery/compare/v2.10.2...v2.10.4 ">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>
2022-04-05 15:47:24 +00:00
Sam Kleinman
9d1e8eaad4
node: remove channel and peer update initialization from construction ( #8238 )
2022-04-05 13:26:53 +00:00
Sam Kleinman
97f7021712
statesync: merge channel processing ( #8240 )
2022-04-04 12:31:15 -04:00
dependabot[bot]
cb8e6b1c1a
build(deps): Bump github.com/vektra/mockery/v2 from 2.10.1 to 2.10.2 ( #8246 )
...
Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery ) from 2.10.1 to 2.10.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/vektra/mockery/releases ">github.com/vektra/mockery/v2's releases</a>.</em></p>
<blockquote>
<h2>v2.10.2</h2>
<h2>Changelog</h2>
<ul>
<li>8384e25 Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/443 ">#443</a> from OrlovEvgeny/fix-build-go-version</li>
<li>408740d fix: golang build version</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/vektra/mockery/commit/8384e25927bcc0e6c940287da9e77f939064b740 "><code>8384e25</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/443 ">#443</a> from OrlovEvgeny/fix-build-go-version</li>
<li><a href="https://github.com/vektra/mockery/commit/408740d1858900095837c4a5e317cfa0ad170327 "><code>408740d</code></a> fix: golang build version</li>
<li>See full diff in <a href="https://github.com/vektra/mockery/compare/v2.10.1...v2.10.2 ">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>
2022-04-04 14:25:00 +00:00
Sergio Mena
8df38db82e
Remove ModifiedTxStatus from the spec and the code ( #8210 )
...
* Outstanding abci-gen changes to 'pb.go' files
* Removed modified_tx_status from spec and protobufs
* Fix sed for OSX
* Regenerated abci protobufs with 'abci-proto-gen'
* Code changes. UTs e2e tests passing
* Recovered UT: TestPrepareProposalModifiedTxStatusFalse
* Adapted UT
* Fixed UT
* Revert "Fix sed for OSX"
This reverts commit e576708c61 .
* Update internal/state/execution_test.go
Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com >
* Update abci/example/kvstore/kvstore.go
Co-authored-by: M. J. Fromberger <fromberger@interchain.io >
* Update internal/state/execution_test.go
Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com >
* Update spec/abci++/abci++_tmint_expected_behavior_002_draft.md
Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com >
* Addressed some comments
* Added one test that tests error at the ABCI client + Fixed some mock calls
* Addressed remaining comments
* Update abci/example/kvstore/kvstore.go
Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com >
* Update abci/example/kvstore/kvstore.go
Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com >
* Update abci/example/kvstore/kvstore.go
Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com >
* Update spec/abci++/abci++_tmint_expected_behavior_002_draft.md
Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com >
* Addressed William's latest comments
* Adressed Michael's comment
* Fixed UT
* Some md fixes
* More md fixes
* gofmt
Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com >
Co-authored-by: M. J. Fromberger <fromberger@interchain.io >
2022-04-04 12:43:01 +02:00
dependabot[bot]
9fe25a1ed1
build(deps): Bump bufbuild/buf-setup-action from 1.3.0 to 1.3.1 ( #8245 )
2022-04-04 11:49:00 +02:00
William Banfield
99f9ee0f63
abci++: correct max-size check to only operate on added and unmodified ( #8242 )
2022-04-01 17:44:38 -04:00
Sergio Mena
4a504c0687
e2e: Fix hashing for app + Fix logic of TestApp_Hash ( #8229 )
...
* Fix hashing of e2e App
* Fix TestApp_Hash
* CaMeL
* Update test/e2e/app/state.go
Co-authored-by: M. J. Fromberger <fromberger@interchain.io >
* for-->Eventually + if-->require
* Update test/e2e/tests/app_test.go
Co-authored-by: Sam Kleinman <garen@tychoish.com >
* fix lint
Co-authored-by: M. J. Fromberger <fromberger@interchain.io >
Co-authored-by: Sam Kleinman <garen@tychoish.com >
2022-03-31 22:21:25 +02:00
Sam Kleinman
b68424be47
light: remove untracked close channel ( #8228 )
2022-03-31 18:48:26 +00:00
Sam Kleinman
a79dd42d24
lint: bump linter version in ci ( #8234 )
2022-03-31 14:37:13 -04:00
Sam Kleinman
6af23ff757
state: avoid premature genericism ( #8224 )
2022-03-31 13:10:09 +00:00
dependabot[bot]
d1722c9c10
build(deps): Bump github.com/vektra/mockery/v2 from 2.10.0 to 2.10.1 ( #8226 )
...
Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery ) from 2.10.0 to 2.10.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/vektra/mockery/releases ">github.com/vektra/mockery/v2's releases</a>.</em></p>
<blockquote>
<h2>v2.10.1</h2>
<h2>Changelog</h2>
<ul>
<li>fa0080c Fix config.GetSemverInfo() for Go 1.18</li>
<li>4e181be Load packages with dependencies for Go 1.18</li>
<li>232f954 Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/435 ">#435</a> from emmanuel099/master</li>
<li>b11695e Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/436 ">#436</a> from emmanuel099/test_with_3.18</li>
<li>e0e183b Test with Go 1.18</li>
<li>adda07f Update README.md</li>
<li>5f5570d Update README.md</li>
<li>4fc5912 Update README.md</li>
<li>fa2d82d Update README.md</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/vektra/mockery/commit/b11695e6d482110bd75eb4e9274431e8f99b00ac "><code>b11695e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/436 ">#436</a> from emmanuel099/test_with_3.18</li>
<li><a href="https://github.com/vektra/mockery/commit/232f954622e3a6c278f8d7f3f55833ac59ae2f8e "><code>232f954</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/vektra/mockery/issues/435 ">#435</a> from emmanuel099/master</li>
<li><a href="https://github.com/vektra/mockery/commit/fa0080cf03bec157dec29bbf72da3baf65b19ceb "><code>fa0080c</code></a> Fix config.GetSemverInfo() for Go 1.18</li>
<li><a href="https://github.com/vektra/mockery/commit/e0e183bcb9d54822c67f64b4d6c2a1e967fb3ba9 "><code>e0e183b</code></a> Test with Go 1.18</li>
<li><a href="https://github.com/vektra/mockery/commit/4e181be712c853258e64b29a9797f5f596661449 "><code>4e181be</code></a> Load packages with dependencies for Go 1.18</li>
<li><a href="https://github.com/vektra/mockery/commit/adda07f546c91560b830e1af2bc8521fc51d1ea1 "><code>adda07f</code></a> Update README.md</li>
<li><a href="https://github.com/vektra/mockery/commit/5f5570d72da2b22895ad828ccbf18b5d8c18dca3 "><code>5f5570d</code></a> Update README.md</li>
<li><a href="https://github.com/vektra/mockery/commit/4fc5912f49b771ff0121b9e760cc9648403ed6ad "><code>4fc5912</code></a> Update README.md</li>
<li><a href="https://github.com/vektra/mockery/commit/fa2d82d34d006a95ff9ca4a034eef368930afebc "><code>fa2d82d</code></a> Update README.md</li>
<li>See full diff in <a href="https://github.com/vektra/mockery/compare/v2.10.0...v2.10.1 ">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>
2022-03-31 12:58:41 +00:00
William Banfield
6ed2c42d7b
Document steps for updating the timeout parameters. ( #8217 )
...
closes : #8182
This pull request adds documentation to the `UPGRADING.md` file as well as a set of deprecation checks for the old timeout parameters in the `config.toml` file. It additionally documents the parameters in the `genesis.md`.
2022-03-30 22:11:48 +00:00
M. J. Fromberger
185f15d645
config: default indexer configuration to null ( #8222 )
...
After this change, new nodes will not have indexing enabled by default.
Test configurations will still use "kv".
* Update pending changelog and upgrading notes.
* Fix indexer config for the test app.
* Update config template and enable indexing for e2e tests.
2022-03-30 13:47:52 -07:00
William Banfield
35fa6da248
Merge branch 'master' into wb/issue-7950
2022-03-29 18:13:40 -04:00
William Banfield
686b7d36ac
abci++: only include meaningful fields in app passed-through data
2022-03-29 16:58:03 -04:00
M. J. Fromberger
dfb322e68b
Fix broken Markdown links ( #8214 )
...
- Remove pointless Makefile and package documentation.
- Fix broken links.
2022-03-29 12:07:12 -07:00
M. J. Fromberger
3d0d89e505
Re-enable markdown link checker. ( #8212 )
...
The upstream fix for link syntax has landed.
- Uncomment the workflow and bump the version.
- Add a config file to encourage retries.
2022-03-29 11:32:22 -07:00
Sam Kleinman
9e643f3628
migration: remove stale seen commits ( #8205 )
2022-03-29 12:31:37 -04:00
Simon Kirillov
1949095c51
Fix empty tendermint version in Docker ( #8161 )
...
* Fix Dockerfile and scripts
* Fix docker scripts
* Remove unused scripts
* Retrigger checks
Co-authored-by: Simon Kirillov <skirillov@wallarm.com >
Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com >
2022-03-29 12:06:32 -04:00
William Banfield
41a1bf539b
timeout parameters take the default if not set ( #8189 )
2022-03-28 18:25:19 -04:00
William Banfield
462c475abc
consensus: timeout params in toml used as overrides ( #8186 )
...
Replaces the set of timeout parameters in the config.toml file with unsafe-*override versions of the corresponding ConsensusParams.Timeout field. These fields can be used for the duration of v0.36 to override the consensus param in case of emergency.
Adds a set to the ./internal/consensus/State type for correctly calculating the value of each timeout based on the set of overrides specified.
2022-03-28 17:33:23 -04:00
Sergio Mena
9d56520f76
Update ABCI++ spec with decisions taken in the bi-weekly meeting ( #8191 )
...
* Clarify 0-length vote extensions in the spec, according to #8174
* Update spec so that Tendermnit can propose more txs than the size limit in
* Addressed Manu's comment
* Reworded size limit following Manu's suggestion
2022-03-28 21:15:35 +02:00
dependabot[bot]
14f5588ce2
build(deps): Bump github.com/adlio/schema from 1.2.3 to 1.3.0 ( #8201 )
...
Bumps [github.com/adlio/schema](https://github.com/adlio/schema ) from 1.2.3 to 1.3.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/adlio/schema/releases ">github.com/adlio/schema's releases</a>.</em></p>
<blockquote>
<h2>1.3.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Initial SQL Server support from <a href="https://github.com/pubkraal "><code>@pubkraal</code></a> in <a href="https://github-redirect.dependabot.com/adlio/schema/pull/15 ">adlio/schema#15</a></li>
<li>Fix tests on M1 Macs by <a href="https://github.com/adlio "><code>@adlio</code></a> in <a href="https://github-redirect.dependabot.com/adlio/schema/pull/16 ">adlio/schema#16</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/pubkraal "><code>@pubkraal</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/adlio/schema/pull/15 ">adlio/schema#15</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/adlio/schema/compare/v1.2.3...v1.3.0 ">https://github.com/adlio/schema/compare/v1.2.3...v1.3.0 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/adlio/schema/commit/0c0c352416bd34f6b3edabbfa6139291a1f32a98 "><code>0c0c352</code></a> Merge branch 'pubkraal-mssql'</li>
<li><a href="https://github.com/adlio/schema/commit/cdf157e39b4cae9f4f49985ff715dee8dd08c781 "><code>cdf157e</code></a> NOT NULL consistency for applied_at column</li>
<li><a href="https://github.com/adlio/schema/commit/f32be8707eb914ee12a51efc9c0203e0324330b3 "><code>f32be87</code></a> README updates to caveat the SQL Server support</li>
<li><a href="https://github.com/adlio/schema/commit/a48b8286a46f1d56a8a44760e6260c218df4777d "><code>a48b828</code></a> Skip SQL Server tests on ARM</li>
<li><a href="https://github.com/adlio/schema/commit/3b7371832cf2f45666a5a0d1fb6357eedf77ceff "><code>3b73718</code></a> Merge branch 'mssql' of <a href="https://github.com/pubkraal/schema ">https://github.com/pubkraal/schema </a> into pubkraal-mssql</li>
<li><a href="https://github.com/adlio/schema/commit/1aa7823276121bad6fc43c61a6b8b7a6a84ab3e8 "><code>1aa7823</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/adlio/schema/issues/16 ">#16</a> from adlio/m1-testing</li>
<li><a href="https://github.com/adlio/schema/commit/bc8352411b84095ba0109b13637a3adcc6ad0c06 "><code>bc83524</code></a> Fix time zone assertion failing during DST</li>
<li><a href="https://github.com/adlio/schema/commit/cfb349ddebab9ae1baf0e917a2d44ba3fec3259c "><code>cfb349d</code></a> M1 Mac Support for Testing</li>
<li><a href="https://github.com/adlio/schema/commit/c2400eac57ed9332cb131c73ed420bfd5a0a8f5f "><code>c2400ea</code></a> feat: add mssql support</li>
<li><a href="https://github.com/adlio/schema/commit/531e542ba48435855be4e3d91b21d1d654b5e53b "><code>531e542</code></a> README updates.</li>
<li>See full diff in <a href="https://github.com/adlio/schema/compare/v1.2.3...v1.3.0 ">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>
2022-03-28 13:59:24 +00:00
dependabot[bot]
3945915920
build(deps): Bump bufbuild/buf-setup-action from 1.1.0 to 1.3.0 ( #8199 )
2022-03-28 09:20:46 -04:00