|
1 | 1 | # CHANGELOG
|
2 | 2 |
|
| 3 | +## v3.2.0 |
| 4 | + |
| 5 | +*November 24, 2023* |
| 6 | + |
| 7 | +### BUG FIXES |
| 8 | + |
| 9 | +- [Consumer](x/ccv/consumer) |
| 10 | + - Fix deletion of pending packets that may cause duplicate sends |
| 11 | + ([\#1146](https://github.com/cosmos/interchain-security/pull/1146)) |
| 12 | + - Remove `idx` field from the `ccv.ConsumerPacketData` type as this would break the |
| 13 | + wire ([\#1150](https://github.com/cosmos/interchain-security/pull/1150)) |
| 14 | + - Validate token transfer messages before calling `Transfer()`. |
| 15 | + ([\#1244](https://github.com/cosmos/interchain-security/pull/1244)) |
| 16 | + - Remove incorrect address validation on `ProviderFeePoolAddrStr` param. |
| 17 | + ([\#1262](https://github.com/cosmos/interchain-security/pull/1262)) |
| 18 | + - Increment consumer consensus version and register consumer migration. |
| 19 | + ([\#1295](https://github.com/cosmos/interchain-security/pull/1295)) |
| 20 | + |
| 21 | +### DEPENDENCIES |
| 22 | + |
| 23 | +- Bump [ibc-go](https://github.com/cosmos/ibc-go) to |
| 24 | + [v7.2.0](https://github.com/cosmos/ibc-go/releases/tag/v7.2.0). |
| 25 | + ([\#1196](https://github.com/cosmos/interchain-security/pull/1196)) |
| 26 | +- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to |
| 27 | + [v0.47.4](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.4). |
| 28 | + ([\#1258](https://github.com/cosmos/interchain-security/pull/1258)) |
| 29 | +- Bump [ibc-go](https://github.com/cosmos/ibc-go) to |
| 30 | + [v7.3.0](https://github.com/cosmos/ibc-go/releases/tag/v7.3.0). |
| 31 | + ([\#1258](https://github.com/cosmos/interchain-security/pull/1258)) |
| 32 | +- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to |
| 33 | + [v0.47.5](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.5). |
| 34 | + ([\#1259](https://github.com/cosmos/interchain-security/pull/1259)) |
| 35 | + |
| 36 | +### FEATURES |
| 37 | + |
| 38 | +- [Consumer](x/ccv/consumer) |
| 39 | + - Add the consumer-side changes for jail throttling with retries (cf. ADR 008). |
| 40 | + ([\#1024](https://github.com/cosmos/interchain-security/pull/1024)) |
| 41 | + - Introduce the gRPC query `/interchain_security/ccv/consumer/provider- |
| 42 | + info` and CLI command `interchain-security-cd q ccvconsumer |
| 43 | + provider-info` to retrieve provider info from the consumer chain. |
| 44 | + ([\#1164](https://github.com/cosmos/interchain-security/pull/1164)) |
| 45 | +- [Provider](x/ccv/provider) |
| 46 | + - Add `InitTimeoutTimestamps` and `ExportedVscSendTimestamps` to exported |
| 47 | + genesis. ([\#1076](https://github.com/cosmos/interchain-security/pull/1076)) |
| 48 | + - Add a governance proposal for setting on the provider the denominations for |
| 49 | + rewards from consumer chains. |
| 50 | + ([\#1280](https://github.com/cosmos/interchain-security/pull/1280)) |
| 51 | + |
| 52 | +### IMPROVEMENTS |
| 53 | + |
| 54 | +- General |
| 55 | + - Update the default consumer unbonding period to 2 weeks. |
| 56 | + ([\#1244](https://github.com/cosmos/interchain-security/pull/1244)) |
| 57 | +- [Consumer](x/ccv/consumer) |
| 58 | + - Optimize pending packets storage on consumer, with migration. |
| 59 | + ([\#1037](https://github.com/cosmos/interchain-security/pull/1037)) |
| 60 | + |
| 61 | +### STATE BREAKING |
| 62 | + |
| 63 | +- General |
| 64 | + - Bump [ibc-go](https://github.com/cosmos/ibc-go) to |
| 65 | + [v7.2.0](https://github.com/cosmos/ibc-go/releases/tag/v7.2.0). |
| 66 | + ([\#1196](https://github.com/cosmos/interchain-security/pull/1196)) |
| 67 | + - Update the default consumer unbonding period to 2 weeks. |
| 68 | + ([\#1244](https://github.com/cosmos/interchain-security/pull/1244)) |
| 69 | + - Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to |
| 70 | + [v0.47.4](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.4). |
| 71 | + ([\#1258](https://github.com/cosmos/interchain-security/pull/1258)) |
| 72 | + - Bump [ibc-go](https://github.com/cosmos/ibc-go) to |
| 73 | + [v7.3.0](https://github.com/cosmos/ibc-go/releases/tag/v7.3.0). |
| 74 | + ([\#1258](https://github.com/cosmos/interchain-security/pull/1258)) |
| 75 | + - Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to |
| 76 | + [v0.47.5](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.5). |
| 77 | + ([\#1259](https://github.com/cosmos/interchain-security/pull/1259)) |
| 78 | +- [Consumer](x/ccv/consumer) |
| 79 | + - Add the consumer-side changes for jail throttling with retries (cf. ADR 008). |
| 80 | + ([\#1024](https://github.com/cosmos/interchain-security/pull/1024)) |
| 81 | + - Optimize pending packets storage on consumer, with migration. |
| 82 | + ([\#1037](https://github.com/cosmos/interchain-security/pull/1037)) |
| 83 | + - Fix deletion of pending packets that may cause duplicate sends |
| 84 | + ([\#1146](https://github.com/cosmos/interchain-security/pull/1146)) |
| 85 | + - Remove `idx` field from the `ccv.ConsumerPacketData` type as this would break the |
| 86 | + wire ([\#1150](https://github.com/cosmos/interchain-security/pull/1150)) |
| 87 | + - Validate token transfer messages before calling `Transfer()`. |
| 88 | + ([\#1244](https://github.com/cosmos/interchain-security/pull/1244)) |
| 89 | + - Remove incorrect address validation on `ProviderFeePoolAddrStr` param. |
| 90 | + ([\#1262](https://github.com/cosmos/interchain-security/pull/1262)) |
| 91 | + - Increment consumer consensus version and register consumer migration. |
| 92 | + ([\#1295](https://github.com/cosmos/interchain-security/pull/1295)) |
| 93 | +- [Provider](x/ccv/provider) |
| 94 | + - Add a governance proposal for setting on the provider the denominations for |
| 95 | + rewards from consumer chains. |
| 96 | + ([\#1280](https://github.com/cosmos/interchain-security/pull/1280)) |
| 97 | + |
3 | 98 | ## v3.1.0
|
4 | 99 |
|
5 | 100 | Date July 11th, 2023
|
|
0 commit comments