chore(deps): Bulk update Go dependencies - #79
Draft
aaljewarane wants to merge 1 commit into
Draft
Conversation
Update dependencies to current releases, superseding the stale open Dependabot pull request: testify v1.11.1 -> v1.12.1 x/net v0.46.0 -> v0.50.0 x/sys v0.38.0 -> v0.41.0 x/net is held at v0.50.0 and x/sys at v0.41.0 because later releases declare go 1.25 and would force this module's go directive above 1.24. The go directive is intentionally left unchanged.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Bulk update of Go dependencies, superseding the stale open Dependabot PR.
github.com/stretchr/testifygolang.org/x/net(indirect)golang.org/x/sys(indirect)testifyv1.12.x replacesgo-spew/go-difflibwithgo.yaml.in/yaml/v3.Note on the Go version
The
godirective is intentionally left at 1.24.0.A plain
go get -u ./...silently raises it to 1.25.0, because the currentgolang.org/x/*releases declarego 1.25or newer. To avoid that,x/netis capped at v0.50.0 (v0.51.0+ declarego 1.25) andx/sysat v0.41.0 (v0.42.0+ declarego 1.25).This does mean the open Dependabot PR for
x/netv0.55.0 cannot be taken until thegodirective moves.Testing
Local, against the upstream
masterbase:go build ./...— passgo vet ./...— passgo test ./...— passmake -f ci/Makefile --include-dir ci ci-deps ci-build ci-test— passgolangci-lint run --disable errcheck— 5 pre-existing staticcheck findings in files untouched by this change; CI runs withonly-new-issues: true, so nothing new is reported.Related
Supersedes the open Dependabot PR for
x/net, which can be closed once this merges.