@@ -6,7 +6,14 @@ and this project adheres to
6
6
7
7
## [ Unreleased]
8
8
9
- ## [ 2.0.0-beta.1] - 2023-01-22
9
+ ### Changed
10
+
11
+ - cosmwasm-std: Enable ` add_event ` and ` add_events ` functions to process types
12
+ implementing ` Into<Event> ` ([ #2044 ] )
13
+
14
+ [ #2044 ] : https://github.com/CosmWasm/cosmwasm/pull/2044
15
+
16
+ ## [ 2.0.0-rc.1] - 2023-02-09
10
17
11
18
### Fixed
12
19
@@ -26,12 +33,17 @@ and this project adheres to
26
33
` SubMsgResponse::data ` . Add new type ` MsgResponse ` . ([ #1903 ] )
27
34
- cosmwasm-std: Add ` cosmwasm_2_0 ` feature to enable 2.0 specific functionality.
28
35
([ #1974 ] )
36
+ - cosmwasm-std: Add new field ` payload ` to ` SubMsg ` and ` Reply ` . This is binary
37
+ data the contract can set in a contract specific format and get back then the
38
+ ` reply ` entry point is called. ` SubMsg::with_payload ` allows setting the
39
+ payload on an existing ` SubMsg ` . ([ #2008 ] )
29
40
30
41
[ #1878 ] : https://github.com/CosmWasm/cosmwasm/pull/1878
31
42
[ #1903 ] : https://github.com/CosmWasm/cosmwasm/pull/1903
32
43
[ #1929 ] : https://github.com/CosmWasm/cosmwasm/pull/1929
33
44
[ #1954 ] : https://github.com/CosmWasm/cosmwasm/pull/1954
34
45
[ #1974 ] : https://github.com/CosmWasm/cosmwasm/pull/1974
46
+ [ #2008 ] : https://github.com/CosmWasm/cosmwasm/pull/2008
35
47
36
48
### Changed
37
49
@@ -93,9 +105,14 @@ and this project adheres to
93
105
` ::addr_canonicalize ` /` ::addr_humanize ` for consistency.
94
106
- cosmwasm-vm: Add ` BackendApi::addr_validate ` to avoid having to do two calls
95
107
from Rust into Go.
96
- - cosmwasm-vm: Upgrade Wasmer to 4.2.5 ; Bump ` MODULE_SERIALIZATION_VERSION ` to
97
- "v9". ([ #1992 ] )
108
+ - cosmwasm-vm: Upgrade Wasmer to 4.2.6 ; Bump ` MODULE_SERIALIZATION_VERSION ` to
109
+ "v9". ([ #1992 ] , [ # 2042 ] )
98
110
- cosmwasm-std: Rename ` GovMsg::vote ` to ` GovMsg::option ` ([ #1999 ] )
111
+ - cosmwasm-vm: Read ` Region ` from Wasm memory as bytes and convert to ` Region `
112
+ afterwards ([ #2005 ] )
113
+ - cosmwasm-vm: Limit total number of function parameters in
114
+ ` check_wasm_functions ` and increase max function count and max parameter
115
+ count. ([ #1991 ] )
99
116
100
117
[ #1874 ] : https://github.com/CosmWasm/cosmwasm/pull/1874
101
118
[ #1876 ] : https://github.com/CosmWasm/cosmwasm/pull/1876
@@ -117,8 +134,11 @@ and this project adheres to
117
134
[ #1971 ] : https://github.com/CosmWasm/cosmwasm/pull/1971
118
135
[ #1973 ] : https://github.com/CosmWasm/cosmwasm/pull/1973
119
136
[ #1977 ] : https://github.com/CosmWasm/cosmwasm/pull/1977
137
+ [ #1991 ] : https://github.com/CosmWasm/cosmwasm/pull/1991
120
138
[ #1992 ] : https://github.com/CosmWasm/cosmwasm/pull/1992
121
139
[ #1999 ] : https://github.com/CosmWasm/cosmwasm/pull/1999
140
+ [ #2005 ] : https://github.com/CosmWasm/cosmwasm/pull/2005
141
+ [ #2042 ] : https://github.com/CosmWasm/cosmwasm/pull/2042
122
142
123
143
### Removed
124
144
@@ -740,9 +760,8 @@ and this project adheres to
740
760
The CHANGELOG for versions before 1.0.0 was moved to
741
761
[ CHANGELOG-pre1.0.0.md] ( ./CHANGELOG-pre1.0.0.md ) .
742
762
743
- [ unreleased ] : https://github.com/CosmWasm/cosmwasm/compare/v2.0.0-beta.1...HEAD
744
- [ 2.0.0-beta.1] :
745
- https://github.com/CosmWasm/cosmwasm/compare/v1.5.0...v2.0.0-beta.1
763
+ [ unreleased ] : https://github.com/CosmWasm/cosmwasm/compare/v2.0.0-rc.1...HEAD
764
+ [ 2.0.0-rc.1 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.5.0...v2.0.0-rc.1
746
765
[ 1.5.0 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.4.1...v1.5.0
747
766
[ 1.4.1 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.4.0...v1.4.1
748
767
[ 1.4.0 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.3.3...v1.4.0
0 commit comments