Skip to content

Conversation

red-hat-konflux[bot]
Copy link
Contributor

@red-hat-konflux red-hat-konflux bot commented Oct 7, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
github.com/emicklei/go-restful/v3 v3.12.2 -> v3.13.0 age confidence indirect minor
github.com/go-openapi/jsonpointer v0.21.1 -> v0.22.1 age confidence indirect minor
github.com/go-openapi/jsonreference v0.21.0 -> v0.21.2 age confidence indirect patch
github.com/go-openapi/swag v0.23.1 -> v0.25.1 age confidence indirect minor
github.com/mailru/easyjson v0.9.0 -> v0.9.1 age confidence indirect patch
github.com/ovn-org/ovn-kubernetes/go-controller 57a2590 -> ef92f78 age confidence indirect digest
github.com/prometheus/common v0.66.1 -> v0.67.1 age confidence require minor
github.com/prometheus/procfs v0.16.1 -> v0.17.0 age confidence indirect minor
github.com/spf13/pflag v1.0.6 -> v1.0.10 age confidence indirect patch
github.com/stretchr/objx v0.5.2 -> v0.5.3 age confidence indirect patch
go (source) 1.24.4 -> 1.25.1 age confidence toolchain minor
go.yaml.in/yaml/v2 v2.4.2 -> v2.4.3 age confidence indirect patch
golang.org/x/net v0.43.0 -> v0.44.0 age confidence indirect minor
golang.org/x/oauth2 v0.30.0 -> v0.31.0 age confidence indirect minor
golang.org/x/sys v0.35.0 -> v0.36.0 age confidence indirect minor
golang.org/x/term v0.34.0 -> v0.35.0 age confidence indirect minor
golang.org/x/time v0.11.0 -> v0.13.0 age confidence indirect minor
google.golang.org/protobuf v1.36.8 -> v1.36.10 age confidence indirect patch
gopkg.in/evanphx/json-patch.v4 v4.12.0 -> v4.13.0 age confidence indirect minor
k8s.io/kube-openapi f3f2b99 -> 589584f age confidence indirect digest
k8s.io/utils 4c0f3b2 -> bc988d5 age confidence indirect digest
sigs.k8s.io/json cfa47c3 -> 2d32026 age confidence indirect digest

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

emicklei/go-restful (github.com/emicklei/go-restful/v3)

v3.13.0

Compare Source

  • optimize performance of path matching in CurlyRouter ( thanks @​wenhuang, Wen Huang)
go-openapi/jsonpointer (github.com/go-openapi/jsonpointer)

v0.22.1

Compare Source

v0.22.0

Compare Source

v0.21.2

Compare Source

go-openapi/jsonreference (github.com/go-openapi/jsonreference)

v0.21.2

Compare Source

v0.21.1

Compare Source

go-openapi/swag (github.com/go-openapi/swag)

v0.25.1

Compare Source

v0.25.0

Compare Source

v0.24.1

Compare Source

v0.24.0

Compare Source

mailru/easyjson (github.com/mailru/easyjson)

v0.9.1

Compare Source

What's Changed

New Contributors

Full Changelog: mailru/easyjson@v0.9.0...v0.9.1

prometheus/common (github.com/prometheus/common)

v0.67.1

Compare Source

v0.67.0

Compare Source

prometheus/procfs (github.com/prometheus/procfs)

v0.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: prometheus/procfs@v0.16.1...v0.17.0

spf13/pflag (github.com/spf13/pflag)

v1.0.10

Compare Source

What's Changed

  • fix deprecation comment for (FlagSet.)ParseErrorsWhitelist by @​thaJeztah in #​447
  • remove uses of errors.Is, which requires go1.13, move go1.16/go1.21 tests to separate file by @​thaJeztah in #​448

New Contributors

Full Changelog: spf13/pflag@v1.0.9...v1.0.10

v1.0.9

Compare Source

What's Changed

Full Changelog: spf13/pflag@v1.0.8...v1.0.9

v1.0.8

