Skip to content
Open
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
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module github.com/redis/go-redis/v9

go 1.24
go 1.25.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep root module on Go 1.24

Raising the root go directive to 1.25.0 makes the client library unloadable for consumers and CI jobs pinned to Go 1.24 with local toolchains, even though the root module is still documented as Go 1.24+. If golang.org/x/sys v0.47.0 requires Go 1.25, this bump should wait for an intentional minimum-version change; otherwise use a x/sys version that preserves the current Go 1.24 floor.

AGENTS.md reference: AGENTS.md:L11-L12

Useful? React with 👍 / 👎.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep root module on Go 1.24

Raising the root go directive to 1.25.0 makes the client library unloadable for consumers and CI jobs pinned to Go 1.24 with local toolchains, even though the root module is still documented as Go 1.24+. If golang.org/x/sys v0.47.0 requires Go 1.25, this bump should wait for an intentional minimum-version change; otherwise use a x/sys version that preserves the current Go 1.24 floor.

Useful? React with 👍 / 👎.


require (
github.com/bsm/ginkgo/v2 v2.12.0
github.com/bsm/gomega v1.27.10
github.com/cespare/xxhash/v2 v2.3.0
github.com/zeebo/xxh3 v1.1.0
go.uber.org/atomic v1.11.0
golang.org/x/sys v0.30.0
golang.org/x/sys v0.47.0
)

require github.com/klauspost/cpuid/v2 v2.2.10 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
github.com/zeebo/xxh3 v1.1.0/go.mod h1:IisAie1LELR4xhVinxWS5+zf1lA4p0MW4T+w+W07F5s=
go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=
go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0=
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.47.0 h1:o7XGOvZQCADBQQ4Y7VNq2dRWQR7JmOUW8Kxx4ZsNgWs=
golang.org/x/sys v0.47.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
Loading