cosmos/cosmjs (@cosmjs/proto-signing)
### [`v0.32.4`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0324---2024-06-26)
[Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.32.3...v0.32.4)
##### Fixed
- [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): fix node info check to accept empty string on channels
field (\[[#1591](https://redirect.github.com/cosmos/cosmjs/issues/1591)])
##### Added
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add support for `MsgCancelUnbondingDelegation` ([#1535])
[#1535]: https://redirect.github.com/cosmos/cosmjs/pull/1535
##### Changed
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate), [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Synchronize the default gas
multiplier value between the `signAndBroadcast` and `signAndBroadcastSync`
methods so that it is equal to 1.4 everywhere. (\[[#1584](https://redirect.github.com/cosmos/cosmjs/issues/1584)])
### [`v0.32.3`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0323---2024-03-08)
[Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.32.2...v0.32.3)
##### Changed
- [@cosmjs/amino](https://redirect.github.com/cosmjs/amino): Add IBC denom support to `parseCoins` and use the same
implementation in all those imports:
```ts
import { parseCoins } from "@cosmjs/proto-signing";
// equals
import { parseCoins } from "@cosmjs/stargate";
// equals
import { parseCoins } from "@cosmjs/amino";
```
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Let `parseRawLog` gracefully handle empty strings to better
support Cosmos SDK 0.50 inputs. ([#1564])
[#1564]: https://redirect.github.com/cosmos/cosmjs/pull/1564
##### Fixed
- [@cosmjs/encoding](https://redirect.github.com/cosmjs/encoding): Avoid using replacement character in doc comment to make
external tools happy. ([#1570])
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Use events instead of log parsing to receive
information in SigningCosmWasmClient. This is required to support Cosmos SDK
0.50+ where the `rawLog` field is empty. ([#1564])
[#1564]: https://redirect.github.com/cosmos/cosmjs/pull/1564
[#1570]: https://redirect.github.com/cosmos/cosmjs/pull/1570
### [`v0.32.2`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0322---2023-12-19)
[Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.32.1...v0.32.2)
##### Fixed
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Update validation of `GasPrice.fromString` to allow using
IBC denoms as gas denom. ([#1522])
[#1522]: https://redirect.github.com/cosmos/cosmjs/pull/1522
##### Changed
- [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Require protocol to be set in endpoint URLs (https://,
http://, wss:// or ws://). Otherwise an error is raised instead of falling
back to ws://. ([#1527])
[#1527]: https://redirect.github.com/cosmos/cosmjs/pull/1527
### [`v0.32.1`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0321---2023-12-04)
[Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.32.0...v0.32.1)
##### Fixed
- [@cosmjs/encoding](https://redirect.github.com/cosmjs/encoding): Ensure RFC dates between years 0001 and 0099 are parsed
correctly. ([#1516])
- [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Remove hacky `decodeOptionalTime()` from adaptors now
that `time.Time` dates are parsed correctly. ([#1516])
[#1516]: https://redirect.github.com/cosmos/cosmjs/pull/1516
### [`v0.32.0`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0320---2023-11-23)
[Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.31.3...v0.32.0)
##### Added
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate) and [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate):
`sign`/`signAndBroadcast`/`signAndBroadcastSync` and related functions now
have an additional parameter to specify the timeout height. After this height,
a signed transaction will be considered invalid by the chain. ([#1489])
- [@cosmjs/amino](https://redirect.github.com/cosmjs/amino): Export `omitDefault` to help build Amino JSON converters.
[#1489]: https://redirect.github.com/cosmos/cosmjs/pull/1489
##### Fixed
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Handle key value pairs in tx search correctly if the value
is a numeric value. ([#1462])
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Make `fix_msg` optional in
`AminoMsgInstantiateContract2` and omit default in the Amino JSON converter to
fix Amino JSON signing for MsgInstantiateContract2. ([#1509])
[#1462]: https://redirect.github.com/cosmos/cosmjs/issues/1462
[#1509]: https://redirect.github.com/cosmos/cosmjs/pull/1509
##### Changed
- all: Upgrade cosmjs-types to 0.9.0. This makes a few fields non-optional. It
changes all 64 bit int fields from type `long` to `bigint`. As part of the
upgrade, the types do not require the `long` and `protobufjs` anymore.
([#1484])
- all: `gasWanted`/`gasUsed` fields were changed from type `number` to `bigint`
to supported cases where users put very high gas values in there ([#1465]).
- Drop support for Node.js 14 and add support for Node.js 20. ([#1421])
- [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Remove `Adaptor` abstractions which are not needed
anymore by haing a dedicated client for each backend.
- [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Add
`CometClient = Tendermint34Client | Tendermint37Client | Comet38Client` and
`connectComet` for auto-detecting the right client for a provided endpoint.
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Let `SigningStargateClient.createWithSigner` and
`StargateClient.create` take a `CometClient` argument, adding support for
`Comet38Client`. The auto-detection in
`SigningStargateClient.connectWithSigner` and `StargateClient.connect` now
supports CometBFT 0.38. Rename
`StargateClient.getTmClient`/`.forceGetTmClient` to
`.getCometClient`/`.forceGetCometClient`.
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Let `SigningCosmWasmClient.createWithSigner` and
`CosmWasmClient.create` take a `CometClient` argument, adding support for
`Comet38Client`. The auto-detection in
`SigningCosmWasmClient.connectWithSigner` and `CosmWasmClient.connect` now
supports CometBFT 0.38. Rename
`CosmWasmClient.getTmClient`/`.forceGetTmClient` to
`.getCometClient`/`.forceGetCometClient`.
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Remove interfaces `SearchBySentFromOrToQuery` and
`SearchByHeightQuery` which became obsolete with the `searchTx` change in
0.31.0.
[#1421]: https://redirect.github.com/cosmos/cosmjs/issues/1421
[#1465]: https://redirect.github.com/cosmos/cosmjs/issues/1465
[#1484]: https://redirect.github.com/cosmos/cosmjs/pull/1484
##### Deprecated
- [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): `CometClient` should be used instead of
`TendermintClient`.
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Deprecate `SigningStargateClient.sendIbcTokens`. Please use
`signAndBroadcast` + `MsgTransferEncodeObject` instead. ([#1493])
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Deprecate `IndexedTx.rawLog` and `DeliverTxResponse.rawLog`
because those fields are unset from Cosmos SDK 0.50 onwards (see
[here](https://redirect.github.com/cosmos/cosmos-sdk/pull/15845)).
[#1493]: https://redirect.github.com/cosmos/cosmjs/issues/1493
### [`v0.31.3`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0313---2023-10-25)
[Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.31.2...v0.31.3)
##### Fixed
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add missing memo field to `fromAmino` implementation for
`MsgTransfer`. ([#1493])
[#1493]: https://redirect.github.com/cosmos/cosmjs/issues/1493
### [`v0.31.2`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0312---2023-10-24)
[Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.31.1...v0.31.2)
##### Fixed
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add missing memo field to Amino JSON representation of
`MsgTransfer` and adapt converters. ([#1456])
[#1456]: https://redirect.github.com/cosmos/cosmjs/pull/1456
### [`v0.31.1`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0311---2023-08-21)
[Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.31.0...v0.31.1)
##### Fixed
- [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Add missing `earliest_*` fields to `SyncInfo` record
returned from the `/status` RPC endpoint (\[[#1448](https://redirect.github.com/cosmos/cosmjs/issues/1448)]).
##### Changed
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate), [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Change default multiplier for gas
simulation from 1.3 to 1.4 to avoid out of case cases starting with Cosmos SDK
0.47.
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Reduce default gas multiplier for
`SigningCosmWasmClient.upload` to 1.1. ([#1360])
[#1360]: https://redirect.github.com/cosmos/cosmjs/issues/1360
### [`v0.31.0`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0310---2023-06-22)
[Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.30.1...v0.31.0)
##### Fixed
- [@cosmjs/crypto](https://redirect.github.com/cosmjs/crypto): Migrate to `libsodium-wrappers-sumo` to be able to use the
`crypto_pwhash` functions ([#1429]).
[#1429]: https://redirect.github.com/cosmos/cosmjs/issues/1429
##### Added
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Add `SigningCosmWasmClient.instantiate2` ([#1407]).
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Add `CosmWasmClient.getContractsByCreator`
([#1266]).
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): `IndexedTx` and `DeliverTxResponse` now have a
`msgResponses` field ([#1305]).
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Add `CosmWasmClient.broadcastTxSync` and
`SigningCosmWasmClient.signAndBroadcastSync` to allow broadcasting without
waiting for block inclusion. ([#1396])
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add `StargateClient.broadcastTxSync` and
`SigningStargateClient.signAndBroadcastSync` to allow broadcasting without
waiting for block inclusion. ([#1396])
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Add Amino JSON support for
`MsgStoreCode.instantiate_permission`. ([#334])
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add group and gov v1 message types
[#334]: https://redirect.github.com/cosmos/cosmjs/issues/334
[#1266]: https://redirect.github.com/cosmos/cosmjs/issues/1266
[#1305]: https://redirect.github.com/cosmos/cosmjs/issues/1305
[#1396]: https://redirect.github.com/cosmos/cosmjs/pull/1396
[#1407]: https://redirect.github.com/cosmos/cosmjs/pull/1407
##### Changed
- all: upgrade cosmjs-types to 0.8.0 to include Cosmos SDK 0.46/0.47 and IBC v7
types.
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Implement auto-detection for Tendermint 0.34/37
([#1411]).
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Remove structured `searchTx` queries. Only raw
query strings and key/value pairs are now supported. ([#1411])
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Let `searchTx` return non-readonly array. The
caller owns this array and can mutate it as they want. ([#1411])
- [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): In `UploadResult` (result from
`SigningCosmWasmClient.upload`), rename `originalChecksum` to `checksum` and
remove `compressedChecksum` ([#1409]).
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Implement auto-detection for Tendermint 0.34/37 ([#1411]).
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Remove structured `searchTx` queries. Only raw query strings
and key/value pairs are now supported. ([#1411])
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Let `searchTx` return non-readonly array. The caller owns
this array and can mutate it as they want. ([#1411])
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Remove `QueryClient.queryUnverified` and
`QueryClient.queryVerified`. Please use `QueryClient.queryAbci` and
`QueryClient.queryStoreVerified` instead.
- [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Remove "not_supported_by_chain" option for Amino converter
types since this is not needed anymore. ([#1403])
[#1403]: https://redirect.github.com/cosmos/cosmjs/issues/1403
[#1409]: https://redirect.github.com/cosmos/cosmjs/issues/1409
[#1411]: https://redirect.github.com/cosmos/cosmjs/pull/1411
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
0.30.1
->0.32.4
Release Notes
cosmos/cosmjs (@cosmjs/proto-signing)
### [`v0.32.4`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0324---2024-06-26) [Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.32.3...v0.32.4) ##### Fixed - [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): fix node info check to accept empty string on channels field (\[[#1591](https://redirect.github.com/cosmos/cosmjs/issues/1591)]) ##### Added - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add support for `MsgCancelUnbondingDelegation` ([#1535]) [#1535]: https://redirect.github.com/cosmos/cosmjs/pull/1535 ##### Changed - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate), [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Synchronize the default gas multiplier value between the `signAndBroadcast` and `signAndBroadcastSync` methods so that it is equal to 1.4 everywhere. (\[[#1584](https://redirect.github.com/cosmos/cosmjs/issues/1584)]) ### [`v0.32.3`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0323---2024-03-08) [Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.32.2...v0.32.3) ##### Changed - [@cosmjs/amino](https://redirect.github.com/cosmjs/amino): Add IBC denom support to `parseCoins` and use the same implementation in all those imports: ```ts import { parseCoins } from "@cosmjs/proto-signing"; // equals import { parseCoins } from "@cosmjs/stargate"; // equals import { parseCoins } from "@cosmjs/amino"; ``` - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Let `parseRawLog` gracefully handle empty strings to better support Cosmos SDK 0.50 inputs. ([#1564]) [#1564]: https://redirect.github.com/cosmos/cosmjs/pull/1564 ##### Fixed - [@cosmjs/encoding](https://redirect.github.com/cosmjs/encoding): Avoid using replacement character in doc comment to make external tools happy. ([#1570]) - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Use events instead of log parsing to receive information in SigningCosmWasmClient. This is required to support Cosmos SDK 0.50+ where the `rawLog` field is empty. ([#1564]) [#1564]: https://redirect.github.com/cosmos/cosmjs/pull/1564 [#1570]: https://redirect.github.com/cosmos/cosmjs/pull/1570 ### [`v0.32.2`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0322---2023-12-19) [Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.32.1...v0.32.2) ##### Fixed - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Update validation of `GasPrice.fromString` to allow using IBC denoms as gas denom. ([#1522]) [#1522]: https://redirect.github.com/cosmos/cosmjs/pull/1522 ##### Changed - [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Require protocol to be set in endpoint URLs (https://, http://, wss:// or ws://). Otherwise an error is raised instead of falling back to ws://. ([#1527]) [#1527]: https://redirect.github.com/cosmos/cosmjs/pull/1527 ### [`v0.32.1`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0321---2023-12-04) [Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.32.0...v0.32.1) ##### Fixed - [@cosmjs/encoding](https://redirect.github.com/cosmjs/encoding): Ensure RFC dates between years 0001 and 0099 are parsed correctly. ([#1516]) - [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Remove hacky `decodeOptionalTime()` from adaptors now that `time.Time` dates are parsed correctly. ([#1516]) [#1516]: https://redirect.github.com/cosmos/cosmjs/pull/1516 ### [`v0.32.0`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0320---2023-11-23) [Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.31.3...v0.32.0) ##### Added - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate) and [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): `sign`/`signAndBroadcast`/`signAndBroadcastSync` and related functions now have an additional parameter to specify the timeout height. After this height, a signed transaction will be considered invalid by the chain. ([#1489]) - [@cosmjs/amino](https://redirect.github.com/cosmjs/amino): Export `omitDefault` to help build Amino JSON converters. [#1489]: https://redirect.github.com/cosmos/cosmjs/pull/1489 ##### Fixed - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Handle key value pairs in tx search correctly if the value is a numeric value. ([#1462]) - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Make `fix_msg` optional in `AminoMsgInstantiateContract2` and omit default in the Amino JSON converter to fix Amino JSON signing for MsgInstantiateContract2. ([#1509]) [#1462]: https://redirect.github.com/cosmos/cosmjs/issues/1462 [#1509]: https://redirect.github.com/cosmos/cosmjs/pull/1509 ##### Changed - all: Upgrade cosmjs-types to 0.9.0. This makes a few fields non-optional. It changes all 64 bit int fields from type `long` to `bigint`. As part of the upgrade, the types do not require the `long` and `protobufjs` anymore. ([#1484]) - all: `gasWanted`/`gasUsed` fields were changed from type `number` to `bigint` to supported cases where users put very high gas values in there ([#1465]). - Drop support for Node.js 14 and add support for Node.js 20. ([#1421]) - [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Remove `Adaptor` abstractions which are not needed anymore by haing a dedicated client for each backend. - [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Add `CometClient = Tendermint34Client | Tendermint37Client | Comet38Client` and `connectComet` for auto-detecting the right client for a provided endpoint. - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Let `SigningStargateClient.createWithSigner` and `StargateClient.create` take a `CometClient` argument, adding support for `Comet38Client`. The auto-detection in `SigningStargateClient.connectWithSigner` and `StargateClient.connect` now supports CometBFT 0.38. Rename `StargateClient.getTmClient`/`.forceGetTmClient` to `.getCometClient`/`.forceGetCometClient`. - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Let `SigningCosmWasmClient.createWithSigner` and `CosmWasmClient.create` take a `CometClient` argument, adding support for `Comet38Client`. The auto-detection in `SigningCosmWasmClient.connectWithSigner` and `CosmWasmClient.connect` now supports CometBFT 0.38. Rename `CosmWasmClient.getTmClient`/`.forceGetTmClient` to `.getCometClient`/`.forceGetCometClient`. - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Remove interfaces `SearchBySentFromOrToQuery` and `SearchByHeightQuery` which became obsolete with the `searchTx` change in 0.31.0. [#1421]: https://redirect.github.com/cosmos/cosmjs/issues/1421 [#1465]: https://redirect.github.com/cosmos/cosmjs/issues/1465 [#1484]: https://redirect.github.com/cosmos/cosmjs/pull/1484 ##### Deprecated - [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): `CometClient` should be used instead of `TendermintClient`. - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Deprecate `SigningStargateClient.sendIbcTokens`. Please use `signAndBroadcast` + `MsgTransferEncodeObject` instead. ([#1493]) - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Deprecate `IndexedTx.rawLog` and `DeliverTxResponse.rawLog` because those fields are unset from Cosmos SDK 0.50 onwards (see [here](https://redirect.github.com/cosmos/cosmos-sdk/pull/15845)). [#1493]: https://redirect.github.com/cosmos/cosmjs/issues/1493 ### [`v0.31.3`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0313---2023-10-25) [Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.31.2...v0.31.3) ##### Fixed - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add missing memo field to `fromAmino` implementation for `MsgTransfer`. ([#1493]) [#1493]: https://redirect.github.com/cosmos/cosmjs/issues/1493 ### [`v0.31.2`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0312---2023-10-24) [Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.31.1...v0.31.2) ##### Fixed - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add missing memo field to Amino JSON representation of `MsgTransfer` and adapt converters. ([#1456]) [#1456]: https://redirect.github.com/cosmos/cosmjs/pull/1456 ### [`v0.31.1`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0311---2023-08-21) [Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.31.0...v0.31.1) ##### Fixed - [@cosmjs/tendermint-rpc](https://redirect.github.com/cosmjs/tendermint-rpc): Add missing `earliest_*` fields to `SyncInfo` record returned from the `/status` RPC endpoint (\[[#1448](https://redirect.github.com/cosmos/cosmjs/issues/1448)]). ##### Changed - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate), [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Change default multiplier for gas simulation from 1.3 to 1.4 to avoid out of case cases starting with Cosmos SDK 0.47. - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Reduce default gas multiplier for `SigningCosmWasmClient.upload` to 1.1. ([#1360]) [#1360]: https://redirect.github.com/cosmos/cosmjs/issues/1360 ### [`v0.31.0`](https://redirect.github.com/cosmos/cosmjs/blob/HEAD/CHANGELOG.md#0310---2023-06-22) [Compare Source](https://redirect.github.com/cosmos/cosmjs/compare/v0.30.1...v0.31.0) ##### Fixed - [@cosmjs/crypto](https://redirect.github.com/cosmjs/crypto): Migrate to `libsodium-wrappers-sumo` to be able to use the `crypto_pwhash` functions ([#1429]). [#1429]: https://redirect.github.com/cosmos/cosmjs/issues/1429 ##### Added - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Add `SigningCosmWasmClient.instantiate2` ([#1407]). - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Add `CosmWasmClient.getContractsByCreator` ([#1266]). - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): `IndexedTx` and `DeliverTxResponse` now have a `msgResponses` field ([#1305]). - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Add `CosmWasmClient.broadcastTxSync` and `SigningCosmWasmClient.signAndBroadcastSync` to allow broadcasting without waiting for block inclusion. ([#1396]) - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add `StargateClient.broadcastTxSync` and `SigningStargateClient.signAndBroadcastSync` to allow broadcasting without waiting for block inclusion. ([#1396]) - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Add Amino JSON support for `MsgStoreCode.instantiate_permission`. ([#334]) - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Add group and gov v1 message types [#334]: https://redirect.github.com/cosmos/cosmjs/issues/334 [#1266]: https://redirect.github.com/cosmos/cosmjs/issues/1266 [#1305]: https://redirect.github.com/cosmos/cosmjs/issues/1305 [#1396]: https://redirect.github.com/cosmos/cosmjs/pull/1396 [#1407]: https://redirect.github.com/cosmos/cosmjs/pull/1407 ##### Changed - all: upgrade cosmjs-types to 0.8.0 to include Cosmos SDK 0.46/0.47 and IBC v7 types. - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Implement auto-detection for Tendermint 0.34/37 ([#1411]). - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Remove structured `searchTx` queries. Only raw query strings and key/value pairs are now supported. ([#1411]) - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): Let `searchTx` return non-readonly array. The caller owns this array and can mutate it as they want. ([#1411]) - [@cosmjs/cosmwasm-stargate](https://redirect.github.com/cosmjs/cosmwasm-stargate): In `UploadResult` (result from `SigningCosmWasmClient.upload`), rename `originalChecksum` to `checksum` and remove `compressedChecksum` ([#1409]). - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Implement auto-detection for Tendermint 0.34/37 ([#1411]). - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Remove structured `searchTx` queries. Only raw query strings and key/value pairs are now supported. ([#1411]) - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Let `searchTx` return non-readonly array. The caller owns this array and can mutate it as they want. ([#1411]) - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Remove `QueryClient.queryUnverified` and `QueryClient.queryVerified`. Please use `QueryClient.queryAbci` and `QueryClient.queryStoreVerified` instead. - [@cosmjs/stargate](https://redirect.github.com/cosmjs/stargate): Remove "not_supported_by_chain" option for Amino converter types since this is not needed anymore. ([#1403]) [#1403]: https://redirect.github.com/cosmos/cosmjs/issues/1403 [#1409]: https://redirect.github.com/cosmos/cosmjs/issues/1409 [#1411]: https://redirect.github.com/cosmos/cosmjs/pull/1411Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.