Skip to content

Commit

Permalink
Update changelog for v0.54.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
seanchen1991 committed Aug 9, 2024
1 parent 6a4ef5f commit 06235cc
Show file tree
Hide file tree
Showing 21 changed files with 37 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .changelog/v0.54.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!--
Add a summary for the release here.
If you don't change this message, or if this file is empty, the release
will not be created. -->

This release includes a number of breaking changes, including separating the packet
timeout timestamp from the host `Timestamp` via defining a new bespoke `TimeoutTimestamp`
type. The `cosmwasm` feature flag has been removed. CosmWasm implementations have also
been migrated into their own separate workspace under the `cosmwasm` directory in an
effort to simplify dependency management.

Notable bug fixes include:
- correctly preventing expired client creation
- expiring clients when the elapsed time from a trusted header matches the trusting period
- allowing user-defined upgrade paths for client upgrades rather than just defaulting to `UPGRADED_IBC_STATE`
- preventing `Timestamp::nanoseconds` from panicking by disallowing negative values from `tendermint::Time`

Lastly, this release adds some new features, including allowing proof verification methods to accept custom paths, thus allowing light client developers to introduce custom path serialization logic into their applications. CosmWasm response types have been refactored to match the `08-wasm` client API.

This release bumps the MSRV of ibc-rs to 1.72.1. The `cosmwasm` dependency has also been bumped to 2.1.0.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@

*August 9, 2024*

This release includes a number of breaking changes, including separating the packet
timeout timestamp from the host `Timestamp` via defining a new bespoke `TimeoutTimestamp`
type. The `cosmwasm` feature flag has been removed. CosmWasm implementations have also
been migrated into their own separate workspace under the `cosmwasm` directory in an
effort to simplify dependency management.

Notable bug fixes include:
- correctly preventing expired client creation
- expiring clients when the elapsed time from a trusted header matches the trusting period
- allowing user-defined upgrade paths for client upgrades rather than just defaulting to `UPGRADED_IBC_STATE`
- preventing `Timestamp::nanoseconds` from panicking by disallowing negative values from `tendermint::Time`

Lastly, this release adds some new features, including allowing proof verification methods to accept custom paths, thus allowing light client developers to introduce custom path serialization logicinto their applications. CosmWasm response types have been refactored to match the `08-wasm` client API.

This release bumps the MSRV of ibc-rs to 1.72.1. The `cosmwasm` dependency has also been bumped to 2.1.0.

### BREAKING CHANGES

- [ibc-primitive] Decouple `Timestamp` definition from `tendermint::Time`.
Expand Down

0 comments on commit 06235cc

Please sign in to comment.