Skip to content

Commit cd6de88

Browse files
authored
Merge branch 'main' into feat/add-field-max-lenght
2 parents bfaf114 + c400a6d commit cd6de88

File tree

39 files changed

+564
-430
lines changed

39 files changed

+564
-430
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
- [#4437](https://github.com/ignite/cli/pull/4437) Remove module placeholders
2424
- [#4289](https://github.com/ignite/cli/pull/4289), [#4423](https://github.com/ignite/cli/pull/4423), [#4432](https://github.com/ignite/cli/pull/4432) Cosmos SDK v0.52 support
2525
- [#4480](https://github.com/ignite/cli/pull/4480) Add field max length
26+
- [#4477](https://github.com/ignite/cli/pull/4477) IBC v10 support
2627
- [#4166](https://github.com/ignite/cli/issues/4166) Migrate buf config files to v2
2728

2829
### Changes
@@ -48,6 +49,7 @@
4849
- [#4361](https://github.com/ignite/cli/pull/4361) Remove unused `KeyPrefix` method
4950
- [#4384](https://github.com/ignite/cli/pull/4384) Compare genesis params into chain genesis tests
5051
- [#4463](https://github.com/ignite/cli/pull/4463) Run `chain simulation` with any simulation test case
52+
- [#4486](https://github.com/ignite/cli/pull/4486) Fix issue when set account prefix with sdk v0.52
5153

5254
### Fixes
5355

@@ -57,6 +59,7 @@
5759
- [#4402](https://github.com/ignite/cli/pull/4402) Fix gentx parser into the cosmosutil package
5860
- [#4474](https://github.com/ignite/cli/pull/4474) Fix issue in `build --release` command
5961
- [#4479](https://github.com/ignite/cli/pull/4479) Scaffold an `uint64 type crashs Ignite
62+
- [#4483](https://github.com/ignite/cli/pull/4483) Fix default flag parser for apps
6063

6164
## [`v28.7.0`](https://github.com/ignite/cli/releases/tag/v28.7.0)
6265

docs/docs/08-references/01-cli.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -916,9 +916,9 @@ ignite chain simulate [flags]
916916
--genesis string custom simulation genesis file; cannot be used with params file
917917
--genesisTime int override genesis UNIX time instead of using a random UNIX time
918918
-h, --help help for simulate
919-
--initialBlockHeight int initial block to start the simulation (default 1)
919+
--initialBlockHeight uint initial block to start the simulation (default 1)
920920
--lean lean simulation log output
921-
--numBlocks int number of new blocks to simulate from the initial block height (default 200)
921+
--numBlocks uint number of new blocks to simulate from the initial block height (default 200)
922922
--params string custom simulation params file which overrides any random params; cannot be used with genesis
923923
--seed int simulation random seed (default 42)
924924
--simName string name of the simulation to run (default "TestFullAppSimulation")
@@ -3084,6 +3084,7 @@ ignite scaffold module [name] [flags]
30843084
--clear-cache clear the build cache (advanced)
30853085
--dep strings add a dependency on another module
30863086
-h, --help help for module
3087+
--ibc add IBC functionality
30873088
--module-configs strings add module configs
30883089
--ordering string channel ordering of the IBC module [none|ordered|unordered] (default "none")
30893090
--params strings add module parameters
@@ -3420,9 +3421,9 @@ ignite testnet simulate [flags]
34203421
--genesis string custom simulation genesis file; cannot be used with params file
34213422
--genesisTime int override genesis UNIX time instead of using a random UNIX time
34223423
-h, --help help for simulate
3423-
--initialBlockHeight int initial block to start the simulation (default 1)
3424+
--initialBlockHeight uint initial block to start the simulation (default 1)
34243425
--lean lean simulation log output
3425-
--numBlocks int number of new blocks to simulate from the initial block height (default 200)
3426+
--numBlocks uint number of new blocks to simulate from the initial block height (default 200)
34263427
--params string custom simulation params file which overrides any random params; cannot be used with genesis
34273428
--seed int simulation random seed (default 42)
34283429
--simName string name of the simulation to run (default "TestFullAppSimulation")

go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/ignite/cli/v29
22

3-
go 1.23.4
3+
go 1.23.5
44

5-
replace github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.52.0-rc.1.0.20250107080912-2bcc7678255f
5+
replace github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.52.0-rc.2
66

77
replace (
88
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
@@ -15,6 +15,7 @@ replace (
1515
)
1616

1717
require (
18+
cosmossdk.io/api v0.8.2
1819
cosmossdk.io/core v1.0.0
1920
cosmossdk.io/math v1.5.0
2021
cosmossdk.io/x/bank v0.2.0-rc.1
@@ -32,7 +33,7 @@ require (
3233
github.com/charmbracelet/glow v1.4.1
3334
github.com/charmbracelet/lipgloss v1.0.0
3435
github.com/cockroachdb/errors v1.11.3
35-
github.com/cometbft/cometbft v1.0.0
36+
github.com/cometbft/cometbft v1.0.1
3637
github.com/cometbft/cometbft/api v1.0.0
3738
github.com/cosmos/cosmos-sdk v0.52.0
3839
github.com/cosmos/go-bip39 v1.0.0
@@ -41,7 +42,7 @@ require (
4142
github.com/emicklei/proto-contrib v0.15.0
4243
github.com/getsentry/sentry-go v0.29.0
4344
github.com/go-delve/delve v1.21.0
44-
github.com/go-git/go-git/v5 v5.13.0
45+
github.com/go-git/go-git/v5 v5.13.2
4546
github.com/go-openapi/analysis v0.23.0
4647
github.com/go-openapi/loads v0.22.0
4748
github.com/go-openapi/spec v0.21.0
@@ -80,8 +81,8 @@ require (
8081
golang.org/x/text v0.21.0
8182
golang.org/x/tools v0.29.0
8283
golang.org/x/vuln v1.0.4
83-
google.golang.org/grpc v1.69.4
84-
google.golang.org/protobuf v1.36.4-0.20250116160514-2005adbe0cf6
84+
google.golang.org/grpc v1.70.0
85+
google.golang.org/protobuf v1.36.4
8586
gopkg.in/yaml.v3 v3.0.1
8687
mvdan.cc/gofumpt v0.7.0
8788
sigs.k8s.io/yaml v1.4.0
@@ -94,24 +95,23 @@ require (
9495
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.3-20241127180247-a33202765966.1 // indirect
9596
buf.build/gen/go/bufbuild/registry/connectrpc/go v1.18.1-20250106231242-56271afbd6ce.1 // indirect
9697
buf.build/gen/go/bufbuild/registry/protocolbuffers/go v1.36.3-20250106231242-56271afbd6ce.1 // indirect
97-
buf.build/gen/go/cometbft/cometbft/protocolbuffers/go v1.36.1-20241120201313-68e42a58b301.1 // indirect
98-
buf.build/gen/go/cosmos/gogo-proto/protocolbuffers/go v1.36.1-20240130113600-88ef6483f90f.1 // indirect
98+
buf.build/gen/go/cometbft/cometbft/protocolbuffers/go v1.36.3-20241120201313-68e42a58b301.1 // indirect
99+
buf.build/gen/go/cosmos/gogo-proto/protocolbuffers/go v1.36.3-20240130113600-88ef6483f90f.1 // indirect
99100
buf.build/gen/go/pluginrpc/pluginrpc/protocolbuffers/go v1.36.3-20241007202033-cf42259fcbfc.1 // indirect
100101
buf.build/go/bufplugin v0.6.0 // indirect
101102
buf.build/go/protoyaml v0.3.1 // indirect
102103
buf.build/go/spdx v0.2.0 // indirect
103104
cel.dev/expr v0.19.1 // indirect
104105
connectrpc.com/connect v1.18.1 // indirect
105106
connectrpc.com/otelconnect v0.7.1 // indirect
106-
cosmossdk.io/api v0.8.0 // indirect
107107
cosmossdk.io/collections v1.0.0 // indirect
108108
cosmossdk.io/core/testing v0.0.1 // indirect
109109
cosmossdk.io/depinject v1.1.0 // indirect
110110
cosmossdk.io/errors v1.0.1 // indirect
111111
cosmossdk.io/log v1.5.0 // indirect
112112
cosmossdk.io/schema v1.0.0 // indirect
113113
cosmossdk.io/store v1.10.0-rc.1.0.20241218084712-ca559989da43 // indirect
114-
cosmossdk.io/x/tx v1.0.0 // indirect
114+
cosmossdk.io/x/tx v1.0.1 // indirect
115115
dario.cat/mergo v1.0.0 // indirect
116116
filippo.io/edwards25519 v1.1.0 // indirect
117117
github.com/4meepo/tagalign v1.3.4 // indirect
@@ -131,7 +131,7 @@ require (
131131
github.com/Microsoft/go-winio v0.6.2 // indirect
132132
github.com/Microsoft/hcsshim v0.12.9 // indirect
133133
github.com/OpenPeeDeeP/depguard/v2 v2.2.0 // indirect
134-
github.com/ProtonMail/go-crypto v1.1.3 // indirect
134+
github.com/ProtonMail/go-crypto v1.1.5 // indirect
135135
github.com/alecthomas/chroma v0.8.2 // indirect
136136
github.com/alecthomas/go-check-sumtype v0.1.4 // indirect
137137
github.com/alexkohler/nakedret/v2 v2.0.4 // indirect
@@ -201,16 +201,16 @@ require (
201201
github.com/cosmos/ledger-cosmos-go v0.14.0 // indirect
202202
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
203203
github.com/curioswitch/go-reassign v0.2.0 // indirect
204-
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
204+
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
205205
github.com/daixiang0/gci v0.13.4 // indirect
206206
github.com/danieljoos/wincred v1.2.1 // indirect
207207
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
208208
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
209209
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
210210
github.com/denis-tingaikin/go-header v0.5.0 // indirect
211211
github.com/derekparker/trie v0.0.0-20230829180723-39f4de51ef7d // indirect
212-
github.com/dgraph-io/badger/v4 v4.5.0 // indirect
213-
github.com/dgraph-io/ristretto/v2 v2.0.0 // indirect
212+
github.com/dgraph-io/badger/v4 v4.5.1 // indirect
213+
github.com/dgraph-io/ristretto/v2 v2.1.0 // indirect
214214
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
215215
github.com/distribution/reference v0.6.0 // indirect
216216
github.com/dlclark/regexp2 v1.2.0 // indirect
@@ -239,7 +239,7 @@ require (
239239
github.com/go-critic/go-critic v0.11.4 // indirect
240240
github.com/go-delve/liner v1.2.3-0.20231231155935-4726ab1d7f62 // indirect
241241
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
242-
github.com/go-git/go-billy/v5 v5.6.0 // indirect
242+
github.com/go-git/go-billy/v5 v5.6.2 // indirect
243243
github.com/go-kit/log v0.2.1 // indirect
244244
github.com/go-logfmt/logfmt v0.6.0 // indirect
245245
github.com/go-logr/logr v1.4.2 // indirect
@@ -283,7 +283,7 @@ require (
283283
github.com/golangci/unconvert v0.0.0-20240309020433-c5143eacb3ed // indirect
284284
github.com/google/btree v1.1.3 // indirect
285285
github.com/google/cel-go v0.22.1 // indirect
286-
github.com/google/flatbuffers v24.3.25+incompatible // indirect
286+
github.com/google/flatbuffers v24.12.23+incompatible // indirect
287287
github.com/google/go-cmp v0.6.0 // indirect
288288
github.com/google/go-containerregistry v0.20.2 // indirect
289289
github.com/google/go-dap v0.11.0 // indirect
@@ -302,7 +302,7 @@ require (
302302
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
303303
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
304304
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
305-
github.com/hashicorp/go-metrics v0.5.3 // indirect
305+
github.com/hashicorp/go-metrics v0.5.4 // indirect
306306
github.com/hashicorp/go-uuid v1.0.2 // indirect
307307
github.com/hashicorp/go-version v1.7.0 // indirect
308308
github.com/hashicorp/golang-lru v1.0.2 // indirect
@@ -394,15 +394,15 @@ require (
394394
github.com/opencontainers/runtime-spec v1.2.0 // indirect
395395
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
396396
github.com/petermattis/goid v0.0.0-20240813172612-4fcff4a6cae7 // indirect
397-
github.com/pjbgf/sha1cd v0.3.0 // indirect
397+
github.com/pjbgf/sha1cd v0.3.2 // indirect
398398
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
399399
github.com/pkg/errors v0.9.1 // indirect
400400
github.com/pkg/profile v1.7.0 // indirect
401401
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
402402
github.com/polyfloyd/go-errorlint v1.6.0 // indirect
403403
github.com/prometheus/client_golang v1.20.5 // indirect
404404
github.com/prometheus/client_model v0.6.1 // indirect
405-
github.com/prometheus/common v0.61.0 // indirect
405+
github.com/prometheus/common v0.62.0 // indirect
406406
github.com/prometheus/procfs v0.15.1 // indirect
407407
github.com/quasilyte/go-ruleguard v0.4.2 // indirect
408408
github.com/quasilyte/go-ruleguard/dsl v0.3.22 // indirect

0 commit comments

Comments
 (0)