-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/cosmos/ibc-rs into chore/bu…
…mp-borsh
- Loading branch information
Showing
142 changed files
with
1,127 additions
and
677 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/breaking-changes/1229-auto-derive-ser-commitment-prefix.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 @@ | ||
- [ics23] Auto-derive `serde::Serialize` for `CommitmentPrefix`. | ||
([\#1229](https://github.com/cosmos/ibc-rs/issues/1229)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v0.53.0/bug-fixes/1198-reject-packets-without-timeouts.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 @@ | ||
- [ibc-core] Reject IBC packets without height and timestamp timeout. | ||
([\#1198](https://github.com/cosmos/ibc-rs/issues/1198)) |
2 changes: 2 additions & 0 deletions
2
.changelog/v0.53.0/bug-fixes/1217-fix-packet-timeout-on-closed-channel.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 @@ | ||
- [ibc-core] Fix proof verification for `PacketTimeout` on a closed channel. | ||
([\#1217](https://github.com/cosmos/ibc-rs/issues/1217)) |
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 @@ | ||
- [ibc-testkit] Major refactor of the `ibc-testkit` via | ||
[ADR-09](https://github.com/cosmos/ibc-rs/blob/main/docs/architecture/adr-009-revamp-testkit.md). | ||
([\#1109](https://github.com/cosmos/ibc-rs/issues/1109)) |
3 changes: 3 additions & 0 deletions
3
.changelog/v0.53.0/improvements/1203-rm-error-type-restriction.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 @@ | ||
- [ibc-core] Replace fixed `ClientError` associated type restriction with an | ||
`Into<ClientError>` trait bound. | ||
([\#1203](https://github.com/cosmos/ibc-rs/issues/1203)) |
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,22 @@ | ||
This release overhauls the `ibc-testkit` crate such that it is now able to: | ||
|
||
- simulate more realistic IBC workflows by utilizing real IBC and relayer | ||
interfaces (as opposed to mocked versions) | ||
- validate code paths that were not easily testable beforehand, such as Merkle | ||
proof generation | ||
- compose tests in a much more succinct and readable fashion | ||
|
||
Note that the drastic changes made to `ibc-testkit`'s structs and types are | ||
breaking changes. | ||
|
||
For more information and background context on the changes to `ibc-testkit` and | ||
the rationale behind the overhaul, please refer to [ADR 009][adr-009]. | ||
|
||
This release also includes two fixes. One is to reject packets without height | ||
and timestamp timeout. The other is to correct the proof verification logic for | ||
a `PacketTimeout` due to a closed channel, which was verifying an incorrect | ||
field. It also bumps the minimum-supported version of `ibc-proto` to 0.44, and | ||
the version of `tendermint` to 0.36. Note that the minimum-supported Rust | ||
version was reverted back to 1.71.1. | ||
|
||
[adr-009]: https://github.com/cosmos/ibc-rs/blob/main/docs/architecture/adr-009-revamp-testkit.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
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
[default.extend-words] | ||
# for serde serialization | ||
ser = "ser" | ||
|
||
[default] | ||
# random string | ||
extend-ignore-re = [ "[0-9A-Za-z+/]{20,}" ] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
md-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: markdown-link-check | ||
uses: gaurav-nelson/[email protected] | ||
with: | ||
|
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
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.