Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #1291

Merged
merged 2 commits into from
Nov 4, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 31, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
cloud.google.com/go/storage v1.44.0 -> v1.46.0 age adoption passing confidence
cloud.google.com/go/vertexai v0.7.1 -> v0.13.1 age adoption passing confidence
github.com/adrg/xdg v0.5.0 -> v0.5.3 age adoption passing confidence
github.com/fatih/color v1.17.0 -> v1.18.0 age adoption passing confidence
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 -> v2.23.0 age adoption passing confidence
github.com/kedacore/keda/v2 v2.11.2 -> v2.15.1 age adoption passing confidence
github.com/kyverno/policy-reporter-kyverno-plugin v1.6.3 -> v1.6.4 age adoption passing confidence
github.com/mittwald/go-helm-client v0.12.13 -> v0.12.14 age adoption passing confidence
github.com/ollama/ollama v0.1.48 -> v0.3.14 age adoption passing confidence
github.com/oracle/oci-go-sdk/v65 v65.65.1 -> v65.77.1 age adoption passing confidence
github.com/prometheus/client_golang v1.19.1 -> v1.20.5 age adoption passing confidence
github.com/prometheus/prometheus v0.53.1 -> v0.55.0 age adoption passing confidence
github.com/sashabaranov/go-openai v1.23.0 -> v1.32.5 age adoption passing confidence
github.com/schollz/progressbar/v3 v3.15.0 -> v3.17.0 age adoption passing confidence
golang.org/x/net v0.29.0 -> v0.30.0 age adoption passing confidence
golang.org/x/term v0.24.0 -> v0.25.0 age adoption passing confidence
google.golang.org/api v0.197.0 -> v0.204.0 age adoption passing confidence
google.golang.org/grpc v1.66.2 -> v1.67.1 age adoption passing confidence
helm.sh/helm/v3 v3.15.4 -> v3.16.2 age adoption passing confidence
k8s.io/api v0.30.3 -> v0.31.2 age adoption passing confidence
k8s.io/apiextensions-apiserver v0.30.3 -> v0.31.2 age adoption passing confidence
k8s.io/apimachinery v0.30.3 -> v0.31.2 age adoption passing confidence
k8s.io/client-go v0.30.3 -> v0.31.2 age adoption passing confidence
sigs.k8s.io/controller-runtime v0.18.4 -> v0.19.1 age adoption passing confidence
sigs.k8s.io/gateway-api v1.0.0 -> v1.2.0 age adoption passing confidence

Release Notes

googleapis/google-cloud-go (cloud.google.com/go/vertexai)

v0.13.0

Compare Source

  • bigquery: UseLegacySQL options for CreateTable and QueryConfig. Use these
    options to continue using Legacy SQL after the client switches its default
    to Standard SQL.

  • bigquery: Support for updating dataset labels.

  • bigquery: Set DatasetIterator.ProjectID to list datasets in a project other
    than the client's. DatasetsInProject is no longer needed and is deprecated.

  • bigtable: Fail ListInstances when any zones fail.

  • spanner: support decoding of slices of basic types (e.g. []string, []int64,
    etc.)

  • logging/logadmin: UpdateSink no longer creates a sink if it is missing
    (actually a change to the underlying service, not the client)

  • profiler: Service and ServiceVersion replace Target in Config.

v0.12.0

Compare Source

  • pubsub: Subscription.Receive now uses streaming pull.

  • pubsub: add Client.TopicInProject to access topics in a different project
    than the client.

  • errors: renamed errorreporting. The errors package will be removed shortly.

  • datastore: improved retry behavior.

  • bigquery: support updates to dataset metadata, with etags.

  • bigquery: add etag support to Table.Update (BREAKING: etag argument added).

  • bigquery: generate all job IDs on the client.

  • storage: support bucket lifecycle configurations.

v0.11.0

Compare Source

  • Clients for spanner, pubsub and video are now in beta.

  • New client for DLP.

  • spanner: performance and testing improvements.

  • storage: requester-pays buckets are supported.

  • storage, profiler, bigtable, bigquery: bug fixes and other minor improvements.

  • pubsub: bug fixes and other minor improvements

v0.10.0

