Update depedencies for release#377
Conversation
# Changes: - Update k8s dependencies - Update build dependencies - Update other minor dependencies Signed-off-by: Sayan Biswas <sayan-biswas@live.com>
|
PR needs rebase. 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. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
There was a problem hiding this comment.
Pull request overview
Updates Go module configuration to prepare for a release by bumping Kubernetes/tooling and related transitive dependencies.
Changes:
- Bumped Kubernetes client/library versions (e.g.,
k8s.io/*) and other core dependencies. - Updated various indirect dependencies to newer versions.
- Updated the
golanguage version ingo.mod.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| github.com/go-openapi/swag/cmdutils v0.25.4 // indirect | ||
| github.com/go-openapi/swag/conv v0.25.4 // indirect | ||
| github.com/go-openapi/swag/fileutils v0.25.4 // indirect | ||
| github.com/go-openapi/swag/jsonname v0.25.4 // indirect | ||
| github.com/go-openapi/swag/jsonutils v0.25.4 // indirect | ||
| github.com/go-openapi/swag/loading v0.25.4 // indirect | ||
| github.com/go-openapi/swag/mangling v0.25.4 // indirect | ||
| github.com/go-openapi/swag/netutils v0.25.4 // indirect | ||
| github.com/go-openapi/swag/stringutils v0.25.4 // indirect | ||
| github.com/go-openapi/swag/typeutils v0.25.4 // indirect | ||
| github.com/go-openapi/swag/yamlutils v0.25.4 // indirect |
There was a problem hiding this comment.
These look like package import paths being added as separate module requirements. Unless github.com/go-openapi/swag/... subdirectories are actually separate modules (with their own go.mod), go mod will fail to resolve them as modules. Keep only the module requirement for github.com/go-openapi/swag v0.25.4 and let go mod tidy manage transitive package usage.
| github.com/go-openapi/swag/cmdutils v0.25.4 // indirect | |
| github.com/go-openapi/swag/conv v0.25.4 // indirect | |
| github.com/go-openapi/swag/fileutils v0.25.4 // indirect | |
| github.com/go-openapi/swag/jsonname v0.25.4 // indirect | |
| github.com/go-openapi/swag/jsonutils v0.25.4 // indirect | |
| github.com/go-openapi/swag/loading v0.25.4 // indirect | |
| github.com/go-openapi/swag/mangling v0.25.4 // indirect | |
| github.com/go-openapi/swag/netutils v0.25.4 // indirect | |
| github.com/go-openapi/swag/stringutils v0.25.4 // indirect | |
| github.com/go-openapi/swag/typeutils v0.25.4 // indirect | |
| github.com/go-openapi/swag/yamlutils v0.25.4 // indirect |
Changes:
Submitter Checklist
See the contributor guide
for details on coding conventions, github and prow interactions, and the code review process.
Release Notes