-
Notifications
You must be signed in to change notification settings - Fork 2
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
build(deps): bump github.com/prometheus/client_golang from 1.19.1 to 1.20.0 #101
build(deps): bump github.com/prometheus/client_golang from 1.19.1 to 1.20.0 #101
Conversation
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.19.1 to 1.20.0. - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/v1.20.0/CHANGELOG.md) - [Commits](prometheus/client_golang@v1.19.1...v1.20.0) --- updated-dependencies: - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
WalkthroughThe recent changes to the Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
Files selected for processing (1)
- go.mod (2 hunks)
Additional comments not posted (2)
go.mod (2)
9-9
: Verify compatibility withgithub.com/prometheus/client_golang
v1.20.0.The update from version
v1.19.1
tov1.20.0
may introduce new features or changes that could affect the current codebase. Ensure that all usages of this library are compatible with the new version.Verification successful
Compatibility verified with
github.com/prometheus/client_golang
v1.20.0.The update from version
v1.19.1
tov1.20.0
appears to be compatible with the current codebase. The usages of the Prometheus client library, such as creating metrics and managing collectors, follow standard patterns that are typically unaffected by minor version updates. No breaking changes were identified in the codebase that would impact these usages.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify compatibility with the updated Prometheus client library. # Test: Search for usages of the Prometheus client library. Expect: No breaking changes. rg --type go 'prometheus' -A 5Length of output: 12429
22-22
: Verify the necessity and impact ofgithub.com/klauspost/compress
v1.17.9.The introduction of this new indirect dependency may indicate additional functionality or changes in existing dependencies. Verify that this addition is necessary and does not introduce conflicts or issues.
Verification successful
Indirect Dependency
github.com/klauspost/compress
is ValidThe presence of
github.com/klauspost/compress
v1.17.9 as an indirect dependency is consistent with Go module management. It appears ingo.sum
, indicating it is required by another dependency, but is not directly listed ingo.mod
. This is typical for transitive dependencies and does not pose any issues. No further action is needed.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the necessity and impact of the new indirect dependency. # Test: Search for usages of the klauspost compress library. Expect: Usage in dependencies. rg --type go 'klauspost' -A 5Length of output: 29
Script:
#!/bin/bash # Check for dependencies in go.mod and go.sum that require klauspost/compress # Search for dependencies in go.mod that might require klauspost/compress rg 'require' go.mod -A 3 # Search for klauspost/compress references in go.sum to see which dependency might require it rg 'klauspost/compress' go.sum -A 3Length of output: 791
Looks like github.com/prometheus/client_golang is up-to-date now, so this is no longer needed. |
Bumps github.com/prometheus/client_golang from 1.19.1 to 1.20.0.
Release notes
Sourced from github.com/prometheus/client_golang's releases.
... (truncated)
Changelog
Sourced from github.com/prometheus/client_golang's changelog.
... (truncated)
Commits
73b811c
Cut 1.20.0 release. (#1580)7ce5089
gocollector: Attach original runtime/metrics metric name to help. (#1578)062300e
Remove go_memstat_lookups_total; added runtime/metrics calculation to memstat...aa3c00d
Update common Prometheus files (#1576)3ad2722
Add default Go runtime metrics for /gc/gogc:percent, /gc/gomemlimit:bytes, /s...0715727
Update common Prometheus files (#1573)3634bd9
ci: daggerize test and lint pipelines (#1534)28b5e6e
Merge pull request #1572 from prometheus/repo_sync8e18075
Update common Prometheus files46f77a9
Merge pull request #1571 from prometheus/dependabot/github_actions/github-act...Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by CodeRabbit
New Features
Bug Fixes