-
Notifications
You must be signed in to change notification settings - Fork 354
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 sean/channel-upgradability
- Loading branch information
Showing
60 changed files
with
878 additions
and
410 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
.changelog/unreleased/bug-fixes/ibc-relayer/3770-non-utf8-packet-data.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 @@ | ||
- Allow relaying ICS-04 packets with non-UTF-8 payloads ([\#3770](https://github.com/informalsystems/hermes/issues/3770)) | ||
Hermes does not assume anymore that an ICS-04 packet data is valid UTF-8, | ||
by using the `packet_data_hex` attribute when assembling a packet from events, instead of the deprecated `packet_data` attribute. | ||
Relying on the `packet_data` attribute enforces a UTF-8 encoded payload (eg. JSON), disallowing eg. Protobuf-encoded payloads. | ||
The `packet_data` atttribute [has been deprecated][0] in favor of `packet_data_hex` since IBC-Go v1.0.0. | ||
[0]: https://github.com/cosmos/ibc-go/blob/fadf8f2b0ab184798d021d220d877e00c7634e26/CHANGELOG.md?plain=1#L1417 |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/bug-fixes/ibc-relayer/3831-better-compat-check.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 @@ | ||
- Improve reliability of compatibility check and fix parsing of expected modules | ||
versions ([\#3831](https://github.com/informalsystems/hermes/issues/3831)) |
3 changes: 3 additions & 0 deletions
3
.changelog/unreleased/features/ibc-relayer/3811-relayer-memo-overwrite.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 per-chain configuration `memo_overwrite` allowing users | ||
to overwite the relayer memo used for each transaction | ||
([\#3811](https://github.com/informalsystems/hermes/issues/3811)) |
11 changes: 11 additions & 0 deletions
11
.changelog/unreleased/features/ibc-telemetry/3845-add-simulate-errors-metric.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,11 @@ | ||
- Added a new Prometheus metric `simulate_errors` for tracking when a transaction simulation fails, with the following labels: | ||
* `recoverable` (can the execution continue if this happened?) | ||
* `account` (account from which the tx was sent) | ||
* `error_description` (description of the error) | ||
([\#3845](https://github.com/informalsystems/hermes/issues/3845)) | ||
|
||
``` | ||
# HELP simulate_errors_total Number of errors observed by Hermes when simulating a Tx | ||
# TYPE simulate_errors_total counter | ||
simulate_errors_total{account="osmo17ndx5qfku28ymxgmq6zq4a6d02dvpfjjul0hyh",error_description="Unknown error",recoverable="false",service_name="unknown_service",otel_scope_name="hermes",otel_scope_version=""} 4 | ||
``` |
2 changes: 2 additions & 0 deletions
2
.changelog/unreleased/improvements/ibc-relayer-cli/3792-legacy-simulation.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 @@ | ||
- Recover from gas simulation failures on legacy chains. | ||
([\#3792](https://github.com/informalsystems/hermes/issues/3792)) |
6 changes: 6 additions & 0 deletions
6
.changelog/unreleased/improvements/ibc-relayer/3540-ordered-channels-resilience.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 @@ | ||
- Improve resilience when relaying on ordered channels. | ||
When relaying packets on an ordered channel, Hermes will now attempt | ||
to detect whether the next message to send has the sequence number | ||
expected on that channel. If there is a mismatch, then Hermes will trigger a packet | ||
clear on the channel to unblock it before resuming operations on that channel. | ||
([\#3540](https://github.com/informalsystems/hermes/issues/3540)) |
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.