Skip to content

Conversation

red-hat-konflux[bot]
Copy link
Contributor

@red-hat-konflux red-hat-konflux bot commented May 11, 2025

This PR contains the following updates:

Package Type Update Change
github.com/emicklei/go-restful/v3 indirect minor v3.9.0 -> v3.12.2
github.com/go-logr/logr indirect minor v1.2.4 -> v1.4.3
github.com/go-openapi/jsonpointer indirect minor v0.19.6 -> v0.21.1
github.com/go-openapi/jsonreference indirect minor v0.20.2 -> v0.21.0
github.com/go-openapi/swag indirect minor v0.22.3 -> v0.23.1
github.com/golang/glog require minor v1.0.0 -> v1.2.5
github.com/golang/protobuf indirect patch v1.5.3 -> v1.5.4
github.com/google/gnostic-models indirect patch v0.6.8 -> v0.6.9
github.com/google/go-cmp indirect minor v0.6.0 -> v0.7.0
github.com/google/uuid indirect minor v1.3.0 -> v1.6.0
github.com/gorilla/mux require patch v1.8.0 -> v1.8.1
github.com/imdario/mergo indirect patch v0.3.13 -> v0.3.16
github.com/mailru/easyjson indirect minor v0.7.7 -> v0.9.0
github.com/spf13/pflag indirect patch v1.0.5 -> v1.0.6
github.com/stretchr/testify require minor v1.8.2 -> v1.10.0
golang.org/x/net indirect minor v0.39.0 -> v0.41.0
golang.org/x/oauth2 indirect minor v0.29.0 -> v0.30.0
golang.org/x/sys indirect minor v0.32.0 -> v0.33.0
golang.org/x/term indirect minor v0.31.0 -> v0.32.0
golang.org/x/text indirect minor v0.24.0 -> v0.26.0
golang.org/x/time indirect minor v0.11.0 -> v0.12.0
k8s.io/apimachinery require minor v0.28.2 -> v0.33.2
k8s.io/client-go require minor v0.28.2 -> v0.33.2
k8s.io/klog/v2 indirect minor v2.100.1 -> v2.130.1
k8s.io/kube-openapi indirect digest 2695361 -> 8b98d1e
k8s.io/utils indirect digest d93618c -> 4c0f3b2
open-cluster-management.io/api require minor v0.8.0 -> v0.16.2
sigs.k8s.io/controller-runtime indirect minor v0.12.3 -> v0.21.0
sigs.k8s.io/json indirect digest bc3834c -> cfa47c3
sigs.k8s.io/structured-merge-diff/v4 indirect minor v4.2.3 -> v4.7.0
sigs.k8s.io/wg-policy-prototypes require digest 0fc2ddc -> ed0ca5a
sigs.k8s.io/yaml indirect minor v1.3.0 -> v1.4.0

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.12.2

Compare Source

  • allow empty payloads in post,put,patch, issue #​580 ( thanks @​liggitt, Jordan Liggitt)

v3.12.1

