File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ and this project adheres to
47
47
- cosmwasm-std: Change ` DistributionQuerier::new ` to take ` IntoIterator ` instead
48
48
of ` HashMap ` . ([ #1941 ] )
49
49
- 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 ] )
50
52
51
53
[ #1874 ] : https://github.com/CosmWasm/cosmwasm/pull/1874
52
54
[ #1876 ] : https://github.com/CosmWasm/cosmwasm/pull/1876
@@ -55,6 +57,7 @@ and this project adheres to
55
57
[ #1884 ] : https://github.com/CosmWasm/cosmwasm/pull/1884
56
58
[ #1898 ] : https://github.com/CosmWasm/cosmwasm/pull/1898
57
59
[ #1902 ] : https://github.com/CosmWasm/cosmwasm/pull/1902
60
+ [ #1926 ] : https://github.com/CosmWasm/cosmwasm/pull/1926
58
61
[ #1933 ] : https://github.com/CosmWasm/cosmwasm/pull/1933
59
62
[ #1939 ] : https://github.com/CosmWasm/cosmwasm/pull/1939
60
63
[ #1940 ] : https://github.com/CosmWasm/cosmwasm/pull/1940
Original file line number Diff line number Diff line change @@ -118,6 +118,13 @@ major releases of `cosmwasm`. Note that you can also view the
118
118
+Ok(IbcReceiveResponse::new(b""))
119
119
```
120
120
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
+
121
128
## 1.4.x -> 1.5.0
122
129
123
130
- Update ` cosmwasm-* ` dependencies in Cargo.toml (skip the ones you don't use):
You can’t perform that action at this time.
0 commit comments