Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: v0.50.11 neutron #74

Merged
merged 33 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
809950e
feat(crypto/keyring): add Linux's keyctl support (backport #21653) (#…
mergify[bot] Sep 21, 2024
a5f463a
fix(x/staking): query redelegation command (backport #21856) (#21861)
mergify[bot] Sep 23, 2024
fa02dcd
chore(docs): rename merlin to simapp (backport #21884) (#21886)
mergify[bot] Sep 25, 2024
2609f9c
fix(cli): avoid id isn't supported error when query address-by-acc-nu…
mergify[bot] Sep 26, 2024
bcd31a1
fix(sims): Skip sims test when running dry on validators (backport #2…
mergify[bot] Sep 26, 2024
412f4e7
fix(client/v2): correctly handle enhanced sub commands (backport #218…
mergify[bot] Sep 26, 2024
ced9572
feat(client/v2): improve error message on enums (backport #21936) (#2…
mergify[bot] Sep 26, 2024
4e74a30
chore: regenerate addrbook.json for in-place-testnet (backport #21941…
mergify[bot] Sep 27, 2024
35f8d05
docs: update gov docs (backport #22048) (#22050)
mergify[bot] Oct 2, 2024
8df6800
docs(keys): remove unsupported `--dry-run` flag description for `keys…
mergify[bot] Oct 3, 2024
d3ee514
chore: Revert "docs: update gov docs (backport #22048)" (#22064)
julienrbrt Oct 3, 2024
b57ce4d
docs(x/genutil): fix `genesis migrate` command examples (backport #22…
mergify[bot] Oct 3, 2024
27f1f78
chore(simapp): be consistent with runtime (#22203)
julienrbrt Oct 10, 2024
955304a
docs: add docs boilerplate (backport #22202) (#22210)
mergify[bot] Oct 10, 2024
9efec42
fix(x/tx): sort with oneof field name in amino-json (backport #21782)…
mergify[bot] Oct 11, 2024
751e5ec
chore(x/group): update supported flags (backport #22229) (#22231)
mergify[bot] Oct 11, 2024
6be4b79
fix(x/group): proper address rendering in error (backport #22425) (#2…
mergify[bot] Nov 5, 2024
3b72e77
feat(client/v2): add keyring flags in query commands (backport #22443…
mergify[bot] Nov 6, 2024
0ab5319
build(deps): Bump cosmossdk.io/depinject from 1.0.0 to 1.1.0 (#22463)
dependabot[bot] Nov 7, 2024
d8d7eb0
build(deps): Bump actions/xxx-artifact from v3 to v4 (#22473)
auricom Nov 8, 2024
47874ac
fix(server): fix fallback genesis path (backport #22564) (#22573)
mergify[bot] Nov 20, 2024
56c2c7d
build(deps): Bump cosmossdk.io/math from 1.3.0 to 1.4.0 (#22607)
dependabot[bot] Nov 21, 2024
8210b50
fix(client/v2/autocli): prevent duplicate addition of customCommands …
mergify[bot] Nov 21, 2024
7bb2a3d
build(deps): Bump github.com/cosmos/cosmos-db from 1.0.2 to 1.1.0 (#2…
dependabot[bot] Nov 25, 2024
43ac3df
build(deps): Bump github.com/cosmos/iavl from 1.2.0 to 1.2.2 (#22662)
dependabot[bot] Nov 27, 2024
96a3016
chore: prepare v0.50.11 (#22643)
julienrbrt Dec 2, 2024
4a73a1e
fix(client/v2/autocli): add CoinDec flag (backport #22817) (#22821)
mergify[bot] Dec 10, 2024
d62bcbd
fix(x/tx): fix amino json drift from legacy spec (backport #21825) (#…
mergify[bot] Dec 12, 2024
3b082b5
build(deps): Bump cosmossdk.io/x/tx from 0.13.6-0.20241003112805-ff87…
dependabot[bot] Dec 12, 2024
679ca5e
chore: edit changelog store (partial backport #22864) (#22884)
mergify[bot] Dec 16, 2024
ba7ac45
Merge commit from fork
alpe Dec 16, 2024
eb1a8e8
chore: prep v0.50.11 release notes (#22898)
julienrbrt Dec 16, 2024
d808b38
Merge remote-tracking branch 'cosmos/release/v0.50.x' into release/v0…
pr0n00gler Dec 17, 2024
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
Prev Previous commit
Next Next commit
docs(x/genutil): fix genesis migrate command examples (backport cos…
…mos#22090) (cosmos#22097)

Co-authored-by: tutufen <tutufen@outlook.com>
  • Loading branch information
mergify[bot] and tutufen authored Oct 3, 2024
commit b57ce4d19b44ec7e425f09515078b49b07ee3b48
2 changes: 1 addition & 1 deletion x/genutil/client/cli/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func MigrateGenesisCmd(migrations types.MigrationMap) *cobra.Command {
Use: "migrate [target-version] [genesis-file]",
Short: "Migrate genesis to a specified target version",
Long: "Migrate the source genesis into the target version and print to STDOUT",
Example: fmt.Sprintf("%s migrate v0.47 /path/to/genesis.json --chain-id=cosmoshub-3 --genesis-time=2019-04-22T17:00:00Z", version.AppName),
Example: fmt.Sprintf("%s genesis migrate v0.47 /path/to/genesis.json --chain-id=cosmoshub-3 --genesis-time=2019-04-22T17:00:00Z", version.AppName),
Args: cobra.ExactArgs(2),
RunE: func(cmd *cobra.Command, args []string) error {
return MigrateHandler(cmd, args, migrations)
Expand Down