From dfa8ab886d2463c93b737730111cb7617c9630bc Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Mon, 2 Aug 2021 13:27:18 +0200 Subject: [PATCH] Add compatibility note and CHANGELOG entry [skip ci] --- CHANGELOG.md | 10 ++++++++++ packages/cosmwasm-stargate/README.md | 1 + 2 files changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02900b7d..4ea26ac0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,16 @@ and this project adheres to where there is no previous block. - @cosmjs/proto-signing: `makeAuthInfoBytes` now takes an array of pubkey sequence pairs in order to support different sequences for different signers. +- @cosmjs/cosmwasm-stargate: Upgraded client to support wasmd 0.18 backends. + Other backends are not supported anymore. Update proto types from + `cosmwasm.wasm.v1beta1.*` to `cosmwasm.wasm.v1.*`. `MsgStoreCode.source` and + `MsgStoreCode.builder` were removed; `MsgInstantiateContract.initMsg` and + `MsgMigrateContract.migrateMsg` were renamed to `msg`; `Code.{source,builder}` + and `CodeDetails.{source,builder}` were removed; `isValidBuilder` was removed; + `UploadMeta` and the `meta` from `SigningCosmWasmClient.upload` were removed. + ([#863]) + +[#863]: https://github.com/cosmos/cosmjs/pull/863 ### Removed diff --git a/packages/cosmwasm-stargate/README.md b/packages/cosmwasm-stargate/README.md index 5540220a..f6dd97f5 100644 --- a/packages/cosmwasm-stargate/README.md +++ b/packages/cosmwasm-stargate/README.md @@ -8,6 +8,7 @@ An SDK to build CosmWasm clients. | CosmWasm | x/wasm | @cosmjs/cosmwasm-stargate | | -------- | --------- | ------------------------- | +| 0.16 | 0.18 | `^0.26.0` | | 0.14 | 0.16 | `^0.25.0` | | 0.13 | 0.14-0.15 | `^0.24.0` |