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

build(deps): bump the dev-dependencies group across 1 directory with 23 updates #4404

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 23, 2024

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

Package From To
cloud.google.com/go/compute/metadata 0.2.3 0.3.0
github.com/F5Networks/k8s-bigip-ctlr/v2 2.16.0 2.16.1
github.com/IBM/go-sdk-core/v5 5.16.5 5.17.0
github.com/IBM/networking-go-sdk 0.45.0 0.46.0
github.com/aliyun/alibaba-cloud-sdk-go 1.62.712 1.62.721
github.com/aws/aws-sdk-go 1.51.19 1.51.26
github.com/civo/civogo 0.3.67 0.3.68
github.com/digitalocean/godo 1.112.0 1.113.0
github.com/linode/linodego 1.32.0 1.33.0
github.com/miekg/dns 1.1.58 1.1.59
github.com/oracle/oci-go-sdk/v65 65.63.1 65.63.2
github.com/ovh/go-ovh 1.4.3 1.5.1
github.com/scaleway/scaleway-sdk-go 1.0.0-beta.25 1.0.0-beta.26
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common 1.0.897 1.0.907
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod 1.0.897 1.0.907
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns 1.0.897 1.0.907
google.golang.org/api 0.172.0 0.176.0
gopkg.in/ns1/ns1-go.v2 2.9.1 2.10.0
istio.io/api 1.21.1 1.21.2
istio.io/client-go 1.21.1 1.21.2
k8s.io/api 0.29.3 0.30.0
k8s.io/client-go 0.29.3 0.30.0

Updates cloud.google.com/go/compute/metadata from 0.2.3 to 0.3.0

Release notes

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

compute/metadata: v0.3.0

0.3.0 (2024-04-15)

