@@ -6,7 +6,14 @@ and this project adheres to
66
77## [ Unreleased]
88
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
1017
1118### Fixed
1219
@@ -26,12 +33,17 @@ and this project adheres to
2633 ` SubMsgResponse::data ` . Add new type ` MsgResponse ` . ([ #1903 ] )
2734- cosmwasm-std: Add ` cosmwasm_2_0 ` feature to enable 2.0 specific functionality.
2835 ([ #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 ] )
2940
3041[ #1878 ] : https://github.com/CosmWasm/cosmwasm/pull/1878
3142[ #1903 ] : https://github.com/CosmWasm/cosmwasm/pull/1903
3243[ #1929 ] : https://github.com/CosmWasm/cosmwasm/pull/1929
3344[ #1954 ] : https://github.com/CosmWasm/cosmwasm/pull/1954
3445[ #1974 ] : https://github.com/CosmWasm/cosmwasm/pull/1974
46+ [ #2008 ] : https://github.com/CosmWasm/cosmwasm/pull/2008
3547
3648### Changed
3749
@@ -93,9 +105,14 @@ and this project adheres to
93105 ` ::addr_canonicalize ` /` ::addr_humanize ` for consistency.
94106- cosmwasm-vm: Add ` BackendApi::addr_validate ` to avoid having to do two calls
95107 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 ] )
98110- 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 ] )
99116
100117[ #1874 ] : https://github.com/CosmWasm/cosmwasm/pull/1874
101118[ #1876 ] : https://github.com/CosmWasm/cosmwasm/pull/1876
@@ -117,8 +134,11 @@ and this project adheres to
117134[ #1971 ] : https://github.com/CosmWasm/cosmwasm/pull/1971
118135[ #1973 ] : https://github.com/CosmWasm/cosmwasm/pull/1973
119136[ #1977 ] : https://github.com/CosmWasm/cosmwasm/pull/1977
137+ [ #1991 ] : https://github.com/CosmWasm/cosmwasm/pull/1991
120138[ #1992 ] : https://github.com/CosmWasm/cosmwasm/pull/1992
121139[ #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
122142
123143### Removed
124144
@@ -740,9 +760,8 @@ and this project adheres to
740760The CHANGELOG for versions before 1.0.0 was moved to
741761[ CHANGELOG-pre1.0.0.md] ( ./CHANGELOG-pre1.0.0.md ) .
742762
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
746765[ 1.5.0 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.4.1...v1.5.0
747766[ 1.4.1 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.4.0...v1.4.1
748767[ 1.4.0 ] : https://github.com/CosmWasm/cosmwasm/compare/v1.3.3...v1.4.0
0 commit comments