-
Notifications
You must be signed in to change notification settings - Fork 273
🌱 Replace errors pkg with stdlib #2439
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: main
Are you sure you want to change the base?
Conversation
Hi @tylerauerbeck. Thanks for your PR. I'm waiting for a metal3-io member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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 kubernetes-sigs/prow repository. |
/ok-to-test |
Thanks for the PR! AFAIK this does not break anything, any reason why it is marked as breaking change? Also, fix the issues reported by CI and squash the commits. |
@tuminoid Out of all the options, that seemed most appropriate since I was making changes to an underlying dependency. But happy to update it to anything you think is more appropriate. |
68a0217
to
17aba85
Compare
Thanks. Breaking is reserved to things that need changes on consumer or end-user side, like API version change, or major refactoring affecting lib consumers etc that they need to adapt when upgrading our module or release. /retitle 🌱 Replace errors pkg with stdlib |
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
/cc @lentzi90
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.
/approve
New changes are detected. LGTM label has been removed. |
d9efd68
to
6ddc7e9
Compare
6ddc7e9
to
498cabc
Compare
5df26a3
to
b7abbd6
Compare
Signed-off-by: Tyler Auerbeck <[email protected]>
b7abbd6
to
713de8d
Compare
I don't think these tests failing are related to my changes as I see it failing in a few other tests. Does this happen to be an existing flake/broken tests? Just want to double check before digging in too deep. |
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
Thanks @tylerauerbeck .
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: fmuyassarov, lentzi90 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Yes, @lentzi90 is taking look why BMO e2e is failing. Seems to be something external dependency changed. |
The e2e tests should go green if you rebase this |
@lentzi90 Should be good to go now. |
Squash commits please. |
What this PR does / why we need it:
This PR updates the usage of
github.com/pkg/errors
to instead utilize theerrors
package. A majority of cases just involved moving fromerrors.Wrapf
tofmt.Errorf("some error: %w", err
to match the existing formatting. This is needed as thegithub-proxy.voidd.workers.dev/pkg/errors
has been deprecated for some time.Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #2410