Skip to content

Commit

Permalink
Merge branch 'master'
Browse files Browse the repository at this point in the history
  • Loading branch information
yito88 committed Sep 4, 2024
2 parents 4f4d450 + e26d356 commit 99ca2a8
Show file tree
Hide file tree
Showing 45 changed files with 518 additions and 459 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Add explicit root TLS configuration to gRPC clients
([\#4160](https://github.com/informalsystems/hermes/issues/4160))
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Correctly filter out sequences from the `excluded_sequences` configuration
when clearing packets with the `clear packet` CLI.
([\#4158](https://github.com/informalsystems/hermes/issues/4158))
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Add explicit root TLS configuration to gRPC clients
([\#4160](https://github.com/informalsystems/hermes/issues/4160))
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Update the version of Neutron running the integration tests in the CI from `v4.1.0`
to `v4.2.2` ([\#4168](https://github.com/informalsystems/hermes/issues/4168))
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Update the version of `wasmd` running the integration tests in the CI from `v0.52.0`
to `v0.53.0` ([\#4169](https://github.com/informalsystems/hermes/issues/4169))
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Update the version of Juno running the integration tests in the CI from `v23.0.0`
to `v24.0.0` ([\#4171](https://github.com/informalsystems/hermes/issues/4171))
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Use `abci_query` instead of gRPC queries when retrieving staking params
and service config during health-check, and when retrieving version information.
([\#4102](https://github.com/informalsystems/hermes/issues/4102))
5 changes: 5 additions & 0 deletions .changelog/v1.10.3/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*September 2nd, 2024*

This release fixes an issue where Hermes could not connect to gRPC servers over TLS. Additionally, this release also fixes a bug in the `clear packet` CLI where the `excluded_sequences` configuration option was not always taken into account.

Furthermore, Hermes now uses `abci_query` instead of gRPC for some queries, for instance for querying staking parameters and service configuration during health checks, and when retrieving version information.
14 changes: 8 additions & 6 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
command: junod
account_prefix: juno
native_token: stake
features: juno,forward-packet,ica
features: juno,forward-packet,ica,ics29-fee
- package: provenance
command: provenanced
account_prefix: pb
Expand All @@ -95,11 +95,13 @@ jobs:
account_prefix: migaloo
native_token: stake
features: ics29-fee,ica,forward-packet
- package: injective
command: injectived
account_prefix: inj
native_token: stake
features: forward-packet,fee-grant
# Disable Injective because wasmvm hasn't been correctly
# wired for Injective in Cosmos Nix
#- package: injective
# command: injectived
# account_prefix: inj
# native_token: stake
# features: forward-packet,fee-grant

steps:
- uses: actions/checkout@v4
Expand Down
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# CHANGELOG

## v1.10.3

*September 2nd, 2024*

This release fixes an issue where Hermes could not connect to gRPC servers over TLS. Additionally, this release also fixes a bug in the `clear packet` CLI where the `excluded_sequences` configuration option was not always taken into account.

Furthermore, Hermes now uses `abci_query` instead of gRPC for some queries, for instance for querying staking parameters and service configuration during health checks, and when retrieving version information.

### BUG FIXES

- [Chain Registry](chain-registry)
- Add explicit root TLS configuration to gRPC clients
([\#4160](https://github.com/informalsystems/hermes/issues/4160))
- [Relayer Library](relayer)
- Add explicit root TLS configuration to gRPC clients
([\#4160](https://github.com/informalsystems/hermes/issues/4160))
- [Relayer CLI](relayer-cli)
- Correctly filter out sequences from the `excluded_sequences` configuration
when clearing packets with the `clear packet` CLI.
([\#4158](https://github.com/informalsystems/hermes/issues/4158))

### IMPROVEMENTS

- [Relayer Library](relayer)
- Use `abci_query` instead of gRPC queries when retrieving staking params
and service config during health-check, and when retrieving version information.
([\#4102](https://github.com/informalsystems/hermes/issues/4102))
- [Integration Test Framework](tools/test-framework)
- Update the version of Celestia running the integration tests in the CI from `v1.11.0`
to `v1.14.0` ([\#4123](https://github.com/informalsystems/hermes/issues/4123))
- Update the version of Neutron running the integration tests in the CI from `v4.1.0`
to `v4.2.2` ([\#4168](https://github.com/informalsystems/hermes/issues/4168))
- Update the version of `wasmd` running the integration tests in the CI from `v0.52.0`
to `v0.53.0` ([\#4169](https://github.com/informalsystems/hermes/issues/4169))
- Update the version of Juno running the integration tests in the CI from `v23.0.0`
to `v24.0.0` ([\#4171](https://github.com/informalsystems/hermes/issues/4171))

### FEATURES

- [Integration Test Framework](tools/test-framework)
- Add ibc-go `v9` to the chains running the integration tests in the CI.
([\#4151](https://github.com/informalsystems/hermes/issues/4151))

## v1.10.2

*August 14th, 2024*
Expand Down
Loading

0 comments on commit 99ca2a8

Please sign in to comment.