Compare Source

⚠️ Breaking Change

This version, while only a patch bump, includes a (very minor) breaking change: the flag.ParseErrorsWhitelist struct and corresponding FlagSet.parseErrorsWhitelist field have been renamed to ParseErrorsAllowlist.

This should result in compilation errors in any code that uses these fields, which can be fixed by adjusting the names at call sites. There is no change in semantics or behavior of the struct or field referred to by these names. If your code compiles without errors after bumping to/past v1.0.8, you are not affected by this change.

The breaking change was reverted in v1.0.9, by means of re-introducing the old names with deprecation warnings. The plan is still to remove them in a future release, so if your code does depend on the old names, please change them to use the new names at your earliest convenience.

What's Changed

New Contributors

Full Changelog: spf13/pflag@v1.0.7...v1.0.8

v1.0.7

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/pflag@v1.0.6...v1.0.7

stretchr/objx (github.com/stretchr/objx)

v0.5.3

Compare Source

What's Changed

New Contributors

Full Changelog: stretchr/objx@v0.5.2...v0.5.3

golang/go (go)

v1.25.1

v1.25.0

v1.24.7

v1.24.6

v1.24.5

yaml/go-yaml (go.yaml.in/yaml/v2)

v2.4.3

Compare Source

protocolbuffers/protobuf-go (google.golang.org/protobuf)

v1.36.10

Compare Source

Full Changelog: protocolbuffers/protobuf-go@v1.36.9...v1.36.10

Bug fixes:
CL/704415: reflect/protodesc: edition-2024-specific properties should not be lost when converting FileDescriptorProto to protoreflect.FileDescriptor

Maintenance:
CL/708555: internal/race_test: add missing impl.LazyEnabled() t.Skip
CL/703295: proto: add more invalid group encoding test cases
CL/703276: internal/impl: verify lazy unmarshal on Deterministic encoding
CL/703275: internal/impl: stop using deprecated .Field in lazy_test.go
CL/702795: all: update to latest github.com/google/go-cmp

v1.36.9

Compare Source

Full Changelog: protocolbuffers/protobuf-go@v1.36.8...v1.36.9

User-visible changes:
CL/699715: cmd/protoc-gen-go: add test for "import option" directive
CL/699115: internal/editionssupport: declare support for edition 2024
CL/697595: editions: Fix spelling mistake in panic message

evanphx/json-patch (gopkg.in/evanphx/json-patch.v4)

v4.13.0

Compare Source

Remove github.com/pkg/errors dependency


Configuration

📅 Schedule: Branch creation - On day 7 of the month, every 3 months ( * * 7 */3 * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.

This PR has been generated by MintMaker (powered by Renovate Bot).

@red-hat-konflux red-hat-konflux bot added the dependencies Pull requests that update a dependency file label Oct 7, 2025
Copy link

openshift-ci bot commented Oct 7, 2025

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign oliviercazade for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

Copy link

openshift-ci bot commented Oct 7, 2025

Hi @red-hat-konflux[bot]. Thanks for your PR.

I'm waiting for a netobserv member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

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.

@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/release-1.10/go-modules branch from 0394ff0 to 0f06a46 Compare October 7, 2025 12:21
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update go modules chore(deps): update go modules - abandoned Oct 7, 2025
Copy link
Contributor Author

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/release-1.10/go-modules branch from 0f06a46 to 3f2d1c9 Compare October 7, 2025 16:20
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update go modules - abandoned chore(deps): update go modules Oct 7, 2025
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/release-1.10/go-modules branch from 3f2d1c9 to d0815de Compare October 7, 2025 20:19
@red-hat-konflux red-hat-konflux bot changed the title chore(deps): update go modules fix(deps): update go modules Oct 7, 2025
Copy link
Contributor Author

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
golang.org/x/text v0.28.0 -> v0.29.0

@red-hat-konflux red-hat-konflux bot changed the title fix(deps): update go modules chore(deps): update go modules - abandoned Oct 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file needs-ok-to-test

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants