-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* cleanup changelog.md * docs: adopt unclog for updating the changelog (#1410) * adding .changelog entries up to v3.2.x * clean CHANGELOG.md * add provider-side throttling chagelog entry * add jail throttling as state-breaking change * add v3.2.0 to changlog.md * update release notes * cherry-pick changelog entry for #1280
- Loading branch information
Showing
34 changed files
with
219 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
project_url = "https://github.com/cosmos/interchain-security" | ||
|
||
# Settings related to components/sub-modules. Only relevant if you make use of | ||
# components/sub-modules. | ||
[components] | ||
|
||
# The title to use for the section of entries not relating to a specific | ||
# component. | ||
general_entries_title = "General" | ||
|
||
# The number of spaces to inject before each component-related entry. | ||
entry_indent = 2 | ||
|
||
# The components themselves. Each component has a name (used when rendered | ||
# to Markdown) and a path relative to the project folder (i.e. relative to | ||
# the parent of the `.changelog` folder). | ||
[components.all] | ||
provider = { name = "Provider", path = "x/ccv/provider" } | ||
consumer = { name = "Consumer", path = "x/ccv/consumer" } | ||
tests = { name = "Tests", path = "tests" } | ||
docs = { name = "Documentation", path = "docs/docs" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
## v3.1.0 | ||
|
||
Date July 11th, 2023 | ||
|
||
A minor upgrade to v3.0.0, which removes the panic in the consumer ccv module which would occur in an emergency scenario where the ccv channel is closed. This release also fixes how a distribution related event is emitted, and bumps cometbft. | ||
|
||
* (feat) [#1127](https://github.com/cosmos/interchain-security/pull/1127) Remove consumer panic when ccv channel is closed | ||
* (fix) [#720](https://github.com/cosmos/interchain-security/issues/720) Fix the attribute `AttributeDistributionTotal` value in `FeeDistribution` event emit. | ||
* (deps) [#1119](https://github.com/cosmos/interchain-security/pull/1119) bump cometbft from `v0.37.1` to `0.37.2`. | ||
|
||
## v3.0.0 | ||
|
||
Date: June 21st, 2023 | ||
|
||
Interchain Security v3 uses SDK 0.47 and IBC 7. | ||
|
||
* (fix) [#1093](https://github.com/cosmos/interchain-security/pull/1093) Make SlashPacketData backward compatible when sending data over the wire | ||
* (deps) [#1019](https://github.com/cosmos/interchain-security/pull/1019) Bump multiple dependencies. | ||
* Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to [v0.47.3](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.3). | ||
* Bump [ibc-go](https://github.com/cosmos/ibc-go) to [v7.1.0](https://github.com/cosmos/ibc-go/releases/tag/v7.1.0). | ||
* Bump [CometBFT](https://github.com/cometbft/cometbft) to [v0.37.1](https://github.com/cometbft/cometbft/releases/tag/v0.37.1). | ||
* `[x/ccv/provider]` (fix) [#945](https://github.com/cosmos/interchain-security/issues/945) Refactor `AfterUnbondingInitiated` to not panic when `PutUnbondingOnHold` returns error. | ||
* `[x/ccv/provider]` (fix) [#977](https://github.com/cosmos/interchain-security/pull/977) Avoids panicking the provider when an unbonding delegation was removed through a `CancelUnbondingDelegation` message. | ||
* `[x/ccv/democracy]` (feat) [#1019](https://github.com/cosmos/interchain-security/pull/1019) Whitelisting non-legacy params in the "democracy module" require the entire module to be whitelisted. | ||
|
||
## Previous Versions | ||
|
||
[CHANGELOG of previous versions](https://github.com/cosmos/interchain-security/blob/main/CHANGELOG.md) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Fix deletion of pending packets that may cause duplicate sends | ||
([\#1146](https://github.com/cosmos/interchain-security/pull/1146)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/bug-fixes/consumer/1150-revert-wire-breaking.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Remove `idx` field from the `ccv.ConsumerPacketData` type as this would break the | ||
wire ([\#1150](https://github.com/cosmos/interchain-security/pull/1150)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/bug-fixes/consumer/1244-validate-transfer.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Validate token transfer messages before calling `Transfer()`. | ||
([\#1244](https://github.com/cosmos/interchain-security/pull/1244)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Remove incorrect address validation on `ProviderFeePoolAddrStr` param. | ||
([\#1262](https://github.com/cosmos/interchain-security/pull/1262)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Increment consumer consensus version and register consumer migration. | ||
([\#1295](https://github.com/cosmos/interchain-security/pull/1295)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Bump [ibc-go](https://github.com/cosmos/ibc-go) to | ||
[v7.2.0](https://github.com/cosmos/ibc-go/releases/tag/v7.2.0). | ||
([\#1196](https://github.com/cosmos/interchain-security/pull/1196)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Bump [ibc-go](https://github.com/cosmos/ibc-go) to | ||
[v7.3.0](https://github.com/cosmos/ibc-go/releases/tag/v7.3.0). | ||
([\#1258](https://github.com/cosmos/interchain-security/pull/1258)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to | ||
[v0.47.4](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.4). | ||
([\#1258](https://github.com/cosmos/interchain-security/pull/1258)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to | ||
[v0.47.5](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.5). | ||
([\#1259](https://github.com/cosmos/interchain-security/pull/1259)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/features/consumer/1024-jail-throttling-v2.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Add the consumer-side changes for jail throttling with retries (cf. ADR 008). | ||
([\#1024](https://github.com/cosmos/interchain-security/pull/1024)) |
4 changes: 4 additions & 0 deletions
4
.changelog/v3.2.0/features/consumer/1164-provider-info-query.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- Introduce the gRPC query `/interchain_security/ccv/consumer/provider- | ||
info` and CLI command `interchain-security-cd q ccvconsumer | ||
provider-info` to retrieve provider info from the consumer chain. | ||
([\#1164](https://github.com/cosmos/interchain-security/pull/1164)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/features/provider/1076-export-timestamps.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Add `InitTimeoutTimestamps` and `ExportedVscSendTimestamps` to exported | ||
genesis. ([\#1076](https://github.com/cosmos/interchain-security/pull/1076)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Add a governance proposal for setting on the provider the denominations for | ||
rewards from consumer chains. | ||
([\#1280](https://github.com/cosmos/interchain-security/pull/1280)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Update the default consumer unbonding period to 2 weeks. | ||
([\#1244](https://github.com/cosmos/interchain-security/pull/1244)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/improvements/consumer/1037-optimize-storage.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Optimize pending packets storage on consumer, with migration. | ||
([\#1037](https://github.com/cosmos/interchain-security/pull/1037)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Bump [ibc-go](https://github.com/cosmos/ibc-go) to | ||
[v7.2.0](https://github.com/cosmos/ibc-go/releases/tag/v7.2.0). | ||
([\#1196](https://github.com/cosmos/interchain-security/pull/1196)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Update the default consumer unbonding period to 2 weeks. | ||
([\#1244](https://github.com/cosmos/interchain-security/pull/1244)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Bump [ibc-go](https://github.com/cosmos/ibc-go) to | ||
[v7.3.0](https://github.com/cosmos/ibc-go/releases/tag/v7.3.0). | ||
([\#1258](https://github.com/cosmos/interchain-security/pull/1258)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to | ||
[v0.47.4](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.4). | ||
([\#1258](https://github.com/cosmos/interchain-security/pull/1258)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Bump [cosmos-sdk](https://github.com/cosmos/cosmos-sdk) to | ||
[v0.47.5](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.5). | ||
([\#1259](https://github.com/cosmos/interchain-security/pull/1259)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/state-breaking/consumer/1024-jail-throttling-v2.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Add the consumer-side changes for jail throttling with retries (cf. ADR 008). | ||
([\#1024](https://github.com/cosmos/interchain-security/pull/1024)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/state-breaking/consumer/1037-optimize-storage.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Optimize pending packets storage on consumer, with migration. | ||
([\#1037](https://github.com/cosmos/interchain-security/pull/1037)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/state-breaking/consumer/1146-pending-packets.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Fix deletion of pending packets that may cause duplicate sends | ||
([\#1146](https://github.com/cosmos/interchain-security/pull/1146)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/state-breaking/consumer/1150-revert-wire-breaking.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Remove `idx` field from the `ccv.ConsumerPacketData` type as this would break the | ||
wire ([\#1150](https://github.com/cosmos/interchain-security/pull/1150)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/state-breaking/consumer/1244-validate-transfer.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Validate token transfer messages before calling `Transfer()`. | ||
([\#1244](https://github.com/cosmos/interchain-security/pull/1244)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v3.2.0/state-breaking/consumer/1262-fee-pool-addr.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Remove incorrect address validation on `ProviderFeePoolAddrStr` param. | ||
([\#1262](https://github.com/cosmos/interchain-security/pull/1262)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Increment consumer consensus version and register consumer migration. | ||
([\#1295](https://github.com/cosmos/interchain-security/pull/1295)) |
3 changes: 3 additions & 0 deletions
3
.changelog/v3.2.0/state-breaking/provider/1280-reward-denoms.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Add a governance proposal for setting on the provider the denominations for | ||
rewards from consumer chains. | ||
([\#1280](https://github.com/cosmos/interchain-security/pull/1280)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*November 24, 2023* |
Oops, something went wrong.