https://github.com/tendermint/tendermint

sort by:
Revision Author Date Message Commit Date
cf3bcba final blocksync fixup 13 July 2022, 21:33:09 UTC
222a252 Merge branch 'wb/max-connected' into v035-testing 13 July 2022, 21:32:46 UTC
cae81ce p2p: configure max connected for non-legacy as well 13 July 2022, 21:08:29 UTC
3e8daae fix e2e 13 July 2022, 16:13:15 UTC
aa2d6ee remove init 13 July 2022, 16:11:52 UTC
2b18985 Merge branch 'v0.35.x' into blocksync-logging 13 July 2022, 15:16:50 UTC
3790968 mempool: release lock during app connection flush (#8984) This case is symmetric to what we did for CheckTx calls, where we release the mempool mutex to ensure callbacks can fire during call setup. We also need this behaviour for application flush, for the same reason: The caller holds the lock by contract from the Mempool interface. 12 July 2022, 17:28:51 UTC
9e64c95 mempool: reduce lock contention during CheckTx (cleanup) (#8983) The way this was originally structured, we reacquired the lock after issuing the initial ABCI CheckTx call, only to immediately release it. Restructure the code so that this redundant acquire is no longer necessary. 12 July 2022, 15:00:29 UTC
cb93d3b mempool: don't log message type mismatch in the default callback (#8969) 12 July 2022, 01:06:49 UTC
f98de20 p2p: ensure closed channels stop receiving service (#8979) Once these channels are closed, we should not continue to service them, as they will never again deliver nonzero values. 11 July 2022, 23:34:05 UTC
b17f044 Merge branch 'v0.35.x' into blocksync-logging 11 July 2022, 18:42:19 UTC
451e697 Update generated mocks after upgrade of Mockery v2. (#8973) 11 July 2022, 13:18:36 UTC
a8c419f fix lint 08 July 2022, 18:01:09 UTC
20c1ffd Merge branch 'v0.35.x' into blocksync-logging 08 July 2022, 18:00:11 UTC
e3292a4 p2p: simpler priority queue (backport #8929) (#8956) 08 July 2022, 17:29:42 UTC
6a354a1 Update pending changelog. (#8965) 08 July 2022, 16:54:50 UTC
2750cb2 Merge branch 'v0.35.x' into blocksync-logging 08 July 2022, 16:36:19 UTC
a04759c force blocksync 08 July 2022, 16:36:00 UTC
1daf7b9 p2p: make peer gossiping coinflip safer (#8949) (#8963) Closes #8948 (cherry picked from commit 61ce384d752233c5f236d0b14c2685a259f0557a) Co-authored-by: Sam Kleinman <garen@tychoish.com> 08 July 2022, 16:32:12 UTC
09c54a8 Merge branch 'v0.35.x' into blocksync-logging 08 July 2022, 14:03:03 UTC
156c305 p2p: delete cruft (#8958) (#8959) I think the decision in #8806 is that we shouldn't do this yet, so I think it's best to just drop this. (cherry picked from commit 636320f9010be75c0ae804714ddce62b46f17930) Co-authored-by: Sam Kleinman <garen@tychoish.com> 08 July 2022, 13:59:57 UTC
bc49f66 Add more unit tests for the priority mempool. (#8961) - Add a test for time-based (TTL) expiration. - Add tests for eviction based on size and priority. 07 July 2022, 21:56:34 UTC
9b02094 Fix unbounded heap growth in the priority mempool. (#8944) The primary effect of this change is to simplify the implementation of the priority mempool to eliminate an unbounded heap growth observed by Vega team when it was enabled in their testnet. It updates and fixes #8775. The main body of this change is to remove the auxiliary indexing structures, and use only the concurrent list structure (the same as the legacy mempool) to maintain both gossip order and priority. This means that operations that require priority information, such as block updates and insert-time evictions, require a linear scan over the mempool. This tradeoff greatly simplifies the code and eliminates the long-term heap load, at the cost of some extra CPU and short-lived working memory during CheckTx and Update calls. Rough benchmark results: - This PR: BenchmarkTxMempool_CheckTx-10 486373 2271 ns/op - Original priority mempool implementation: BenchmarkTxMempool_CheckTx-10 500302 2113 ns/op - Legacy (v0) mempool: BenchmarkCheckTx-10 364591 3571 ns/op These benchmarks are not a good proxy for production load, but at least suggest that the overhead of the implementation changes are not cause for concern. In addition: - Rework synchronization so that access to shared data structures is safe. Previously shared locks were used to exclude block updates during calls that update mempool state. Now access is properly exclusive where necessary. - Fix a bug in the recheck flow, where priority updates from the application were not correctly reflected in the index structures. - Eliminate the need for separate recheck cursors during block update. This avoids the need to explicitly invalidate elements of the concurrent list, which averts the dependency cycle that led to objects being pinned. - Clean up, clarify, and fix inaccuracies in documentation comments throughout the package. Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> 07 July 2022, 14:15:08 UTC
bf1ab9c Merge branch 'v0.35.x' into blocksync-logging 06 July 2022, 18:07:54 UTC
da83edc p2p: return from conn send on stopped mconn (#8904) Co-authored-by: Sam Kleinman <garen@tychoish.com> 06 July 2022, 14:41:55 UTC
25f6557 Merge branch 'v0.35.x' into blocksync-logging 06 July 2022, 00:12:00 UTC
047d7c9 p2p: fix flakey test due to disconnect cooldown (#8917) (#8918) This test was made flakey by #8839. The cooldown period means that the node in the test will not try to reconnect as quickly as the test expects. This change makes the cooldown shorter in the test so that the node quickly reconnects. (cherry picked from commit 5274f80de437795c4782b52f73dcec76616eefe2) Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> Co-authored-by: Sam Kleinman <garen@tychoish.com> 05 July 2022, 23:11:38 UTC
49788ad p2p: use correct context error (#8916) (#8920) handshakeCtx is the internal context carrying the timeout. Its error should be used for the error return. (cherry picked from commit 921530c352d64229d0e78f6e1e14fe186d00b0db) Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> Co-authored-by: Sam Kleinman <garen@tychoish.com> Co-authored-by: Callum Waters <cmwaters19@gmail.com> 05 July 2022, 17:36:26 UTC
91b32b9 fixup 05 July 2022, 13:43:57 UTC
3940d64 Merge branch 'v0.35.x' into blocksync-logging 05 July 2022, 13:42:18 UTC
babae90 build(deps): Bump github.com/libp2p/go-buffer-pool from 0.0.2 to 0.1.0 (#8931) 05 July 2022, 13:40:48 UTC
210e8a0 disable disabling blocksync 05 July 2022, 13:40:48 UTC
e414d0a build(deps): Bump github.com/libp2p/go-buffer-pool from 0.0.2 to 0.1.0 (#8931) 05 July 2022, 10:19:03 UTC
e66d76f tweak teset 01 July 2022, 18:50:40 UTC
fbcb965 build(deps): Bump github.com/vektra/mockery/v2 from 2.13.1 to 2.14.0 (#8925) Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery) from 2.13.1 to 2.14.0. - [Release notes](https://github.com/vektra/mockery/releases) - [Changelog](https://github.com/vektra/mockery/blob/master/.goreleaser.yml) - [Commits](https://github.com/vektra/mockery/compare/v2.13.1...v2.14.0) --- updated-dependencies: - dependency-name: github.com/vektra/mockery/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 01 July 2022, 18:50:40 UTC
6a646f3 build(deps): Bump github.com/vektra/mockery/v2 from 2.13.1 to 2.14.0 (#8925) Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery) from 2.13.1 to 2.14.0. - [Release notes](https://github.com/vektra/mockery/releases) - [Changelog](https://github.com/vektra/mockery/blob/master/.goreleaser.yml) - [Commits](https://github.com/vektra/mockery/compare/v2.13.1...v2.14.0) --- updated-dependencies: - dependency-name: github.com/vektra/mockery/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 01 July 2022, 16:15:22 UTC
dc0e77f Merge branch 'v0.35.x' into blocksync-logging 01 July 2022, 00:32:21 UTC
815e611 ugg 30 June 2022, 23:51:07 UTC
01984cb p2p: set outgoing connections to around 20% of total connections (#8913) (#8914) (cherry picked from commit 47cb30fc1d647183d500b0ecc31248df5dfc678c) Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> 30 June 2022, 21:15:32 UTC
11456f9 Update node/setup.go Co-authored-by: M. J. Fromberger <michael.j.fromberger@gmail.com> 30 June 2022, 17:16:46 UTC
b5f92f5 Update node/setup.go Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> 30 June 2022, 17:05:23 UTC
288cb31 blocksync: log on disabled override 30 June 2022, 16:53:56 UTC
e2d2c04 build(deps): Bump github.com/stretchr/testify from 1.7.2 to 1.8.0 (#8908) Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.7.2 to 1.8.0. - [Release notes](https://github.com/stretchr/testify/releases) - [Commits](https://github.com/stretchr/testify/compare/v1.7.2...v1.8.0) --- updated-dependencies: - dependency-name: github.com/stretchr/testify dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 30 June 2022, 15:33:13 UTC
204281f node: always start blocksync and avoid misconfiguration (#8902) 30 June 2022, 02:12:36 UTC
486370a log: do not pre-process log results (backport #8895) (#8896) (cherry picked from commit 37f9d59969b03d49dc1ff4191b4a5ddac2bc8d13) Co-authored-by: Sam Kleinman <garen@tychoish.com> 29 June 2022, 15:26:28 UTC
978f754 p2p: set empty timeouts to configed values. (manual backport of #8847) (#8869) * regenerate mocks using newer style * p2p: set empty timeouts to small values. (#8847) These timeouts default to 'do not time out' if they are not set. This times up resources, potentially indefinitely. If node on the other side of the the handshake is up but unresponsive, the[ handshake call](https://github.com/tendermint/tendermint/blob/edec79448aa1d62b84683b1b22e12e145dbdda7c/internal/p2p/router.go#L720) will _never_ return. * fix light client select statement 28 June 2022, 20:07:15 UTC
c4ef566 p2p: remove dial sleep and provide disconnect cooldown (backport #8839) (#8875) (cherry picked from commit 52b6dc19badf50938ae2b2a1d2e22813614e5ad5) 27 June 2022, 14:49:51 UTC
f19e52e build(deps): Bump styfle/cancel-workflow-action from 0.9.1 to 0.10.0 (#8882) Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.9.1 to 0.10.0. - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](https://github.com/styfle/cancel-workflow-action/compare/0.9.1...0.10.0) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 27 June 2022, 13:13:46 UTC
19b98c7 e2e: disable another network test (#8862) (#8873) Follow up on: https://github.com/tendermint/tendermint/pull/8849 (cherry picked from commit c4d24eed7d0b8902c41d790e1de446baa0256e6b) Co-authored-by: Callum Waters <cmwaters19@gmail.com> 24 June 2022, 17:22:26 UTC
826f224 p2p: add eviction metrics and cleanup dialing error handling (backport #8819) (#8820) 24 June 2022, 14:42:58 UTC
2df4c2b e2e: add tolerance to peer discovery test (#8849) (#8857) (cherry picked from commit fb209136f85083e1d491ac2589fff41dd80518cb) Co-authored-by: Callum Waters <cmwaters19@gmail.com> Co-authored-by: Sam Kleinman <garen@tychoish.com> 23 June 2022, 18:46:10 UTC
6f4ef72 p2p: track peers by address (#8841) (#8855) (cherry picked from commit 436a38f8768f32c2abf3668e586019dcc3defb04) Co-authored-by: Sam Kleinman <garen@tychoish.com> 23 June 2022, 17:21:46 UTC
3398f37 cmd: add tool for compaction of goleveldb (backport #8564) (#8675) 23 June 2022, 16:25:19 UTC
8ef63fe e2e: report peer heights in error message (#8843) (#8853) (cherry picked from commit 52b2efb8274879468af9d032afd844b300b40f6e) Co-authored-by: Sam Kleinman <garen@tychoish.com> 23 June 2022, 14:46:51 UTC
9daea43 Update default version marker. (#8844) 22 June 2022, 22:16:58 UTC
df9363c Prepare changelog for Release v0.35.7 (#8772) 22 June 2022, 18:54:03 UTC
24701cd p2p: more dial routines (#8827) (#8828) 22 June 2022, 01:27:28 UTC
e9c87a3 remove dial wake change (#8824) 22 June 2022, 00:20:04 UTC
034a9f8 build(deps): Bump github.com/spf13/cobra from 1.4.0 to 1.5.0 (#8811) Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.4.0 to 1.5.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Commits](https://github.com/spf13/cobra/compare/v1.4.0...v1.5.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thane Thomson <connect@thanethomson.com> 21 June 2022, 21:16:31 UTC
4322f7d mempool: make error throwing for CheckTx consistent (#8817) 21 June 2022, 16:51:50 UTC
83526ca p2p: peer store and dialing changes (0.35.x backport) (#8740) * p2p: peer store and dialing changes (cherry picked from commit 9dbb13515214b3976bef3ad3a656786c47ac12fb) * reduce persistent peer max (cherry picked from commit b213a2766f62f2b1293d5fcf8262301d48956dcc) * don't gossip inactive peers (cherry picked from commit cc28ce298f8b8535860206305d58ebbe17ff73eb) * fix small case (cherry picked from commit 56a91642dc898a1992dd36c362e4df732f2fef1f) * fix error message (cherry picked from commit 86db59f53bde217f42ff58af43f993e58594c006) * remove seed flag (cherry picked from commit 000aa054852ad1f43280363ee903bf5cb937f4ce) * reduce logging level (cherry picked from commit 4e2bc8f51e6cd92c3c3ca5f8b541366071f7a210) * make const (cherry picked from commit e3068b50b272f28b5ba627cb4e92fef2b4de2e21) * update comment (cherry picked from commit 31bd396c88330f7f27bdf129d067a7f6685e9162) * cleanup (cherry picked from commit eddb23b5af6a74f39c5cc534af9556db938a1bce) * oops * overflows (cherry picked from commit 4c8651026a6147af70922cc0066e384156aaa07d) * Update internal/p2p/peermanager.go Co-authored-by: M. J. Fromberger <michael.j.fromberger@gmail.com> (cherry picked from commit f23f6e1089db9aa8ce266fc818a3a8e2e0bcc3d7) * Update internal/p2p/peermanager.go Co-authored-by: M. J. Fromberger <michael.j.fromberger@gmail.com> (cherry picked from commit 1c02758eaf2451684295544d252d3d0ad317e383) * comment (cherry picked from commit 9f604fd2ef184963d26e8e89189eb41879bd3391) * test: new scoring (cherry picked from commit 930fd7f2be8a0428fef864192d21ee1ae70cbb49) * fix scoring test (cherry picked from commit 9abc55f3a05e3d285e081a7ba6018e2522bf784a) * cleanup peer manager * fix panic * add metrics * fix compile * fix test * default metrics to noop * noop metrics * update metrics (cherry picked from commit 720600ef62e97260892db9c2d67952306223fa1e) * rename metrics * actually shuffle peers more * fix up advertise (cherry picked from commit 8195c975907d773f05ce7a3cfc55edf128e0db70) * add max dialing attempts * connection tracking * comments mostly (cherry picked from commit 053ecd9b8c6099e55887bafdb4b4c3f064c8e16a) * Apply suggestions from code review Co-authored-by: M. J. Fromberger <michael.j.fromberger@gmail.com> * comments * fix lint * cr feedback * fixup cherrypick * make wb happy * more comments * fixup * fix lint * iota fix * add skip * cleanup * remove comment * fix rand * fix rand * use numaddresses correctly * advertise fixes * remove some things * cleanup comment * more fixes * toml * fix comment * fix spell * dec limit * fixes * up the attmept max * cr feedback * probablistic test * fix spell * add metrics for peers stored on startup * p2p: peer score should not wrap around (#8790) (cherry picked from commit 4d820ff4f5c93cf00e7618b2d3086ad23e1bb5de) # Conflicts: # internal/p2p/peermanager.go * fix * wake more * wake if we need to Co-authored-by: M. J. Fromberger <michael.j.fromberger@gmail.com> 20 June 2022, 17:13:21 UTC
25d724b e2e: reactivate network test (backport #8635) (#8777) 20 June 2022, 15:10:20 UTC
3945cec build(deps): Bump github.com/adlio/schema from 1.3.0 to 1.3.3 (#8797) Bumps [github.com/adlio/schema](https://github.com/adlio/schema) from 1.3.0 to 1.3.3. - [Release notes](https://github.com/adlio/schema/releases) - [Commits](https://github.com/adlio/schema/compare/v1.3.0...v1.3.3) --- updated-dependencies: - dependency-name: github.com/adlio/schema dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 20 June 2022, 13:19:34 UTC
74c6d81 p2p: fix typo (#8793) (#8794) 19 June 2022, 18:52:43 UTC
e2d01cd Make priority mempool fuzz test actually test the priority mempool. (#8785) Fixes #8783. 17 June 2022, 16:29:13 UTC
bee6597 build(deps): Bump github.com/vektra/mockery/v2 from 2.13.0 to 2.13.1 (#8765) Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery) from 2.13.0 to 2.13.1. - [Release notes](https://github.com/vektra/mockery/releases) - [Changelog](https://github.com/vektra/mockery/blob/master/.goreleaser.yml) - [Commits](https://github.com/vektra/mockery/compare/v2.13.0...v2.13.1) --- updated-dependencies: - dependency-name: github.com/vektra/mockery/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sam Kleinman <garen@tychoish.com> 15 June 2022, 14:12:21 UTC
ce8284c p2p: accept should not abort on first error (backport #8759) (#8760) 15 June 2022, 11:56:15 UTC
d02f58e build(deps): Bump github.com/vektra/mockery/v2 from 2.12.3 to 2.13.0 (#8747) Bumps [github.com/vektra/mockery/v2](https://github.com/vektra/mockery) from 2.12.3 to 2.13.0. - [Release notes](https://github.com/vektra/mockery/releases) - [Changelog](https://github.com/vektra/mockery/blob/master/.goreleaser.yml) - [Commits](https://github.com/vektra/mockery/compare/v2.12.3...v2.13.0) --- updated-dependencies: - dependency-name: github.com/vektra/mockery/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 14 June 2022, 17:00:05 UTC
28c3852 do not log an error for duplicate txs (#8732) 10 June 2022, 09:56:00 UTC
0b63e29 e2e/generator: add additional testnets (0.35) (#8730) 10 June 2022, 07:55:29 UTC
af0590a consensus: switch timeout message to be debug and clarify meaning (#8694) (#8696) (cherry picked from commit 75a12ea0c6ef166dbc38695fb7cc6b2a64f6a77a) Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> Co-authored-by: Sam Kleinman <garen@tychoish.com> Co-authored-by: Callum Waters <cmwaters19@gmail.com> 09 June 2022, 13:45:58 UTC
46c27b4 rpc: always close http bodies (backport #8712) (#8715) (cherry picked from commit 931c98f7add66b01b56f9c85ba4e329ab73d67c0) Co-authored-by: Sam Kleinman <garen@tychoish.com> Co-authored-by: M. J. Fromberger <fromberger@interchain.io> 08 June 2022, 18:57:55 UTC
3c29b69 build(deps): Bump github.com/rs/zerolog from 1.26.1 to 1.27.0 (#8723) Bumps [github.com/rs/zerolog](https://github.com/rs/zerolog) from 1.26.1 to 1.27.0. - [Release notes](https://github.com/rs/zerolog/releases) - [Commits](https://github.com/rs/zerolog/compare/v1.26.1...v1.27.0) --- updated-dependencies: - dependency-name: github.com/rs/zerolog dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 08 June 2022, 14:14:17 UTC
138be1f build(deps): Bump github.com/stretchr/testify from 1.7.1 to 1.7.2 (#8710) Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.7.1 to 1.7.2. - [Release notes](https://github.com/stretchr/testify/releases) - [Commits](https://github.com/stretchr/testify/compare/v1.7.1...v1.7.2) --- updated-dependencies: - dependency-name: github.com/stretchr/testify dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 07 June 2022, 08:59:40 UTC
9841196 p2p: pass maxConns for MaxPeers during node setup (#8684) (#8692) * pass maxConns for MaxPeers * add upgrade connections to max connections for max peers * change the formula to calculate max peers (cherry picked from commit 30929cf1902ad4ba9cea76ea02187a4dcb3abec6) Co-authored-by: Evan Forbes <42654277+evan-forbes@users.noreply.github.com> 04 June 2022, 15:53:41 UTC
3079eb8 Prepare Release v0.35.6 (#8685) 03 June 2022, 08:42:06 UTC
0e3a3fe p2p: shed peers from store from other networks (backport #8678) (#8681) 02 June 2022, 16:15:55 UTC
e17e6b1 migrate: provide function for database production (backport #8614) (#8672) (cherry picked from commit d5299882b01753f974c0792492d68ba47c2354bd) 02 June 2022, 10:17:06 UTC
0421f8b build(deps): Bump google.golang.org/grpc from 1.46.2 to 1.47.0 (#8666) Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.46.2 to 1.47.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.46.2...v1.47.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 01 June 2022, 18:59:15 UTC
4faa8b7 cmd: don't used global config for reset commands (#8668) 01 June 2022, 16:34:35 UTC
336dc2f chore: update version (#8634) 01 June 2022, 13:48:35 UTC
e8ac372 pex: align max address thresholds (#8657) 31 May 2022, 18:07:25 UTC
a889f17 consensus: restructure peer catchup sleep (#8651) 31 May 2022, 15:31:51 UTC
2b5a4de docs: add documentation for undocumented p2p metrics (backport #8640) (#8641) * docs: add documentation for undocumented p2p metrics (#8640) Once merged will backport to v0.35 (cherry picked from commit 3dec4a474467612daee2403134f922386d61f043) # Conflicts: # docs/nodes/metrics.md * fix merge conflict Co-authored-by: William Banfield <4561443+williambanfield@users.noreply.github.com> Co-authored-by: William Banfield <wbanfield@gmail.com> 30 May 2022, 09:03:50 UTC
a85d9c5 build(deps): Bump github.com/spf13/viper from 1.11.0 to 1.12.0 (#8631) Bumps [github.com/spf13/viper](https://github.com/spf13/viper) from 1.11.0 to 1.12.0. - [Release notes](https://github.com/spf13/viper/releases) - [Commits](https://github.com/spf13/viper/compare/v1.11.0...v1.12.0) --- updated-dependencies: - dependency-name: github.com/spf13/viper dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 27 May 2022, 14:51:54 UTC
12a0559 Prepare changelog for release v0.35.5. (#8601) 26 May 2022, 16:08:41 UTC
a22f7be migrate: reorder collection ordering (#8613) (#8616) (cherry picked from commit f33722b4233159a31cdf6c33258fbc601cdbd1d4) Co-authored-by: Sam Kleinman <garen@tychoish.com> 25 May 2022, 17:26:56 UTC
3784371 build(deps): Bump github.com/vektra/mockery/v2 from 2.12.2 to 2.12.3 (#8608) 25 May 2022, 09:12:51 UTC
4ee9166 p2p: reduce ability of SendError to disconnect peers (backport #8597) (#8603) 25 May 2022, 08:12:43 UTC
87763a3 rpc: fix encoding of block_results responses (backport #8593) (#8594) The block results include validator updates in ABCI protobuf format, which does not encode "correctly" according to the expected Amino style RPC clients expect. - Write a regression test for this issue. - Add JSON marshaling overrides for ABCI ValidatorUpdate messages. Patches for v0.35.x: - Replace jsontypes with tmjson (removed in v0.36) - Regress test data for BeginBlock / EndBlock 24 May 2022, 14:21:28 UTC
ad9e875 build(deps): Bump goreleaser/goreleaser-action from 2 to 3 (#8589) Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 2 to 3. - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](https://github.com/goreleaser/goreleaser-action/compare/v2...v3) --- updated-dependencies: - dependency-name: goreleaser/goreleaser-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 23 May 2022, 12:31:18 UTC
2f8483a p2p: remove unused get height methods (backport #8569) (#8571) 17 May 2022, 15:32:13 UTC
0e6b85e build(deps): Bump github.com/lib/pq from 1.10.5 to 1.10.6 (#8568) 17 May 2022, 11:57:37 UTC
13cc193 build(deps): Bump google.golang.org/grpc from 1.46.0 to 1.46.2 (#8560) Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.46.0 to 1.46.2. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.46.0...v1.46.2) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 16 May 2022, 16:10:13 UTC
f6b13f8 build(deps): Bump docker/login-action from 1.10.0 to 2.0.0 (#8536) * build(deps): Bump docker/login-action from 1.10.0 to 2.0.0 Bumps [docker/login-action](https://github.com/docker/login-action) from 1.10.0 to 2.0.0. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1.10.0...v2.0.0) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 13 May 2022, 19:57:07 UTC
248cb26 build(deps): Bump actions/stale from 4 to 5 (#8534) Bumps [actions/stale](https://github.com/actions/stale) from 4 to 5. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 13 May 2022, 19:55:22 UTC
79d83ce build(deps): Bump docker/setup-buildx-action from 1.6.0 to 2.0.0 (#8533) * build(deps): Bump docker/setup-buildx-action from 1.6.0 to 2.0.0 Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 1.6.0 to 2.0.0. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v1.6.0...v2.0.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 13 May 2022, 19:53:42 UTC
643eaef build(deps): Bump docker/build-push-action from 2.7.0 to 3.0.0 (#8530) * build(deps): Bump docker/build-push-action from 2.7.0 to 3.0.0 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2.7.0 to 3.0.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v2.7.0...v3.0.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 13 May 2022, 19:49:56 UTC
552e1e7 build(deps): Bump codecov/codecov-action from 2.1.0 to 3.1.0 (#8529) * build(deps): Bump codecov/codecov-action from 2.1.0 to 3.1.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2.1.0 to 3.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v2.1.0...v3.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 13 May 2022, 19:45:04 UTC
fcf0579 build(deps): Bump golangci/golangci-lint-action from 3.1.0 to 3.2.0 (#8526) * build(deps): Bump golangci/golangci-lint-action from 3.1.0 to 3.2.0 Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 13 May 2022, 19:42:15 UTC
back to top