Skip to content

Commit 63b3a93

Browse files
committed
Add changelog and migration entry
1 parent 6cc4d6f commit 63b3a93

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ and this project adheres to
4747
- cosmwasm-std: Change `DistributionQuerier::new` to take `IntoIterator` instead
4848
of `HashMap`. ([#1941])
4949
- cosmwasm-vm: Make `instantiate` entrypoint optional. ([#1933])
50+
- cosmwasm-std: Rename `CosmosMsg::Stargate` to `CosmosMsg::Any` and use a
51+
nested msg struct like in other messages. ([#1926])
5052

5153
[#1874]: https://github.com/CosmWasm/cosmwasm/pull/1874
5254
[#1876]: https://github.com/CosmWasm/cosmwasm/pull/1876
@@ -55,6 +57,7 @@ and this project adheres to
5557
[#1884]: https://github.com/CosmWasm/cosmwasm/pull/1884
5658
[#1898]: https://github.com/CosmWasm/cosmwasm/pull/1898
5759
[#1902]: https://github.com/CosmWasm/cosmwasm/pull/1902
60+
[#1926]: https://github.com/CosmWasm/cosmwasm/pull/1926
5861
[#1933]: https://github.com/CosmWasm/cosmwasm/pull/1933
5962
[#1939]: https://github.com/CosmWasm/cosmwasm/pull/1939
6063
[#1940]: https://github.com/CosmWasm/cosmwasm/pull/1940

MIGRATING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,13 @@ major releases of `cosmwasm`. Note that you can also view the
118118
+Ok(IbcReceiveResponse::new(b""))
119119
```
120120

121+
- Replace all uses of `CosmosMsg::Stargate` with `CosmosMsg::Any`:
122+
123+
```diff
124+
-CosmosMsg::Stargate { type_url, value }
125+
+CosmosMsg::Any(AnyMsg { type_url, value })
126+
```
127+
121128
## 1.4.x -> 1.5.0
122129

123130
- Update `cosmwasm-*` dependencies in Cargo.toml (skip the ones you don't use):

0 commit comments

Comments
 (0)