chore(deps): bump k8s.io/klog/v2 from v2.130.1 to v2.140.0#3221
chore(deps): bump k8s.io/klog/v2 from v2.130.1 to v2.140.0#3221pierluigilenoci wants to merge 1 commit into
Conversation
✅ Deploy Preview for devspace-docs canceled.Built without sensitive environment variables
|
9359abe to
028e8c2
Compare
028e8c2 to
9cf455a
Compare
|
Hi — friendly follow-up. CI is green and all checks pass. Would you be able to review when you get a chance? Thank you! |
|
The state after the function runs looks like:
With logtostderr false, we skip this and make it into the also to stderr bit so we'll have both err and info. I haven't run it, but I think this will make the logs noiser. |
|
Thank you for the review and the detailed walkthrough! You're right. I traced the execution path more carefully: Since (!l.alsoToStderr && s >= l.stderrThreshold.get())With The The fix is to remove the |
|
Thanks @zerbitx for the detailed walkthrough — you were right. I traced through the code again: with I've pushed an updated version that drops both flag registrations. The change is now just the klog/v2 bump to v2.140.0 plus |
Routine vendored dependency update. No behavioral changes to devspace — klog output is already fully silenced via SetOutput(io.Discard). Signed-off-by: Pierluigi Lenoci <pierluigilenoci@gmail.com>
bd5a694 to
02b65d3
Compare
|
Hi @zerbitx — thanks for the review that caught the no-op issue. I've simplified the PR to an honest routine dep bump (k8s.io/klog/v2 v2.130.1 → v2.140.0) with no behavioral changes, and updated the description accordingly. Would a pure version bump like this be welcome, or would you prefer I close this? Happy either way — just want to avoid leaving a zombie PR. Thanks! |
Summary
Routine vendored dependency update: bumps
k8s.io/klog/v2from v2.130.1 to v2.140.0.Note on original PR description: The original description claimed this would improve severity-based log filtering. @zerbitx correctly pointed out that devspace already routes all klog output to
io.DiscardviaSetOutput, so the application-level change was a no-op. This updated PR is honest about that — it is a pure routine version bump.Changes
go.mod: bump k8s.io/klog/v2 v2.130.1 → v2.140.0vendor/: update vendored klog/v2 to v2.140.0