Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented May 26, 2025

Update Request | Renovate Bot

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/google/cel-go v0.22.0 -> v0.26.1 age adoption passing confidence
google.golang.org/grpc v1.76.0 -> v1.77.0 age adoption passing confidence
k8s.io/api v0.32.3 -> v0.34.2 age adoption passing confidence
k8s.io/apimachinery v0.32.3 -> v0.34.2 age adoption passing confidence
k8s.io/client-go v0.32.3 -> v0.34.2 age adoption passing confidence
sigs.k8s.io/cluster-api v1.10.4 -> v1.11.3 age adoption passing confidence
sigs.k8s.io/controller-runtime v0.20.4 -> v0.22.4 age adoption passing confidence

Release Notes

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

v0.26.1

Compare Source

What's Changed

New Contributors

Full Changelog: google/cel-go@v0.25.1...v0.26.1

v0.26.0

Compare Source

New Features ✨
Bug Fixes 🐛
Test Updates 🧪
Documentation 📚
Dependency Updates ⬆️

v0.25.1

Compare Source

v0.25.0

Compare Source

Features & Enhancements

This release introduces features for richer configuration-based CEL, AI prompt generation from config files, additional documentation, and 3x performance when evaluating traced / state-tracking expressions. This release also introduces a unit test runner framwork.

#​1141: Expose extension option factory as a public method

#​1143: Add a new compiler tool which can be used to compile CEL expressions and policies using serialized environment

#​1151: Lightweight observable evaluation

#​1155: Utilities for formatting and parsing documentation strings

#​1156: Support for documentation and example strings in CEL environments

#​1158: Re-export interpreter.AttributePattern in package cel.

#​1159: Document the standard library macros and functions

#​1160: Prompt generation for AI-assisted authoring based on a CEL environment

#​1117: Add LateFunctionBinding declaration and fix constant folding

#​1163: Initialize stateful observers prior to evaluation

#​1164: Unparse Expr values to strings

#​1149: Add test runner library

#​1167: REPL: Add an extension option for two var comprehensions

Fixes

Several fixes were implemented, including updating strings.format to better adhere to the specification, correcting constant folding logic alongside the late binding feature, removing a non-functional check in test code, and adding argument count validation for optFieldSelect.

#​1133: Update strings.format to adhere to the specification

#​1117: Add LateFunctionBinding declaration and fix constant folding

#​1161: Remove non-functional optional check in test-only selection

#​1168: Check arg count when validating optFieldSelect

Refactoring & Internal Improvements

General refactoring was performed across the codebase. Coverage and comments for Activation methods were improved. The test runner library was refactored to create options from flags and improve code structure.

#​1145: Refactoring changes

#​1150: Additional comments and coverage for Activation methods

#​1165: Refactoring changes to create a test runner option from passed flags, correct indentation and add package level comment for test

Documentation

Documentation was enhanced, including updates to the NativeTypes documentation regarding the cel tag, adding documentation for the optional library, and documenting the standard library functions/macros as part of the documentation string feature.

#​1148: Update NativeTypes doc to reflect how to enable cel tag

#​1155: Utilities for formatting and parsing documentation strings

#​1156: Support for documentation and example strings in CEL environments

#​1159: Document the standard library macros and functions

#​1162: Document optional library and increase docs coverage

Build System

Configuration fixes were made for Bzlmod compatibility.

#​1146: Bzlmod configuration fixes

Type System

Type formatting was updated to correctly handle type parameters.

#​1154: Update type formatting for type params

v0.24.1

Compare Source

