-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
114 changed files
with
2,943 additions
and
1,064 deletions.
There are no files selected for viewing
8 changes: 0 additions & 8 deletions
8
.changelog/unreleased/breaking-changes/ibc-relayer-cli/3636-config-chain-type.md
This file was deleted.
Oops, something went wrong.
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 | ||
``` |
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 syncing check for gRPC node ([#3814]) | ||
|
||
[#3814]: https://github.com/informalsystems/ibc-rs/issues/3814 |
3 changes: 3 additions & 0 deletions
3
.changelog/unreleased/improvements/3814-status-use-client-latest-height.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 the consensus state at client latest height in status CLI ([#3814]) | ||
|
||
[#3814]: https://github.com/informalsystems/ibc-rs/issues/3814 |
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)) |
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.
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
.changelog/v1.8.0/features/ibc-relayer/3738-dynamic-gas-fees.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,12 @@ | ||
- Add a new per-chain configuration table `dynamic_gas_price` which enables | ||
querying the current gas price from the chain instead of the static `gas_price`, | ||
when the chain has [EIP-1559][eip]-like dynamic gas price. | ||
The new configuration setting can be configured per-chain as follows: | ||
```toml | ||
dynamic_gas_price = { enabled = true, multiplier = 1.1, max = 0.6 } | ||
``` | ||
At the moment, only chains which support the `osmosis.txfees.v1beta1.Query/GetEipBaseFee` | ||
query can be used with dynamic gas price enabled. | ||
([\#3738](https://github.com/informalsystems/hermes/issues/3738)) | ||
|
||
[eip]: https://metamask.io/1559/ |
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
.changelog/v1.8.0/features/ibc-telemetry/3738-dynamic-gas-fees-metrics.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 @@ | ||
- Add three metrics related to EIP gas price: | ||
- `dynamic_gas_queried_fees` contains data on the queried values | ||
before applying any filter | ||
- `dynamic_gas_queried_success_fees` contains data on the queried | ||
values if the query was successful and before applying any filter | ||
- `dynamic_gas_paid_fees` contains data on the queried values after | ||
applying the `max` filter | ||
([\#3738](https://github.com/informalsystems/hermes/issues/3738)) |
3 changes: 3 additions & 0 deletions
3
.changelog/v1.8.0/features/ibc-telemetry/3794-memo-receiver-filter-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,3 @@ | ||
- Add a new metric `filtered_packets` which counts the number of | ||
packets filtered due to having a memo or receiver field too big | ||
([\#3794](https://github.com/informalsystems/hermes/issues/3794)) |
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,19 @@ | ||
*January 23rd, 2024* | ||
|
||
This v1.8.0 release introduces new features and improvements to Hermes. | ||
|
||
One key feature is that Hermes is now compatible with both the legacy `UpgradeProposal` and the newer `MsgIbcSoftwareUpgrade` message when upgrading a chain. | ||
This allows Hermes to be compatible with ibc-go v8.0.0. The compatibility check that Hermes performs on startup has been updated to reflect this. | ||
|
||
Additional configuration settings have been added: | ||
|
||
- The new global settings `ics20_max_memo_size` and `ics20_max_receiver_size` allow users to specify a limit for the size of the memo and receiver fields for ICS20 packets. Any packet with either field having a size exceeding the configured values will not be relayed. | ||
- The new per-chain setting `query_packets_chunk_size` allows users to specify how many packets are queried at once from the chain when clearing pending packets. This is useful to tweak when there are many large pending packets and the RPC endpoints times out or refuses to answer the pending packets query. | ||
- The new per-chain setting `client_refresh_rate` can be use to specify how often the clients referencing this chain should be refreshed. The rate is expressed as a fraction of the trusting period. | ||
- The new per-chain setting `dynamic_gas_price` can be enabled to have the relayer query for and use a dynamic gas price instead of using the static `gas_price` specified in the config. This should only be used for chains which have a [EIP-1559][eip-1559]-like fee market enabled and support the `osmosis.txfees.v1beta1.Query/GetEipBaseFee` gRPC query. | ||
|
||
Telemetry now features new metrics: | ||
- Monitoring the ICS20 packets filtered due to the memo and/or receiver field size exceeding the configured limits. | ||
- Monitoring the distribution of dynamic gas fees queried from the chain, if enabled. | ||
|
||
[eip-1559]: https://metamask.io/1559/ |
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.