-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cosmos:main' into main
- Loading branch information
Showing
92 changed files
with
2,558 additions
and
3,116 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
- Enable existing (standalone) chains to use the existing client (and connection) | ||
to the provider chain when becoming a consumer chain. This feature introduces | ||
the following API-breaking changes. | ||
([\#2400](https://github.com/cosmos/interchain-security/pull/2400)) | ||
|
||
- Add `connection_id` and `preCCV` to `ConsumerGenesisState`, the consumer | ||
genesis state created by the provider chain. If the `connection_id` is not empty, | ||
`preCCV` is set to true and both `provider.client_state` and `provider.consensus_state` | ||
are set to nil (as the consumer doesn't need to create a new provider client). | ||
As a result, for older versions of consumers, the `connection_id` in | ||
`ConsumerInitializationParameters` must be empty and the resulting `ConsumerGenesisState` | ||
needs to be adapted, i.e., both `connection_id` and `preCCV` need to be removed. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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.50.11](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.11) | ||
([\#2458](https://github.com/cosmos/interchain-security/pull/2458)) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,13 @@ | ||
- Enable existing (standalone) chains to use the existing client (and connection) | ||
to the provider chain when becoming a consumer chain. This feature introduces | ||
the following changes. | ||
([\#2400](https://github.com/cosmos/interchain-security/pull/2400)) | ||
|
||
- Add `connection_id` to `ConsumerInitializationParameters`, the ID of | ||
the connection end _on the provider chain_ on top of which the CCV channel will | ||
be established. Consumer chain owners can set `connection_id` to a valid ID in | ||
order to reuse the underlying clients. | ||
- Add `connection_id` to the consumer genesis state, the ID of the connection | ||
end _on the consumer chain_ on top of which the CCV channel will be established. | ||
If `connection_id` is a valid ID, then the consumer chain will use the underlying | ||
client as the provider client and it will initiate the channel handshake. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
- Enable existing (standalone) chains to use the existing client (and connection) | ||
to the provider chain when becoming a consumer chain. | ||
([\#2400](https://github.com/cosmos/interchain-security/pull/2400)) |
File renamed without changes.
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.50.11](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.11) | ||
([\#2458](https://github.com/cosmos/interchain-security/pull/2458)) |
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 @@ | ||
*January 7, 2025* |
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
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
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 |
---|---|---|
|
@@ -208,3 +208,29 @@ jobs: | |
if: env.GIT_DIFF | ||
run: | | ||
make verify-models | ||
test-interchain: | ||
runs-on: Gaia-Runner-medium | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22" | ||
check-latest: true | ||
cache: true | ||
cache-dependency-path: go.sum | ||
- uses: technote-space/[email protected] | ||
id: git_diff | ||
with: | ||
PATTERNS: | | ||
**/*.go | ||
go.mod | ||
go.sum | ||
**/go.mod | ||
**/go.sum | ||
**/Makefile | ||
Makefile | ||
- name: interchain tests | ||
if: env.GIT_DIFF | ||
run: | | ||
make test-interchain |
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
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
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
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
Oops, something went wrong.