Skip to content

Commit d1174df

Browse files
authored
register v3.5.0 upgrade and changelog (#1185)
1 parent 01846e7 commit d1174df

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,26 @@ Ref: https://keepachangelog.com/en/1.0.0/
2727
-->
2828

2929
# Changelog
30+
## v3.5.0
31+
sei-chain:
32+
* [#1164](https://github.com/sei-protocol/sei-chain/pull/1164) Bump wasmd
33+
* [#1163](https://github.com/sei-protocol/sei-chain/pull/1163) Update antehandler
34+
* [#1160](https://github.com/sei-protocol/sei-chain/pull/1160) Allow metrics script to query remote
35+
* [#1156](https://github.com/sei-protocol/sei-chain/pull/1156) Bump ledger version to support nano s
36+
* [#1155](https://github.com/sei-protocol/sei-chain/pull/1155) Allow loadtest client to take a list of grpc endpoints
37+
38+
sei-cosmos:
39+
* [#383](https://github.com/sei-protocol/sei-cosmos/pull/383) Refactor wasm dependency behavior
40+
* [#353](https://github.com/sei-protocol/sei-cosmos/pull/353) Perf: Relax locking contention for cache and cachekv
41+
* [#331](https://github.com/sei-protocol/sei-cosmos/pull/331) Fast reject invalid consensus params
42+
43+
sei-tendermint:
44+
* [#170](https://github.com/sei-protocol/sei-tendermint/pull/170) P2P: Optimize block pool requester retry and peer pick up logic
45+
* [#167](https://github.com/sei-protocol/sei-tendermint/pull/167) Perf: Increase buffer size for pubsub server to boost performance
46+
* [#164](https://github.com/sei-protocol/sei-tendermint/pull/164) Add regex support to query syntax
47+
* [#163](https://github.com/sei-protocol/sei-tendermint/pull/163) Reduce noisy tendermint logs
48+
* [#162](https://github.com/sei-protocol/sei-tendermint/pull/162) Use peermanager scores for blocksync peers and don't error out on block mismatch
49+
3050
## v3.3.0
3151
sei-ibc-go:
3252
* [#35](https://github.com/sei-protocol/sei-ibc-go/pull/35) Upgrade to Ibc v3.4.0

app/upgrades.go

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ var upgradesList = []string{
6464
"v3.1.1",
6565
"v3.2.1",
6666
"v3.3.0",
67+
"v3.5.0",
6768
}
6869

6970
// if there is an override list, use that instead, for integration tests

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ replace (
279279
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.3.0
280280
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
281281
github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4
282-
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.2.28
282+
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.2.33
283283
github.com/tendermint/tm-db => github.com/sei-protocol/tm-db v0.0.4
284284
google.golang.org/grpc => google.golang.org/grpc v1.33.2
285285
)

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1078,8 +1078,8 @@ github.com/sei-protocol/sei-iavl v0.1.7 h1:cUdHDBkxs0FF/kOt1qCVLm0K+Bqaw92/dbZSg
10781078
github.com/sei-protocol/sei-iavl v0.1.7/go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk=
10791079
github.com/sei-protocol/sei-ibc-go/v3 v3.3.0 h1:/mjpTuCSEVDJ51nUDSHU92N0bRSwt49r1rmdC/lqgp8=
10801080
github.com/sei-protocol/sei-ibc-go/v3 v3.3.0/go.mod h1:VwB/vWu4ysT5DN2aF78d17LYmx3omSAdq6gpKvM7XRA=
1081-
github.com/sei-protocol/sei-tendermint v0.2.28 h1:5PB1a/zu6H2iDbxIMnXgDtB4QwV5PZRikguX8gASLGI=
1082-
github.com/sei-protocol/sei-tendermint v0.2.28/go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g=
1081+
github.com/sei-protocol/sei-tendermint v0.2.33 h1:ThZTpgUbM4vAWSrGWjICLfwzZLZs/B8SEpxeUlIuzhA=
1082+
github.com/sei-protocol/sei-tendermint v0.2.33/go.mod h1:4LSlJdhl3nf3OmohliwRNUFLOB1XWlrmSodrIP7fLh4=
10831083
github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY=
10841084
github.com/sei-protocol/sei-tm-db v0.0.5/go.mod h1:Cpa6rGyczgthq7/0pI31jys2Fw0Nfrc+/jKdP1prVqY=
10851085
github.com/sei-protocol/sei-wasmd v0.0.4 h1:vkmBD8Xbl9s0NznPJA0btonqFAcNO4gUGcYmhuMUULA=

0 commit comments

Comments
 (0)