Compare Source

  • fix misroute when dealing multiple webservice with regex (#​549) (thanks Haitao Chen)

v3.12.0

Compare Source

v3.11.3

Compare Source

  • better not have 2 tags on one commit

v3.11.2

Compare Source

  • fix by restoring custom JSON handler functions (Mike Beaumont #​540)

v3.11.1

Compare Source

  • fix by restoring custom JSON handler functions (Mike Beaumont #​540)

v3.11.0

Compare Source

  • restored behavior as <= v3.9.0 with option to change path strategy using TrimRightSlashEnabled.

v3.10.2

Compare Source

  • introduced MergePathStrategy to be able to revert behaviour of path concatenation to 3.9.0
    see comment in Readme how to customize this behaviour.

v3.10.1

Compare Source

  • fix broken 3.10.0 by using path package for joining paths

v3.10.0

Compare Source

  • changed tokenizer to match std route match behavior; do not trimright the path (#​511)
  • Add MIME_ZIP (#​512)
  • Add MIME_ZIP and HEADER_ContentDisposition (#​513)
  • Changed how to get query parameter issue #​510
go-logr/logr (github.com/go-logr/logr)

v1.4.3

Compare Source

Minor release.

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.4.2...v1.4.3

v1.4.2

Compare Source

What's Changed

Dependencies:

Full Changelog: go-logr/logr@v1.4.1...v1.4.2

v1.4.1

Compare Source

What's Changed

Full Changelog: go-logr/logr@v1.4.0...v1.4.1

v1.4.0

Compare Source

This release dramatically improves interoperability with Go's log/slog package. In particular, logr.NewContext and logr.NewContextWithSlogLogger use the same context key, which allows logr.FromContext and logr.FromContextAsSlogLogger to return logr.Logger or *slog.Logger respectively, including transparently converting each to the other as needed.

Functions logr/slogr.NewLogr and logr/slogr.ToSlogHandler have been superceded by logr.FromSlogHandler and logr.ToSlogHandler respectively, and type logr/slogr.SlogSink has been superceded by logr.SlogSink. All of the old names in logr/slogr remain, for compatibility.

Package logr/funcr now supports logr.SlogSink, meaning that it's output passes all but one of the Slog conformance tests (that exception being that funcr handles the timestamp itself).

Users who have a logr.Logger and need a *slog.Logger can call slog.New(logr.ToSlogHandler(...)) and all output will go through the same stack.

Users who have a *slog.Logger or slog.Handler can call logr.FromSlogHandler(...) and all output will go through the same stack.

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.3.0...v1.4.0

v1.3.0

Compare Source

This release adds support for slog in a new, self-contained logr/slogr package. Implementers of a logr.LogSink are encouraged, but not required, to extend their implementation to improve the quality of log output coming from a slog API call.

Breaking change: the call depth for LogSink.Enabled when called via Logger.Enabled was fixed to be the same as for other call paths. Implementers of a LogSink who have worked around this bug will need to remove their workarounds.

Security best practices were improved. Only Go versions >= 1.18 are supported by this release.

What's Changed


New Contributors

Full Changelog: go-logr/logr@v1.2.4...v1.3.0

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

v0.21.1

Compare Source

v0.21.0

Compare Source

v0.20.3

Compare Source

v0.20.2

Compare Source

v0.20.1

Compare Source

v0.20.0

Compare Source

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

v0.21.0

Compare Source

v0.20.5

Compare Source

v0.20.4

Compare Source

v0.20.3

Compare Source

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

v0.23.1

Compare Source

v0.23.0

Compare Source

v0.22.10

Compare Source

v0.22.9

Compare Source

v0.22.8

Compare Source

v0.22.7

Compare Source

v0.22.6

Compare Source

v0.22.5

Compare Source

v0.22.4

Compare Source

golang/glog (github.com/golang/glog)

v1.2.5

Compare Source

What's Changed

Full Changelog: golang/glog@v1.2.4...v1.2.5

v1.2.4

Compare Source

What's Changed

  • Fail if log file already exists by @​chressie in https://github.com/golang/glog/pull/74:
    • glog: Don't try to create/rotate a given syncBuffer twice in the same second
    • glog: introduce createInDir function as in internal version
    • glog: have createInDir fail if the file already exists

Full Changelog: golang/glog@v1.2.3...v1.2.4

v1.2.3

Compare Source

What's Changed

Full Changelog: golang/glog@v1.2.2...v1.2.3

v1.2.2

Compare Source

What's Changed

Full Changelog: golang/glog@v1.2.1...v1.2.2

v1.2.1

Compare Source

What's Changed

Full Changelog: golang/glog@v1.2.0...v1.2.1

v1.2.0

Compare Source

What's Changed

Full Changelog: golang/glog@v1.1.2...v1.2.0

v1.1.2

Compare Source

Bugfix release.

What's Changed

Full Changelog: golang/glog@v1.1.1...v1.1.2

v1.1.1

Compare Source

Bugfixes since the larger v1.1.0, which have been addressed.

v1.1.0

Compare Source

Tagging v1.1.0 after syncing glog with internal changes

golang/protobuf (github.com/golang/protobuf)

v1.5.4

Compare Source

Notable changes

  • update descriptor.proto to latest version
google/gnostic-models (github.com/google/gnostic-models)

v0.6.9

Compare Source

google/go-cmp (github.com/google/go-cmp)

v0.7.0

Compare Source

New API:

  • (#​367) Support compare functions with SortSlices and SortMaps

Panic messaging:

  • (#​370) Detect proto.Message types when failing to export a field
google/uuid (github.com/google/uuid)

v1.6.0

Compare Source

Features
Bug Fixes

v1.5.0

Compare Source

Features

v1.4.0

Compare Source

Features
  • UUIDs slice type with Strings() convenience method (#​133) (cd5fbbd)
Fixes
  • Clarify that Parse's job is to parse but not necessarily validate strings. (Documents current behavior)

v1.3.1

Compare Source

Bug Fixes
gorilla/mux (github.com/gorilla/mux)

v1.8.1

Compare Source

What's Changed

New Contributors

Full Changelog: gorilla/mux@v1.8.0...v1.8.1

imdario/mergo (github.com/imdario/mergo)

v0.3.16: Announcement: v1.0.0 will be released on June 18th

Compare Source

This release doesn't contain code changes.

After 10 years, with many corner cases covered, very few issues pending (at least, comparing them with the usage of the library as part of Docker, Kubernetes, Datadog's agent, etc.), and a very stable API, I think it's time to release a 1.0.0 version.

This version will be released under a vanity URL: dario.cat/mergo

PS: although I'll make sure that github.com/imdario/mergo will be available, I'm going to also change my GitHub handle, so expect for a few minutes to not be able to pull from github.com/imdario as I fork it from the new handle to the old one.

PS2: I'm creating a discussion for this release to make sure we can have a conversation around the topic, and anything else about Mergo that you care about.

v0.3.15: Issues #​131, #​170, #​220, and #​202 fixed

Compare Source

v0.3.14: fix: Respect overwriteWithEmptySrc when merging maps #​231

Compare Source

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

v0.9.0

Compare Source

up go version and bugfixes

v0.8.0

Compare Source

stable version before go version bump

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

v1.0.6

Compare Source

What's Changed

New Contributors

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

stretchr/testify (github.com/stretchr/testify)

v1.10.0

Compare Source

What's Changed

Functional Changes
Fixes
Documentation, Build & CI

Configuration

📅 Schedule: Branch creation - "after 5am on sunday" in timezone America/New_York, 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).

Copy link

openshift-ci bot commented May 11, 2025

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: red-hat-konflux[bot]
Once this PR has been reviewed and has the lgtm label, please assign anxhela21 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

@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/release-2.14/go.mod-packages branch from 14b829c to 0b1da12 Compare May 18, 2025 09:44
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/release-2.14/go.mod-packages branch 3 times, most recently from 25e33f6 to b5ceee8 Compare June 1, 2025 14:15
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/release-2.14/go.mod-packages branch from b5ceee8 to 860b122 Compare June 8, 2025 09:42
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/release-2.14/go.mod-packages branch from 860b122 to be07d12 Compare June 15, 2025 09:47
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/release-2.14/go.mod-packages branch from be07d12 to 21e8746 Compare June 22, 2025 09:21
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-2.14/go.mod-packages branch from 21e8746 to 9ab91f9 Compare June 22, 2025 15:27
Copy link

openshift-ci bot commented Jun 22, 2025

@red-hat-konflux[bot]: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/test-unit 9ab91f9 link true /test test-unit
ci/prow/sonar-pre-submit 9ab91f9 link true /test sonar-pre-submit
ci/prow/pr-image-mirror 9ab91f9 link true /test pr-image-mirror
ci/prow/images 9ab91f9 link true /test images
ci/prow/e2e 9ab91f9 link true /test e2e

Full PR test history. Your PR dashboard.

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. I understand the commands that are listed here.

@smcavey smcavey closed this Jun 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants