Skip to content
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
dbfd68f
go mod tidy
sainoe Mar 3, 2025
bf8ee72
* Bump SDK to use CometBFT to v1.0.1 and CometBFT api
sainoe Feb 18, 2025
27ee0f8
fix API breaks of ABCI types in baseapp
sainoe Feb 24, 2025
2769e86
import cometBFT protocolbuffers in api
sainoe Feb 24, 2025
e90352b
fix node comet wrapper breaking changes
sainoe Feb 24, 2025
9fc2a42
gen protos and fix nits in abci tests
sainoe Feb 24, 2025
f35fd1f
bump cometBFT to v1 in
sainoe Feb 25, 2025
b46a63b
generate proto and pulsar files
sainoe Feb 25, 2025
bdfe703
* Bump comet to v1 in x/nft, x/feegrant/, x/evidence and store
sainoe Feb 25, 2025
329987a
Revert renaming of query types in store by error
sainoe Mar 3, 2025
e60493b
change ./tests and ./simapp to use local ./store to fix protobuf file…
sainoe Mar 3, 2025
33b0b41
* Update buf.yaml to latest Comet BSR commit
sainoe Feb 27, 2025
bc39467
Add synchrony and features params to MsgUpdateParams in x/consensus
sainoe Mar 3, 2025
b44f5ba
Update all Go modules that requires store v1.1.0 to use Injective's s…
sainoe Mar 3, 2025
3c009c6
feat: add core and api for PreBlock (#17468)
mmsqe Aug 20, 2023
5303888
feat(api): add autocli options to enhance custom commands (#17033)
julienrbrt Jul 18, 2023
ec79ad7
feat(client): add positional optional to client v2 (#16316)
JeancarloBarrios Jun 20, 2023
e371409
fix slashing UT
sainoe Mar 4, 2025
407cfae
feat: add apphash to core header info (#16739)
tac0turtle Jun 28, 2023
55a706d
feat(client/v2): override short description in generated command (#20…
johnletey May 3, 2024
8998070
bump feegrant, nft and evidence imports
sainoe Mar 4, 2025
ef0a0f9
refactor(baseapp): create checktx handler (#21979)
tac0turtle Oct 2, 2024
f51afb5
fix testdata in autocli msg tests
sainoe Mar 4, 2025
c3ee3f4
fix evidence, feegrant and upgrade imports
sainoe Mar 5, 2025
3776128
fix ABCI tests broken by CheckTxHandler PR (#21979)
sainoe Mar 6, 2025
cdf6dba
bump comet to mempool + DOG version from infosys repo
sainoe Mar 6, 2025
4ec3abb
fix broken tests in x/bank introduced by 59f4bfe905
sainoe Mar 10, 2025
123d9e0
* Fix errors in store tests introduced by 5c206aa which adds new comm…
sainoe Mar 10, 2025
9df0bf9
fix(baseapp): return events from preblocker in FinalizeBlockResponse …
facundomedica Aug 2, 2024
4c0edcd
* Fix ante tests in x/auth broken by c053612
sainoe Mar 10, 2025
65904d9
* Update GH worfklow to work with Go 1.23.5
sainoe Mar 11, 2025
79c8d77
remove unwanted file addition
sainoe Mar 11, 2025
533b992
Fix E2E tests that were failing in majority due to changes in Broadca…
sainoe Mar 12, 2025
b963177
update CometBFT deps to Injective repo in go.mod files
sainoe Mar 12, 2025
23835b3
bump download-artifact to v4 in GH workflow
sainoe Mar 12, 2025
a74d771
Fix Test FormatCoin test (broken in SDK v0.50.9 release)
sainoe Mar 12, 2025
891f6b1
bump cosmos-db to v1.0.1
sainoe Mar 14, 2025
9ff82a8
run go mod tidy for all submodules
sainoe Mar 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ jobs:
run: go list ./... > pkgs.txt
- name: Split pkgs into 4 files
run: split -d -n l/4 pkgs.txt pkgs.txt.part.
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: "${{ github.sha }}-00"
path: ./pkgs.txt.part.00
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: "${{ github.sha }}-01"
path: ./pkgs.txt.part.01
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: "${{ github.sha }}-02"
path: ./pkgs.txt.part.02
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: "${{ github.sha }}-03"
path: ./pkgs.txt.part.03
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
if: env.GIT_DIFF
run: |
cat pkgs.txt.part.${{ matrix.part }} | xargs go test -mod=readonly -race -timeout 30m -coverprofile=${{ matrix.part }}profile.out -covermode=atomic -tags='ledger test_ledger_mock'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: env.GIT_DIFF
with:
name: "${{ github.sha }}-${{ matrix.part }}-coverage"
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
if: env.GIT_DIFF
run: |
make test-integration-cov
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: env.GIT_DIFF
with:
name: "${{ github.sha }}-integration-coverage"
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
if: env.GIT_DIFF
run: |
make test-e2e-cov
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: env.GIT_DIFF
with:
name: "${{ github.sha }}-e2e-coverage"
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
**/Makefile
Makefile
- name: start localnet
if: env.GIT_DIFF
if: env.GIT_DIFF||env.ACT
run: |
make clean localnet-start
- name: test liveness
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.23"
check-latest: true
cache: true
cache-dependency-path: core/go.sum
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.23"
check-latest: true
cache: true
cache-dependency-path: depinject/go.sum
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.23"
check-latest: true
cache: true
cache-dependency-path: errors/go.sum
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.23"
check-latest: true
cache: true
cache-dependency-path: math/go.sum
Expand Down Expand Up @@ -472,7 +472,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.23"
check-latest: true
cache: true
cache-dependency-path: orm/go.sum
Expand Down Expand Up @@ -596,7 +596,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.23"
check-latest: true
cache: true
cache-dependency-path: store/go.sum
Expand Down Expand Up @@ -627,7 +627,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.23"
check-latest: true
cache: true
cache-dependency-path: log/go.sum
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ Ref: https://keepachangelog.com/en/1.0.0/

## [Unreleased]

* (baeapp) [#21979](https://github.com/cosmos/cosmos-sdk/pull/21979) Create CheckTxHandler to allow extending the logic of CheckTx.

## [v0.50.9](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.9) - 2024-08-07

## Bug Fixes
Expand Down
Loading
Loading