Fixes

  • Separate unnest optimization from composer to capture type info [#​1138]

Full Changelog: google/cel-go@v0.24.0...v0.24.1

v0.24.0

Compare Source

Support for subsetting CEL standard library and serialization of CEL environments to YAML.

CEL is an official Google product [#​1122]

Features

  • Helper methods for subsetting function overloads [#​1120]
  • Introduce cel package aliases for Activation [#​1123]
  • Canonical environment description and stdlib subsetting [#​1125]
  • Support for cel.Env conversion to YAML-serializable config [#​1128]
  • Option to configure CEL via env.Config object [#​1129]
  • Support for feature flags and validators in env.Config [#​1132]
  • Add k8s custom policy tag handler for test [#​1121]

Fixes

  • ContextEval support for Unknowns [#​1126]
  • Fix godoc formatting for Lists and OptionalTypes functions [#​1127]
  • Default enable DefaultUTCTimeZone [#​1130]
  • Support for splitting nested branching operators within policies [#​1136]

New Contributors

Full Changelog: google/cel-go@v0.23.2...v0.24.0

v0.23.2

Compare Source

Corrects one remaining issue for cost computations from the v0.23.0 releases

Fixes

Full Changelog: google/cel-go@v0.23.1...v0.23.2

v0.23.1

Compare Source

Minor release to address cost tracking and size estimation [#​1113]

Full Changelog: google/cel-go@v0.23.0...v0.23.1

v0.23.0

Compare Source

Features

  • First and last element in list support [#​1067]
  • Add support for typed conformance tests. [#​1089]
  • Add syntax for escaped field selectors. [#​1002]
  • Add optional.unwrap() / .unwrapOpt() function [#​1103]
  • Cost tracking for two-variable comprehensions and bindings [#​1104]

Fixes

PR #​1099 enables a change in the internal variable name used for comprehension result accumulation. This change may break some tests which inspect the AST contents in text form; however, will not break any existing uses of CEL during parse, check, or evaluation.

  • Improve policy compiler error message for incompatible outputs. [#​1082]
  • Fix partial evaluation with the comprehension folder objects [#​1084]
  • Introduce versioning options to all extensions [#​1075]
  • Fix a crash in mismatched output check for nested rules [#​1086]
  • improve debug output to properly quote byte strings [#​1088]
  • Fix two-variable comprehension pruning [#​1083]
  • Replace checks for valid UTF-8 in strings with go-maintained calls [#​1094]
  • Policy nested rule fix [#​1092]
  • Address non-const format string lint findings [#​1096]
  • Fix typos in ext/README.md [#​1098]
  • Add option to use inaccessible accumulator var [#​1097]
  • Add test cases for string.format covering various edge cases [#​1101]
  • Add base_config and partial_config files under restricted_destination testdata [#​1106]
  • Default enable using hidden accumulator name [#​1099]
  • Update PruneAst to support constants of optional type [#​1109]

New Contributors

Full Changelog: google/cel-go@v0.22.1...v0.23.0

v0.22.1

Compare Source

Fixes

  • Additional hardening on legacy macros [#​1064]
  • Additional nil-safety checks with corresponding test updates [#​1073]
  • Add two-variable comprehension support to cel-policy [#​1074]
  • Fix optional test to short-circuit [#​1076]
  • Fix nil-type when two-var comprehension has a dyn range [#​1077]

New Contributors

Full Changelog: google/cel-go@v0.22.0...v0.22.1

grpc/grpc-go (google.golang.org/grpc)

v1.77.0: Release 1.77.0

Compare Source

API Changes

  • mem: Replace the Reader interface with a struct for better performance and maintainability. (#​8669)

Behavior Changes

  • balancer/pickfirst: Remove support for the old pick_first LB policy via the environment variable GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false. The new pick_first has been the default since v1.71.0. (#​8672)

Bug Fixes

  • xdsclient: Fix a race condition in the ADS stream implementation that could result in resource-not-found errors, causing the gRPC client channel to move to TransientFailure. (#​8605)
  • client: Ignore HTTP status header for gRPC streams. (#​8548)
  • client: Set a read deadline when closing a transport to prevent it from blocking indefinitely on a broken connection. (#​8534)
  • client: Fix a bug where default port 443 was not automatically added to addresses without a specified port when sent to a proxy.
    • Setting environment variable GRPC_EXPERIMENTAL_ENABLE_DEFAULT_PORT_FOR_PROXY_TARGET=false disables this change; please file a bug if any problems are encountered as we will remove this option soon. (#​8613)
  • balancer/pickfirst: Fix a bug where duplicate addresses were not being ignored as intended. (#​8611)
  • server: Fix a bug that caused overcounting of channelz metrics for successful and failed streams. (#​8573)
  • balancer/pickfirst: When configured, shuffle addresses in resolver updates that lack endpoints. Since gRPC automatically adds endpoints to resolver updates, this bug only affects custom LB policies that delegate to pick_first but don't set endpoints. (#​8610)
  • mem: Clear large buffers before re-using. (#​8670)

Performance Improvements

New Features

  • outlierdetection: Add metrics specified in gRFC A91. (#​8644)
  • stats/opentelemetry: Add support for optional label grpc.lb.backend_service in per-call metrics (#​8637)
  • xds: Add support for JWT Call Credentials as specified in gRFC A97. Set environment variable GRPC_EXPERIMENTAL_XDS_BOOTSTRAP_CALL_CREDS=true to enable this feature. (#​8536)
  • experimental/stats: Add support for up/down counters. (#​8581)
kubernetes/api (k8s.io/api)

v0.34.2

Compare Source

v0.34.1

Compare Source

v0.34.0

Compare Source

v0.33.6

Compare Source

v0.33.5

Compare Source

v0.33.4

Compare Source

v0.33.3

Compare Source

v0.33.2

Compare Source

v0.33.1

Compare Source

v0.33.0

Compare Source

v0.32.10

Compare Source

v0.32.9

Compare Source

v0.32.8

Compare Source

v0.32.7

Compare Source

v0.32.6

Compare Source

v0.32.5

Compare Source

v0.32.4

Compare Source

kubernetes/apimachinery (k8s.io/apimachinery)

v0.34.2

Compare Source

v0.34.1

Compare Source

v0.34.0

Compare Source

v0.33.6

Compare Source

v0.33.5

Compare Source

v0.33.4

Compare Source

v0.33.3

Compare Source

v0.33.2

Compare Source

v0.33.1

Compare Source

v0.33.0

Compare Source

v0.32.10

Compare Source

v0.32.9

Compare Source

v0.32.8

Compare Source

v0.32.7

Compare Source

v0.32.6

Compare Source

v0.32.5

Compare Source

v0.32.4

Compare Source

kubernetes/client-go (k8s.io/client-go)

v0.34.2

Compare Source

v0.34.1

Compare Source

v0.34.0

Compare Source

v0.33.6

Compare Source

v0.33.5

Compare Source

v0.33.4

Compare Source

v0.33.3

Compare Source

v0.33.2

Compare Source

v0.33.1

Compare Source

v0.33.0

Compare Source

v0.32.10

Compare Source

v0.32.9

Compare Source

v0.32.8

Compare Source

v0.32.7

Compare Source

v0.32.6

Compare Source

v0.32.5

Compare Source

v0.32.4

Compare Source

kubernetes-sigs/cluster-api (sigs.k8s.io/cluster-api)

v1.11.3

Compare Source

👌 Kubernetes version support

  • Management Cluster: v1.30.x -> v1.34.x
  • Workload Cluster: v1.28.x -> v1.34.x

More information about version support can be found here

Changes since v1.11.2

📈 Overview

  • 13 new commits merged
  • 1 feature addition ✨

✨ New Features

  • KCP: Bump coredns/corefile-migration to v1.0.29 (#​12863)

🌱 Others

  • CAPD: Recreate container if we re-enter reconciliation and it exists but is not running (#​12933)
  • clusterctl: Bump cert-manager to v1.19.0 (#​12832)
  • clusterctl: Bump cert-manager to v1.19.1 (#​12875)
  • Dependency: Bump Go to v1.24.8 (#​12829)
  • Dependency: Bump Go to v1.24.9 (#​12868)
  • e2e: Fix self-hosted to actually read DOCKER_PRELOAD_IMAGES from the e2e config (#​12932)
  • Runtime SDK: Add hint to look into controller logs to runtime client error response (#​12850)

📖 Additionally, there have been 5 contributions to our documentation and book. (#​12837, #​12839, #​12887, #​12894, #​12916)

Dependencies

Added

Nothing has changed.

Changed
Removed

Nothing has changed.

Thanks to all our contributors! 😊

v1.11.2

Compare Source

👌 Kubernetes version support
  • Management Cluster: v1.30.x -> v1.34.x
  • Workload Cluster: v1.28.x -> v1.34.x

More information about version support can be found here

Changes since v1.11.1
📈 Overview
  • 6 new commits merged
  • 1 feature addition ✨
  • 1 bug fixed 🐛
✨ New Features
  • KCP: Bump coredns/corefile-migration to v1.0.28 (#​12750)
🐛 Bug Fixes
  • clusterctl: Verify providers need upgrade before applying (#​12768)
🌱 Others
  • Autoscaling: Bump autoscaler in e2e tests to v1.33.1 (#​12792)
  • clusterctl: Add Metal3 as an IPAMProvider (#​12760)
  • Dependency: Bump go to v1.24.7 (#​12735)

📖 Additionally, there has been 1 contribution to our documentation and book. (#​12780)

Dependencies
Added

Nothing has changed.

Changed
Removed

Nothing has changed.

Thanks to all our contributors! 😊

v1.11.1

Compare Source

👌 Kubernetes version support
  • Management Cluster: v1.30.x -> v1.34.x
  • Workload Cluster: v1.28.x -> v1.34.x

More information about version support can be found here

Changes since v1.11.0
📈 Overview
  • 22 new commits merged
  • 3 feature additions ✨
  • 8 bugs fixed 🐛
✨ New Features
  • CI: Bump autoscaler to a9cb59f (#​12707)
  • CI: Bump Kubernetes in tests to v1.34.0 and claim support for v1.34 (#​12705)
  • e2e: Bump Kubernetes version used for testing to v1.34.0-rc.2 (#​12659)
🐛 Bug Fixes
  • API: Only try to convert infraRefs if they are set (#​12693)
  • API: Register conversion funcs in schemes (#​12697)
  • CABPK: Always use latest apiVersion when getting owner of KubeadmConfig in CABPK (#​12689)
  • ClusterClass: Ensure holder field path in GeneratePatchRequest is set based on contract (#​12691)
  • ClusterClass: Fix field paths in ClusterClass compatibility validation errors (#​12670)
  • ClusterClass: Stop adding conversion-data annotation to Cluster object (#​12721)
  • e2e/CAPD: Remove finalizers during deletion if ownerRef was never set (#​12678)
  • Testing: Fix KubeadmConfig fuzz test flake (#​12682)
🌱 Others
  • clusterctl: Allow metadata.yaml's Kind to be empty (#​12715)
  • Dependency: Bump github.com/go-viper/mapstructure/v2 to fix CVE (#​12680)
  • Dependency: Bump to envtest v1.34.0 (#​12706)
  • e2e: Bump to kind v0.30.0 (#​12708)
  • e2e: Get kind mgmt cluster logs in clusterctl upgrade test (#​12688)
  • Misc: Log version and git commit on controller start (#​12696)
  • Release/clusterctl: Add CAPRKE2 to release tool’s issue-opening providers list (#​12717)

📖 Additionally, there have been 4 contributions to our documentation and book. (#​12667, #​12668, #​12671, #​12674)

Dependencies
Added

Nothing has changed.

Changed
Removed

Nothing has changed.

Thanks to all our contributors! 😊

v1.11.0

Compare Source

👌 Kubernetes version support
  • Management Cluster: v1.30.x -> v1.33.x
  • Workload Cluster: v1.28.x -> v1.33.x

More information about version support can be found here

Highlights
  • Bumped to Go 1.24, controller-runtime v0.21, k8s.io/* v0.33, controller-gen v0.18 (also moved to sigs.k8s.io/randfill) (#​12191)
  • v1beta2 API version has been introduced and considering the awesome amount of improvements it marks an important
    step in the journey towards graduating our API to v1.
    • Accordingly there is now a new v1beta2 version of our contract for providers.
    • Improve status:
      • The transition to the new K8s aligned conditions using metav1.Conditions types and the new condition semantic
        has been completed.
      • Replica counters are now consistent with new conditions and across all resources; new replica counters have been added at cluster level.
      • Semantic of contract fields in status have been improved and are now consistent across all resources.
      • The confusing FailureReason and FailureMessage fields have been dropped.
    • Support CC across namespaces: API changes planned for this feature have been implemented.
    • Improve object references:
      • Unnecessary fields have been dropped from object reference.
      • Object references are now GitOps friendly (API version is not overwritten anymore by controllers).
    • KubeadmConfig and KubeadmControlPlane APIs have been aligned with kubeadm v1beta4 API.
      • Additionally, fields inferred from top level objects have been removed, thus getting rid of a common source of confusion/issues.
  • Compliance with K8s API guidelines:
    • Thanks to the adoption of the KAL linter compliance with K8s API guidelines has been greatly improved.
    • All Duration fields are now represented as *int32 fields with units being part of the field name.
    • All bool fields have been changed to *bool to preserve user intent.
    • Extensive work has been done to ensure required and optional is explicitly set in the API, and that
      both serialization and validation works accordingly:
      • Stop rendering empty structs (review of all occurrences of omitempty and introduction of omitzero)
      • Do not allow "" when it is not semantically different from value not set (either you have to provide a non-empty string value or not set the field at all).
      • Do not allow 0 when it is not semantically different from value not set (either you have to provide a non-0 int value or not set the field at all).
      • Do not allow {} when it is not semantically different from value not set (either you have to set at least one property in the object or not set the field at all).
      • Do not allow [] when it is not semantically different from value not set (either you have to set at least one item in the list or not set the field at all).
      • Ensure validation for all enum types.
    • Missing list markers have been added for SSA.
    • Drop unnecessary pointers:
      • After fixing required and optional according to K8s API guidelines, extensive work has been done to
        drop unnecessary pointers thus improving the usability of the API's Go structs.
    • Avoid embedding structs: Coupling between API types has been reduced by reducing the usage of embedded structs.
    • Extensive work has been done to improve consistency across all resources, e.g.:
      • Fields for Machine deletion are under a new deletion struct in all resources.
      • Settings about rollout have been logically grouped in all resources.
      • Settings about health checks and remediation have been logically grouped in all resources.
    • Missing validations have been added where required.
    • Tech debt has been reduced by dropping deprecated fields.
  • ClusterClass: Fix continuous reconciles because of apiVersion differences in Cluster topology controller (#​12341)
  • KCP/CABPK: Add CertificateValidityPeriod and CACertificateValidityPeriod to KubeadmConfig (#​12335)
  • KCP: Fix timeout handling in GetAPIServerCertificateExpiry and DialContext (#​12554)
  • Machine: fallback to InfraMachine providerID during deletion if Machine providerID is not set (#​11985)
  • Runtime SDK:
    • Optimize size of Runtime Hook requests (#​12462)
    • Add mTLS support to Runtime Extension server and client (#​12517)
  • Improved e2e test coverage, e.g.:
    • additional checks that resourceVersion stays stable after tests and that conditions are healthy (#​12546 #​12111)
    • test coverage for scaling from/to 0 with CAPD & cluster-autoscaler (#​12572)
  • New providers in clusterctl: Scaleway (#​12357), cdk8s (#​12332)

See Cluster API v1.10 compared to v1.11 for more details

Notes for workload cluster upgrade to Kubernetes v1.34 with KCP
  • Context: Kubernetes/kubeadm <=> etcd compatibility:
    • kubeadm v1.33 only supports etcd v3.5 for Kubernetes v1.33
    • kubeadm v1.34 only supports etcd v3.6 for Kubernetes v1.34
  • The upgrade to etcd v3.6 requires etcd >= v3.5.20 (https://etcd.io/blog/2025/upgrade_from_3.5_to_3.6_issue/)
  • Accordingly, when upgrading from Kubernetes v1.33 to v1.34:
    • ensure etcd >= v3.5.20 is used with Kubernetes v1.33 before the upgrade
    • upgrade to Kubernetes v1.34 and etcd v3.6 at the same time
Deprecation and Removals Warning
  • Cluster: Remove deprecated index ByClusterClassName, ClusterByClusterClassClassName and ClusterClassNameField (#​12269)
  • ClusterClass: Remove deprecated ClusterVariable.definitionFrom field (#​12202)
  • ClusterClass: Remove deprecated Cluster.spec.topology.rolloutAfter field (#​12268)
  • ClusterClass: Remove deprecated ClusterCacheTracker and corresponding types (#​12270)
  • clusterctl: Remove deprecated clusterctl alpha topology plan command (#​12283)
  • ClusterResourceSet: Remove deprecated ClusterResourceSetBinding.DeleteBinding method (#​12267)
  • MachineDeployment: Removed deprecated revisionHistory (#​12274)
  • MachineDeployment: Remove deprecated spec.progressDeadlineSeconds (#​12232)
  • KCP/CABPK: Remove deprecated KubeadmConfig useExperimentalRetryJoin (#​12234)
  • API: Deprecate v1alpha1 & v1beta1 API packages (#​12254)
Changes since v1.10.0
📈 Overview
  • 360 new commits merged
  • 88 breaking changes ⚠️
  • 29 feature additions ✨
  • 50 bugs fixed 🐛
📝 Proposals
  • Core: Update autoscaling from zero enhancement proposal with support for platform-aware autoscale from zero (#​11962)
⚠️ Breaking Changes
  • API: Add additional MinProperties & MinItems validation across multiple APIs (#​12538)
  • API: Add CAPD v1beta2 types (#​12226)
  • API: Add Minimum=0 marker to all MinReadySeconds fields (#​12474)
  • API: Add omitempty to required string without zero value (#​12548)
  • API: Add omitzero on struct without zero value (#​12550)
  • API: Add v1beta2 types (#​12037)
  • API: Align Spec fields to optionalfields API conventions (#​12431)
  • API: Align Status fields to optionalfields API conventions (#​12435)
  • API: Change .status.replicas fields t

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

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

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.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Author

renovate bot commented May 26, 2025

ℹ 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):

  • 13 additional dependencies were updated

Details:

Package Change
github.com/google/gnostic-models v0.6.8 -> v0.6.9
github.com/prometheus/client_golang v1.19.1 -> v1.22.0
github.com/prometheus/common v0.55.0 -> v0.62.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 -> v0.58.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.33.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 -> v1.33.0
go.opentelemetry.io/proto/otlp v1.3.1 -> v1.4.0
k8s.io/apiextensions-apiserver v0.32.3 -> v0.33.0
k8s.io/apiserver v0.32.3 -> v0.33.0
k8s.io/component-base v0.32.3 -> v0.33.0
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f -> v0.0.0-20250318190949-c8a335a9a2ff
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0 -> v0.31.2
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 -> v4.6.0

@github-project-automation github-project-automation bot moved this to To Do in Planning May 26, 2025
@talos-bot talos-bot moved this from To Do to In Review in Planning May 26, 2025
@smira smira removed this from Planning May 27, 2025
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from ae28abd to 1652d14 Compare June 7, 2025 23:57
@renovate renovate bot force-pushed the renovate/dependencies branch from 1652d14 to aedc14a Compare June 13, 2025 04:16
@renovate renovate bot force-pushed the renovate/dependencies branch from aedc14a to e7890a0 Compare June 28, 2025 12:05
@renovate renovate bot force-pushed the renovate/dependencies branch from e7890a0 to 5f3f26e Compare July 6, 2025 00:05
@renovate renovate bot force-pushed the renovate/dependencies branch from 5f3f26e to 930b4e6 Compare July 21, 2025 00:11
@renovate renovate bot force-pushed the renovate/dependencies branch from 930b4e6 to eba83c5 Compare August 3, 2025 15:32
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 20df3cb to 8d0555f Compare August 15, 2025 23:57
@renovate renovate bot force-pushed the renovate/dependencies branch from 8d0555f to 7374899 Compare August 23, 2025 11:45
@renovate
Copy link
Author

renovate bot commented Aug 23, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: downloading github.com/siderolabs/go-debug v0.6.1
go: downloading github.com/spf13/cobra v1.10.1
go: downloading github.com/siderolabs/go-retry v0.3.3
go: downloading github.com/siderolabs/talos/pkg/machinery v1.12.0-beta.0
go: downloading github.com/spf13/viper v1.21.0
go: downloading google.golang.org/grpc v1.77.0
go: downloading k8s.io/api v0.34.2
go: downloading k8s.io/apimachinery v0.34.2
go: downloading k8s.io/client-go v0.34.2
go: downloading sigs.k8s.io/cluster-api v1.11.3
go: downloading sigs.k8s.io/controller-runtime v0.22.4
go: downloading golang.org/x/net v0.47.0
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading github.com/spf13/pflag v1.0.10
go: downloading github.com/planetscale/vtprotobuf v0.6.1-0.20241121165744-79df5c4772f2
go: downloading google.golang.org/protobuf v1.36.10
go: downloading github.com/cosi-project/runtime v1.12.0
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading github.com/siderolabs/gen v0.8.6
go: downloading github.com/siderolabs/go-api-signature v0.3.12
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20251111163417-95abcf5c77ba
go: downloading github.com/siderolabs/crypto v0.6.4
go: downloading go.yaml.in/yaml/v4 v4.0.0-rc.3
go: downloading github.com/containerd/go-cni v1.1.13
go: downloading github.com/fsnotify/fsnotify v1.9.0
go: downloading github.com/go-viper/mapstructure/v2 v2.4.0
go: downloading github.com/sagikazarmark/locafero v0.11.0
go: downloading github.com/spf13/afero v1.15.0
go: downloading github.com/spf13/cast v1.10.0
go: downloading github.com/gogo/protobuf v1.3.2
go: downloading k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
go: downloading sigs.k8s.io/randfill v1.0.0
go: downloading k8s.io/klog/v2 v2.130.1
go: downloading sigs.k8s.io/structured-merge-diff/v6 v6.3.0
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading golang.org/x/term v0.37.0
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/google/go-github/v53 v53.2.0
go: downloading golang.org/x/oauth2 v0.33.0
go: downloading k8s.io/apiextensions-apiserver v0.34.1
go: downloading github.com/adrg/xdg v0.5.3
go: downloading github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/evanphx/json-patch/v5 v5.9.11
go: downloading github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3
go: downloading github.com/siderolabs/go-pointer v1.0.1
go: downloading github.com/cenkalti/backoff/v4 v4.3.0
go: downloading go.uber.org/zap v1.27.0
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
go: downloading github.com/ProtonMail/gopenpgp/v2 v2.9.0
go: downloading github.com/opencontainers/runtime-spec v1.2.1
go: downloading github.com/siderolabs/protoenc v0.2.4
go: downloading github.com/containernetworking/cni v1.3.0
go: downloading github.com/sasha-s/go-deadlock v0.3.5
go: downloading golang.org/x/sys v0.38.0
go: downloading github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8
go: downloading golang.org/x/text v0.31.0
go: downloading github.com/subosito/gotenv v1.6.0
go: downloading github.com/pelletier/go-toml/v2 v2.2.4
go: downloading go.yaml.in/yaml/v3 v3.0.4
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730
go: downloading github.com/go-logr/logr v1.4.3
go: downloading github.com/json-iterator/go v1.1.12
go: downloading go.yaml.in/yaml/v2 v2.4.3
go: downloading github.com/google/gnostic-models v0.7.0
go: downloading golang.org/x/time v0.14.0
go: downloading github.com/fxamacker/cbor/v2 v2.9.0
go: downloading k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b
go: downloading github.com/ProtonMail/go-crypto v1.3.0
go: downloading github.com/google/go-querystring v1.1.0
go: downloading k8s.io/apiserver v0.34.1
go: downloading github.com/gobuffalo/flect v1.0.3
go: downloading github.com/google/go-cmp v0.7.0
go: downloading github.com/onsi/gomega v1.38.2
go: downloading github.com/MakeNowJust/heredoc v1.0.0
go: downloading github.com/distribution/reference v0.6.0
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20251111163417-95abcf5c77ba
go: downloading github.com/gertd/go-pluralize v0.2.1
go: downloading go.uber.org/multierr v1.11.0
go: downloading github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f
go: downloading github.com/petermattis/goid v0.0.0-20250508124226-395b08cebbdb
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee
go: downloading github.com/x448/float16 v0.8.4
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/emicklei/go-restful/v3 v3.12.2
go: downloading github.com/go-openapi/jsonreference v0.21.0
go: downloading github.com/go-openapi/swag v0.23.0
go: downloading golang.org/x/crypto v0.44.0
go: downloading k8s.io/cluster-bootstrap v0.33.3
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/cloudflare/circl v1.6.1
go: downloading github.com/google/uuid v1.6.0
go: downloading gopkg.in/evanphx/json-patch.v4 v4.13.0
go: downloading github.com/go-openapi/jsonpointer v0.21.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/google/btree v1.1.3
go: downloading golang.org/x/sync v0.18.0
go: downloading k8s.io/component-base v0.34.1
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading github.com/prometheus/client_golang v1.23.2
go: downloading gomodules.xyz/jsonpatch/v2 v2.5.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/prometheus/client_model v0.6.2
go: downloading github.com/prometheus/common v0.66.1
go: downloading github.com/prometheus/procfs v0.19.2
go: downloading go.opentelemetry.io/otel/trace v1.38.0
go: downloading go.opentelemetry.io/otel v1.38.0
go: github.com/siderolabs/capi-utils/pkg/capi imports
	sigs.k8s.io/cluster-api/api/v1beta1: cannot find module providing package sigs.k8s.io/cluster-api/api/v1beta1

@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from 0979167 to 2c60ec0 Compare September 4, 2025 23:22
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 0bbce38 to 5ab169b Compare September 11, 2025 07:46
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from b3728cd to 20afec1 Compare October 1, 2025 19:58
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 0401559 to 4cb4356 Compare October 8, 2025 23:15
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 8e6570b to e72c309 Compare October 16, 2025 07:24
@renovate renovate bot force-pushed the renovate/dependencies branch from e72c309 to f08a87c Compare November 8, 2025 07:58
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from decd875 to 62df802 Compare November 20, 2025 11:19
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/dependencies branch from 62df802 to 844c1a8 Compare November 21, 2025 17:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant