You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* main:
test: fix sims (#21735)
build: bump proto-builder (#21730)
refactor(schema)!: rename IntegerStringKind and DecimalStringKind (#21694)
feat(types/collections): add `LegacyDec` collection value (#21693)
refactor(server): alias AppOptions to coreserver.DynamicConfig (#21711)
refactor(simapp): simplify simapp di (#21718)
feat: replace the cosmos-db usecases in the tests with `core/testing` (#21525)
feat(runtime/v2): store loader on simappv2 (#21704)
docs(x/auth): vesting (#21715)
build(deps): Bump google.golang.org/grpc from 1.66.1 to 1.66.2 (#21670)
refactor(systemtest): Add cli.RunAndWait for common operations (#21689)
fix(runtime/v2): provide default factory options if unset in app builder (#21690)
chore: remove duplicate proto files for the same proto file (#21648)
feat(x/genutil): add better error messages for genesis validation (#21701)
build(deps): Bump cosmossdk.io/core from 1.0.0-alpha.1 to 1.0.0-alpha.2 (#21698)
test: migrate e2e/bank to system tests (#21607)
chore: fix the gci lint issue in testutil (#21695)
docs(x/authz): update grant docs (#21677)
* (runtime) [#21704](https://github.com/cosmos/cosmos-sdk/pull/21704) Add StoreLoader in simappv2.
46
47
47
48
### Improvements
48
49
50
+
* (genutil) [#21701](https://github.com/cosmos/cosmos-sdk/pull/21701) Improved error messages for genesis validation.
51
+
49
52
### Bug Fixes
50
53
51
54
* (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.
Copy file name to clipboardExpand all lines: UPGRADING.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -439,6 +439,11 @@ Most of Cosmos SDK modules have migrated to [collections](https://docs.cosmos.ne
439
439
Many functions have been removed due to this changes as the API can be smaller thanks to collections.
440
440
For modules that have migrated, verify you are checking against `collections.ErrNotFound` when applicable.
441
441
442
+
#### `x/auth`
443
+
444
+
Vesting accounts messages (and CLIs) have been removed. Existing vesting accounts will keep working but no new vesting accounts can be created.
445
+
Use `x/accounts` lockup accounts or implement an `x/accounts` vesting account instead.
446
+
442
447
#### `x/accounts`
443
448
444
449
Accounts's AccountNumber will be used as a global account number tracking replacing Auth legacy AccountNumber. Must set accounts's AccountNumber with auth's AccountNumber value in upgrade handler. This is done through auth keeper MigrateAccountNumber function.
0 commit comments