Features

  • compute/metadata: Add context aware functions (#9733) (e4eb5b4)

netapp: v0.2.7

0.2.7 (2024-03-25)

Documentation

  • netapp: Rephrase comment on psa_range (1ef5b19)
Changelog

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

v0.3.0

  • storage:
    • AdminClient replaced by methods on Client. Replace

      adminClient.CreateBucket(ctx, bucketName, attrs)

      with

      client.Bucket(bucketName).Create(ctx, projectID, attrs)
    • BucketHandle.List replaced by BucketHandle.Objects. Replace

      for query != nil {
          objs, err := bucket.List(d.ctx, query)
          if err != nil { ... }
          query = objs.Next
          for _, obj := range objs.Results {
              fmt.Println(obj)
          }
      }

      with

      iter := bucket.Objects(d.ctx, query)
      for {
          obj, err := iter.Next()
          if err == iterator.Done {
              break
          }
          if err != nil { ... }
          fmt.Println(obj)
      }

      (The iterator package is at google.golang.org/api/iterator.)

      Replace Query.Cursor with ObjectIterator.PageInfo().Token.

      Replace Query.MaxResults with ObjectIterator.PageInfo().MaxSize.

    • ObjectHandle.CopyTo replaced by ObjectHandle.CopierFrom. Replace

      attrs, err := src.CopyTo(ctx, dst, nil)

      with

... (truncated)

Commits
  • 44b3a7d Add autogenerated clients: debugger, iam, and trace
  • c6705a9 bigquery: restore backwards-compatible Query.TableDefinitions.
  • b8c1696 bigquery: add RowIterator, to replace Iterator
  • 5d33b1b bigquery: Make Query more configurable and add a Run method.
  • 07f82cd bigtable/bttest: Allow more time for concurrent mod test.
  • b9d51d5 pubsub: implement on top of generated client
  • fa279f9 storage: don't fail tests loudly if cleanup fails
  • 139d2e0 examples/bigquery: update WriteDisposition field
  • 2912d48 bigquery: shorten Disposition field names
  • 2096d28 bigquery: add Table.Update
  • Additional commits viewable in compare view

Updates github.com/F5Networks/k8s-bigip-ctlr/v2 from 2.16.0 to 2.16.1

Release notes

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

Release v2.16.1

  • 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.16.1
docker pull quay.io/f5networks/k8s-bigip-ctlr:2.16.1
Changelog

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

2.16.1

Added Functionality

**What's new:**
    * CRD
        * `Issue 3329 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3329>`_: Add support for static ip configuration in annotation for service type LoadBalancer.

Bug Fixes

* `Issue 3324 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3324`_: Fix for Service LoadBalancer with targetPort set to name of containerPort creates emtpy BIG-IP Pool
* `Issue 3326 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3326`_: Multi-cluster: Services in blue-green deployments don´t get updated
* `Issue 3340 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3340`_: Fix to post latest config in retrying a failing AS3 configuration
* `Issue 3335 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3335`_: Authorization errors and unexpected 503 HTTP return code inside F5 BIGIP controller version 2.16-WIP
* `Issue 3322 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3322`_: Ingress using single service backend with different paths and ports not create correctly f5 ingress object

Known Issues

CVE-2024-2961

F5 IPAM Controller v0.1.10

Vulnerability Fixes

CVE-2023-38545, CVE-2023-38546, CVE-2022-48337, CVE-2022-48338, CVE-2022-48339, CVE-2023-2491, CVE-2023-24329,
CVE-2023-40217, CVE-2023-4527, CVE-2023-4806, CVE-2023-4813, CVE-2023-4911, CVE-2023-44487, CVE-2023-28617,
CVE-2022-40897

Known Issues

CVE-2024-2961
</code></pre>
</blockquote>
</details>
<details>
<summary>Commits</summary>

<ul>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/c0934efcc07227fdc64bd9c8e17e8cc21a4bc3b2&quot;&gt;&lt;code&gt;c0934ef&lt;/code&gt;&lt;/a> Release notes 2.16.1 (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3384&quot;&gt;#3384&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/5f5dabd10c44f7b5e6803c0d24ff9c0f3fdb2224&quot;&gt;&lt;code&gt;5f5dabd&lt;/code&gt;&lt;/a> update net package to fix http2 Vulnerability (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3375&quot;&gt;#3375&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/dbccc155a6ca096f4d530164faf0a1ed82e492f4&quot;&gt;&lt;code&gt;dbccc15&lt;/code&gt;&lt;/a> Fix CCCL auth error (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3362&quot;&gt;#3362&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/751720ccec303b8bcdad909e97d722c7f50925e8&quot;&gt;&lt;code&gt;751720c&lt;/code&gt;&lt;/a> <a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3322&quot;&gt;#3322&lt;/a> multi port backend path support (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3349&quot;&gt;#3349&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/dff1b78e395a93c4e8129ddf412e08caafe4d027&quot;&gt;&lt;code&gt;dff1b78&lt;/code&gt;&lt;/a> fix to post latest config in retry scenario (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3358&quot;&gt;#3358&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/f82e783c6e8fb6fb781a6537a3de19f7442f8769&quot;&gt;&lt;code&gt;f82e783&lt;/code&gt;&lt;/a> Fix service pool update issue with A/B NextGenRoute (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3343&quot;&gt;#3343&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/17ff4e2d239a559d340c9ba0f63515b12fe9cd2e&quot;&gt;&lt;code&gt;17ff4e2&lt;/code&gt;&lt;/a> static ip support with service type lb (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3346&quot;&gt;#3346&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/1ac97cff184c38b04e5209d73f62e24b1f575d13&quot;&gt;&lt;code&gt;1ac97cf&lt;/code&gt;&lt;/a> fix svc-type-lb empty pool with named target port (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3342&quot;&gt;#3342&lt;/a&gt;)&lt;/li>
<li>See full diff in <a href="https://github.com/F5Networks/k8s-bigip-ctlr/compare/v2.16.0...v2.16.1&quot;&gt;compare view</a></li>
</ul>
</details>

<br />

Updates github.com/IBM/go-sdk-core/v5 from 5.16.5 to 5.17.0

Release notes

Sourced from github.com/IBM/go-sdk-core/v5's releases.

v5.17.0

5.17.0 (2024-04-17)

Features

  • send user-agent header with auth token requests (#216) (90f0ba5)
Changelog

Sourced from github.com/IBM/go-sdk-core/v5's changelog.

5.17.0 (2024-04-17)

Features

  • send user-agent header with auth token requests (#216) (90f0ba5)
Commits
  • 54ecde5 chore(release): 5.17.0 release notes [skip ci]
  • 8e0c659 Update version numbers from 5.16.5 -> 5.17.0 [skip ci]
  • 90f0ba5 feat: send user-agent header with auth token requests (#216)
  • See full diff in compare view

Updates github.com/IBM/networking-go-sdk from 0.45.0 to 0.46.0

Release notes

Sourced from github.com/IBM/networking-go-sdk's releases.

v0.46.0

0.46.0 (2024-04-20)

Bug Fixes

Features

  • release managed rulesets (4f88c26)
Changelog

Sourced from github.com/IBM/networking-go-sdk's changelog.

0.46.0 (2024-04-20)

Bug Fixes

Features

  • release managed rulesets (4f88c26)
Commits
  • 08e8fdc chore(release): 0.46.0 release notes [skip ci]
  • d6b5e18 Update version 0.45.0 -> 0.46.0 [skip ci]
  • df733d5 Merge pull request #173 from IBM/sdk_version_update
  • a3062d0 chore: SDK version update from v0.44.0 to v0.45.0
  • d5caf2c Merge pull request #172 from IBM/sdk_version_update
  • b403fad chore: SDK version update from v0.44.0 to v0.45.0
  • 6880b77 Merge pull request #171 from IBM/as_release_test
  • 95c63af fix: yaml update
  • 2c4345d Merge pull request #170 from IBM/as_release_test
  • 00c20da fix: yaml update
  • Additional commits viewable in compare view

Updates github.com/aliyun/alibaba-cloud-sdk-go from 1.62.712 to 1.62.721

Release notes

Sourced from github.com/aliyun/alibaba-cloud-sdk-go's releases.

v1.62.721

  • Generated 2019-12-30 for facebody.
  • Update DetectFace.

v1.62.720

  • Generated 2019-05-06 for sae. undefined

v1.62.719

  • Generated 2018-11-01 for dms-enterprise.
  • Supported ApproveOrder request parameter NewApproverList.
  • Add ListSensitiveColumnInfo API.
  • Supported GetDataCorrectOrderDetail return ConfigDetail Information.

v1.62.718

  • Generated 2022-05-30 for eflo.
  • Update HDENI API.

v1.62.717

  • Generated 2018-02-08 for Domain.
  • Add SnatchNo For QueryBookingDomainInfo

v1.62.716

  • Generated 2014-08-28 for Ess.
  • ModifyScalingGroup add ScalingPolicy params.

v1.62.715

  • Generated 2018-02-08 for Domain.
  • Add SnatchNo For QueryBookingDomainInfo

v1.62.714

  • Generated 2023-07-01 for EHPC.
  • Support Container for CreateJob.

v1.62.713

  • Generated 2023-01-20 for csas.
Changelog

Sourced from github.com/aliyun/alibaba-cloud-sdk-go's changelog.

2024-04-22 Version: v1.62.721

  • Generated 2019-12-30 for facebody.
  • Update DetectFace.

2024-04-22 Version: v1.62.720

  • Generated 2019-05-06 for sae. undefined

2024-04-18 Version: v1.62.719

  • Generated 2018-11-01 for dms-enterprise.
  • Supported ApproveOrder request parameter NewApproverList.
  • Add ListSensitiveColumnInfo API.
  • Supported GetDataCorrectOrderDetail return ConfigDetail Information.

2024-04-18 Version: v1.62.718

  • Generated 2022-05-30 for eflo.
  • Update HDENI API.

2024-04-17 Version: v1.62.717

  • Generated 2018-02-08 for Domain.
  • Add SnatchNo For QueryBookingDomainInfo

2024-04-17 Version: v1.62.716

  • Generated 2014-08-28 for Ess.
  • ModifyScalingGroup add ScalingPolicy params.

2024-04-16 Version: v1.62.715

  • Generated 2018-02-08 for Domain.
  • Add SnatchNo For QueryBookingDomainInfo

2024-04-16 Version: v1.62.714

  • Generated 2023-07-01 for EHPC.
  • Support Container for CreateJob.

2024-04-15 Version: v1.62.713

  • Generated 2023-01-20 for csas.
Commits
  • b81986e Generated 2019-12-30 for facebody.
  • 38723c2 Generated 2019-05-06 for sae.
  • 2db981e Generated 2018-11-01 for dms-enterprise.
  • bcd3bc1 Generated 2022-05-30 for eflo.
  • 2dd98ec Generated 2018-02-08 for Domain.
  • d15dc6c Generated 2014-08-28 for Ess.
  • 10eee88 Generated 2018-02-08 for Domain.
  • febfb8e Generated 2023-07-01 for EHPC.
  • e72910c Generated 2023-01-20 for csas.
  • See full diff in compare view

Updates github.com/aws/aws-sdk-go from 1.51.19 to 1.51.26

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.51.26 (2024-04-22)

Service Client Updates

  • service/bedrock-agent: Updates service API and documentation
  • service/bedrock-agent-runtime: Updates service API and documentation
  • service/payment-cryptography: Updates service API, documentation, and waiters
  • service/redshift-serverless: Updates service documentation
  • service/route53profiles: Adds new service
  • service/sagemaker: Updates service API and documentation
    • This release adds support for Real-Time Collaboration and Shared Space for JupyterLab App on SageMaker Studio.
  • service/servicediscovery: Updates service documentation and examples
  • service/transfer: Updates service API and documentation
    • Adding new API to support remote directory listing using SFTP connector

Release v1.51.25 (2024-04-19)

Service Client Updates

  • service/glue: Updates service API and documentation
    • Adding RowFilter in the response for GetUnfilteredTableMetadata API
  • service/internetmonitor: Updates service API, documentation, and paginators
  • service/personalize: Updates service API and documentation

Release v1.51.24 (2024-04-18)

Service Client Updates

  • service/drs: Updates service API and documentation
  • service/emr-serverless: Updates service API and documentation
  • service/guardduty: Updates service API and documentation
    • Added IPv6Address fields for local and remote IP addresses
  • service/quicksight: Updates service API and documentation
    • This release adds support for the Cross Sheet Filter and Control features, and support for warnings in asset imports for any permitted errors encountered during execution
  • service/rolesanywhere: Updates service API and documentation
  • service/sagemaker: Updates service API and documentation
    • Removed deprecated enum values and updated API documentation.
  • service/workspaces: Updates service API, documentation, and paginators
    • Adds new APIs for managing and sharing WorkSpaces BYOL configuration across accounts.

Release v1.51.23 (2024-04-17)

Service Client Updates

  • service/ec2: Updates service documentation
    • Documentation updates for Elastic Compute Cloud (EC2).
  • service/qbusiness: Updates service API and documentation

Release v1.51.22 (2024-04-16)

... (truncated)

Commits

Updates github.com/civo/civogo from 0.3.67 to 0.3.68

Release notes

Sourced from github.com/civo/civogo's releases.

v0.3.68

Introduction of reserved_ipv4 param to create a new instance

Commits

Updates github.com/digitalocean/godo from 1.112.0 to 1.113.0

Release notes

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

v1.113.0

Changelog

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

[v1.113.0] - 2024-04-12

Commits

Updates github.com/linode/linodego from 1.32.0 to 1.33.0

Release notes

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

v1.33.0

What's Changed

⚠️ Breaking Change

🚀 New Features

📦 Dependency Updates

Full Changelog: https://github.com/linode/linodego/compare/v1.32.0...v1.33.0

Commits
  • be75a51 new: Support available for AccountAvailability (#491)
  • 4eb5658 Add a list VPC IPs function for a specific VPC (#488)
  • ea08693 build(deps): bump golang.org/x/net from 0.23.0 to 0.24.0 (#486)
  • f399472 build(deps): bump golang.org/x/oauth2 from 0.18.0 to 0.19.0 (#487)
  • e8b2c71 build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 (#485)
  • See full diff in compare view

Updates github.com/miekg/dns from 1.1.58 to 1.1.59

Commits

Updates github.com/oracle/oci-go-sdk/v65 from 65.63.1 to 65.63.2

Release notes

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

65.63.2

Added

  • Support for calling Oracle Cloud Infrastructure services in the me-abudhabi-3 region

  • Support for new Image resource for an Autonomous Database in the Database service

  • Support for creating Autonomous Container Database using Autonomous Database Software Image in the Database service

  • Support for new dedicated AI cluster unit shape in the Generative AI service

  • Support for Chat API for LLM models in the Generative AI service

  • Support for network security groups (NSGs) in the Redis service

  • Support for custom public egress on model deployments in the Data Science service

  • Support for a new data transfer parameter for AWS S3 bucket in the Database Migration service

  • Support for Oracle Process Automation instance start and stop operations in the Process Automation service

  • Support for healthcare Natural Language Processing (NLP) in the AI Language service

  • Support for identification and de-identification of Private Health Information (PHI) service in the AI Language service

  • Support for multilingual content for using machine learning models in the AI Language service

  • Support for usage statements in cost management in the Usage service

File Checksums (SHA256)

oci-go-sdk-65.63.2.zip bc35290040cbecc4bd105edae1965199eacd7f0d6b0801883f6e6514474b8ca4

Changelog

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

65.63.2 - 2024-04-16

Added

  • Support for calling Oracle Cloud Infrastructure services in the me-abudhabi-3 region
  • Support for new Image resource for an Autonomous Database in the Database service
  • Support for creating Autonomous Container Database using Autonomous Database Software Image in the Database service
  • Support for new dedicated AI cluster unit shape in the Generative AI service
  • Support for Chat API for LLM models in the Generative AI service
  • Support for network security groups (NSGs) in the Redis service
  • Support for custom public egress on model deployments in the Data Science service
  • Support for a new data transfer parameter for AWS S3 bucket in the Database Migration service
  • Support for Oracle Process Automation instance start and stop operations in the Process Automation service
  • Support for healthcare Natural Language Processing (NLP) in the AI Language service
  • Support for identification and de-identification of Private Health Information (PHI) service in the AI Language service
  • Support for multilingual content for using machine learning models in the AI Language service
  • Support for usage statements in cost management in the Usage service
Commits
  • adf776a Releasing version 65.63.2
  • 49451b0 Merge remote-tracking branch 'bitbucket/github' into release_2024-04-16
  • bd46995 Pull request #2720: Releasing Version 65.63.2
  • See full diff in compare view

Updates github.com/ovh/go-ovh from 1.4.3 to 1.5.1

Release notes

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

v1.5.1

What's Changed

Full Changelog: https://github.com/ovh/go-ovh/compare/v1.5.0...v1.5.1

v1.5.0

What's Changed

Full Changelog: https://github.com/ovh/go-ovh/compare/v1.4.3...v1.5.0

Commits

Updates github.com/scaleway/scaleway-sdk-go from 1.0.0-beta.25 to 1.0.0-beta.26

Release notes

Sourced from github.com/scaleway/scaleway-sdk-go's releases.

v1.0.0-beta.26

What's Changed

New Contributors

Full Changelog: https://github.com/scaleway/scaleway-sdk-go/compare/v1.0.0-beta.25...v1.0.0-beta.26

Commits
  • 9f7b1de feat(secret_manager): add secret type messages to simplify deserialization (#...
  • 886dca2 feat(secret_manager): add AccessSecretVersionByPath endpoint (#2051)
  • 30423f2 feat(iam): add support for PrettyName, Unit and Description for Quotum (#2050)
  • 0d27543 chore(sdb): change default ordering to created_at_desc (#2049)
  • eadb80a feat(webhosting): add support for OneTimePassword (#2048)
  • 0e28290 chore(serverless_jobs): filter job defs and runs by organization_id (#2047)
  • 4e97e70 feat(vpc/v2): allow routing activation on existing VPCs (#2045)
  • 287e07c docs(serverless_jobs): add documentation for command, timezone and schedule f...
  • 13a6959 doc(secret_manager): reword CreateSecret description (#2043)
  • 0262fe1 feat: add Dedibox support (#2042)
  • Additional commits viewable in compare view

Updates github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common from 1.0.897 to 1.0.907

Commits

Updates github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod from 1.0.897 to 1.0.907

Commits

Updates github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns from 1.0.897 to 1.0.907

Commits

…23 updates

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

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) | `0.2.3` | `0.3.0` |
| [github.com/F5Networks/k8s-bigip-ctlr/v2](https://github.com/F5Networks/k8s-bigip-ctlr) | `2.16.0` | `2.16.1` |
| [github.com/IBM/go-sdk-core/v5](https://github.com/IBM/go-sdk-core) | `5.16.5` | `5.17.0` |
| [github.com/IBM/networking-go-sdk](https://github.com/IBM/networking-go-sdk) | `0.45.0` | `0.46.0` |
| [github.com/aliyun/alibaba-cloud-sdk-go](https://github.com/aliyun/alibaba-cloud-sdk-go) | `1.62.712` | `1.62.721` |
| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.51.19` | `1.51.26` |
| [github.com/civo/civogo](https://github.com/civo/civogo) | `0.3.67` | `0.3.68` |
| [github.com/digitalocean/godo](https://github.com/digitalocean/godo) | `1.112.0` | `1.113.0` |
| [github.com/linode/linodego](https://github.com/linode/linodego) | `1.32.0` | `1.33.0` |
| [github.com/miekg/dns](https://github.com/miekg/dns) | `1.1.58` | `1.1.59` |
| [github.com/oracle/oci-go-sdk/v65](https://github.com/oracle/oci-go-sdk) | `65.63.1` | `65.63.2` |
| [github.com/ovh/go-ovh](https://github.com/ovh/go-ovh) | `1.4.3` | `1.5.1` |
| [github.com/scaleway/scaleway-sdk-go](https://github.com/scaleway/scaleway-sdk-go) | `1.0.0-beta.25` | `1.0.0-beta.26` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.897` | `1.0.907` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.897` | `1.0.907` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.897` | `1.0.907` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.172.0` | `0.176.0` |
| gopkg.in/ns1/ns1-go.v2 | `2.9.1` | `2.10.0` |
| [istio.io/api](https://github.com/istio/api) | `1.21.1` | `1.21.2` |
| [istio.io/client-go](https://github.com/istio/client-go) | `1.21.1` | `1.21.2` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.29.3` | `0.30.0` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.29.3` | `0.30.0` |



Updates `cloud.google.com/go/compute/metadata` from 0.2.3 to 0.3.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@netapp/v0.2.3...v0.3.0)

Updates `github.com/F5Networks/k8s-bigip-ctlr/v2` from 2.16.0 to 2.16.1
- [Release notes](https://github.com/F5Networks/k8s-bigip-ctlr/releases)
- [Changelog](https://github.com/F5Networks/k8s-bigip-ctlr/blob/v2.16.1/docs/RELEASE-NOTES.rst)
- [Commits](F5Networks/k8s-bigip-ctlr@v2.16.0...v2.16.1)

Updates `github.com/IBM/go-sdk-core/v5` from 5.16.5 to 5.17.0
- [Release notes](https://github.com/IBM/go-sdk-core/releases)
- [Changelog](https://github.com/IBM/go-sdk-core/blob/main/CHANGELOG.md)
- [Commits](IBM/go-sdk-core@v5.16.5...v5.17.0)

Updates `github.com/IBM/networking-go-sdk` from 0.45.0 to 0.46.0
- [Release notes](https://github.com/IBM/networking-go-sdk/releases)
- [Changelog](https://github.com/IBM/networking-go-sdk/blob/master/CHANGELOG.md)
- [Commits](IBM/networking-go-sdk@v0.45.0...v0.46.0)

Updates `github.com/aliyun/alibaba-cloud-sdk-go` from 1.62.712 to 1.62.721
- [Release notes](https://github.com/aliyun/alibaba-cloud-sdk-go/releases)
- [Changelog](https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/ChangeLog.txt)
- [Commits](aliyun/alibaba-cloud-sdk-go@v1.62.712...v1.62.721)

Updates `github.com/aws/aws-sdk-go` from 1.51.19 to 1.51.26
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](aws/aws-sdk-go@v1.51.19...v1.51.26)

Updates `github.com/civo/civogo` from 0.3.67 to 0.3.68
- [Release notes](https://github.com/civo/civogo/releases)
- [Changelog](https://github.com/civo/civogo/blob/master/changelog.yml)
- [Commits](civo/civogo@v0.3.67...v0.3.68)

Updates `github.com/digitalocean/godo` from 1.112.0 to 1.113.0
- [Release notes](https://github.com/digitalocean/godo/releases)
- [Changelog](https://github.com/digitalocean/godo/blob/main/CHANGELOG.md)
- [Commits](digitalocean/godo@v1.112.0...v1.113.0)

Updates `github.com/linode/linodego` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/linode/linodego/releases)
- [Commits](linode/linodego@v1.32.0...v1.33.0)

Updates `github.com/miekg/dns` from 1.1.58 to 1.1.59
- [Changelog](https://github.com/miekg/dns/blob/master/Makefile.release)
- [Commits](miekg/dns@v1.1.58...v1.1.59)

Updates `github.com/oracle/oci-go-sdk/v65` from 65.63.1 to 65.63.2
- [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.63.1...v65.63.2)

Updates `github.com/ovh/go-ovh` from 1.4.3 to 1.5.1
- [Release notes](https://github.com/ovh/go-ovh/releases)
- [Commits](ovh/go-ovh@v1.4.3...v1.5.1)

Updates `github.com/scaleway/scaleway-sdk-go` from 1.0.0-beta.25 to 1.0.0-beta.26
- [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.25...v1.0.0-beta.26)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common` from 1.0.897 to 1.0.907
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.897...v1.0.907)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod` from 1.0.897 to 1.0.907
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.897...v1.0.907)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns` from 1.0.897 to 1.0.907
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.897...v1.0.907)

Updates `google.golang.org/api` from 0.172.0 to 0.176.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.172.0...v0.176.0)

Updates `gopkg.in/ns1/ns1-go.v2` from 2.9.1 to 2.10.0

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

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

Updates `k8s.io/api` from 0.29.3 to 0.30.0
- [Commits](kubernetes/api@v0.29.3...v0.30.0)

Updates `k8s.io/apimachinery` from 0.29.3 to 0.30.0
- [Commits](kubernetes/apimachinery@v0.29.3...v0.30.0)

Updates `k8s.io/client-go` from 0.29.3 to 0.30.0
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.29.3...v0.30.0)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/compute/metadata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/F5Networks/k8s-bigip-ctlr/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/IBM/go-sdk-core/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/IBM/networking-go-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/aliyun/alibaba-cloud-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/civo/civogo
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/digitalocean/godo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/linode/linodego
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/miekg/dns
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/oracle/oci-go-sdk/v65
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/ovh/go-ovh
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/scaleway/scaleway-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: gopkg.in/ns1/ns1-go.v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: istio.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: istio.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 23, 2024
@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 Apr 23, 2024
@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/test-infra repository.

@k8s-ci-robot k8s-ci-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Apr 23, 2024
@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 johngmyers for approval. For more information see the Kubernetes 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

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 24, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 24, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/dev-dependencies-f048920b35 branch April 24, 2024 03:43
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/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant