Skip to content

Commit

Permalink
chore: prepare v4.0.2 (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnletey authored Nov 21, 2023
1 parent 26a2470 commit 2da9930
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions .changelog/v4.0.1/bug-fixes/274-distribution-hooks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Unregister `x/distribution` hooks to address consensus failure. ([#274](https://github.com/strangelove-ventures/noble/pull/274))
3 changes: 3 additions & 0 deletions .changelog/v4.0.1/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*Nov 16, 2023*

This is the first patch release to the v4 Argon line.
3 changes: 3 additions & 0 deletions .changelog/v4.0.2/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*Nov 21, 2023*

This is the second patch release to the v4 Argon line.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# CHANGELOG

## v4.0.2

*Nov 21, 2023*

This is the second patch release to the v4 Argon line.

### IMPROVEMENTS

- Implement a parameter query for the `x/tariff` module. ([#277](https://github.com/strangelove-ventures/noble/pull/277))

## v4.0.1

*Nov 16, 2023*

This is the first patch release to the v4 Argon line.

### BUG FIXES

- Unregister `x/distribution` hooks to address consensus failure. ([#274](https://github.com/strangelove-ventures/noble/pull/274))

## v4.0.0

*Nov 6, 2023*
Expand Down
13 changes: 13 additions & 0 deletions interchaintest/upgrade_noble-1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"github.com/strangelove-ventures/interchaintest/v4/chain/cosmos"
"github.com/strangelove-ventures/interchaintest/v4/ibc"
"github.com/strangelove-ventures/interchaintest/v4/testutil"
tarifftypes "github.com/strangelove-ventures/noble/x/tariff/types"
"github.com/stretchr/testify/require"
)

Expand Down Expand Up @@ -95,6 +96,18 @@ func TestNoble1ChainUpgrade(t *testing.T) {
require.Equal(t, numJailed, 1)
},
},
{
// v4.0.2 is a patch release that introduces a new query to the tariff module.
// It is non-consensus breaking, and therefore is applied as a rolling upgrade.
image: nobleImageInfo[0],
postUpgrade: func(t *testing.T, ctx context.Context, noble *cosmos.CosmosChain, paramAuthority ibc.Wallet) {
raw, _, err := noble.Validators[0].ExecQuery(ctx, "tariff", "params")
require.NoError(t, err)

var res tarifftypes.QueryParamsResponse
require.NoError(t, json.Unmarshal(raw, &res))
},
},
}

testNobleChainUpgrade(t, "noble-1", genesis, denomMetadataFrienzies, numValidators, numFullNodes, upgrades)
Expand Down

0 comments on commit 2da9930

Please sign in to comment.