Compare Source

  • pubsub: Subscription.ModifyPushConfig replaced with Subscription.Update.

  • pubsub: Subscription.Receive now runs concurrently for higher throughput.

  • vision: cloud.google.com/go/vision is deprecated. Use
    cloud.google.com/go/vision/apiv1 instead.

  • translation: now stable.

  • trace: several changes to the surface. See the link below.

Code changes required from v0.9.0
  • pubsub: Replace

    sub.ModifyPushConfig(ctx, pubsub.PushConfig{Endpoint: "https://example.com/push"})
    

    with

    sub.Update(ctx, pubsub.SubscriptionConfigToUpdate{
        PushConfig: &pubsub.PushConfig{Endpoint: "https://example.com/push"},
    })
    
  • trace: traceGRPCServerInterceptor will be provided from *trace.Client.
    Given an initialized *trace.Client named tc, instead of

    s := grpc.NewServer(grpc.UnaryInterceptor(trace.GRPCServerInterceptor(tc)))
    

    write

    s := grpc.NewServer(grpc.UnaryInterceptor(tc.GRPCServerInterceptor()))
    
  • trace trace.GRPCClientInterceptor will also provided from *trace.Client.
    Instead of

    conn, err := grpc.Dial(srv.Addr, grpc.WithUnaryInterceptor(trace.GRPCClientInterceptor()))
    

    write

    conn, err := grpc.Dial(srv.Addr, grpc.WithUnaryInterceptor(tc.GRPCClientInterceptor()))
    
  • trace: We removed the deprecated trace.EnableGRPCTracing. Use the gRPC
    interceptor as a dial option as shown below when initializing Cloud package
    clients:

    c, err := pubsub.NewClient(ctx, "project-id", option.WithGRPCDialOption(grpc.WithUnaryInterceptor(tc.GRPCClientInterceptor())))
    if err != nil {
        ...
    }
    

v0.9.0

Compare Source

  • Breaking changes to some autogenerated clients.
  • rpcreplay package added.

v0.8.0

  • profiler package added.
  • storage:
    • Retry Objects.Insert call.
    • Add ProgressFunc to WRiter.
  • pubsub: breaking changes:
    • Publish is now asynchronous (announcement).
    • Subscription.Pull replaced by Subscription.Receive, which takes a callback (announcement).
    • Message.Done replaced with Message.Ack and Message.Nack.
adrg/xdg (github.com/adrg/xdg)

v0.5.3

Compare Source

Changelog
  • Updated xdg.SearchRuntimeFile to also look in the operating system's temporary directory for runtime files.
    This covers unlikely cases in which runtime files cannot be written relative to the base runtime directory either because it does not exist or it is not accessible, so xdg.RuntimeFile suggests the operating system's temporary directory as a suitable fallback location.
Internal
  • Improved package testing.

v0.5.2

Compare Source

Changelog
  • Updated logic of xdg.RuntimeFile: due to the special nature of the runtime directory, the function no longer attempts to create it if it does not exist. If that's the case, the function uses the operating system's temporary directory as a fallback. The function still creates subdirectories relative to the base runtime directory or its fallback.

    Justification: the creation of the runtime directory is not in the scope of this package as it has special requirements defined by the XDG Base Directory Specification. Relevant excerpt:

    The lifetime of the directory MUST be bound to the user being logged in. It MUST be created when the user first logs in and if the user fully logs out the directory MUST be removed. If the user logs in more than once they should get pointed to the same directory, and it is mandatory that the directory continues to exist from their first login to their last logout on the system, and not removed in between. Files in the directory MUST not survive reboot or a full logout/login cycle.

    Also, on Linux, the parent directories of the default user runtime directory are owned by the root user so they cannot be created by a regular user. pam_systemd is usually responsible for creating the runtime directory (/run/user/$UID).

v0.5.1

Compare Source

Changelog
  • Added support for the non-standard XDG_BIN_HOME base directory.
    See XDG base directories README section for more details.
  • Added more config and data search locations on macOS.
    • Added ~/.config at the end of the list of default locations for XDG_CONFIG_DIRS.
    • Added ~/.local/share at the end of the list of default locations for XDG_DATA_DIRS.
  • Added more application search locations on Windows:
    • %ProgramFiles%
    • %ProgramFiles%\Common Files
    • %LOCALAPPDATA%\Programs
    • %LOCALAPPDATA%\Programs\Common
