Skip to content

Commit d4233c8

Browse files
committed
Merge branch 'main' into ud/geth/v1.13.15
2 parents 6f4821a + 9c9b7f6 commit d4233c8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1769
-1604
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Upgrade Handler Check
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*.*.*'
7+
- 'v*.*.*-*'
8+
9+
jobs:
10+
check-upgrade-handler:
11+
name: Validate Upgrade Handler exists
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Go
19+
uses: actions/setup-go@v5
20+
with:
21+
go-version-file: go.mod
22+
23+
- name: Run Upgrade Handler Checker
24+
run: |
25+
go run ./contrib/scripts/upgrade-handler-check.go "${{ github.ref_name }}"

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4242

4343
- [#2271](https://github.com/NibiruChain/nibiru/pull/2271) - fix(ci): update tag-pattern for changelog step in releases
4444
- [#2270](https://github.com/NibiruChain/nibiru/pull/2270) - refactor(app): remove private keeper struct and transient/mem keys from app
45+
<<<<<<< HEAD
4546
- [#2274](https://github.com/NibiruChain/nibiru/pull/2274) - feat(evm)!: update to geth v1.13 with EIP-1153, PRECOMPILE_ADDRS, and transient storage support
4647
- [#2275](https://github.com/NibiruChain/nibiru/pull/2275) - feat(evm)!: update
4748
to geth v1.14 with tracing updates and new StateDB methods.
@@ -50,6 +51,8 @@ to geth v1.14 with tracing updates and new StateDB methods.
5051
setup. Namely, blobs (Cancun) and Verkle additions for zkEVM.
5152
- The jump to v1.14 was necessary to use an up-to-date "cockroach/pebble" DB
5253
dependency and leverage new generics features added in Go 1.23+.
54+
- [#2288](https://github.com/NibiruChain/nibiru/pull/2288) - chore(ci): add workflow to check for missing upgrade handler
55+
- [#2278](https://github.com/NibiruChain/nibiru/pull/2278) - chore: migrate to cosmossdk.io/mathLegacyDec and cosmossdk.io/math.Int
5356

5457
## v2.3.0
5558

api/nibiru/devgas/v1/genesis.pulsar.go

Lines changed: 36 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/nibiru/inflation/v1/genesis.pulsar.go

Lines changed: 52 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)