-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into luca_joss/port-osmosis-eip-fee-query-feature
- Loading branch information
Showing
251 changed files
with
4,756 additions
and
2,360 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,2 @@ | ||
- Bump MSRV to 1.71 | ||
([\#3688](https://github.com/informalsystems/hermes/issues/3688)) |
8 changes: 8 additions & 0 deletions
8
.changelog/unreleased/breaking-changes/ibc-relayer-cli/3636-config-chain-type.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,8 @@ | ||
- The `type` key in the `[[chains]]` section is now required. ([\#3636](https://github.com/informalsystems/hermes/issues/3636)) | ||
If you previously did not specify that key, you must now set it to `type = "CosmosSdk"`, eg. | ||
|
||
```rust | ||
[[chains]] | ||
id = "osmosis-1" | ||
type = "CosmosSdk" | ||
``` |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/features/ibc-integration-test/3455-async-icq-test.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 a test for asynchronous Interchain Query relaying | ||
([\#3455](https://github.com/informalsystems/hermes/issues/3455)) |
2 changes: 2 additions & 0 deletions
2
...ngelog/unreleased/features/ibc-integration-test/3778-ordered-channel-timeout.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 an ICA test to assert a channel correctly closes after a packet time-outs | ||
([\#3778](https://github.com/informalsystems/hermes/issues/3778)) |
3 changes: 3 additions & 0 deletions
3
.changelog/unreleased/features/ibc-relayer-cli/3402-lc-refresh.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 `client_refresh_rate` setting to specify the rate at which to | ||
refresh clients referencing this chain, relative to its trusting period. | ||
([\#3402](https://github.com/informalsystems/hermes/issues/3402)) |
18 changes: 18 additions & 0 deletions
18
.changelog/unreleased/features/ibc-relayer-cli/3672-clears-packet-seq.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,18 @@ | ||
- Add a `--packet-sequences` flag to the `clear packets`, `tx packet-recv`, and `tx packet-ack` commands. | ||
When this flag is specified, these commands will only clear the packets with the specified sequence numbers | ||
on the given chain. If not provided, all pending packets will be cleared on both chains, as before. | ||
|
||
This flag takes either a single sequence number or a range of sequences numbers. | ||
Each element of the comma-separated list must be either a single sequence number or | ||
a range of sequence numbers. | ||
|
||
Examples: | ||
- `10` will clear a single packet with sequence nymber `10` | ||
- `1,2,3` will clear packets with sequence numbers `1, 2, 3` | ||
- `1..5` will clear packets with sequence numbers `1, 2, 3, 4, 5` | ||
- `..5` will clear packets with sequence numbers `1, 2, 3, 4, 5` | ||
- `5..` will clear packets with sequence numbers greater than or equal to `5` | ||
- `..5,10..20,25,30..` will clear packets with sequence numbers `1, 2, 3, 4, 5, 10, 11, ..., 20, 25, 30, 31, ...` | ||
- `..5,10..20,25,30..` will clear packets with sequence numbers `1, 2, 3, 4, 5, 10, 11, ..., 20, 25, 30, 31, ...` | ||
|
||
([\#3672](https://github.com/informalsystems/hermes/issues/3672)) |
3 changes: 3 additions & 0 deletions
3
.changelog/unreleased/features/ibc-relayer-cli/3696-new-chain-upgrade-flag.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 `--gov-account` option to `hermes tx upgrade-chain` to specify the | ||
authority account used to sign upgrade proposal for chains running IBC-Go v8+. | ||
([\#3696](https://github.com/informalsystems/hermes/issues/3696)) |
6 changes: 6 additions & 0 deletions
6
.changelog/unreleased/features/ibc-relayer-cli/3743-query_packets_chunk_size.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,6 @@ | ||
- Add a `query_packets_chunk_size` config option and a `--query- | ||
packets-chunk-size flag to the `clear packets` CLI to configure how | ||
many packets to query at once from the chain when clearing pending | ||
packets. Lower this setting if one or more of packets you are | ||
trying to clear are huge and make the packet query time out or fail. | ||
([\#3743](https://github.com/informalsystems/hermes/issues/3743)) |
3 changes: 3 additions & 0 deletions
3
.changelog/unreleased/features/ibc-relayer/3696-new-upgrade-proposal.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 @@ | ||
- Use legacy `UpgradeProposal` or newer `MsgIbcSoftwareUpgrade` message when upgrading | ||
a chain depending on whether the chain is running IBC-Go v8 or older. | ||
([\#3696](https://github.com/informalsystems/hermes/issues/3696)) |
6 changes: 6 additions & 0 deletions
6
.changelog/unreleased/features/ibc-relayer/3766-max-memo-receiver-config.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,6 @@ | ||
- Add two new packet configurations: | ||
* `ics20_max_memo_size` which filters ICS20 packets with memo | ||
field bigger than the configured value | ||
* `ics20_max_receiver_size` which filters ICS20 packets with receiver | ||
field bigger than the configured value | ||
([\#3766](https://github.com/informalsystems/hermes/issues/3766)) |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/improvements/ibc-relayer-cli/3745-compat-0.50.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 @@ | ||
- Update compatibility check to allow IBC-Go 4.1.1 to 8.x and SDK 0.45.x to 0.50.x. | ||
([\#3745](https://github.com/informalsystems/hermes/issues/3745)) |
3 changes: 3 additions & 0 deletions
3
.changelog/v1.7.1/improvements/ibc-relayer/3636-config-enum.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 @@ | ||
- Change config format to scope configs by type. This enables adding support for | ||
more types of chain, even when those have different config options than each | ||
other. ([\#3636](https://github.com/informalsystems/hermes/issues/3636)) |
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 @@ | ||
[codespell] | ||
skip = *.js,*.ts,*.css,*.svg,*.html,*.json,./target,./tools/integration-test/data,./tools/check-guide/target,./ci/misbehaviour/data | ||
ignore-words = .github/codespell/words.txt |
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 @@ | ||
crate | ||
shs | ||
ser | ||
numer |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Codespell | ||
on: | ||
pull_request: | ||
push: | ||
branches: master | ||
|
||
# Cancel previous runs of this workflow when a new commit is added to the PR, branch or tag | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
codespell: | ||
name: Check spelling | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: codespell-project/actions-codespell@v2 | ||
with: | ||
skip: '*.js,*.ts,*.css,*.svg,*.html,*.json,./target,./tools/integration-test/data,./tools/check-guide/target,./ci/misbehaviour/data' | ||
ignore_words_file: .github/codespell/words.txt | ||
|
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.