Skip to content

Commit 28016f6

Browse files
authored
Merge branch 'main' into kocu/rm-stf-run-with-ctx
2 parents a2ce376 + 81ec7ea commit 28016f6

Some content is hidden

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

47 files changed

+3380
-267
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,15 @@ updates:
187187
labels:
188188
- "A:automerge"
189189
- dependencies
190+
- package-ecosystem: gomod
191+
directory: "x/accounts/defaults/base"
192+
schedule:
193+
interval: weekly
194+
day: wednesday
195+
time: "02:45"
196+
labels:
197+
- "A:automerge"
198+
- dependencies
190199
- package-ecosystem: gomod
191200
directory: "x/accounts/defaults/multisig"
192201
schedule:

.github/pr_labeler.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
- indexer/postgres/**/*
2929
"C:x/accounts":
3030
- x/accounts/**/*
31+
"C:x/accounts/base":
32+
- x/accounts/defaults/base/**/*
3133
"C:x/accounts/multisig":
3234
- x/accounts/defaults/multisig/**/*
3335
"C:x/accounts/lockup":

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -937,6 +937,29 @@ jobs:
937937
with:
938938
projectBaseDir: x/accounts/
939939

940+
test-x-accounts-base:
941+
runs-on: ubuntu-latest
942+
steps:
943+
- uses: actions/checkout@v4
944+
- uses: actions/setup-go@v5
945+
with:
946+
go-version: "1.23"
947+
check-latest: true
948+
cache: true
949+
cache-dependency-path: x/accounts/defaults/base/go.sum
950+
- uses: technote-space/get-diff-action@v6.1.2
951+
id: git_diff
952+
with:
953+
PATTERNS: |
954+
x/accounts/defaults/base/**/*.go
955+
x/accounts/defaults/base/go.mod
956+
x/accounts/defaults/base/go.sum
957+
- name: tests
958+
if: env.GIT_DIFF
959+
run: |
960+
cd x/accounts/defaults/base
961+
go test -mod=readonly -timeout 30m -coverprofile=coverage.out -covermode=atomic -tags='norace ledger test_ledger_mock' ./...
962+
940963
test-x-accounts-lockup:
941964
runs-on: ubuntu-latest
942965
steps:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@ Every module contains its own CHANGELOG.md. Please refer to the module you are i
5454
### Bug Fixes
5555

5656
* (baseapp) [#21256](https://github.com/cosmos/cosmos-sdk/pull/21256) Halt height will not commit the block indicated, meaning that if halt-height is set to 10, only blocks until 9 (included) will be committed. This is to go back to the original behavior before a change was introduced in v0.50.0.
57+
* (runtime) [#21769](https://github.com/cosmos/cosmos-sdk/pull/21769) Fix baseapp options ordering to avoid overwriting options set by modules.
5758

5859
### API Breaking Changes
60+
5961
* (sims)[#21613](https://github.com/cosmos/cosmos-sdk/pull/21613) Add sims2 framework and factory methods for simpler message factories in modules
6062

6163
### Deprecated

0 commit comments

Comments
 (0)