Skip to content

Commit 401feb0

Browse files
authored
build: bump minimum Go version to 1.24.1 (#4838)
* build: bump minimum Go version to 1.24.1 Go 1.24.0 has a known issue with the sonic library (golang/go#71672) that causes build failures. This was fixed in Go 1.24.1. Changes: - Update go.mod files from 1.24.0 to 1.24.1 (5 files) - Update documentation from 1.24 to 1.24.1 (4 files) Fixes #4837 * Update go.mod template and add changelog entry
1 parent 2aeb1d6 commit 401feb0

File tree

11 files changed

+14
-10
lines changed

11 files changed

+14
-10
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### Changes
6+
7+
- [#4838](https://github.com/ignite/cli/pull/4838) Bump minimum Go version to 1.24.1.
8+
59
### Fixes
610

711
- [#4833](https://github.com/ignite/cli/pull/4833) IBC consensus state not found.

docs/docs/01-welcome/02-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Ignite CLI is supported for the following operating systems:
2323

2424
Ignite CLI is written in the Go programming language. To use Ignite CLI on a local system:
2525

26-
- Install [Go](https://golang.org/doc/install) (**version 1.24** or higher)
26+
- Install [Go](https://golang.org/doc/install) (**version 1.24.1** or higher)
2727
- Ensure the Go environment variables are [set properly](https://golang.org/doc/gopath_code#GOPATH) on your system
2828

2929
## Verify your Ignite CLI version

docs/docs/04-clients/01-go-client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ To import dependencies for your package, you can add the following code to the
7777
```text title="blogclient/go.mod"
7878
module blogclient
7979
80-
go 1.24
80+
go 1.24.1
8181
8282
require (
8383
blog v0.0.0-00010101000000-000000000000

docs/versioned_docs/version-v29/01-welcome/02-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Ignite CLI is supported for the following operating systems:
2323

2424
Ignite CLI is written in the Go programming language. To use Ignite CLI on a local system:
2525

26-
- Install [Go](https://golang.org/doc/install) (**version 1.24** or higher)
26+
- Install [Go](https://golang.org/doc/install) (**version 1.24.1** or higher)
2727
- Ensure the Go environment variables are [set properly](https://golang.org/doc/gopath_code#GOPATH) on your system
2828

2929
## Verify your Ignite CLI version

docs/versioned_docs/version-v29/04-clients/01-go-client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ To import dependencies for your package, you can add the following code to the
7777
```text title="blogclient/go.mod"
7878
module blogclient
7979
80-
go 1.24
80+
go 1.24.1
8181
8282
require (
8383
blog v0.0.0-00010101000000-000000000000

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ignite/cli/v29
22

3-
go 1.24.0
3+
go 1.24.1
44

55
require (
66
cosmossdk.io/core v0.11.3

ignite/internal/plugin/testdata/execute_fail/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module execute_fail
22

3-
go 1.24.0
3+
go 1.24.1
44

55
replace github.com/ignite/cli/v29 => ../../../../..
66

ignite/internal/plugin/testdata/execute_ok/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module execute_ok
22

3-
go 1.24.0
3+
go 1.24.1
44

55
replace github.com/ignite/cli/v29 => ../../../../..
66

ignite/internal/tools/gen-config-doc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ignite/cli/ignite/internal/tools/gen-config-doc
22

3-
go 1.24.0
3+
go 1.24.1
44

55
replace github.com/ignite/cli/v29 => ../../../../
66

ignite/templates/app/files/go.mod.plush

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module <%= ModulePath %>
22

3-
go 1.24.0
3+
go 1.24.1
44

55
replace (
66
// fix upstream GHSA-h395-qcrw-5vmq vulnerability.

0 commit comments

Comments
 (0)