diff --git a/changelog.md b/changelog.md index e3ee587373..3ff33dd2da 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,10 @@ ## Unreleased +### Changes + +- [#4838](https://github.com/ignite/cli/pull/4838) Bump minimum Go version to 1.24.1. + ### Fixes - [#4833](https://github.com/ignite/cli/pull/4833) IBC consensus state not found. diff --git a/docs/docs/01-welcome/02-install.md b/docs/docs/01-welcome/02-install.md index 7c6c98431f..a362241f73 100644 --- a/docs/docs/01-welcome/02-install.md +++ b/docs/docs/01-welcome/02-install.md @@ -23,7 +23,7 @@ Ignite CLI is supported for the following operating systems: Ignite CLI is written in the Go programming language. To use Ignite CLI on a local system: -- Install [Go](https://golang.org/doc/install) (**version 1.24** or higher) +- Install [Go](https://golang.org/doc/install) (**version 1.24.1** or higher) - Ensure the Go environment variables are [set properly](https://golang.org/doc/gopath_code#GOPATH) on your system ## Verify your Ignite CLI version diff --git a/docs/docs/04-clients/01-go-client.md b/docs/docs/04-clients/01-go-client.md index 734fe6c78f..2a2ecdf98f 100644 --- a/docs/docs/04-clients/01-go-client.md +++ b/docs/docs/04-clients/01-go-client.md @@ -77,7 +77,7 @@ To import dependencies for your package, you can add the following code to the ```text title="blogclient/go.mod" module blogclient -go 1.24 +go 1.24.1 require ( blog v0.0.0-00010101000000-000000000000 diff --git a/docs/versioned_docs/version-v29/01-welcome/02-install.md b/docs/versioned_docs/version-v29/01-welcome/02-install.md index 7c6c98431f..a362241f73 100644 --- a/docs/versioned_docs/version-v29/01-welcome/02-install.md +++ b/docs/versioned_docs/version-v29/01-welcome/02-install.md @@ -23,7 +23,7 @@ Ignite CLI is supported for the following operating systems: Ignite CLI is written in the Go programming language. To use Ignite CLI on a local system: -- Install [Go](https://golang.org/doc/install) (**version 1.24** or higher) +- Install [Go](https://golang.org/doc/install) (**version 1.24.1** or higher) - Ensure the Go environment variables are [set properly](https://golang.org/doc/gopath_code#GOPATH) on your system ## Verify your Ignite CLI version diff --git a/docs/versioned_docs/version-v29/04-clients/01-go-client.md b/docs/versioned_docs/version-v29/04-clients/01-go-client.md index 734fe6c78f..2a2ecdf98f 100644 --- a/docs/versioned_docs/version-v29/04-clients/01-go-client.md +++ b/docs/versioned_docs/version-v29/04-clients/01-go-client.md @@ -77,7 +77,7 @@ To import dependencies for your package, you can add the following code to the ```text title="blogclient/go.mod" module blogclient -go 1.24 +go 1.24.1 require ( blog v0.0.0-00010101000000-000000000000 diff --git a/go.mod b/go.mod index 4dd5522702..27cece8d65 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ignite/cli/v29 -go 1.24.0 +go 1.24.1 require ( cosmossdk.io/core v0.11.3 diff --git a/ignite/internal/plugin/testdata/execute_fail/go.mod b/ignite/internal/plugin/testdata/execute_fail/go.mod index 69b0a7953d..6f8d6f3197 100644 --- a/ignite/internal/plugin/testdata/execute_fail/go.mod +++ b/ignite/internal/plugin/testdata/execute_fail/go.mod @@ -1,6 +1,6 @@ module execute_fail -go 1.24.0 +go 1.24.1 replace github.com/ignite/cli/v29 => ../../../../.. diff --git a/ignite/internal/plugin/testdata/execute_ok/go.mod b/ignite/internal/plugin/testdata/execute_ok/go.mod index 047cb5977c..1df6eeaaf4 100644 --- a/ignite/internal/plugin/testdata/execute_ok/go.mod +++ b/ignite/internal/plugin/testdata/execute_ok/go.mod @@ -1,6 +1,6 @@ module execute_ok -go 1.24.0 +go 1.24.1 replace github.com/ignite/cli/v29 => ../../../../.. diff --git a/ignite/internal/tools/gen-config-doc/go.mod b/ignite/internal/tools/gen-config-doc/go.mod index f0bc13fd69..c6044c0ffd 100644 --- a/ignite/internal/tools/gen-config-doc/go.mod +++ b/ignite/internal/tools/gen-config-doc/go.mod @@ -1,6 +1,6 @@ module github.com/ignite/cli/ignite/internal/tools/gen-config-doc -go 1.24.0 +go 1.24.1 replace github.com/ignite/cli/v29 => ../../../../ diff --git a/ignite/templates/app/files/go.mod.plush b/ignite/templates/app/files/go.mod.plush index faed7477e1..e67d44aa7c 100644 --- a/ignite/templates/app/files/go.mod.plush +++ b/ignite/templates/app/files/go.mod.plush @@ -1,6 +1,6 @@ module <%= ModulePath %> -go 1.24.0 +go 1.24.1 replace ( // fix upstream GHSA-h395-qcrw-5vmq vulnerability. diff --git a/integration/plugin/testdata/example-plugin/go.mod b/integration/plugin/testdata/example-plugin/go.mod index 1fd4e2f745..1979feb583 100644 --- a/integration/plugin/testdata/example-plugin/go.mod +++ b/integration/plugin/testdata/example-plugin/go.mod @@ -1,6 +1,6 @@ module example-plugin -go 1.24.0 +go 1.24.1 replace github.com/ignite/cli/v29 => ../../../../