https://github.com/tendermint/tendermint

sort by:
Revision Author Date Message Commit Date
849461a Release v0.34.13 https://github.com/tendermint/tendermint/blob/v0.34.13/CHANGELOG.md#v0.34.12 08 September 2021, 19:09:15 UTC
8ba6d21 Backport the psql indexer into v0.34.x (#6906) This change backports the PostgreSQL indexing sink, addressing part of #6828. Development on the main branch has diverged substantially since the v0.34.x release. It includes package moves, breaking API and protobuf schema changes, and new APIs, all of which together have a large footprint on the mapping between the implementation at tip and the v0.34 release branch. To avoid the need to retrofit all of those improvements, this change works by injecting the new indexing sink into the existing (v0.34) indexing interfaces by delegation. This means the backport does _not_ pull in all the newer APIs for event handling, and thus has minimal impact on existing code written against the v0.34 package structure. This change includes the test for the `psql` implementation, and thus updates some Go module dependencies. Because it does not interact with any other types, however, I did not add any unit tests to other packages in this change. Related changes: * Update module dependencies for psql backport. * Update test data to be type-compatible with the old protobuf types. * Add config settings for the PostgreSQL indexer. * Clean up some linter settings. * Hook up the psql indexer in the node main. 07 September 2021, 22:57:44 UTC
0f8932f light: fix early erroring (#6905) 07 September 2021, 10:02:16 UTC
73ef267 statesync: improve stateprovider handling in the syncer (backport) (#6881) 01 September 2021, 14:18:07 UTC
e0c6199 abci: change client to use multi-reader mutexes (backport #6306) (#6873) 30 August 2021, 15:57:39 UTC
0c05841 internal/consensus: update error log (#6863) (#6867) Issues reported in Osmosis, where the message is extremely long. Also, there is absolutely no reason to log the message IMO. If we must, we can make the message log DEBUG. (cherry picked from commit 58a6cfff9a3e370e1bb5eabfd86091e0b1186a22) Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> 26 August 2021, 13:35:26 UTC
4023580 e2e: cleanup node start function (#6842) (#6848) I realized after my last commit that my change made a following line of code a bit redundant. (alternatively my last change was redunadnt to the existing code.) I took this oppertunity to make some minor cleanups and logging changes to the node changes which I hope will make tests a bit more clear. (cherry picked from commit a374f74f7c914a3c7640694ae80c33bf74e05688) Co-authored-by: Sam Kleinman <garen@tychoish.com> 20 August 2021, 20:12:13 UTC
2db1e42 e2e: avoid starting nodes from the future (#6835) (#6838) (cherry picked from commit a4cc8317da47ba92d1a97460a953d0e687a46cfb) Co-authored-by: Sam Kleinman <garen@tychoish.com> 18 August 2021, 18:42:27 UTC
093961a test: install abci-cli when running make tests_integrations (#6834) 17 August 2021, 15:46:09 UTC
d030cdd version: bump for 0.34.12 (#6832) 17 August 2021, 14:37:25 UTC
3dff227 changelog: prepare for v0.34.12 (#6831) 17 August 2021, 14:18:15 UTC
e290bd6 changelog_pending: add missing entry (#6830) 17 August 2021, 14:05:36 UTC
0366c2b rpc: log update (backport #6825) (#6826) 14 August 2021, 13:54:02 UTC
6fde228 state/privval: vote timestamp fix (backport #6748) (#6783) 30 July 2021, 15:48:49 UTC
b69ac23 light: add case to catch cancelled contexts within the detector (backport #6701) (#6720) 14 July 2021, 13:26:03 UTC
da9eefd rpc: add chunked rpc interface (backport #6445) (#6717) * rpc: add chunked rpc interface (#6445) (cherry picked from commit d9134063e7f556876bdbbcf56d822b3d7c5cee07) # Conflicts: # light/proxy/routes.go # node/node.go # rpc/core/net.go # rpc/core/routes.go * fix conflicts Co-authored-by: Sam Kleinman <garen@tychoish.com> Co-authored-by: marbar3778 <marbar3778@yahoo.com> 14 July 2021, 09:22:53 UTC
2c2f511 light: correctly handle contexts (backport -> v0.34.x) (#6685) 09 July 2021, 12:30:33 UTC
8b84c7c e2e: disable app tests for light client (#6672) 07 July 2021, 18:06:55 UTC
0712063 config: add example on external_address (backport #6621) (#6624) 30 June 2021, 13:52:19 UTC
c2908ef release: prepare changelog for v0.34.11 (#6597) 18 June 2021, 09:44:39 UTC
d515bbc statesync: increase chunk priority and robustness (#6582) 18 June 2021, 07:59:52 UTC
be8c983 state sync: tune request timeout and chunkers (backport #6566) (#6581) * state sync: tune request timeout and chunkers (#6566) (cherry picked from commit 7d961b55b2132d53ccf7ee8d6c86b84fc7fc9ddc) # Conflicts: # CHANGELOG_PENDING.md # config/config.go # internal/statesync/reactor.go # internal/statesync/reactor_test.go # node/node.go # statesync/syncer.go * fix build * fix config * fix config Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> Co-authored-by: Aleksandr Bezobchuk <aleks.bezobchuk@gmail.com> 15 June 2021, 19:10:16 UTC
358b1f2 p2p/conn: check for channel id overflow before processing receive msg (backport #6522) (#6528) * p2p/conn: check for channel id overflow before processing receive msg (#6522) Per tendermint spec, each Channel has a globally unique byte id, which is mapped to uint8 in Go. However, the proto PacketMsg.ChannelID field is declared as int32, and when receive the packet, we cast it to a byte without checking for possible overflow. That leads to a malform packet with invalid channel id is sent successfully. To fix it, we just add a check for possible overflow, and return invalid channel id error. Fixed #6521 (cherry picked from commit 1f46a4c90e268def505037a5d42627942f605ef4) 05 June 2021, 00:20:36 UTC
c376b44 Backport: #6494 (#6506) * version: revert version through ldflag only (#6494) Add version back to versions, but allow it to be overridden via a ldflag. Reason: Many users are not setting the ldflag causing issues with tooling that relies on it (cosmjs) closes #6488 cc @webmaster128 * revert variable rename * Update CHANGELOG_PENDING.md 31 May 2021, 21:15:12 UTC
8dd8a4e libs/os: avoid CopyFile truncating destination before checking if regular file (backport: #6428) (#6436) 10 May 2021, 11:24:33 UTC
353e3a3 evidence: fix bug with hashes (backport #6375) (#6381) 22 April 2021, 13:05:56 UTC
a9b4fac .github: make core team codeowners (#6384) 21 April 2021, 20:38:07 UTC
1614e12 statesync: improve e2e test outcomes (backport #6378) (#6380) (cherry picked from commit d36a5905a67db1ed7afb09f371b3ea3910afb6eb) Co-authored-by: Sam Kleinman <garen@tychoish.com> 21 April 2021, 16:30:17 UTC
68eceda changelog: update for 0.34.10 (#6357) 14 April 2021, 20:46:14 UTC
b878326 e2e: relax timeouts (#6356) * remove duplicate light error * quieten handling of txs that already exist in the mempool * notch back e2e timeouts 14 April 2021, 17:53:54 UTC
693e11c e2e: tx load to use broadcast sync instead of commit (backport #6347) (#6352) 14 April 2021, 08:09:49 UTC
6cc3e23 light: handle too high errors correctly (backport #6346) (#6351) 13 April 2021, 12:46:54 UTC
a9ac635 p2p: fix using custom channels (#6339) 13 April 2021, 12:05:36 UTC
bd968ab build(deps): Bump google.golang.org/grpc from 1.36.1 to 1.37.0 (bp #6330) (#6335) 09 April 2021, 10:20:20 UTC
e54fdb6 changelog: prepare changelog for 0.34.9 release (#6333) 08 April 2021, 17:05:23 UTC
7869f5e light/evidence: handle FLA backport (#6331) 08 April 2021, 16:49:25 UTC
af35ca9 state: fix block event indexing reserved key check (#6314) (#6315) 05 April 2021, 12:42:17 UTC
c9966cd p2p: Fix "Unknown Channel" bug on CustomReactors (#6297) 30 March 2021, 13:35:00 UTC
6c0c273 change index block log to info (#6290) (#6294) ## Description Change log from error to info for indexing blocks (cherry picked from commit 32ee737d42d3092dec6c99729927483abc1bd959) Co-authored-by: Marko <marbar3778@yahoo.com> 29 March 2021, 13:57:57 UTC
b7a4d5e fix: jsonrpc url parsing and dial function (#6264) (#6288) This PR fixes how the jsonrpc parses the URL, and how the dial function connects to the RPC. Closes: https://github.com/tendermint/tendermint/issues/6260 (cherry picked from commit 9ecfcc93a6364bbecc9e1d7740b53602eda667eb) Co-authored-by: Frojdi Dymylja <33157909+fdymylja@users.noreply.github.com> 29 March 2021, 11:05:03 UTC
0682337 logging: shorten precommit log message (#6270) (#6274) This is an attempt to clean up the logging message as requested in #6269. (cherry picked from commit 3f9066b290ba2de266b42aa6ad2b076c7be4f5df) Co-authored-by: Sam Kleinman <garen@tychoish.com> 25 March 2021, 20:19:50 UTC
b00cac9 rpc: index block events to support block event queries (bp #6226) (#6261) 22 March 2021, 19:01:25 UTC
b2f0144 e2e: integrate light clients (bp #6196) integrate light clients (#6196) fix e2e app test (#6223) fix light client generator (#6236) 18 March 2021, 12:02:05 UTC
4e25703 rpc/jsonrpc/server: return an error in WriteRPCResponseHTTP(Error) (bp #6204) (#6230) * rpc/jsonrpc/server: return an error in WriteRPCResponseHTTP(Error) (#6204) instead of panicking Closes #5529 (cherry picked from commit 00b952416836cb568ee904903d30b35a6178bad1) # Conflicts: # CHANGELOG_PENDING.md # rpc/jsonrpc/server/http_json_handler.go # rpc/jsonrpc/server/http_server.go # rpc/jsonrpc/server/http_server_test.go # rpc/jsonrpc/server/http_uri_handler.go * resolve conflicts * fix linting * fix conflict Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com> Co-authored-by: Marko Baricevic <marbar3778@yahoo.com> 17 March 2021, 14:55:05 UTC
d004a58 use error.Is to check for nondeterminstic vote error type (#6237) (#6239) (cherry picked from commit bf8cce83db15ee2645924799a4b2dfba260788dc) Co-authored-by: Callum Waters <cmwaters19@gmail.com> 15 March 2021, 10:20:33 UTC
11523b1 note: add nondeterministic note to events (#6220) (#6225) ## Description Since events are not hashed into the header they can be non deterministic. Changing an event is not consensus breaking. Will update docs in the spec (cherry picked from commit 884d4d525299e4d43ab881ac19062501c1e09ddf) Co-authored-by: Marko <marbar3778@yahoo.com> 09 March 2021, 12:39:19 UTC
8bb8585 e2e: add benchmarking functionality (bp #6210) (#6216) 05 March 2021, 14:30:18 UTC
b9cdd0e indexer: remove info log (#6194) Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> Co-authored-by: Marko <marbar3778@yahoo.com> 04 March 2021, 14:47:42 UTC
1b5697a mempool/rpc: log grooming (bp #6201) (#6203) 04 March 2021, 14:04:13 UTC
a047a4a logs: cleanup (#6198) Co-authored-by: Marko <marbar3778@yahoo.com> 04 March 2021, 10:42:19 UTC
52b1d90 rpc/jsonrpc: Unmarshal RPCRequest correctly (bp #6191) (#6193) * rpc/jsonrpc: Unmarshal RPCRequest correctly (#6191) i.e. without double pointer. With double pointer, it was possible to submit `null` value, which will crash the server. ``` panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x189ddc0] goroutine 1 [running]: github.com/tendermint/tendermint/rpc/jsonrpc/types.(*RPCRequest).UnmarshalJSON(0xc0000147e0, 0xc00029f201, 0x4, 0x1ff, 0x883baa0, 0xc0000147e0) /Users/anton/go/src/github.com/tendermint/tendermint/rpc/jsonrpc/types/types.go:70 +0x100 encoding/json.(*decodeState).literalStore(0xc000216bb0, 0xc00029f201, 0x4, 0x1ff, 0x1998800, 0xc0000147e0, 0x199, 0xc000231700, 0x10e0a5e, 0x197) /usr/local/Cellar/go/1.16/libexec/src/encoding/json/decode.go:860 +0x30ce encoding/json.(*decodeState).value(0xc000216bb0, 0x1998800, 0xc0000147e0, 0x199, 0x1998800, 0xc0000147e0) /usr/local/Cellar/go/1.16/libexec/src/encoding/json/decode.go:384 +0x40c encoding/json.(*decodeState).array(0xc000216bb0, 0x18df040, 0xc0001be540, 0x16, 0xc000216bd8, 0x10e405b) /usr/local/Cellar/go/1.16/libexec/src/encoding/json/decode.go:558 +0x365 encoding/json.(*decodeState).value(0xc000216bb0, 0x18df040, 0xc0001be540, 0x16, 0x16, 0x6e) /usr/local/Cellar/go/1.16/libexec/src/encoding/json/decode.go:360 +0x22f encoding/json.(*decodeState).unmarshal(0xc000216bb0, 0x18df040, 0xc0001be540, 0xc000216bd8, 0x0) /usr/local/Cellar/go/1.16/libexec/src/encoding/json/decode.go:180 +0x2c9 encoding/json.Unmarshal(0xc00029f200, 0x6, 0x200, 0x18df040, 0xc0001be540, 0x0, 0x0) /usr/local/Cellar/go/1.16/libexec/src/encoding/json/decode.go:107 +0x15d ``` (cherry picked from commit fe4e97afe0dc5f3afd5b550777d051b7c6c6f9a0) # Conflicts: # CHANGELOG_PENDING.md * fix conflict Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com> 02 March 2021, 10:46:48 UTC
28bebe3 docs/tutorials: fix sample code #6186 Co-authored-by: winor <12413150+winor30@users.noreply.github.com> Co-authored-by: Marko Baricevic <marbar3778@yahoo.com> 01 March 2021, 08:41:49 UTC
dea73e0 changelog: update for 0.34.8 (#6181) 25 February 2021, 11:30:29 UTC
28ce355 libs/log: [JSON format] include timestamp (bp #6174) (#6179) Closes #6146 25 February 2021, 07:27:49 UTC
55ae781 logging: print string instead of callback (#6178) ## Description Fixes marshaling error in sdk closes https://github.com/cosmos/cosmos-sdk/issues/8578 the output stays the same, we are avoiding the passing of the callback because sdk uses typed logging. Co-authored-by: Marko <marbar3778@yahoo.com> 24 February 2021, 19:08:05 UTC
0191a22 state executor: groom logs (bp #6152) (#6172) 24 February 2021, 14:50:46 UTC
9d9b947 goreleaser: reintroduce arm64 build instructions 23 February 2021, 10:20:19 UTC
c6e0d20 Revert "Revert "tooling: remove tools/Makefile (bp #6102) (#6106)"" This reverts commit afd07096a7a33ea88fbdb316f05c4d09cbcdf2d3. I had believed that this tooling change could have been what broke our GoReleaser flow; I now know that it was a result of changes in Go 1.16 and an update to GoReleaser! GoReleaser has now been updated again and our flow should be un-broken. 23 February 2021, 10:20:06 UTC
efd9d07 changelog: fix changelog pending version numbering (#6149) 19 February 2021, 13:51:18 UTC
a0f3761 consensus: more log grooming (bp #6140) (#6143) 18 February 2021, 19:23:12 UTC
8d3c36c abci: Fix ReCheckTx for Socket Client (bp #6124) (#6125) 18 February 2021, 13:36:05 UTC
15eb2c2 .goreleaser: remove arm64 build instructions and bump changelog again (#6131) 18 February 2021, 02:04:16 UTC
e4d2893 changelog: bump to v0.34.6 18 February 2021, 01:36:01 UTC
afd0709 Revert "tooling: remove tools/Makefile (bp #6102) (#6106)" This reverts commit 1b2174a0da832c6b31ae5a0fd61b0d1655888675. 18 February 2021, 01:36:01 UTC
340071d changelog: update for 0.34.5 (#6129) 18 February 2021, 01:09:16 UTC
53d40e1 consensus: remove privValidator from log call (#6128) 18 February 2021, 00:47:55 UTC
bedb00d consensus: Groom Logs (#5917) Executed a local network using simapp and looked for logs that seemed superfluous. This isn't by any means an exhaustive grooming, but should drastically help legibility of logs. ref: #5912 17 February 2021, 10:05:13 UTC
1030072 changelog: update 0.34.3 changelog with details on security vuln (bp #6108) (#6110) * changelog: update 0.34.3 changelog with details on security vuln (#6108) Closes #6095. (cherry picked from commit df0b86841568e208e0d473f0006892925c21c885) # Conflicts: # CHANGELOG.md * solve conflicts Co-authored-by: Tess Rinearson <tess.rinearson@gmail.com> Co-authored-by: Marko Baricevic <marbar3778@yahoo.com> 15 February 2021, 13:51:54 UTC
1b2174a tooling: remove tools/Makefile (bp #6102) (#6106) Description We use docker for all protobuf related items. This makes it unnecessary to provide a way to download tooling. ref #6103 Co-authored-by: Tess Rinearson <tess.rinearson@gmail.com> Co-authored-by: Marko <marbar3778@yahoo.com> 12 February 2021, 10:09:29 UTC
6bac9d9 makefile: remove call to tools (#6104) 11 February 2021, 21:31:17 UTC
5efbbab changelog: improve with suggestions from @melekes (#6097) 11 February 2021, 19:47:43 UTC
4a0fab0 changelog: update for v0.34.4 (#6096) 11 February 2021, 18:13:40 UTC
5ee2ada .github: remove erik as reviewer from dependapot (#6076) 11 February 2021, 16:29:52 UTC
fbf2c38 check block store base is non negative before sending block meta or commits (#6042) 11 February 2021, 16:29:52 UTC
cc57a56 build(deps-dev): Bump watchpack from 2.1.0 to 2.1.1 in /docs (#6063) Bumps [watchpack](https://github.com/webpack/watchpack) from 2.1.0 to 2.1.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/watchpack/releases">watchpack's releases</a>.</em></p> <blockquote> <h2>v2.1.1</h2> <h1>Bugfix</h1> <ul> <li>fix warnings with ENOENT when symlinks are resolved by watchpack</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpack/watchpack/commit/f1b5e2da2d5dfd46f99b9b405c97b9d6441687d5"><code>f1b5e2d</code></a> 2.1.1</li> <li><a href="https://github.com/webpack/watchpack/commit/cbfc11a8d7681ae5f5abd7150753395190b622ed"><code>cbfc11a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/watchpack/issues/188">#188</a> from Aghassi/fix/enoent-throwing</li> <li><a href="https://github.com/webpack/watchpack/commit/7684df0846f8a69babae7961857ce55210ca2a25"><code>7684df0</code></a> fix: adds ENOENT for non windows errors</li> <li>See full diff in <a href="https://github.com/webpack/watchpack/compare/v2.1.0...v2.1.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=watchpack&package-manager=npm_and_yarn&previous-version=2.1.0&new-version=2.1.1)](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> 11 February 2021, 16:18:45 UTC
950c9f7 CODEOWNERS: remove erikgrinaker (#6057) 11 February 2021, 16:18:45 UTC
90a2c33 build(deps): Bump actions/cache from v2.1.3 to v2.1.4 (#6055) Bumps [actions/cache](https://github.com/actions/cache) from v2.1.3 to v2.1.4. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.3...26968a09c0ea4f3e233fdddbafd1166051a095f6) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 11 February 2021, 16:18:45 UTC
093dcfc goreleaser: downcase archive and binary names (#6029) before: ``` Tendermint_0.34.3_darwin_amd64.tar.gz -rw-r--r-- 0 runner docker 192329 Jan 19 19:30 CHANGELOG.md -rw-r--r-- 0 runner docker 321 Jan 19 19:30 CHANGELOG_PENDING.md -rw-r--r-- 0 runner docker 11382 Jan 19 19:30 LICENSE -rw-r--r-- 0 runner docker 8165 Jan 19 19:30 README.md -rwxr-xr-x 0 runner docker 23224320 Jan 19 19:30 tendermint ``` after: ``` tendermint_0.34.3_darwin_amd64.tar.gz -rw-r--r-- 0 runner docker 192329 Jan 19 19:30 CHANGELOG.md -rw-r--r-- 0 runner docker 321 Jan 19 19:30 CHANGELOG_PENDING.md -rw-r--r-- 0 runner docker 11382 Jan 19 19:30 LICENSE -rw-r--r-- 0 runner docker 8165 Jan 19 19:30 README.md -rwxr-xr-x 0 runner docker 23224320 Jan 19 19:30 tendermint ``` 11 February 2021, 16:09:10 UTC
72851a1 libs/log: format []byte as hexidecimal string (uppercased) (#5960) Closes: #5806 Co-authored-by: Lanie Hei <heixx011@umn.edu> 11 February 2021, 16:02:38 UTC
07979d8 build(deps): Bump github.com/tendermint/tm-db from 0.6.3 to 0.6.4 (#6073) Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.3 to 0.6.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tendermint/tm-db/releases">github.com/tendermint/tm-db's releases</a>.</em></p> <blockquote> <h2>v0.6.4</h2> <p><a href="https://github.com/tendermint/tm-db/blob/v0.6.4/CHANGELOG.md#064">https://github.com/tendermint/tm-db/blob/v0.6.4/CHANGELOG.md#064</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md">github.com/tendermint/tm-db's changelog</a>.</em></p> <blockquote> <h2>0.6.4</h2> <p><strong>2021-02-09</strong></p> <p>Bump protobuf to 1.3.2 and grpc to 1.35.0.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tendermint/tm-db/commit/6f9a08cd4522fb13d8df69b1694587d5015114fc"><code>6f9a08c</code></a> update changelog for v0.6.4 (<a href="https://github-redirect.dependabot.com/tendermint/tm-db/issues/150">#150</a>)</li> <li><a href="https://github.com/tendermint/tm-db/commit/4de5f6b9a4e77d67c485d4ba06fb2678eeaaa438"><code>4de5f6b</code></a> CODEOWNERS: remove erikgrinaker (<a href="https://github-redirect.dependabot.com/tendermint/tm-db/issues/148">#148</a>)</li> <li><a href="https://github.com/tendermint/tm-db/commit/9f5cde003a14934f6ddfced47a5a9f2c799d171e"><code>9f5cde0</code></a> build(deps): bump google.golang.org/grpc from 1.33.2 to 1.35.0 (<a href="https://github-redirect.dependabot.com/tendermint/tm-db/issues/143">#143</a>)</li> <li><a href="https://github.com/tendermint/tm-db/commit/c606a78361a2f20323cb49c009871f720fb0faea"><code>c606a78</code></a> build(deps): bump github.com/stretchr/testify from 1.6.1 to 1.7.0 (<a href="https://github-redirect.dependabot.com/tendermint/tm-db/issues/142">#142</a>)</li> <li><a href="https://github.com/tendermint/tm-db/commit/0438145e16ac82a4ebfc7459c109723849708acc"><code>0438145</code></a> build(deps): bump github.com/gogo/protobuf from 1.3.1 to 1.3.2 (<a href="https://github-redirect.dependabot.com/tendermint/tm-db/issues/140">#140</a>)</li> <li><a href="https://github.com/tendermint/tm-db/commit/f2b292dfc2fe4750a6e9cdbd05e7b03069d63424"><code>f2b292d</code></a> testing: docker deployment (<a href="https://github-redirect.dependabot.com/tendermint/tm-db/issues/144">#144</a>)</li> <li><a href="https://github.com/tendermint/tm-db/commit/3157a928986298875ca48e6d5f77132a32dfb1f0"><code>3157a92</code></a> changelog: update with 0.5.2 release (<a href="https://github-redirect.dependabot.com/tendermint/tm-db/issues/138">#138</a>)</li> <li>See full diff in <a href="https://github.com/tendermint/tm-db/compare/v0.6.3...v0.6.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/tendermint/tm-db&package-manager=go_modules&previous-version=0.6.3&new-version=0.6.4)](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> 11 February 2021, 15:56:50 UTC
12eac92 docs: fix typo in state sync example (#5989) 11 February 2021, 15:08:23 UTC
73375b0 backport v0.34.x: 6000 & 6001 11 February 2021, 14:50:18 UTC
e3a79d4 tests: fix `make test` (#5966) ## Description - bump deadlock dep to master - fixes `make test` since we now use `deadlock.Once` Closes: #XXX 11 February 2021, 13:44:19 UTC
fa3287c maverick: reduce some duplication (#6052) - Reduce duplication in messages and metrics. - merge WAL interfaces. Meant to push the developer to make changes in both places. 11 February 2021, 13:44:19 UTC
cb7c956 docker: dont login when in PR (#5961) 11 February 2021, 13:44:19 UTC
9df5fcf docker: release Linux/ARM64 image (#5925) Co-authored-by: Marko <marbar3778@yahoo.com> 11 February 2021, 13:44:19 UTC
d575f8a fix build 11 February 2021, 12:10:28 UTC
1e355b6 .github: use job ID (not step ID) inside if condition (#6060) https://stackoverflow.com/a/66073112/820520 11 February 2021, 12:10:28 UTC
1080730 .github: fix fuzz-nightly job (#5965) outputs is a property of the job, not an individual step. 11 February 2021, 12:10:28 UTC
8b48d23 terminate go-fuzz gracefully (w/ SIGINT) (#5973) and preserve exit code. ``` 2021/01/26 03:34:49 workers: 2, corpus: 4 (8m28s ago), crashers: 0, restarts: 1/9976, execs: 11013732 (21596/sec), cover: 121, uptime: 8m30s make: *** [fuzz-mempool] Terminated Makefile:5: recipe for target 'fuzz-mempool' failed Error: Process completed with exit code 124. ``` https://github.com/tendermint/tendermint/runs/1766661614 `continue-on-error` should make GH ignore any error codes. 11 February 2021, 12:10:28 UTC
c3d2f68 .github: archive crashers and fix set-crashers-count step (#5992) 11 February 2021, 12:10:28 UTC
0f58a84 .github: rename crashers output (fuzz-nightly-test) (#5993) 11 February 2021, 12:10:28 UTC
197b746 test/fuzz: move fuzz tests into this repo (#5918) Co-authored-by: Emmanuel T Odeke <emmanuel@orijtech.com> Closes #5907 - add init-corpus to blockchain reactor - remove validator-set FromBytes test now that we have proto, we don't need to test it! bye amino - simplify mempool test do we want to test remote ABCI app? - do not recreate mux on every crash in jsonrpc test - update p2p pex reactor test - remove p2p/listener test the API has changed + I did not understand what it's tested anyway - update secretconnection test - add readme and makefile - list inputs in readme - add nightly workflow - remove blockchain fuzz test EncodeMsg / DecodeMsg no longer exist 11 February 2021, 12:10:28 UTC
0662320 Update metrics.md (#5930) 11 February 2021, 10:55:29 UTC
a3a9398 proto: docker deployment (#5931) 11 February 2021, 10:55:29 UTC
7b7d6e1 docs: change v0.33 version (#5950) - change version for v0.33.x Closes: #XXX 11 February 2021, 10:55:29 UTC
98be3f2 Makefile: always pull image in proto-gen-docker. (#5953) The `proto-gen-docker` target didn't pull an updated Docker image, and would use a local image if present which could be outdated and produce wrong results. 11 February 2021, 10:55:29 UTC
3e41bb5 .github/workflows: cleanup yaml for e2e nightlies (#6049) 11 February 2021, 10:43:19 UTC
6252b63 .github/workflows: fix whitespace in e2e config file (#6043) 11 February 2021, 10:43:19 UTC
591e55b .github/workflows: separate e2e workflows for 0.34.x and master (#6041) Co-authored-by: Erik Grinaker <erik@interchain.berlin> Co-authored-by: Marko <marbar3778@yahoo.com> 11 February 2021, 10:43:19 UTC
back to top