Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the dev-dependencies group with 24 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/F5Networks/k8s-bigip-ctlr/v2 2.20.1 2.20.2
github.com/aws/aws-sdk-go-v2 1.38.1 1.39.4
github.com/aws/aws-sdk-go-v2/config 1.31.2 1.31.15
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue 1.20.6 1.20.18
github.com/aws/aws-sdk-go-v2/service/route53 1.56.2 1.59.1
github.com/aws/aws-sdk-go-v2/service/servicediscovery 1.39.2 1.39.12
github.com/cloudflare/cloudflare-go 0.115.0 0.116.0
github.com/digitalocean/godo 1.163.0 1.167.0
github.com/linode/linodego 1.55.0 1.60.0
github.com/oracle/oci-go-sdk/v65 65.99.0 65.102.1
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.253.0
gopkg.in/ns1/ns1-go.v2 2.14.4 2.15.1
istio.io/api 1.27.0 1.27.3
istio.io/client-go 1.27.0 1.27.3
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/F5Networks/k8s-bigip-ctlr/v2 from 2.20.1 to 2.20.2

Release notes

Sourced from github.com/F5Networks/k8s-bigip-ctlr/v2's releases.

Release v2.20.2

  • See release notes for details on what has changed in this release.
  • The container F5 Container Ingress Services for Kubernetes and OpenShift is available on DockerHub and can be downloaded using the Docker CLI:
docker pull docker.io/f5networks/k8s-bigip-ctlr:2.20.2
docker pull quay.io/f5networks/k8s-bigip-ctlr:2.20.2
Changelog

Sourced from github.com/F5Networks/k8s-bigip-ctlr/v2's changelog.

CIS 2.20.2

Added Functionality

**What's new:**
    * Multi Cluster
    * CRD
        * `Issue 3865 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3865>`_: support for secured and unsecured httpProfiles in policy CRD
        * `Issue 3892 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3892>`_: GRPC support for VirtualServer CRD
        * Issue 3852 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3852>`_: support for static pool members in VirtualServer
        * Issue 3865 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3865>`_: support for secured and unsecured httpProfiles in policy CRD
        * Issue 3927 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3927>`_: feature request: customized virtualServerName for IngressLink resource
        * Issue 3907 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3907>`_: support to set HTTP/2 Profile/Server to None
        * Support request log profile in policy CRD
        * Issue 3932 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3932>`_: support for allowed and denied partitions lists for Virtual Server CRD

Bug Fixes

* Issue 3719 &lt;https://github.com/F5Networks/k8s-bigip-ctlr/issues/3719&gt;`_: Fix shared static routes override each other with multiple CIS instances writing to Common Partition
* Issue 3852 &lt;https://github.com/F5Networks/k8s-bigip-ctlr/issues/3852&gt;`_: Improve logging when BIG-IP is not reachable during pod initialization
* Issue 3887 &lt;https://github.com/F5Networks/k8s-bigip-ctlr/issues/3887&gt;`_: RFE: change log level of certain messages
* SR - Fix for CIS deleting unmanaged routes in common partition with static routing mode disabled

