-
Notifications
You must be signed in to change notification settings - Fork 2.6k
chore(deps): bump golang.org/x/sys from 0.30.0 to 0.47.0 #3957
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Raising the root 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 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Raising the root
godirective 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+. Ifgolang.org/x/sysv0.47.0 requires Go 1.25, this bump should wait for an intentional minimum-version change; otherwise use ax/sysversion that preserves the current Go 1.24 floor.AGENTS.md reference: AGENTS.md:L11-L12
Useful? React with 👍 / 👎.