Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 15, 2025

Bumps the dev-dependencies group with 23 updates in the / directory:

Package From To
cloud.google.com/go/compute/metadata 0.8.0 0.9.0
github.com/Azure/azure-sdk-for-go/sdk/azcore 1.19.0 1.19.1
github.com/Azure/azure-sdk-for-go/sdk/azidentity 1.11.0 1.13.0
github.com/aws/aws-sdk-go-v2 1.38.1 1.39.2
github.com/aws/aws-sdk-go-v2/config 1.31.2 1.31.12
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue 1.20.6 1.20.14
github.com/aws/aws-sdk-go-v2/service/route53 1.56.2 1.58.4
github.com/aws/aws-sdk-go-v2/service/servicediscovery 1.39.2 1.39.9
github.com/cloudflare/cloudflare-go 0.115.0 0.116.0
github.com/digitalocean/godo 1.163.0 1.166.0
github.com/linode/linodego 1.55.0 1.60.0
github.com/oracle/oci-go-sdk/v65 65.99.0 65.102.0
github.com/projectcontour/contour 1.32.1 1.33.0
github.com/scaleway/scaleway-sdk-go 1.0.0-beta.34 1.0.0-beta.35
github.com/transip/gotransip/v6 6.26.0 6.26.1
go.etcd.io/etcd/api/v3 3.6.4 3.6.5
go.etcd.io/etcd/client/v3 3.6.4 3.6.5
golang.org/x/time 0.12.0 0.14.0
google.golang.org/api 0.248.0 0.252.0
gopkg.in/ns1/ns1-go.v2 2.14.4 2.15.0
istio.io/api 1.27.0 1.27.2
istio.io/client-go 1.27.0 1.27.2
sigs.k8s.io/gateway-api 1.3.0 1.4.0

Updates cloud.google.com/go/compute/metadata from 0.8.0 to 0.9.0

Release notes

Sourced from cloud.google.com/go/compute/metadata's releases.

compute/metadata: v0.9.0

0.9.0 (2025-09-24)

Features

Changelog

Sourced from cloud.google.com/go/compute/metadata's changelog.

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

... (truncated)

Commits
  • d4f8670 BREAKING: all: regenerate toolkit client
  • 23179f2 readme: document Trace and Error Reporting clients
  • c2e00bb trace: switch to grpc-trace-bin for gRPC calls
  • 1de0ed4 rpcreplay: Fprintf functions
  • 8878988 bigtable/bttest: Return proper error code when entity already exists
  • e432073 bigtable: Don't retry on INTERNAL errors.
  • 84bf648 rpcreplay: responses to code review comments from previous CL
  • e687f27 rpcreplay: replay of unary RPCs
  • 9da216d spanner: more integration tests
  • a089e75 logging: document that Close flushes the loggers
  • Additional commits viewable in compare view

Updates github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.19.0 to 1.19.1

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/azcore's releases.

sdk/azcore/v1.19.1

1.19.1 (2025-09-11)

Bugs Fixed

  • Fixed resource identifier parsing for provider-specific resource hierarchies containing "resourceGroups" segments.

Other Changes

  • Improved error fall-back for improperly authored long-running operations.
  • Upgraded dependencies.
Commits

Updates github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.11.0 to 1.13.0

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/azidentity's releases.

sdk/azidentity/v1.13.0

1.13.0 (2025-10-07)

Features Added

  • Added AzurePowerShellCredential, which authenticates as the identity logged in to Azure PowerShell (thanks ArmaanMcleod)
  • When AZURE_TOKEN_CREDENTIALS is set to ManagedIdentityCredential, DefaultAzureCredential behaves the same as does ManagedIdentityCredential when used directly. It doesn't apply special retry configuration or attempt to determine whether IMDS is available. (#25265)

Breaking Changes

  • Removed the WorkloadIdentityCredential support for identity binding mode added in v1.13.0-beta.1. It will return in v1.14.0-beta.1

sdk/azidentity/v1.13.0-beta.1

1.13.0-beta.1 (2025-09-17)

