-
Notifications
You must be signed in to change notification settings - Fork 462
OCPBUGS-67673: bump logrus to v1.9.3 #5501
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
base: release-4.13
Are you sure you want to change the base?
OCPBUGS-67673: bump logrus to v1.9.3 #5501
Conversation
This mitigates CVE-2025-65637 within logrus.
|
@cheesesashimi: This pull request references Jira Issue OCPBUGS-67673, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/jira refresh |
|
@cheesesashimi: This pull request references Jira Issue OCPBUGS-67673, which is invalid:
Comment DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
yuqi-zhang
left a comment
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.
/lgtm
It's a bit annoying to track the backport all the way through, since it'll expect dependant bugs from previous versions. Perhaps we can ask for an override from someone
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cheesesashimi, yuqi-zhang The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
@cheesesashimi: The following tests failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
- What I did
Updated our dependency upon https://github.com/sirupsen/logrus.
- How to verify it
There should be no behavior changes within the MCO. Other than that, proving that this is fixed should be fairly straightforward:
podman run -it --rm -v "$PWD:/go/src/github.com/openshift/machine-config-operator:z" -w /go/src/github.com/openshift/machine-config-operator registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.19-openshift-4.13 make binaries. This will build the MCO binaries using the Go toolchain for this OCP release.for gobin in _output/linux/amd64/*; do echo "$gobin:"; go version -m "$gobin" | grep -i 'logrus'; donein order to view which binaries the MCO was built with. The output should resemble the following:(Note: It is OK for components such as the apiserver-watcher, machine-config-operator, machine-config-server to not return anything. This just means that logrus is not within their dependency chain.)
- Description for the changelog
Update logrus to v1.9.3.