diff --git a/CHANGELOG.md b/CHANGELOG.md index d347becf..fd4922a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,37 @@ ## [Unreleased](https://github.com/CosmWasm/wasmd/tree/HEAD) -[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.29.0...HEAD) +[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.30.0...HEAD) + +## [v0.30.0](https://github.com/CosmWasm/wasmd/tree/v0.30.0) (2022-12-02) + +[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.29.2...v0.30.0) +* Provide source, builder and codehash information in store code proposal message[\#1072](https://github.com/CosmWasm/wasmd/pull/1072) +- Upgrade to Go v1.19 [\#1044](https://github.com/CosmWasm/wasmd/pull/1044) +- Upgrade to Cosmos-sdk to v0.45.11 [/#1096](https://github.com/CosmWasm/wasmd/pull/1096/) +- Upgrade to IBC v4.2.0 with interchain-accounts v0.2.4 [\#1088](https://github.com/CosmWasm/wasmd/pull/1088) +- Preserve contract history/ created date on genesis import [\#878](https://github.com/CosmWasm/wasmd/issues/878) +- Authz module integration - more granularity for WasmExecuteMsg authorizations [\#803](https://github.com/CosmWasm/wasmd/issues/803) +- StoreAndInstantiate gov proposal [\#785](https://github.com/CosmWasm/wasmd/issues/785) +- Start developer guide for contributors [\#654](https://github.com/CosmWasm/wasmd/issues/654) + +### Notable changes: +- IBC fee middleware is setup in `app.go`. Please note that it can be enabled with new channels only. A nice read is this [article](https://medium.com/the-interchain-foundation/ibc-relaying-as-a-service-the-in-protocol-incentivization-story-2c008861a957). +- Authz for wasm contracts can be granted via `wasmd tx wasm grant` and executed via `wasmd tx authz exec` command +- Go v1.19 required to prevent a mixed chain setup with older versions. Just to be on the safe side. +- Store code proposal types have new metadata fields added that can help to build client side tooling to verify the wasm contract in the proposal + +### Migration notes: +- See ibc-go [migration notes](https://github.com/cosmos/ibc-go/blob/v4.2.0/docs/migrations) +- See interchain-accounts [`MsgRegisterAccount.Version` field](https://github.com/cosmos/interchain-accounts-demo/compare/v0.1.0...v0.2.4#diff-ac8bca25810de6d3eef95f74fc9acf2223f3687822e6227b584e0d3b40db6566). Full diff [v0.1.0 to v0.2.4](https://github.com/cosmos/interchain-accounts-demo/compare/v0.1.0...v0.2.4) + +## [v0.29.2](https://github.com/CosmWasm/wasmd/tree/v0.29.2) (2022-11-08) + +- Fixes missing instantiate-anyof-addresses flag declaration for gov [/#1084](https://github.com/CosmWasm/wasmd/issues/1084) + +## [v0.29.1](https://github.com/CosmWasm/wasmd/tree/v0.29.1) (2022-10-14) + +- Upgrade to Cosmos-sdk to v45.9 [/#1052](https://github.com/CosmWasm/wasmd/pull/1052/) ## [v0.29.0](https://github.com/CosmWasm/wasmd/tree/v0.29.0) (2022-10-10) @@ -12,7 +42,6 @@ - Allow AccessConfig to use a list of addresses instead of just a single address [\#945](https://github.com/CosmWasm/wasmd/issues/945) - Make contract addresses predictable \("deterministic"\) [\#942](https://github.com/CosmWasm/wasmd/issues/942) - Add query for the total supply of a coin [\#903](https://github.com/CosmWasm/wasmd/pull/903) ([larry0x](https://github.com/larry0x)) -- Upgrade go to v1.19 [\#1044](https://github.com/CosmWasm/wasmd/pull/1044) - Upgrade go to v1.18 [\#866]https://github.com/CosmWasm/wasmd/pull/866/) ([faddat](https://github.com/faddat)) - Upgrade to ibc-go v3.3.0 REQUIRES [MIGRATION](https://github.com/cosmos/ibc-go/blob/v3.2.3/docs/migrations/support-denoms-with-slashes.md) [\#1016](https://github.com/CosmWasm/wasmd/pull/1016) - Upgrade to cosmos-sdk v0.45.8 [\#964](https://github.com/CosmWasm/wasmd/pull/964/) ([faddat](https://github.com/faddat)) diff --git a/INTEGRATION.md b/INTEGRATION.md index b01d1e42..253d1f71 100644 --- a/INTEGRATION.md +++ b/INTEGRATION.md @@ -19,6 +19,7 @@ hardware it runs on. | wasmd | Cosmos SDK | |:-----:|:----------:| +| v0.30 | v0.45.11 | | v0.29 | v0.45.8 | | v0.28 | v0.45.5 | | v0.27 | v0.45.4 | diff --git a/README.md b/README.md index ebdc070d..367492f4 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ compatibility list: | wasmd | wasmvm | cosmwasm-vm | cosmwasm-std | |-------|--------------|-------------|--------------| +| 0.30 | v1.1.0 | | 1.0-1.1 | | 0.29 | v1.1.0 | | 1.0-1.1 | | 0.28 | v1.0.0 | | 1.0-1.1 | | 0.27 | v1.0.0 | | 1.0 | @@ -115,7 +116,8 @@ The protobuf files for this project are published automatically to the [buf repo | wasmd version | buf tag | |---------------|---------------------------------------------------------------------------------------------------------------------------------------------| -| 0.26.x | [51931206dbe09529c1819a8a2863d291035a2549](https://buf.build/cosmwasm/wasmd/tree/51931206dbe09529c1819a8a2863d291035a2549:cosmwasm/wasm/v1) | +| 0.30.x | [6508ee062011440c907de6f5c40398ea](https://buf.build/cosmwasm/wasmd/tree/6508ee062011440c907de6f5c40398ea:cosmwasm/wasm/v1) | +| 0.29.x | [51931206dbe09529c1819a8a2863d291035a2549](https://buf.build/cosmwasm/wasmd/tree/51931206dbe09529c1819a8a2863d291035a2549:cosmwasm/wasm/v1) | Generate protobuf ```shell script