Features Added

  • Added AzurePowerShellCredential, which authenticates as the identity logged in to Azure PowerShell (thanks ArmaanMcleod)
  • WorkloadIdentityCredential supports identity binding mode (#25056)

sdk/azidentity/v1.12.0

1.12.0 (2025-09-16)

Features Added

  • Added DefaultAzureCredentialOptions.RequireAzureTokenCredentials. NewDefaultAzureCredential returns an error when this option is true and the environment variable AZURE_TOKEN_CREDENTIALS has no value.

Other Changes

  • AzureDeveloperCLICredential no longer hangs when AZD_DEBUG is set
  • GetToken methods of AzureCLICredential and AzureDeveloperCLICredential return an error when TokenRequestOptions.Claims has a value because these credentials can't acquire a token in that case. The error messages describe the action required to get a token.

sdk/internal/v1.11.2

1.11.2 (2025-07-30)

Other Changes

  • errorinfo.NonRetriable() doesn't wrap errors which are already NonRetriable
Commits
  • 94c22e6 [azcore] prepping for release (#23192)
  • c5213b1 Redesign persistent token cache API (#23114)
  • 5df73f9 [azopenai]: Update custom_client.go to enable insecure credential with HTTP (...
  • b4b4721 [azcore] Adding in a function create a policy.Request using an existing *http...
  • 80dbc7d Update CODEOWNERS_baseline_errors.txt (#23191)
  • d254d11 Increment package version after release of internal (#23190)
  • 62f7a3d Test credential factory supports Pipelines federated auth (#23184)
  • 5aaedf4 [Release] sdk/resourcemanager/informaticadatamgmt/arminformaticadatamgmt/1.0....
  • ce39ed9 Sync eng/common directory with azure-sdk-tools for PR 8598 (#23175)
  • 75d30bb Enable use of pipeline credential. Fixes https://github.com/microsoft/azure-p...
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.38.1 to 1.39.2

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.31.2 to 1.31.12

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.18.6 to 1.18.16

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue from 1.20.6 to 1.20.14

Commits

Updates github.com/aws/aws-sdk-go-v2/service/dynamodb from 1.49.1 to 1.51.0

Commits

Updates github.com/aws/aws-sdk-go-v2/service/route53 from 1.56.2 to 1.58.4

Commits

Updates github.com/aws/aws-sdk-go-v2/service/servicediscovery from 1.39.2 to 1.39.9

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sts from 1.38.0 to 1.38.6

Commits

Updates github.com/aws/smithy-go from 1.22.5 to 1.23.0

Changelog

Sourced from github.com/aws/smithy-go's changelog.

Release (2025-09-18)

Module Highlights

  • github.com/aws/smithy-go/aws-http-auth: v1.1.0
    • Feature: Added support for SIG4/SIGV4A querystring authentication.

Release (2025-08-27)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.23.0
    • Feature: Sort map keys in JSON Document types.

Release (2025-07-24)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.5
    • Feature: Add HTTP interceptors.

Release (2025-06-16)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.4
    • Bug Fix: Fix CBOR serd empty check for string and enum fields
    • Bug Fix: Fix HTTP metrics data race.
    • Bug Fix: Replace usages of deprecated ioutil package.

Release (2025-02-17)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.3
  • Dependency Update: Bump minimum Go version to 1.22 per our language support policy.

Release (2025-01-21)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

... (truncated)

Commits

Updates github.com/cloudflare/cloudflare-go from 0.115.0 to 0.116.0

Release notes

Sourced from github.com/cloudflare/cloudflare-go's releases.

v0.116.0

ENHANCEMENTS:

  • access_service_tokens: Added graceful rotation support for client secrets (#4189)
Changelog

Sourced from github.com/cloudflare/cloudflare-go's changelog.

0.116.0 (September 5th, 2025)

ENHANCEMENTS:

  • access_service_tokens: Added graceful rotation support for client secrets (#4189)
Commits
  • 1eda786 Update CHANGELOG.md
  • 1317436 Update CHANGELOG.md for #4189
  • fd41d6b Merge pull request #4189 from GreenStage/aholland/client_secret_version
  • 8f93e33 Bump golangci/golangci-lint-action to fix CI errors
  • d5bd4b9 Add graceful rotation support for client secrets
  • See full diff in compare view

Updates github.com/digitalocean/godo from 1.163.0 to 1.166.0

Release notes

Sourced from github.com/digitalocean/godo's releases.

v1.166.0

v1.165.1

v1.164.0

Changelog

Sourced from github.com/digitalocean/godo's changelog.

[1.166.0] - 2025-10-13

[1.165.1] - 2025-09-24

[1.164.0] - 2025-09-10

Commits

Updates github.com/linode/linodego from 1.55.0 to 1.60.0

Release notes

Sourced from github.com/linode/linodego's releases.

v1.60.0

What's Changed

📋 New Project

🧪 Testing Improvements

New Contributors

Full Changelog: linode/linodego@v1.59.0...v1.60.0

v1.59.0

What's Changed

⚠️ Breaking Change

⚙️ Repo/CI Improvements

📦 Dependency Updates

Full Changelog: linode/linodego@v1.58.0...v1.59.0

v1.58.0

What's Changed

⚠️ Breaking Change

📦 Dependency Updates

Full Changelog: linode/linodego@v1.57.0...v1.57.1

v1.57.0

... (truncated)

Commits
  • 3ed0466 Creates negative test cases for ACLP Metrics & Alerts (#818)
  • 706e083 project: DBaaS/VPC Integration (#832)
  • cee3651 Fix firewall device for linode interfaces (#829)
  • 2ef37ae Format everything with golangci-lint (#830)
  • 5a81d98 Add VPCInterfaceUpdateOptions (#825)
  • 2e1fcf5 Change types of interfaces create options slices to be pointers (#817)
  • dac763f change isPublic to be a pointer on new IPv6/linode interface config to be in ...
  • 33e08cf build(deps): bump golang.org/x/oauth2 from 0.30.0 to 0.31.0 (#812)
  • b01b5bc build(deps): bump golang.org/x/net from 0.43.0 to 0.44.0 (#819)
  • bb1cc23 build(deps): bump golang.org/x/text from 0.28.0 to 0.29.0 and go from 1.23 to...
  • Additional commits viewable in compare view

Updates github.com/oracle/oci-go-sdk/v65 from 65.99.0 to 65.102.0

Release notes

Sourced from github.com/oracle/oci-go-sdk/v65's releases.

65.102.0

Added

  • Support for OCI Internet of Things (OCI IoT) service

  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Resource Manager service

  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Streaming service

  • Support for Zero Trust Packet Routing (ZPR) security attributes in the MySQL HeatWave service

  • Support for Zero Trust Packet Routing (ZPR) security attributes in the GoldenGate service

  • Support for Zero Trust Packet Routing (ZPR) security attributes in the OCI Cache service

  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Database Tools service

  • Support for Zero Trust Packet Routing (ZPR) security attributes in the OpenSearch service

  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Functions service

  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Integration Cloud service

  • Support for data guards to convert standby database types in the Database service

  • Support for Network Security Groups (NSGs) when creating clusters in the OpenSearch service

  • Support for specifying compartment id when listing cluster shapes in the OpenSearch service

  • Support for additional parameters when listing add-on options in the Kubernetes Engine service

  • Support for dynamic resource VMs in the Compute service

  • Support for adding and removing subscriptions for resources in the GoldenGate service

  • Support for additional parameters when creating and updating deployments in the GoldenGate service

  • Support for additional parameters when creating and updating connections in the GoldenGate service

  • Support for new connection type for database resources in the AI Data Platform service

  • Support for resource principal authentication for OCI streaming connections in the GoldenGate service

  • Support for new technology type for Kafka connections in the GoldenGate service

Breaking Changes

  • The mandatory field CompartmentId was added to the model ListOpensearchClusterShapesRequest in the OpenSearch service

... (truncated)

Changelog

Sourced from github.com/oracle/oci-go-sdk/v65's changelog.

65.102.0 - 2025-10-07

Added

  • Support for OCI Internet of Things (OCI IoT) service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Resource Manager service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Streaming service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the MySQL HeatWave service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the GoldenGate service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the OCI Cache service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Database Tools service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the OpenSearch service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Functions service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Integration Cloud service
  • Support for data guards to convert standby database types in the Database service
  • Support for Network Security Groups (NSGs) when creating clusters in the OpenSearch service
  • Support for specifying compartment id when listing cluster shapes in the OpenSearch service
  • Support for additional parameters when listing add-on options in the Kubernetes Engine service
  • Support for dynamic resource VMs in the Compute service
  • Support for adding and removing subscriptions for resources in the GoldenGate service
  • Support for additional parameters when creating and updating deployments in the GoldenGate service
  • Support for additional parameters when creating and updating connections in the GoldenGate service
  • Support for new connection type for database resources in the AI Data Platform service
  • Support for resource principal authentication for OCI streaming connections in the GoldenGate service
  • Support for new technology type for Kafka connections in the GoldenGate service

Breaking Changes

  • The mandatory field CompartmentId was added to the model ListOpensearchClusterShapesRequest in the OpenSearch service
  • The field Size was made mandatory in the model CreateVirtualNodePoolDetails in the Kubernetes Engine service

65.101.1 - 2025-09-30

Added

  • Support for private endpoints for dedicated AI clusters in the Generative AI service
  • Support for Customer Managed Encryption Keys for Google Cloud Platform (CMEK for GCP) for autonomous databases in the Database service
  • Support for datastore management for standard shapes in the Oracle Cloud VMware Provisioning service
  • Support for audio and video inputs for Gemini models in the Generative AI Inference service
  • Support for applying exadata VM OS updates and exadata stack updates to collections of ExaDB-Dedicated and ExaDB-C@C VM clusters in the Fleet Update service
  • Support for enabling IPv6 dual stack endpoints in the application environments in the Fusion Applications service
  • Support for long-running functions (up to 60 minutes) in detached mode in the Functions service
  • Support for response destinations (Streaming, Queueing, and Notifications service) on functions create and update operations in the Functions service
  • Support for enabling AI enterprise on the instance when creating and updating instances in the Compute service

65.101.0 - 2025-09-23

Added

  • Support for calling Oracle Cloud Infrastructure services in the me-ibri-1 region
  • Support for Resource Analytics service
  • Support for Oracle MultiCloud service
  • Support for standalone Java Development Kit (JDK) scanning and usage tracking using shared external volumes in the Java Management service
  • Support for enhanced Java library detection and Software Bill of Materials (SBOM) generation in the Java Management Service
  • Support for dynamic Java library scanning in the Java Management service
  • Support for vulnerability scanning using Application Dependency Management (ADM) and confidence level scoring in the Java Management service
  • Support for Java runtime discovery and tracking in Kubernetes environments in the Java Management service

... (truncated)

Commits
  • 907df66 Releasing version 65.102.0
  • 66c0396 Merge remote-tracking branch 'scm/github' into release_2025-10-07
  • e6aa56a Releasing version 65.102.0
  • 2d0ed30 Releasing version 65.101.1
  • 91a241c Merge remote-tracking branch 'scm/github' into release_2025-09-30
  • b35d51e Releasing version 65.101.1
  • 4c38bba Releasing version 65.101.0
  • c6d8a04 Merge remote-tracking branch 'scm/github' into release_2025-09-23
  • c15ad1a Releasing version 65.101.0
  • 8e23bb5 Releasing version 65.100.1
  • Additional commits viewable in compare view

Updates github.com/projectcontour/contour from 1.32.1 to 1.33.0

Release notes

Sourced from github.com/projectcontour/contour's releases.

Contour v1.33.0

We are delighted to present version v1.33.0 of Contour, our layer 7 HTTP reverse proxy for Kubernetes clusters.

A big thank you to everyone who contributed to the release.

Minor Changes

Distroless Envoy image

The Envoy image used in the example manifests and as the default image in the Gateway Provisioner has been switched to the distroless variant.

Previously, it was based on Ubuntu and included a minimal OS with a package manager. The distroless variant contains only the files required to run Envoy, improving security.

(#7170, @​tsaarni)

Update to Gateway API v1.3.0

Gateway API CRD compatibility has been updated to release v1.3.0.

Full release notes for Gateway API v1.3.0 can be found here.

Other Changes

Installing and Upgrading

For a fresh install of Contour, consult the getting started documentation.

To upgrade an existing Contour installation, please consult the upgrade documentation.

Compatible Kubernetes Versions

Contour v1.33.0 is tested against Kubernetes 1.32 through 1.34.

Community Thanks!

We’re immensely grateful for all the community contributions that help make Contour even better!

... (truncated)

Commits
  • 3635b06 Update Contour Docker image to v1.33.0.
  • 7c737c9 Update golang to 1.25.1 (#7211)
  • 8c5ef62 build...

    Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Oct 15, 2025
@k8s-ci-robot
Copy link
Contributor

[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 mloiseleur 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

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Oct 15, 2025
@k8s-ci-robot
Copy link
Contributor

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubernetes-sigs 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.

@k8s-ci-robot k8s-ci-robot added the size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. label Oct 15, 2025
@ivankatliarchuk
Copy link
Member

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Oct 18, 2025
@dependabot dependabot bot force-pushed the dependabot/go_modules/dev-dependencies-1120e4ef8d branch from 354869a to 4a7b21f Compare October 20, 2025 03:13
…38 updates

Bumps the dev-dependencies group with 23 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) | `0.8.0` | `0.9.0` |
| [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go) | `1.19.0` | `1.19.1` |
| [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go) | `1.11.0` | `1.13.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.38.1` | `1.39.2` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.31.2` | `1.31.12` |
| [github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue](https://github.com/aws/aws-sdk-go-v2) | `1.20.6` | `1.20.14` |
| [github.com/aws/aws-sdk-go-v2/service/route53](https://github.com/aws/aws-sdk-go-v2) | `1.56.2` | `1.58.4` |
| [github.com/aws/aws-sdk-go-v2/service/servicediscovery](https://github.com/aws/aws-sdk-go-v2) | `1.39.2` | `1.39.9` |
| [github.com/cloudflare/cloudflare-go](https://github.com/cloudflare/cloudflare-go) | `0.115.0` | `0.116.0` |
| [github.com/digitalocean/godo](https://github.com/digitalocean/godo) | `1.163.0` | `1.166.0` |
| [github.com/linode/linodego](https://github.com/linode/linodego) | `1.55.0` | `1.60.0` |
| [github.com/oracle/oci-go-sdk/v65](https://github.com/oracle/oci-go-sdk) | `65.99.0` | `65.102.0` |
| [github.com/projectcontour/contour](https://github.com/projectcontour/contour) | `1.32.1` | `1.33.0` |
| [github.com/scaleway/scaleway-sdk-go](https://github.com/scaleway/scaleway-sdk-go) | `1.0.0-beta.34` | `1.0.0-beta.35` |
| [github.com/transip/gotransip/v6](https://github.com/transip/gotransip) | `6.26.0` | `6.26.1` |
| [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd) | `3.6.4` | `3.6.5` |
| [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd) | `3.6.4` | `3.6.5` |
| [golang.org/x/time](https://github.com/golang/time) | `0.12.0` | `0.14.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.248.0` | `0.252.0` |
| gopkg.in/ns1/ns1-go.v2 | `2.14.4` | `2.15.0` |
| [istio.io/api](https://github.com/istio/api) | `1.27.0` | `1.27.2` |
| [istio.io/client-go](https://github.com/istio/client-go) | `1.27.0` | `1.27.2` |
| [sigs.k8s.io/gateway-api](https://github.com/kubernetes-sigs/gateway-api) | `1.3.0` | `1.4.0` |



Updates `cloud.google.com/go/compute/metadata` from 0.8.0 to 0.9.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@v0.8.0...v0.9.0)

Updates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.19.0 to 1.19.1
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/sdk-breaking-changes-guide-migration.md)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.19.0...sdk/azcore/v1.19.1)

Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.11.0 to 1.13.0
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/sdk-breaking-changes-guide-migration.md)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.11.0...sdk/azcore/v1.13.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.38.1 to 1.39.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.38.1...v1.39.2)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.31.2 to 1.31.12
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@config/v1.31.2...config/v1.31.12)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.18.6 to 1.18.16
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@config/v1.18.6...config/v1.18.16)

Updates `github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue` from 1.20.6 to 1.20.14
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/mq/v1.20.6...service/emr/v1.20.14)

Updates `github.com/aws/aws-sdk-go-v2/service/dynamodb` from 1.49.1 to 1.51.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/ssm/v1.49.1...service/s3/v1.51.0)

Updates `github.com/aws/aws-sdk-go-v2/service/route53` from 1.56.2 to 1.58.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/ecs/v1.56.2...service/route53/v1.58.4)

Updates `github.com/aws/aws-sdk-go-v2/service/servicediscovery` from 1.39.2 to 1.39.9
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.39.2...service/emr/v1.39.9)

Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.38.0 to 1.38.6
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.38.0...service/sts/v1.38.6)

Updates `github.com/aws/smithy-go` from 1.22.5 to 1.23.0
- [Release notes](https://github.com/aws/smithy-go/releases)
- [Changelog](https://github.com/aws/smithy-go/blob/main/CHANGELOG.md)
- [Commits](aws/smithy-go@v1.22.5...v1.23.0)

Updates `github.com/cloudflare/cloudflare-go` from 0.115.0 to 0.116.0
- [Release notes](https://github.com/cloudflare/cloudflare-go/releases)
- [Changelog](https://github.com/cloudflare/cloudflare-go/blob/v0.116.0/CHANGELOG.md)
- [Commits](cloudflare/cloudflare-go@v0.115.0...v0.116.0)

Updates `github.com/digitalocean/godo` from 1.163.0 to 1.166.0
- [Release notes](https://github.com/digitalocean/godo/releases)
- [Changelog](https://github.com/digitalocean/godo/blob/main/CHANGELOG.md)
- [Commits](digitalocean/godo@v1.163.0...v1.166.0)

Updates `github.com/linode/linodego` from 1.55.0 to 1.60.0
- [Release notes](https://github.com/linode/linodego/releases)
- [Commits](linode/linodego@v1.55.0...v1.60.0)

Updates `github.com/oracle/oci-go-sdk/v65` from 65.99.0 to 65.102.0
- [Release notes](https://github.com/oracle/oci-go-sdk/releases)
- [Changelog](https://github.com/oracle/oci-go-sdk/blob/master/CHANGELOG.md)
- [Commits](oracle/oci-go-sdk@v65.99.0...v65.102.0)

Updates `github.com/projectcontour/contour` from 1.32.1 to 1.33.0
- [Release notes](https://github.com/projectcontour/contour/releases)
- [Changelog](https://github.com/projectcontour/contour/blob/main/RELEASES.md)
- [Commits](projectcontour/contour@v1.32.1...v1.33.0)

Updates `github.com/prometheus/client_golang` from 1.23.0 to 1.23.2
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.23.0...v1.23.2)

Updates `github.com/prometheus/common` from 0.65.0 to 0.66.1
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/CHANGELOG.md)
- [Commits](prometheus/common@v0.65.0...v0.66.1)

Updates `github.com/scaleway/scaleway-sdk-go` from 1.0.0-beta.34 to 1.0.0-beta.35
- [Release notes](https://github.com/scaleway/scaleway-sdk-go/releases)
- [Changelog](https://github.com/scaleway/scaleway-sdk-go/blob/master/CHANGELOG.md)
- [Commits](scaleway/scaleway-sdk-go@v1.0.0-beta.34...v1.0.0-beta.35)

Updates `github.com/stretchr/testify` from 1.10.0 to 1.11.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.10.0...v1.11.1)

Updates `github.com/transip/gotransip/v6` from 6.26.0 to 6.26.1
- [Release notes](https://github.com/transip/gotransip/releases)
- [Commits](transip/gotransip@v6.26.0...v6.26.1)

Updates `go.etcd.io/etcd/api/v3` from 3.6.4 to 3.6.5
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.4...v3.6.5)

Updates `go.etcd.io/etcd/client/v3` from 3.6.4 to 3.6.5
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.4...v3.6.5)

Updates `golang.org/x/net` from 0.43.0 to 0.44.0
- [Commits](golang/net@v0.43.0...v0.44.0)

Updates `golang.org/x/oauth2` from 0.30.0 to 0.31.0
- [Commits](golang/oauth2@v0.30.0...v0.31.0)

Updates `golang.org/x/sync` from 0.16.0 to 0.17.0
- [Commits](golang/sync@v0.16.0...v0.17.0)

Updates `golang.org/x/text` from 0.28.0 to 0.29.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.28.0...v0.29.0)

Updates `golang.org/x/time` from 0.12.0 to 0.14.0
- [Commits](golang/time@v0.12.0...v0.14.0)

Updates `google.golang.org/api` from 0.248.0 to 0.252.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.248.0...v0.252.0)

Updates `gopkg.in/ns1/ns1-go.v2` from 2.14.4 to 2.15.0

Updates `istio.io/api` from 1.27.0 to 1.27.2
- [Commits](istio/api@1.27.0...1.27.2)

Updates `istio.io/client-go` from 1.27.0 to 1.27.2
- [Commits](istio/client-go@1.27.0...1.27.2)

Updates `k8s.io/api` from 0.33.4 to 0.34.0
- [Commits](kubernetes/api@v0.33.4...v0.34.0)

Updates `k8s.io/apimachinery` from 0.33.4 to 0.34.0
- [Commits](kubernetes/apimachinery@v0.33.4...v0.34.0)

Updates `k8s.io/client-go` from 0.33.4 to 0.34.0
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.33.4...v0.34.0)

Updates `sigs.k8s.io/controller-runtime` from 0.21.0 to 0.22.1
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.21.0...v0.22.1)

Updates `sigs.k8s.io/gateway-api` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/kubernetes-sigs/gateway-api/releases)
- [Changelog](https://github.com/kubernetes-sigs/gateway-api/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/gateway-api@v1.3.0...v1.4.0)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/compute/metadata
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azcore
  dependency-version: 1.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.39.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.31.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.18.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue
  dependency-version: 1.20.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/dynamodb
  dependency-version: 1.51.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/route53
  dependency-version: 1.58.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/servicediscovery
  dependency-version: 1.39.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sts
  dependency-version: 1.38.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/smithy-go
  dependency-version: 1.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/cloudflare/cloudflare-go
  dependency-version: 0.116.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/digitalocean/godo
  dependency-version: 1.166.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/linode/linodego
  dependency-version: 1.60.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/oracle/oci-go-sdk/v65
  dependency-version: 65.102.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/projectcontour/contour
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.23.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/prometheus/common
  dependency-version: 0.66.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/scaleway/scaleway-sdk-go
  dependency-version: 1.0.0-beta.35
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/transip/gotransip/v6
  dependency-version: 6.26.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: go.etcd.io/etcd/api/v3
  dependency-version: 3.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-version: 3.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/net
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/sync
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/text
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/time
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: google.golang.org/api
  dependency-version: 0.252.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: gopkg.in/ns1/ns1-go.v2
  dependency-version: 2.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: istio.io/api
  dependency-version: 1.27.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: istio.io/client-go
  dependency-version: 1.27.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: k8s.io/api
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: k8s.io/client-go
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-version: 0.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: sigs.k8s.io/gateway-api
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/dev-dependencies-1120e4ef8d branch from 4a7b21f to 09d62db Compare October 21, 2025 03:15
@k8s-ci-robot
Copy link
Contributor

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

Test name Commit Details Required Rerun command
pull-external-dns-unit-test 09d62db link true /test pull-external-dns-unit-test

Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. dependencies Pull requests that update a dependency file go Pull requests that update Go code ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/XL Denotes a PR that changes 500-999 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants