fix(go.mod/go.sum): update minor dependencies (golang) - #67
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
August 26, 2026 20:56
fa77802 to
3dc1563
Compare
Contributor
Author
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
August 27, 2026 17:02
3dc1563 to
d4ec631
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
August 28, 2026 02:38
d4ec631 to
69fa2db
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
2 times, most recently
from
August 28, 2026 07:21
14f470f to
8c2b40f
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
August 30, 2026 22:48
8c2b40f to
d855752
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
August 31, 2026 02:41
d855752 to
3fa0f58
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
August 31, 2026 22:02
3fa0f58 to
b6cc4fc
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
September 1, 2026 01:37
b6cc4fc to
397a11b
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
September 1, 2026 16:13
397a11b to
2e23cba
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
September 1, 2026 20:03
2e23cba to
9f6f35b
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
September 2, 2026 01:51
9f6f35b to
e6a9ee2
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
September 2, 2026 17:02
e6a9ee2 to
8bd41bd
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
September 3, 2026 23:04
8bd41bd to
6539f9e
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
September 8, 2026 16:07
6539f9e to
d65e55b
Compare
renovate
Bot
force-pushed
the
renovate/minor-deps-golang
branch
from
September 9, 2026 22:49
d65e55b to
51865f6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.93.1→v0.94.0v0.40.0→v0.41.0v0.36.4→v0.37.0v0.36.4→v0.37.0v0.36.4→v0.37.0v0.36.4→v0.37.0v0.36.4→v0.37.0v0.36.4→v0.37.0v0.24.1→v0.25.0v0.24.1→v0.25.0v0.21.0→v0.22.0Release Notes
prometheus-operator/prometheus-operator (github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring)
v0.94.0: 0.94.0 / 2026-09-09Compare Source
retention,clusterGossipInterval,clusterPushpullInterval,clusterPeerTimeout) inAlertmanagerresources instead of passing them as CLI flags, which Alertmanager rejects and can cause startup failures. Ignored fields are reported via theIgnoredFieldsstatus condition. #8800ScrapeConfigCRD (HetznerRole,DockerSwarmRole,OpenStackAvailability). #8789namespaceDiscovery.names,consulSDConfig.services, andconsulSDConfig.tagslist fields in theScrapeConfigCRD. #8786retentionPercentagefield toPrometheusandPrometheusAgentCRDs for volume-based retention (requires Prometheus >= v3.11.0). Setting only the percentage no longer falls back to the default 24h time-based retention. #8728clusterPeerNamefield toAlertmanagerCRD to override the--cluster.peer-nameflag (requires Alertmanager >= v0.30.0). #8767Prometheus,PrometheusAgent,Alertmanager, andThanosRulerresources (prometheus_operator_<resource>_status_condition). #8719webhook_url_filefor Discord receiver in Alertmanager configuration Secret (requires Alertmanager >= v0.28.0). #8035AlertmanagerConfigPushover receivers useuserKeyFileortokenFileinstead of secret selectors. #8775TracingConfigfields inPrometheusCRD not being serialized due to invalid JSON struct tags. #8730externalIdversion gating for Alertmanager SigV4 configuration to require version >= v0.34.0 (was incorrectly set to v0.33.0). #8759kubernetes/api (k8s.io/api)
v0.37.0Compare Source
kubernetes/apiextensions-apiserver (k8s.io/apiextensions-apiserver)
v0.37.0Compare Source
kubernetes/apimachinery (k8s.io/apimachinery)
v0.37.0Compare Source
kubernetes/client-go (k8s.io/client-go)
v0.37.0Compare Source
kubernetes/code-generator (k8s.io/code-generator)
v0.37.0Compare Source
kubernetes/kube-aggregator (k8s.io/kube-aggregator)
v0.37.0Compare Source
kubernetes-sigs/controller-runtime (sigs.k8s.io/controller-runtime)
v0.25.0Compare Source
Highlights
This version of controller-runtime introduces a new experimental
ReadYourWritesConsistencyfeature,which ensures that all writes are reflected in subsequent reads from the default cache-backed client.
Stale client reads are arguably the biggest source of friction and sometimes bugs for controller
authors, providing this functionality at the library level eliminates that class of problems entirely.
Try it out by setting
Client.EnableReadYourWritesConsistency: new(true)in your managerand leave any feedback you may have on the tracking issue.
✨ New Features
🐛 Bug Fixes
🌱 Others
🌱 CI & linters
📖 Additionally, there have been 7 contributions to our documentation and book. (#3513, #3521, #3531, #3551, #3562, #3563, #3566)
Dependencies
Added
Changed
944ab1f→746e56fbd525da→59b49668636f87→3dc84a48636f87→3dc84a4ec3ebc5→25e220843fb72c→d427ff9b8788ab→be93311Removed
Thanks to all our contributors! 😊
kubernetes-sigs/controller-tools (sigs.k8s.io/controller-tools)
v0.22.0Compare Source
What's Changed
oneOfmarkers by @HadrienPatte in #1408encoding.TextMarshalertypes as CRD map keys by @HadrienPatte in #1419omitzeroinOneOfconstraint validation by @HadrienPatte in #1375Misc
envtest
Dependency bumps
New Contributors
Full Changelog: kubernetes-sigs/controller-tools@v0.21.0...v0.22.0
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.