Skip to content

Update the test dependencies too - #826

Merged
wayneeseguin merged 1 commit into
developfrom
update-test-deps
Sep 9, 2026
Merged

Update the test dependencies too#826
wayneeseguin merged 1 commit into
developfrom
update-test-deps

Conversation

@wayneeseguin

Copy link
Copy Markdown
Contributor

Dependabot's first grouped pull request (#824) caught something the earlier sweep missed: go get -u ./... walks the imports of the named packages but not the imports of their tests, so ginkgo, gomega, pprof and Masterminds/semver never moved. go get -u -t ./... picks them up, and this goes slightly further than #824 — ginkgo lands on 2.32.2 rather than 2.32.1.

armon/go-metrics stays at v0.4.1 on purpose. The module renamed itself to hashicorp/go-metrics, so every version after v0.4.1 declares a module path that no longer matches how it is required here; the toolchain tries each one and falls back. Moving off it means switching to the new path, which is its own change.

Verified locally: gofmt clean, go vet clean, and the race suite green across all nine packages. CI now runs on hosted runners, so the rest proves itself on this pull request.

The earlier sweep ran `go get -u ./...`, which walks the imports of
the named packages but not the imports of their tests, so ginkgo,
gomega, pprof and semver stayed behind. `go get -u -t ./...` picks
those up.

armon/go-metrics stays at v0.4.1: the module renamed itself to
hashicorp/go-metrics, so every later version declares a path that no
longer matches how it is required here.
@wayneeseguin
wayneeseguin merged commit 21bea2f into develop Sep 9, 2026
5 of 6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant