deps: upgrade all dependencies to latest#124
Merged
Merged
Conversation
Go modules: - sony/gobreaker v1.0.0 -> v2.4.0 (major; migrated to generic CircuitBreaker[any] in healthcheck package) - klauspost/compress v1.18.6 -> v1.18.7 (indirect) - prometheus/procfs v0.21.0 -> v0.21.1 (indirect) GitHub Actions: - golangci/golangci-lint-action v9.2.1 -> v9.3.0 - github/codeql-action v4 -> v4.36.2 (init/autobuild/analyze) - softprops/action-gh-release: correct stale version comment to v3.0.1 All other dependencies already at latest. Build, vet, tests, and golangci-lint (v2.9.0) pass. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #124 +/- ##
=======================================
Coverage 79.34% 79.34%
=======================================
Files 44 44
Lines 3960 3960
=======================================
Hits 3142 3142
Misses 611 611
Partials 207 207
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.
Upgrades all dependencies to their latest versions and fixes the resulting code changes. No rollbacks.
Go modules
healthcheckpackage toCircuitBreaker[any]/NewCircuitBreaker[any], preserving existing behavior (Executestill returnsany, type-asserted toHealthCheckResult).State,Counts,Settings, andErrOpenStateare unchanged in v2.All other Go modules were already at their latest versions.
GitHub Actions
# v2comment to# v3.0.1(pin was already on the v3.0.1 commit)Validation
go build ./...,go vet ./...— passgo test ./...— pass (healthcheck recompiled and tested against gobreaker v2)golangci-lint run(v2.9.0, matching CI) — 0 issuesgo mod verifyandgo mod tidy— clean / stableCo-authored-by: Copilot App 223556219+Copilot@users.noreply.github.com