fix(deps): update github.com/prometheus/prometheus digest to 551b5b1 (main)#21571
Open
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
Open
fix(deps): update github.com/prometheus/prometheus digest to 551b5b1 (main)#21571renovate-sh-app[bot] wants to merge 1 commit intomainfrom
renovate-sh-app[bot] wants to merge 1 commit intomainfrom
Conversation
1f92596 to
9d631ef
Compare
9d631ef to
4b825d2
Compare
4b825d2 to
d46c8a2
Compare
6d61ae6 to
dd9edab
Compare
dd9edab to
a48868b
Compare
a48868b to
33e7b4a
Compare
002eed7 to
6eb5df0
Compare
6eb5df0 to
9426f97
Compare
9426f97 to
0029c03
Compare
0029c03 to
274a9e0
Compare
1e4cc1a to
8c580e7
Compare
Segflow
approved these changes
Apr 22, 2026
8c580e7 to
2ee535e
Compare
2ee535e to
d6475c2
Compare
38f3062 to
872e126
Compare
872e126 to
661b5ca
Compare
661b5ca to
dd4d5f9
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Noop querier search methods return nil causing panic
- Updated noopQuerier search methods to return EmptySearchResultSet() instead of nil, preventing nil dereference in lazySearchResultSet.Next().
Or push these changes by commenting:
@cursor push 9d4cb7b0fb
Preview (9d4cb7b0fb)
diff --git a/vendor/github.com/prometheus/prometheus/storage/noop.go b/vendor/github.com/prometheus/prometheus/storage/noop.go
--- a/vendor/github.com/prometheus/prometheus/storage/noop.go
+++ b/vendor/github.com/prometheus/prometheus/storage/noop.go
@@ -44,11 +44,11 @@
}
func (noopQuerier) SearchLabelNames(_ context.Context, _ *SearchHints, _ ...*labels.Matcher) SearchResultSet {
- return nil
+ return EmptySearchResultSet()
}
func (noopQuerier) SearchLabelValues(_ context.Context, _ string, _ *SearchHints, _ ...*labels.Matcher) SearchResultSet {
- return nil
+ return EmptySearchResultSet()
}
var _ Searcher = noopQuerier{}You can send follow-ups to the cloud agent here.
Reviewed by Cursor Bugbot for commit dd4d5f9. Configure here.
689f1d7 to
9534e81
Compare
Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
9534e81 to
aea7976
Compare
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.


This PR contains the following updates:
34cebfe→551b5b1Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
Need help?
You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section.