Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 4 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## [`v29.0.0`](https://github.com/ignite/cli/releases/tag/v29.0.0)

### Features

- [#4683](https://github.com/ignite/cli/pull/4683) Allow to change default denom via flag.
Expand All @@ -16,7 +18,7 @@
- [#4707](https://github.com/ignite/cli/pull/4707) Show `buf` version in `ignite version` only when in a go module.
- [#4709](https://github.com/ignite/cli/pull/4709) Remove legacy msgServer support

### Bug Fixes
### Fixes

- [#4686](https://github.com/ignite/cli/pull/4686) Filter discovered protos to only messages.
- [#4694](https://github.com/ignite/cli/issues/4694) Install an app using the `.` as a current path show a wrong app name.
Expand Down Expand Up @@ -206,7 +208,7 @@

- [#4376](https://github.com/ignite/cli/pull/4376) Set different chain-id for in place testnet

### Bug Fixes
### Fixes

- [#4421](https://github.com/ignite/cli/pull/4422) Fix typo in simulation template

Expand Down
3 changes: 2 additions & 1 deletion ignite/cmd/generate_typescript_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ changes when the blockchain is started with a flag:

ignite chain serve --generate-clients
`,
RunE: generateTSClientHandler,
RunE: generateTSClientHandler,
Hidden: true, // TODO(julienrbrt): remove this after https://github.com/ignite/cli/pull/4706.
}

c.Flags().AddFlagSet(flagSetYes())
Expand Down
2 changes: 1 addition & 1 deletion ignite/templates/app/files/go.mod.plush
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ replace (

require (
cosmossdk.io/api v0.9.2
cosmossdk.io/client/v2 v2.0.0-beta.8.0.20250402172810-41e3e9d004a1
cosmossdk.io/client/v2 v2.0.0-beta.11
cosmossdk.io/collections v1.2.0
cosmossdk.io/core v0.11.3
cosmossdk.io/depinject v1.2.0
Expand Down