-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump relayer-cli crate to v1.0.0 and update guide * Bump crates to 0.19.0, and protos to 0.20.1 * Update lockfiles * Release changelog * Update UPGRADING instructions * Update lockfile * Link to upgrading doc for gas_multiplier change * Apply suggestions fro review Thanks @seanchen1991 and @adizere! Co-authored-by: Sean Chen <seanchen11235@gmail.com> Co-authored-by: Adi Seredinschi <adi@informal.systems> Co-authored-by: Sean Chen <seanchen11235@gmail.com> Co-authored-by: Adi Seredinschi <adi@informal.systems>
- Loading branch information
1 parent
2be4012
commit 949144e
Showing
29 changed files
with
449 additions
and
168 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
.changelog/v1.0.0/breaking-changes/ibc/2542-remove-ibcevent-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,2 @@ | ||
- Remove `height` attribute from `IbcEvent` and its variants | ||
([#2542](https://github.com/informalsystems/ibc-rs/issues/2542)) |
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,52 @@ | ||
*August 22nd, 2022* | ||
|
||
After more than 2 years in the works, this is the first stable release of the Hermes relayer! 🎉 | ||
|
||
### Note for operators | ||
|
||
> ⚠️ If upgrading from Hermes v0.15.0, be aware that this release contains multiple breaking | ||
> ⚠️ changes to the Hermes command-line interface and configuration. | ||
> ⚠️ Please consult the [UPGRADING document for instructions](UPGRADING.md) ) for a more detadetails. | ||
### Highlights | ||
|
||
- The performance and reliability of the relayer has been greatly improved | ||
- Merged commands `keys add` and `keys restore` into single command `keys add` | ||
The flag to specify the key name for the CLI command `keys add` has been changed | ||
from `-n` to `-k`. Restoring a key now takes a file containing the mnemonic as | ||
input instead of directly taking the mnemonic | ||
- Deprecated `gas_adjustment` setting in favor of new `gas_multiplier` setting | ||
- Updated all CLI commands to take flags instead of positional arguments | ||
- Renamed `query packet unreceived-packets` to `query packet pending-sends` | ||
and `query packet unreceived-acks` to `query packet pending-acks` | ||
- Added CLI command `keys balance` which outputs the balance of an account associated with a key | ||
- Added CLI command `query channel client` which outputs the channel's client state | ||
- Added CLI command `query transfer denom-trace` which outputs the base denomination and path of a given trace hash | ||
- Dropped the `raw` prefix from all the `tx raw` commands | ||
- Remove the four duplicate commands: | ||
* `tx raw update-client`, which is the same as `update client` | ||
* `tx raw upgrade-client`, which is the same as `upgrade client` | ||
* `tx raw upgrade-clients`, which is the same as `upgrade clients` | ||
* `tx raw create-client`, which is the same as `create client` | ||
- [A new section was added to the guide][telemetry-guide] which describes how the new metrics | ||
can be used to observe both the current state of the relayer and the networks it is connected to | ||
- Added many new metrics to the telemetry API. The full list can be found in new the guide section linked above | ||
|
||
### Change to the versioning scheme | ||
|
||
As of v1.0.0-rc.0, the Hermes CLI is now versioned separately from | ||
the other crates in the project. As such, the top-level version | ||
designates the version of the Hermes CLI, but the other crates in | ||
the repository do not necessarily match this version. For example, | ||
the `ibc` and `ibc-relayer` crates are released under version 0.19.0 | ||
for Hermes v1.0.0. | ||
|
||
The structure of this changelog has therefore changed as well. | ||
Changes are now grouped first by crate and then by the type of change, | ||
eg. feature, bug fix, etc. | ||
|
||
### Full release notes | ||
|
||
The release notes below only contain the changes introduced since v1.0.0-rc.2. | ||
For the full list of changes since v0.15.0, please consult the sections below for | ||
v1.0.0-rc.2, v1.0.0-rc.1 and v1.0.0-rc.0. |
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.