Skip to content

Commit b74ab29

Browse files
committed
Merge branch 'main' into alex/sims_runner
* main: feat(tx): port simappv2 changes (#20648) build(deps): Bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#20682) chore(proto): fix comments (#20679) (serverv2/cometbft) Commands support both json and yaml output (#20670) fix(x/staking,x/auth): regenerate mock to fix test (#20684) docs: ADR 074: Msg v2 (#20618) fix: nested multisig signatures using CLI (#20438) chore: fix spelling errors (#20674) fix: align Dockerfile for build-push-action (#20672) fix: avoid build fail when make localnet-build-env (#20671) build(deps): Bump bufbuild/buf-setup-action from 1.32.2 to 1.33.0 (#20669) chore: make function comment match function names (#20666) chore(consensus): add cometInfo to consensus (#20615) chore: fix typos (#20662) fix: Properly parse json in the wait-tx command. (#20631) fix(sims): check before sending RotateConsPubKey (#20659) test(types/address): add unit tests for the file types/address.go (#20237)
2 parents faccd45 + 6d2f6ff commit b74ab29

File tree

115 files changed

+4842
-1855
lines changed

Some content is hidden

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

115 files changed

+4842
-1855
lines changed

.github/workflows/proto.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
timeout-minutes: 5
1616
steps:
1717
- uses: actions/checkout@v4
18-
- uses: bufbuild/buf-setup-action@v1.32.2
18+
- uses: bufbuild/buf-setup-action@v1.33.0
1919
- uses: bufbuild/buf-lint-action@v1
2020
with:
2121
input: "proto"
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@v4
27-
- uses: bufbuild/buf-setup-action@v1.32.2
27+
- uses: bufbuild/buf-setup-action@v1.33.0
2828
- uses: bufbuild/buf-breaking-action@v1
2929
with:
3030
input: "proto"

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ Every module contains its own CHANGELOG.md. Please refer to the module you are i
115115
* (server) [#18994](https://github.com/cosmos/cosmos-sdk/pull/18994) Update server context directly rather than a reference to a sub-object
116116
* [#19833](https://github.com/cosmos/cosmos-sdk/pull/19833) Fix some places in which we call Remove inside a Walk.
117117
* [#19851](https://github.com/cosmos/cosmos-sdk/pull/19851) Fix some places in which we call Remove inside a Walk (x/staking and x/gov).
118+
* [#20631](https://github.com/cosmos/cosmos-sdk/pull/20631) Fix json parsing in the wait-tx command.
118119

119120
### API Breaking Changes
120121

Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,11 @@ COPY x/auth/go.mod x/auth/go.sum ./x/auth/
3939
COPY x/authz/go.mod x/authz/go.sum ./x/authz/
4040
COPY x/bank/go.mod x/bank/go.sum ./x/bank/
4141
COPY x/mint/go.mod x/mint/go.sum ./x/mint/
42+
COPY x/tx/go.mod x/tx/go.sum ./x/tx/
4243
COPY x/consensus/go.mod x/consensus/go.sum ./x/consensus/
4344
COPY depinject/go.mod depinject/go.sum ./depinject/
45+
COPY core/testing/go.mod core/testing/go.sum ./core/testing/
46+
COPY log/go.mod log/go.sum ./log/
4447
RUN go mod download
4548

4649
# Add source files

api/cosmos/app/v1alpha1/query.pulsar.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)