Skip to content

Commit fe6a8b2

Browse files
deps!: use fixed cosmos-sdk/lsm (backport #3249) (#3250)
* deps!: use fixed cosmos-sdk/lsm (#3249) * deps!: use fixed cosmos-sdk/lsm * use tagged version instead of commit hash (cherry picked from commit 19a8ea3) * changelogs * changelogs --------- Co-authored-by: MSalopek <[email protected]>
1 parent 5142d02 commit fe6a8b2

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

.changelog/v19.0.0/dependencies/3207-bump-cosmos-sdk.md

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to
2+
[v0.50.9-lsm](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.9-lsm)
3+
([\#3249](https://github.com/cosmos/gaia/pull/3249))

.changelog/v19.0.0/state-breaking/3207-bump-cosmos-sdk.md

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to
2+
[v0.50.9-lsm](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.9-lsm)
3+
([\#3249](https://github.com/cosmos/gaia/pull/3249))

.changelog/v19.0.0/summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
*July 29th, 2024*
1+
*August 1st, 2024*

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,13 @@
22

33
## v19.0.0
44

5-
*July 29th, 2024*
5+
*August 1st, 2024*
66

77
### DEPENDENCIES
88

99
- Bump [cometbft](https://github.com/cometbft/cometbft) to
1010
[v0.38.9](https://github.com/cometbft/cometbft/releases/tag/v0.38.9)
1111
([\#3171](https://github.com/cosmos/gaia/pull/3171))
12-
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to
13-
[v0.50.8-lsm](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.8-lsm)
14-
([\#3207](https://github.com/cosmos/gaia/pull/3207))
1512
- Bump [feemarket](https://github.com/skip-mev/feemarket) to
1613
[v1.0.4](https://github.com/skip-mev/feemarket/releases/tag/v1.0.4)
1714
([\#3221](https://github.com/cosmos/gaia/pull/3221))
@@ -27,6 +24,9 @@
2724
- Bump [ICS](https://github.com/cosmos/interchain-security) to
2825
[v5.1.1](https://github.com/cosmos/interchain-security/releases/tag/v5.1.1)
2926
([\#3237](https://github.com/cosmos/gaia/pull/3237))
27+
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to
28+
[v0.50.9-lsm](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.9-lsm)
29+
([\#3249](https://github.com/cosmos/gaia/pull/3249))
3030

3131
### IMPROVEMENTS
3232

@@ -38,9 +38,6 @@
3838
- Bump [cometbft](https://github.com/cometbft/cometbft) to
3939
[v0.38.9](https://github.com/cometbft/cometbft/releases/tag/v0.38.9)
4040
([\#3171](https://github.com/cosmos/gaia/pull/3171))
41-
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to
42-
[v0.50.8-lsm](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.8-lsm)
43-
([\#3207](https://github.com/cosmos/gaia/pull/3207))
4441
- Bump [feemarket](https://github.com/skip-mev/feemarket) to
4542
[v1.0.4](https://github.com/skip-mev/feemarket/releases/tag/v1.0.4)
4643
([\#3221](https://github.com/cosmos/gaia/pull/3221))
@@ -56,6 +53,9 @@
5653
- Bump [ICS](https://github.com/cosmos/interchain-security) to
5754
[v5.1.1](https://github.com/cosmos/interchain-security/releases/tag/v5.1.1)
5855
([\#3237](https://github.com/cosmos/gaia/pull/3237))
56+
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to
57+
[v0.50.9-lsm](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.9-lsm)
58+
([\#3249](https://github.com/cosmos/gaia/pull/3249))
5959

6060
## Previous Versions
6161

contrib/single-node.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jq ".app_state.gov.params.voting_period = \"20s\" | .app_state.gov.params.expedi
2020
"${HOME_DIR}/edited_genesis.json" && mv "${HOME_DIR}/edited_genesis.json" "${HOME_DIR}/.gaia/config/genesis.json"
2121

2222
$GAIAD keys add validator --keyring-backend="test"
23+
$GAIAD keys add user --keyring-backend="test"
2324
$GAIAD genesis add-genesis-account $("${GAIAD}" keys show validator -a --keyring-backend="test") $USER_COINS
25+
$GAIAD genesis add-genesis-account $("${GAIAD}" keys show user -a --keyring-backend="test") $USER_COINS
2426
$GAIAD genesis gentx validator $STAKE --keyring-backend="test" --chain-id $CHAINID
2527
$GAIAD genesis collect-gentxs
2628

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ replace (
249249
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
250250

251251
// Use special SDK v0.50.x release with support for both ICS and LSM
252-
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.50.8-lsm
252+
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.50.9-lsm
253253

254254
// TODO: remove it: https://github.com/cosmos/cosmos-sdk/issues/13134
255255
github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt/v4 v4.4.2

go.sum

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -418,8 +418,8 @@ github.com/cosmos/cosmos-db v1.0.2 h1:hwMjozuY1OlJs/uh6vddqnk9j7VamLv+0DBlbEXbAK
418418
github.com/cosmos/cosmos-db v1.0.2/go.mod h1:Z8IXcFJ9PqKK6BIsVOB3QXtkKoqUOp1vRvPT39kOXEA=
419419
github.com/cosmos/cosmos-proto v1.0.0-beta.5 h1:eNcayDLpip+zVLRLYafhzLvQlSmyab+RC5W7ZfmxJLA=
420420
github.com/cosmos/cosmos-proto v1.0.0-beta.5/go.mod h1:hQGLpiIUloJBMdQMMWb/4wRApmI9hjHH05nefC0Ojec=
421-
github.com/cosmos/cosmos-sdk v0.50.8-lsm h1:Io2y/9wbW9mjXh5FgDXQtGwIF8dtb0GzpczjKsM1U58=
422-
github.com/cosmos/cosmos-sdk v0.50.8-lsm/go.mod h1:efdTFdUndXfLpSMkE1Kv/ra8pux9l1glcojMIhNreiA=
421+
github.com/cosmos/cosmos-sdk v0.50.9-lsm h1:nYQVX0YinJ3Zu3PHEee36OeZ8yAw42ctE52S2K3MleM=
422+
github.com/cosmos/cosmos-sdk v0.50.9-lsm/go.mod h1:efdTFdUndXfLpSMkE1Kv/ra8pux9l1glcojMIhNreiA=
423423
github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY=
424424
github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw=
425425
github.com/cosmos/gogogateway v1.2.0 h1:Ae/OivNhp8DqBi/sh2A8a1D0y638GpL3tkmLQAiKxTE=
@@ -439,8 +439,6 @@ github.com/cosmos/ibc-go/v8 v8.4.0 h1:K2PfX0AZ+1XKZytHGEMuSjQXG/MZshPb83RSTQt2+c
439439
github.com/cosmos/ibc-go/v8 v8.4.0/go.mod h1:zh6x1osR0hNvEcFrC/lhGD08sMfQmr9wHVvZ/mRWMCs=
440440
github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM=
441441
github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0=
442-
github.com/cosmos/interchain-security/v5 v5.1.0 h1:87y+7q0udGoLto3U3y5q6YTQ5ezDD/PlgJbNW7ba/Sc=
443-
github.com/cosmos/interchain-security/v5 v5.1.0/go.mod h1:vmeTcTxFCl1eV0o6xpl/IRT7Basz0szVVGzbppnInMg=
444442
github.com/cosmos/interchain-security/v5 v5.1.1 h1:xmRRMeE4xoc+JAZUh0XzXFYWaGBtzFFj5SETuOgnEnY=
445443
github.com/cosmos/interchain-security/v5 v5.1.1/go.mod h1:vmeTcTxFCl1eV0o6xpl/IRT7Basz0szVVGzbppnInMg=
446444
github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo=

0 commit comments

Comments
 (0)