|
1 | 1 | # CHANGELOG
|
2 | 2 |
|
| 3 | +## v0.10.0 |
| 4 | +*January 13th, 2021* |
| 5 | + |
| 6 | +This release notably updates the underlying CLI framework (`abscissa`) to version 0.6.0-beta.1, |
| 7 | +which now uses `clap` for parsing command line arguments. This substantially improves the UX of the CLI, |
| 8 | +by adding support for `--help` flags in subcommands and improving help and usage printouts. |
| 9 | + |
| 10 | +The `--version` option of the `create channel` subcommand has been renamed |
| 11 | +to `--channel-version`, with the old name still supported as an alias. |
| 12 | +Additionally, the `-h` short flag on many commands is now `-H` to avoid |
| 13 | +clashes with the clap-provided short flag for help. |
| 14 | + |
| 15 | +This release also improves the handling of account sequence mismatch errors, |
| 16 | +with a recovery mechanism to automatically retry or drop tx upon such errors. |
| 17 | + |
| 18 | +The relayer now also supports dynamic versions in channel open handshake (which is needed by Interchain Accounts), and enables full support for IBC v2. |
| 19 | + |
| 20 | +### BREAKING CHANGES |
| 21 | + |
| 22 | +- General |
| 23 | + - Update MSRV to Rust 1.57 |
| 24 | + ([#1660](https://github.com/informalsystems/ibc-rs/issues/1660)) |
| 25 | + - Pin tendermint-rs dependencies to =0.23.2 |
| 26 | + ([#1665](https://github.com/informalsystems/ibc-rs/pull/1665)) |
| 27 | +- [IBC Modules](modules) |
| 28 | + - Add the `frozen_height()` method to the `ClientState` trait (includes breaking changes to the Tendermint `ClientState` API). |
| 29 | + ([#1618](https://github.com/informalsystems/ibc-rs/issues/1618)) |
| 30 | + - Remove `Timestamp` API that depended on the `chrono` crate: |
| 31 | + ([#1665](https://github.com/informalsystems/ibc-rs/pull/1665)): |
| 32 | + - `Timestamp::from_datetime`; use `From<tendermint::Time>` |
| 33 | + - `Timestamp::as_datetime`, superseded by `Timestamp::into_datetime` |
| 34 | +- [Relayer Library](relayer) |
| 35 | + - Improve spawning of supervisor worker tasks ([#1656](https://github.com/informalsystems/ibc-rs/issues/1656)) |
| 36 | + - The `Supervisor` struct is removed. |
| 37 | + - Supervisor is now spawned using the `spawn_supervisor` function. |
| 38 | +- [Relayer CLI](relayer-cli) |
| 39 | + - Update to abscissa framework version 0.6.0-beta.1, adding support for |
| 40 | + `--help` flags in subcommands and improving help and usage printouts. |
| 41 | + The `--version` option of the `create channel` subcommand has been renamed |
| 42 | + to `--channel-version`, with the old name still supported as an alias. |
| 43 | + Additionally, the `-h` short flag on many commands is now `-H` to avoid |
| 44 | + clashes with the clap-provided short flag for help. |
| 45 | + ([#1576](https://github.com/informalsystems/ibc-rs/pull/1576), |
| 46 | + [#1743](https://github.com/informalsystems/ibc-rs/pull/1743)) |
| 47 | + |
| 48 | +### BUG FIXES |
| 49 | + |
| 50 | +- [IBC Modules](modules) |
| 51 | + - Delete packet commitment instead of acknowledgement in acknowledgePacket |
| 52 | + [#1573](https://github.com/informalsystems/ibc-rs/issues/1573) |
| 53 | + - Set the `counterparty_channel_id` correctly to fix ICS04 [`chanOpenAck` handler verification](https://github.com/informalsystems/ibc-rs/blob/master/modules/src/core/ics04_channel/handler/chan_open_ack.rs) |
| 54 | + ([#1649](https://github.com/informalsystems/ibc-rs/issues/1649)) |
| 55 | + - Add missing assertion for non-zero trust-level in Tendermint client initialization. |
| 56 | + ([#1697](https://github.com/informalsystems/ibc-rs/issues/1697)) |
| 57 | + - Fix conversion to Protocol Buffers of `ClientState`'s `frozen_height` field. |
| 58 | + ([#1710](https://github.com/informalsystems/ibc-rs/issues/1710)) |
| 59 | +- [Relayer Library](relayer) |
| 60 | + - Handle expired client errors in workers ([#1543](https://github.com/informalsystems/ibc-rs/issues/1543)) |
| 61 | + - Perform `execute_schedule` after handling packet commands in packet worker ([#1715](https://github.com/informalsystems/ibc-rs/issues/1715)) |
| 62 | + - Do not spawn detect misbehavior task if it is disabled in config [#1750](https://github.com/informalsystems/ibc-rs/issues/1750) |
| 63 | + |
| 64 | +### FEATURES |
| 65 | + |
| 66 | +- General |
| 67 | + - Extend CI test suite to include E2E tests using Gaia v6.0.0 [#1550](https://github.com/informalsystems/ibc-rs/issues/1550) |
| 68 | + - Added the `extra_wallets` parameter to `gm` to create additional funded wallets. |
| 69 | + - Added the possibility of JSON output to `gm` by setting the environment variable `OUTPUT=json`. |
| 70 | + - Added support for fee granters through config file |
| 71 | + ([#1633](https://github.com/informalsystems/ibc-rs/issues/1633)) |
| 72 | +- [IBC Modules](modules) |
| 73 | + - Implement proof verification for Tendermint client (ICS07). |
| 74 | + ([#1583](https://github.com/informalsystems/ibc-rs/pull/1583)) |
| 75 | +- [Relayer Library](relayer) |
| 76 | + - Added a recovery mechanism to automatically retry or drop tx upon account |
| 77 | + sequence mismatch errors ([#1264](https://github.com/informalsystems/ibc-rs/issues/1264)) |
| 78 | + - Support dynamic versions in channel open handshake & enable full support for |
| 79 | + ibc-go v2 ([#1410](https://github.com/informalsystems/ibc-rs/issues/1410)) |
| 80 | + - Allow custom proof-specs in chain config |
| 81 | + ([#1561](https://github.com/informalsystems/ibc-rs/issues/1561)) |
| 82 | + |
| 83 | +### IMPROVEMENTS |
| 84 | + |
| 85 | +- General |
| 86 | + - Update `CONTRIBUTING.md` for latest version of unclog |
| 87 | + ([#1634](https://github.com/informalsystems/ibc-rs/issues/1634)) |
| 88 | +- [IBC Modules](modules) |
| 89 | + - More conventional ad-hoc conversion methods on `Timestamp` |
| 90 | + ([#1665](https://github.com/informalsystems/ibc-rs/pull/1665)): |
| 91 | + - `Timestamp::nanoseconds` replaces `Timestamp::as_nanoseconds` |
| 92 | + - `Timestamp::into_datetime` substitutes `Timestamp::as_datetime` |
| 93 | +- [Relayer CLI](relayer-cli) |
| 94 | + - Improve performance of standalone commands by starting the event monitor on-demand |
| 95 | + ([#1063](https://github.com/informalsystems/ibc-rs/issues/1063)) |
| 96 | + - Increase the default for `max_gas` from `300_000` to `400_000` |
| 97 | + ([#1636](https://github.com/informalsystems/ibc-rs/pull/1636)) |
| 98 | + |
3 | 99 | ## v0.9.0, the “Zamfir” release
|
4 | 100 | *November 23rd, 2021*
|
5 | 101 |
|
|
0 commit comments