Internal
  • Updated golang.org/x/sys dependency to the latest version.
  • Improved package testing.
fatih/color (github.com/fatih/color)

v1.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: fatih/color@v1.17.0...v1.18.0

grpc-ecosystem/grpc-gateway (github.com/grpc-ecosystem/grpc-gateway/v2)

v2.23.0

Compare Source

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.22.0...v2.23.0

kedacore/keda (github.com/kedacore/keda/v2)

v2.15.1

Compare Source

Fixes
  • General: Hashicorp Vault PKI doesn't fail with due to KeyPair mismatch (#​6028)
  • JetStream: Consumer leader change is correctly detected (#​6042)
Other
  • General: Bump deps and k8s deps to 0.29.7 (#​6035)

v2.15.0

Compare Source

Breaking Changes
  • Authentication: AAD-Pod-Identity and AWS-KIAM auths have been removed (#​5035|#​5085)
  • Prometheus Scaler: Remove deprecated field cortexOrgID from Prometheus scaler (#​5538)
New
  • General: Add --ca-dir flag to KEDA operator to specify directories with CA certificates for scalers to authenticate TLS connections (defaults to /custom/ca) (#​5860)
  • General: Add Dynatrace Scaler (#​5685)
  • General: Add Splunk Scaler (#​5904)
  • General: Added eagerScalingStrategy for ScaledJob (#​5114)
  • General: Provide CloudEvents around the management of ScaledObjects resources (#​3522)
  • General: Support for Kubernetes v1.30 (#​5828)
Experimental

Here is an overview of all new experimental features:

  • Datadog Scaler: Add support to use the Cluster Agent as source of metrics (#​5355)
Improvements
  • Azure queue scaler: Added new configuration option 'queueLengthStrategy' (#​4478)
  • Cassandra Scaler: Add TLS support for cassandra scaler (#​5802)
  • GCP Pub/Sub: Add optional valueIfNull to allow a default scaling value and prevent errors when GCP metric returns no value. (#​5896)
  • GCP Scalers: Added custom time horizon in GCP scalers (#​5778)
  • IBM MQ Scaler: Add TLS support for IBM MQ scaler (#​5974)
  • Kafka: Fix logic to scale to zero on invalid offset even with earliest offsetResetPolicy (#​5689)
  • MYSQL Scaler: Add support to fetch username from env (#​5883)
  • Postgres Scaler: Add support for access token authentication to an Azure Postgres Flexible Server (#​5823)
Fixes
  • General: Fix panic in KedaProvider when getting metrics from Metrics Service if the gRPC Server connection is not established (#​6009)
  • General: Scalers are properly closed after being refreshed (#​5806)
  • New Relic Scaler: Fix CVE-2024-6104 in github.com/hashicorp/go-retryablehttp (#​5944)
Other
  • General: Added Pre Regex check before building image in e2e test (#​5783)
  • General: Check for missing CRD references and sample CRs (#​5920)
  • General: Reduce the number of ScaledObject.Status updates in the fallback (#​5624)
  • General: Remove deprecated Kustomize commonLabels (#​5888)
  • General: Remove unused leader election parameters in metrics adapter (#​5959)
  • General: Use new declarative parsing to read scaler config (#​5037|#​5797)
  • Azure Services: Migrated to github.com/Azure/azure-sdk-for-go (#​5470)
  • IBM MQ Scaler: Adding e2e test (#​1287)

v2.14.1

Compare Source

Fixes

v2.14.0

Compare Source

New
  • General: Provide capability to filter CloudEvents (#​3533)
  • Kafka: Support Kafka SASL MSK IAM authentication (#​5540)
  • NATS Scaler: Add TLS authentication (#​2296)
  • ScaledObject: Ability to specify initialCooldownPeriod (#​5008)
Experimental

Here is an overview of all new experimental features:

  • General: Introduce Azure Event Grid as a new CloudEvent destination (#​3587)
Improvements
  • General: Add active trigger name in ScaledObject's scale out event (#​5577)
  • General: Add command-line flag in Adapter to allow override of gRPC Authority Header (#​5449)
  • General: Add GRPC Client and Server metrics (#​5502)
  • General: Add GRPC Client support for opentelemetry (#​5698)
  • General: Add OPENTELEMETRY flag in e2e test YAML (#​5375)
  • General: Add support for cross tenant/cloud authentication when using Azure Workload Identity for TriggerAuthentication (#​5441)
  • General: Add validations.keda.sh/hpa-ownership annotation to HPA to disable ownership validation (#​5516)
  • General: Improve Prometheus metrics to align with best practices (#​4854)
  • General: Support csv-format for WATCH_NAMESPACE env var (#​5670)
  • General: Validate fallback configuration when creating ScaledObjects (#​5515)
  • Azure Event Hub Scaler: Remove usage of checkpoint offsets to account for SDK checkpointing implementation changes (#​5574)
  • GCP Pub/Sub Scaler: Add support for resolving resource names from the scale target's environment (#​5693)
  • GCP Stackdriver Scaler: Add missing parameters 'rate' and 'count' for GCP Stackdriver Scaler alignment (#​5633)
  • Metrics API Scaler: Add support for various formats: json, xml, yaml, prometheus (#​2633)
  • MongoDB Scaler: Add scheme field support srv record (#​5544)
Fixes
  • General: Fix CVE-2024-28180 in github.com/go-jose/go-jose/v3 (#​5617)
  • General: Fix fallback logic in formula-based evaluation (#​5666)
  • General: Fix wrong scaler active value and paused value that are pushed to OpenTelemetry (#​5705)
  • General: Log field ScaledJob no longer have conflicting types (#​5592)
  • General: Prometheus metrics shows errors correctly (#​5597|#​5663)
  • General: Validate empty array value of triggers in ScaledObject/ScaledJob creation (#​5520)
  • GitHub Runner Scaler: Fixed in_progress detection on running jobs instead of just queued (#​5604)
  • New Relic Scaler: Consider empty results set from query executer (#​5619)
  • RabbitMQ Scaler: HTTP Connections respect TLS configuration (#​5668)
Deprecations

You can find all deprecations in this overview and join the discussion here.

New deprecation(s):

  • Various Prometheus metrics have been renamed to follow the preferred naming conventions. The old ones are still available, but will be removed in the future (#​4854).
Breaking Changes
  • General: TODO (#XXX)
Other
  • General: Allow E2E tests to be run against existing KEDA and/or Kafka installation (#​5595)
  • General: Bump K8s deps to 0.29.4 & add Flowcontrol to Metrics Server RBAC (#​5740)
  • General: Improve readability of utility function getParameterFromConfigV2 (#​5037)
  • General: Introduce ENABLE_OPENTELEMETRY in deploying/testing process (#​5375|#​5578)
  • General: Migrate away from unmaintained golang/mock and use uber/gomock (#​5440)
  • General: Minor refactor to reduce copy/paste code in ScaledObject webhook (#​5397)
  • General: No need to list all secret in the namespace to find just one (#​5669)
  • Kafka: Expose GSSAPI service name (#​5474)

v2.13.1

Compare Source

Fixes
  • General: Fix release asset should specify the version in keda-*-core.yaml(#​5484)
  • GCP Scalers: Properly close the connection during the scaler cleaning process (#​5448)
  • GCP Scalers: Restore previous time horizon to prevent querying issues (#​5429)
  • Prometheus Scaler: Fix for missing AWS region from metadata (#​5419)

v2.13.0

Compare Source

New
  • General: Adds support for GCP Secret Manager as a source for TriggerAuthentication (#​4831)
  • General: Introduce new AWS Authentication (#​4134)
  • General: Support TriggerAuthentication properties from ConfigMap (#​4830)
  • Azure Blob Storage Scaler: Allow to authenticate to Azure Storage using SAS tokens (#​5393)
  • Azure Pipelines Scaler: Add support for workload identity authentication (#​5013)
  • Azure Storage Queue Scaler: Allow to authenticate to Azure Storage using SAS tokens (#​5393)
  • Kafka Scaler: Add support for Kerberos authentication (SASL / GSSAPI) (#​4836)
  • Prometheus Metrics: Expose prometheus metrics for ScaledJob resources (#​4798)
  • Prometheus Metrics: Introduce paused ScaledObjects in Prometheus metrics (#​4430)
  • Prometheus Scaler: Provide scaler for Amazon managed service for Prometheus (#​2214)
Experimental

Here is an overview of all new experimental features:

Improvements
  • General: Add CloudEventSource metrics in Prometheus & OpenTelemetry (#​3531)
  • General: Add RBAC permissions for list & watch LimitRange, and check default limits from LimitRange for validations (#​5377)
  • General: Add validations for replica counts when creating ScaledObjects (#​5288)
  • General: Bubble up AuthRef TriggerAuthentication errors as ScaledObject events (#​5190)
  • General: Enhance pod identity role assumption in AWS by directly integrating with OIDC/Federation (#​5178)
  • General: Fix issue where paused annotation being set to false still leads to ScaledObjects/ScaledJobs being paused (#​5215)
  • General: Implement credentials cache for AWS Roles to reduce AWS API calls (#​5297)
  • General: Request all ScaledObject/ScaledJob triggers in parallel (#​5276)
  • General: Use client-side round-robin load balancing for gRPC calls (#​5224)
  • GCP PubSub Scaler: Support distribution-valued metrics and metrics from topics (#​5070)
  • GCP Stackdriver Scaler: Support valueIfNull parameter (#​5345)
  • Hashicorp Vault: Add support to get secret that needs write operation (eg. pki) (#​5067)
  • Hashicorp Vault: Fix operator panic when spec.hashiCorpVault.credential.serviceAccount is not set (#​4964)
  • Hashicorp Vault: Fix operator panic when using root token to authenticate to vault server (#​5192)
  • Kafka Scaler: Ability to set upper bound to the number of partitions with lag (#​3997)
  • Kafka Scaler: Improve logging for Sarama client (#​5102)
  • Prometheus Scaler: Add queryParameters parameter (#​4962)
  • Pulsar Scaler: Support `endpointParams`` in Pulsar OAuth (#​5069)
Fixes
  • General: Admission webhook does not reject workloads with only resource limits provided (#​4802)
  • General: Fix CVE-2023-39325 in golang.org/x/net (#​5122)
  • General: Fix otelgrpc DoS vulnerability (#​5208)
  • General: Fix Pod identity not being considered when scaled target is a CRD (#​5021)
  • General: Prevented memory leak generated by not correctly cleaning http connections (#​5248)
  • General: Prevented stuck status due to timeouts during scalers generation (#​5083)
  • General: ScaledObject Validating Webhook should support dry-run=server requests (#​5306)
  • General: Set LeaderElectionNamespace to PodNamespace so leader election works in OutOfCluster mode (#​5404)
  • AWS Scalers: Ensure session tokens are included when instantiating AWS credentials (#​5156)
  • Azure Event Hub Scaler: Improve unprocessedEventThreshold calculation (#​4250)
  • Azure Pipelines: Prevent HTTP 400 errors due to poolName with spaces (#​5107)
  • GCP PubSub Scaler: Added project_id to filter for metrics queries (#​5256)
  • GCP PubSub Scaler: Respect default value of value (#​5093)
  • Github Runner Scaler: Support for custom API endpoint (#​5387)
  • NATS JetSteam Scaler: Raise an error if leader not found (#​5358)
  • Pulsar Scaler: Fix panic when auth is not used (#​5271)
  • ScaledJobs: Copy ScaledJob annotations to child Jobs (#​4594)
Deprecations

You can find all deprecations in this overview and join the discussion here.

New deprecation(s):

  • Remove support for Azure AD Pod Identity-based authentication (#​5035)
Breaking Changes
  • General: Clean up previously deprecated code in Azure Data Explorer Scaler about clientSecret for 2.13 release (#​5051)
Other
  • General: Bump K8s deps to 0.28.5 (#​5346)
  • General: Fix CVE-2023-45142 in OpenTelemetry (#​5089)
  • General: Fix logger in OpenTelemetry collector (#​5094)
  • General: Fix lost commit from the newly created utility function (#​5037)
  • General: Improve docker image build time through caches (#​5316)
  • General: Reduce amount of gauge creations for OpenTelemetry metrics (#​5101)
  • General: Refactor scalers package (#​5379)
  • General: Removed not required RBAC permissions (#​5261)
  • General: Support profiling for KEDA components (#​4789)
  • CPU scaler: Wait for metrics window during CPU scaler tests (#​5294)
  • Hashicorp Vault: Improve test coverage in pkg/scaling/resolver/hashicorpvault_handler (#​5195)
  • Kafka Scaler: Add more test cases for large value of LagThreshold (#​5354)
  • Openstack Scaler: Use Gophercloud SDK (#​3439)

v2.12.1

Compare Source

Fixes
  • General: Fix CVE-2023-39325 in golang.org/x/net (#​5122)
  • General: Fix CVE-2023-45142 in Opentelemetry (#​5089)
  • General: Fix logger in Opentelemetry collector (#​5094)
  • General: Fix otelgrpc DoS vulnerability (#​5208)
  • General: Prevented stuck status due to timeouts during scalers generation (#​5083)
  • Azure Pipelines: No more HTTP 400 errors produced by poolName with spaces (#​5107)

v2.12.0

Compare Source

New
  • General: Introduce new Google Cloud Tasks scaler (#​3613)
  • AWS SQS Scaler: Support for scaling to include delayed messages. ([

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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


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

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

@renovate renovate bot requested review from a team as code owners October 31, 2024 17:00
Copy link
Contributor Author

renovate bot commented Oct 31, 2024

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

  • 35 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.22.3 -> 1.22.5
k8s.io/kubectl v0.30.3 -> v0.31.1
cloud.google.com/go v0.115.1 -> v0.116.0
cloud.google.com/go/auth v0.9.3 -> v0.10.0
cloud.google.com/go/auth/oauth2adapt v0.2.4 -> v0.2.5
cloud.google.com/go/compute/metadata v0.5.1 -> v0.5.2
cloud.google.com/go/monitoring v1.21.0 -> v1.21.1
dario.cat/mergo v1.0.0 -> v1.0.1
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 -> v0.0.0-20240626203959-61d1e3462e30
github.com/sagikazarmark/locafero v0.4.0 -> v0.6.0
google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 -> v0.0.0-20241021214115-324edc3d5d38
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 -> v0.0.0-20241021214115-324edc3d5d38
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 -> v0.0.0-20241021214115-324edc3d5d38
knative.dev/pkg v0.0.0-20230616134650-eb63a40adfb0 -> v0.0.0-20240805063731-c88d5dad9653
github.com/Masterminds/semver/v3 v3.2.1 -> v3.3.0
github.com/Masterminds/sprig/v3 v3.2.3 -> v3.3.0
github.com/cyphar/filepath-securejoin v0.2.5 -> v0.3.1
github.com/docker/docker v27.1.1+incompatible -> v27.2.0+incompatible
github.com/mattn/go-runewidth v0.0.15 -> v0.0.16
github.com/moby/spdystream v0.2.0 -> v0.4.0
github.com/pelletier/go-toml/v2 v2.2.2 -> v2.2.3
github.com/prometheus/common v0.54.0 -> v0.59.1
github.com/rubenv/sql-migrate v1.6.1 -> v1.7.0
github.com/spf13/cast v1.6.0 -> v1.7.0
golang.org/x/crypto v0.27.0 -> v0.28.0
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 -> v0.0.0-20240823005443-9b4947da3948
golang.org/x/sys v0.25.0 -> v0.26.0
golang.org/x/text v0.18.0 -> v0.19.0
golang.org/x/time v0.6.0 -> v0.7.0
k8s.io/apiserver v0.30.3 -> v0.31.2
k8s.io/cli-runtime v0.30.3 -> v0.31.1
k8s.io/component-base v0.30.3 -> v0.31.2
k8s.io/klog/v2 v2.120.1 -> v2.130.1
k8s.io/kube-openapi v0.0.0-20240521193020-835d969ad83a -> v0.0.0-20240822171749-76de80e0abd9
sigs.k8s.io/kustomize/api v0.17.2 -> v0.17.3
sigs.k8s.io/kustomize/kyaml v0.17.1 -> v0.17.2

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 20de7b3 to 989f689 Compare November 1, 2024 01:38
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 989f689 to 357afa3 Compare November 1, 2024 19:58
Signed-off-by: AlexsJones <[email protected]>
@AlexsJones AlexsJones merged commit 14e0f19 into main Nov 4, 2024
9 of 10 checks passed
@AlexsJones AlexsJones deleted the renovate/all-minor-patch branch November 4, 2024 07:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

1 participant