Upgrade notes

  • Upgrading to CIS 2.20.2, static routes are deleted and recreated with new description added to fix the issue(Github#3719) of static routes overriding each other with multiple CIS instances writing to Common Partition. This may cause a brief disruption in traffic while the routes are being recreated.
Commits

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

Commits

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

Commits

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

Commits
  • 390cf19 Release 2023-03-21
  • c37c72a Regenerated Clients
  • d1e5193 Update endpoints model
  • 2506101 Update API model
  • c93b5cc Merge pull request #2051 from aws/add100ContinueCustomization
  • c01aac6 Keep one changelog for PR
  • 3780faa Keep one changelog for PR
  • b94b5b7 Merge remote-tracking branch 'origin/add100ContinueCustomization' into add100...
  • 6174ff2 Change some variable name and use operation shape id to represent operation s...
  • 83491fc add changelog to last commit
  • Additional commits viewable in compare view

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

Commits

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

Commits

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

Commits

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

Commits

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

Commits

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

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

Release notes

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

v1.167.0

v1.166.0

v1.165.1

v1.164.0

Changelog

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

[1.167.0] - 2025-10-18

[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.1

Release notes

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

65.102.1

Added

  • Support for LDAP schema version RFC2307bis when creating and updating mount targets in the File Storage service

  • Support for Helm Critical Resource Protection (HCRP) in the DevOps Deploy service

  • Support for parameterized pipelines in the Data Science service

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

  • Support for configurable version upgrade policies in the MySQL HeatWave service

  • Support for 26ai version in the Exadata Fleet Update service

File Checksums (SHA256)

oci-go-sdk-65.102.1.zip 24a12201cd3a8e9c7ee8388097852efeae00019169ce51a82b8a50ddf562504b

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

... (truncated)

Changelog

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

65.102.1 - 2025-10-21

Added

  • Support for LDAP schema version RFC2307bis when creating and updating mount targets in the File Storage service
  • Support for Helm Critical Resource Protection (HCRP) in the DevOps Deploy service
  • Support for parameterized pipelines in the Data Science service
  • Support for Zero Trust Packet Routing (ZPR) security attributes in the Streaming service
  • Support for configurable version upgrade policies in the MySQL HeatWave service
  • Support for 26ai version in the Exadata Fleet Update service

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

    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 24, 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 szuecs 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 24, 2025
@k8s-ci-robot
Copy link
Contributor

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

I'm waiting for a github.com 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 24, 2025
…39 updates

Bumps the dev-dependencies group with 24 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/F5Networks/k8s-bigip-ctlr/v2](https://github.com/F5Networks/k8s-bigip-ctlr) | `2.20.1` | `2.20.2` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.38.1` | `1.39.4` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.31.2` | `1.31.15` |
| [github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue](https://github.com/aws/aws-sdk-go-v2) | `1.20.6` | `1.20.18` |
| [github.com/aws/aws-sdk-go-v2/service/route53](https://github.com/aws/aws-sdk-go-v2) | `1.56.2` | `1.59.1` |
| [github.com/aws/aws-sdk-go-v2/service/servicediscovery](https://github.com/aws/aws-sdk-go-v2) | `1.39.2` | `1.39.12` |
| [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.167.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.1` |
| [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.253.0` |
| gopkg.in/ns1/ns1-go.v2 | `2.14.4` | `2.15.1` |
| [istio.io/api](https://github.com/istio/api) | `1.27.0` | `1.27.3` |
| [istio.io/client-go](https://github.com/istio/client-go) | `1.27.0` | `1.27.3` |
| [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/F5Networks/k8s-bigip-ctlr/v2` from 2.20.1 to 2.20.2
- [Release notes](https://github.com/F5Networks/k8s-bigip-ctlr/releases)
- [Changelog](https://github.com/F5Networks/k8s-bigip-ctlr/blob/v2.20.2/docs/RELEASE-NOTES.rst)
- [Commits](F5Networks/k8s-bigip-ctlr@v2.20.1...v2.20.2)

Updates `github.com/aws/aws-sdk-go-v2` from 1.38.1 to 1.39.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@v1.38.1...v1.39.4)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.31.2 to 1.31.15
- [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.15)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.18.6 to 1.18.19
- [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.19)

Updates `github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue` from 1.20.6 to 1.20.18
- [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.18)

Updates `github.com/aws/aws-sdk-go-v2/service/dynamodb` from 1.49.1 to 1.52.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@service/ssm/v1.49.1...service/ecs/v1.52.2)

Updates `github.com/aws/aws-sdk-go-v2/service/route53` from 1.56.2 to 1.59.1
- [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/iot/v1.59.1)

Updates `github.com/aws/aws-sdk-go-v2/service/servicediscovery` from 1.39.2 to 1.39.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@v1.39.2...service/emr/v1.39.12)

Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.38.0 to 1.38.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.38.0...service/iam/v1.38.9)

Updates `github.com/aws/smithy-go` from 1.22.5 to 1.23.1
- [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.1)

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.167.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.167.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.1
- [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.1)

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.253.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.253.0)

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

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

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

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/F5Networks/k8s-bigip-ctlr/v2
  dependency-version: 2.20.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.39.4
  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.15
  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.19
  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.18
  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.52.2
  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.59.1
  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.12
  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.9
  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.1
  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.167.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.1
  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.253.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.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: istio.io/api
  dependency-version: 1.27.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: istio.io/client-go
  dependency-version: 1.27.3
  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-9605b11d5d branch from 2ac33e5 to d7b1a6c Compare October 27, 2025 03:16
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 needs-ok-to-test Indicates a PR that requires an org member to verify it 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