Skip to content

Commit 8575743

Browse files
tac0turtlealpechattondamiannolanNikolas De Giorgis
authored
deps: update to cosmos-sdk v0.52 (Olympus) (#7261)
* go mod changes * remove cometabci direct dep * fix all errors * appmodule & simapp cleanup * 08wasm fixes * get 08-wasm compiling * another simapp * another simapp * pass in environment * fix compilation errors * some fixes * build * fix other simapps * linting * remove unsed code * go mod changes * add pool module * anothersimapp * linting fixes * protocol pool module accounts * callback fixes * simapp fixes * register interfaces * fix feeibc * changes++ * fix missed conflict * fix wasm client * linting fixes * fix tests * linting * fix simapp tests * fix some tests * fix e2e go mod * go mod changes * remove grandpa * Gomod changes and minor updates (#7549) * Remove module.HasProposalMsgs * Update ante handler * Bump versions * x * Cleanup * chore: use same tags for all go mods * chore: update go mod files, revert callbacks simapp changes * chore: fix tendermint client test suite * chore: fix tests in TestAnteDecoratorCheckTx * chore: fix event tests * chore: fix compiler error in simapp * deps: update to latest of cosmossdk.io/store main to fix proofs test * chore: tidy all * fix: remove ibcmock module acc from blocked addrs * chore: fix proto failures and Gov errors * chore: fix ica test * chore: fix a few compiler errs in 08-wasm * fix: update ica account already exists test to front run account creation correctly * chore: fix ica test for address gen * chore: re-add log to returned error * chore: update go mods * chore: fixed build errors in wasm app.go * chore: cleanup callbacks simapp * chore: fixing simulation functions * chore: reconfigure simd cmd and fix TestInitCmd * feat: add runtime Env to icacontroller and fix v0.52 e2e tests (#7587) * feat: adding runtime Environment * chore: run make lint-fix * chore: remove duplicate import * chore: rm duplicate import * chore: migrate to env KVStoreService in icacontroller * chore: fix duplicate import * chore: rm kv store service * chore: refactor events to use environment * chore: make lint-fix * chore: make tidy-all * chore: rm msg service router from icacontroller * fix: remove 32 bit arm arch from callbacks ci builds * test: try cache false for callbacks linter * chore: pin to updated interchaintest fork * chore: revert relayer count to 10 * chore: continued work on upgrading e2e tests to 0.52 * chore: transfer e2e passing * chore: fix upgrade build errors * chore: bump interchaintest * chore: update sample config * chore: reconfigure protoany to use gogoproto any in favour of codec types * chore: tidy imports in e2e * fix: address failure in module safe query ica e2e test * bump golangci version to 1.60 * lint: remove duplicate import * chore: use gogoprotoany in favour of codec types any. rm ProtoCodecMarshaler for Codec iface * chore: bump go version in Dockerfile * chore: add todo * lint: fix unnecessary cast * deps: upgrade sdk to head of release/v0.52.x, upgrade store to latest main * deps: bump to head of release/v0.52 * fix: add unit test to reproduce e2e test failure for ScheduleIBCUpgrade, update code to expect tendermint client temporarily * fix: error in tests * chore: address comments from pr --------- Co-authored-by: chatton <cian@interchain.io> Co-authored-by: Nikolas De Giorgis <nikolas.degiorgis@interchain.io> * chore: linter fixes * lint: ignore redunant import alias * chore: rm redudant semi-colon in tendermint.proto * chore: rm redundant doc string regarding e2e-compatibility tests - tests now use annoations for compatibility checks * chore: update dead links * fix: apply fix for x/tx cosmos-sdk #22574 * chore: make lint-fix * fix: use hermes v1.10.4 for ci configs * fix: apply fix for cosmos-sdk #22779 and update dependencies * fix: unpin local sdk to HEAD of release/v0.52 in simapp go.mod * chore: revert docs/versioned_docs to main * chore: ammendments to linter configs * chore: update var name in expected keeper * chore: revert diffs in clienttypes/height_test * chore: propagate error from event emission in icacontroller * test: revert unnecessary diffs in test fn * chore: update comment in test chain * Update e2e/tests/interchain_accounts/base_test.go Co-authored-by: DimitrisJim <d.f.hilliard@gmail.com> * chore: nit on import aliasing * refactor: rename instances of expected keepers from accountKeeper -> authKeeper where apt * chore: readd TestABCICodeDeterminism to 04-channel types * refactor: remove redundant AppModuleBasics * chore: rm GetStakingKeeper api from testing app * chore: update version in wasm dockerfile * chore: update the go work example file version * chore: rm UnwrapSDKContext in ica where possible * fix: import path in e2e from suggestion --------- Co-authored-by: Alexander Peters <alpe@users.noreply.github.com> Co-authored-by: chatton <cian@interchain.io> Co-authored-by: Damian Nolan <damiannolan@gmail.com> Co-authored-by: Nikolas De Giorgis <nikolas.degiorgis@interchain.io> Co-authored-by: DimitrisJim <d.f.hilliard@gmail.com>
1 parent fa77756 commit 8575743

File tree

286 files changed

+5470
-6007
lines changed

Some content is hidden

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

286 files changed

+5470
-6007
lines changed

.github/workflows/callbacks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
steps:
1818
- uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.22'
20+
go-version: '1.23'
2121
- uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
2424
- uses: golangci/golangci-lint-action@v6.1.1
2525
with:
26-
version: v1.57.2
26+
version: v1.60
2727
only-new-issues: true
2828
args: --timeout 5m
2929
working-directory: modules/apps/callbacks
@@ -32,12 +32,12 @@ jobs:
3232
runs-on: ubuntu-latest
3333
strategy:
3434
matrix:
35-
go-arch: ['amd64', 'arm', 'arm64']
35+
go-arch: ['amd64', 'arm64']
3636
steps:
3737
- uses: actions/checkout@v4
3838
- uses: actions/setup-go@v5
3939
with:
40-
go-version: '1.22'
40+
go-version: '1.23'
4141
- name: Build callbacks-module
4242
run: |
4343
cd modules/apps/callbacks
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/checkout@v4
5050
- uses: actions/setup-go@v5
5151
with:
52-
go-version: '1.22'
52+
go-version: '1.23'
5353
- name: Go Test
5454
run: |
5555
cd modules/apps/callbacks

.github/workflows/e2e-compatibility-workflow-call.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
repository: cosmos/ibc-go
5050
- uses: actions/setup-go@v5
5151
with:
52-
go-version: '1.22'
52+
go-version: '1.23'
5353
cache-dependency-path: 'e2e/go.sum'
5454
- name: Run e2e Test
5555
run: |

.github/workflows/e2e-fork.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727
- uses: actions/setup-go@v5
2828
with:
29-
go-version: '1.22'
29+
go-version: '1.23'
3030
- id: set-matrix
3131
run: |
3232
output=$(go run cmd/build_test_matrix/main.go)
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/checkout@v4
4646
- uses: actions/setup-go@v5
4747
with:
48-
go-version: '1.22'
48+
go-version: '1.23'
4949
- id: set-matrix
5050
run: |
5151
output=$(go run cmd/build_test_matrix/main.go)
@@ -75,7 +75,7 @@ jobs:
7575
- name: Setup Go
7676
uses: actions/setup-go@v5
7777
with:
78-
go-version: '1.22'
78+
go-version: '1.23'
7979
cache-dependency-path: 'e2e/go.sum'
8080
- name: Run e2e Test
8181
run: |
@@ -112,7 +112,7 @@ jobs:
112112
# - name: Setup Go
113113
# uses: actions/setup-go@v5
114114
# with:
115-
# go-version: '1.22'
115+
# go-version: '1.23'
116116
# cache-dependency-path: 'e2e/go.sum'
117117
# - name: Run e2e Test
118118
# run: |

.github/workflows/e2e-test-workflow-call.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
repository: cosmos/ibc-go
182182
- uses: actions/setup-go@v5
183183
with:
184-
go-version: '1.22'
184+
go-version: '1.23'
185185
- id: set-matrix
186186
run: |
187187
output=$(go run cmd/build_test_matrix/main.go)
@@ -215,7 +215,7 @@ jobs:
215215
repository: cosmos/ibc-go
216216
- uses: actions/setup-go@v5
217217
with:
218-
go-version: '1.22'
218+
go-version: '1.23'
219219
cache-dependency-path: 'e2e/go.sum'
220220
- name: Run e2e Test
221221
id: e2e_test
@@ -264,7 +264,7 @@ jobs:
264264
repository: cosmos/ibc-go
265265
- uses: actions/setup-go@v5
266266
with:
267-
go-version: '1.22'
267+
go-version: '1.23'
268268
cache-dependency-path: 'e2e/go.sum'
269269
- name: Run e2e Test
270270
id: e2e_test
@@ -278,4 +278,4 @@ jobs:
278278
with:
279279
name: '${{ matrix.entrypoint }}-${{ matrix.test }}'
280280
path: e2e/diagnostics
281-
retention-days: 5
281+
retention-days: 5

.github/workflows/e2e-wasm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v4
3535
- uses: actions/setup-go@v5
3636
with:
37-
go-version: '1.22'
37+
go-version: '1.23'
3838
- id: get-tag
3939
run: |
4040
if [ -z "${{ github.event.pull_request.number }}" ]

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4
3434
- uses: actions/setup-go@v5
3535
with:
36-
go-version: '1.22'
36+
go-version: '1.23'
3737
- id: get-tag
3838
run: |
3939
if [ -z "${{ github.event.pull_request.number }}" ]

.github/workflows/e2emodule.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
steps:
1818
- uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.22'
20+
go-version: '1.23'
2121
cache-dependency-path: 'e2e/go.sum'
2222
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525
- uses: golangci/golangci-lint-action@v6.1.1
2626
with:
27-
version: v1.57.2
27+
version: v1.60
2828
only-new-issues: true
2929
args: --timeout 5m
3030
working-directory: e2e/
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@v4
3636
- uses: actions/setup-go@v5
3737
with:
38-
go-version: '1.22'
38+
go-version: '1.23'
3939
cache-dependency-path: 'e2e/go.sum'
4040
- name: Go Test
4141
run: |

.github/workflows/golangci-feature.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
steps:
2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: '1.22'
25+
go-version: '1.23'
2626
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
2929
- name: golangci-lint
3030
uses: golangci/golangci-lint-action@v6.1.1
3131
with:
32-
version: v1.57.2
32+
version: v1.60
3333
only-new-issues: true
3434
args: --timeout 10m

.github/workflows/golangci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
steps:
1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: '1.22'
21+
go-version: '1.23'
2222
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525
- name: golangci-lint
2626
uses: golangci/golangci-lint-action@v6.1.1
2727
with:
28-
version: v1.57.2
28+
version: v1.60
2929
only-new-issues: true
3030
args: --timeout 10m

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-go@v5
2323
with:
24-
go-version: '1.22'
24+
go-version: '1.23'
2525

2626
- name: Release
2727
uses: goreleaser/goreleaser-action@v6

0 commit comments

Comments
 (0)