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 39 updates #482

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 2, 2024

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

Package From To
cloud.google.com/go/compute/metadata 0.3.0 0.4.0
github.com/Azure/azure-sdk-for-go/sdk/azcore 1.11.1 1.12.0
github.com/Azure/azure-sdk-for-go/sdk/azidentity 1.5.2 1.7.0
github.com/F5Networks/k8s-bigip-ctlr/v2 2.16.1 2.17.0
github.com/IBM-Cloud/ibm-cloud-cli-sdk 1.3.0 1.4.0
github.com/IBM/go-sdk-core/v5 5.17.0 5.17.4
github.com/IBM/networking-go-sdk 0.46.1 0.47.1
github.com/aliyun/alibaba-cloud-sdk-go 1.62.724 1.62.777
github.com/aws/aws-sdk-go 1.51.28 1.54.12
github.com/civo/civogo 0.3.69 0.3.70
github.com/cloudflare/cloudflare-go 0.94.0 0.98.0
github.com/digitalocean/godo 1.113.0 1.118.0
github.com/go-logr/logr 1.4.1 1.4.2
github.com/gophercloud/gophercloud 1.11.0 1.12.0
github.com/infobloxopen/infoblox-go-client/v2 2.6.0 2.7.0
github.com/linode/linodego 1.33.0 1.36.1
github.com/miekg/dns 1.1.59 1.1.61
github.com/oracle/oci-go-sdk/v65 65.64.0 65.68.0
github.com/ovh/go-ovh 1.5.1 1.6.0
github.com/projectcontour/contour 1.28.3 1.29.1
github.com/scaleway/scaleway-sdk-go 1.0.0-beta.26 1.0.0-beta.28
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common 1.0.909 1.0.954
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod 1.0.909 1.0.954
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns 1.0.909 1.0.954
github.com/transip/gotransip/v6 6.23.0 6.24.0
go.etcd.io/etcd/api/v3 3.5.13 3.5.14
go.etcd.io/etcd/client/v3 3.5.13 3.5.14
google.golang.org/api 0.176.1 0.187.0
gopkg.in/ns1/ns1-go.v2 2.10.0 2.11.0
istio.io/api 1.21.2 1.22.2
istio.io/client-go 1.21.2 1.22.2
k8s.io/klog/v2 2.120.1 2.130.1
sigs.k8s.io/gateway-api 1.0.0 1.1.0

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

Release notes

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

grafeas: v0.3.7

0.3.7 (2024-07-01)

Bug Fixes

parallelstore: v0.3.2

0.3.2 (2024-07-01)

Bug Fixes

errorreporting: v0.3.1

0.3.1 (2024-07-01)

Bug Fixes

  • errorreporting: Add internaloption.WithDefaultEndpointTemplate (3b41408)
  • errorreporting: Bump x/net to v0.24.0 (ba31ed5)
  • errorreporting: Update protobuf dep to v1.33.0 (30b038d)
Changelog

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

v0.4.0

  • bigquery: -NewGCSReference is now a function, not a method on Client.
    • Table.LoaderFrom now accepts a ReaderSource, enabling loading data into a table from a file or any io.Reader.
    • Client.Table and Client.OpenTable have been removed. Replace

      client.OpenTable("project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table")
    • Client.CreateTable has been removed. Replace

      client.CreateTable(ctx, "project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table").Create(ctx)
    • Dataset.ListTables have been replaced with Dataset.Tables. Replace

      tables, err := ds.ListTables(ctx)

      with

      it := ds.Tables(ctx)
      for {
          table, err := it.Next()
          if err == iterator.Done {
              break
          }
          if err != nil {
              // TODO: Handle error.
          }
          // TODO: use table.
      }
    • Client.Read has been replaced with Job.Read, Table.Read and Query.Read. Replace

      it, err := client.Read(ctx, job)

... (truncated)

Commits
  • 8c2dc61 logging: check for exact # of logs in tests
  • 4791784 logadmin: use generated iterators
  • 384ca55 storage: use pointer receiver for ObjectAttrs
  • bd8a5e8 datastore: add new key functions
  • 09d95d9 bigtable/bttest: add emulator support for DeleteCellsInFamily
  • 7ee19e7 bigquery: restore semantics of ForceZeroQuote
  • f7f94a2 bigquery: clean up implementation of LoadSource
  • f9c9ec4 storage: always send destination in compose request
  • 67f57c5 storage: readObject method for tests
  • 28994ff bigtable: Use connection pool by default for data client.
  • Additional commits viewable in compare view

Updates github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.11.1 to 1.12.0

Release notes

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

sdk/azcore/v1.12.0

1.12.0 (2024-06-06)

Features Added

  • Added field StatusCodes to runtime.FetcherForNextLinkOptions allowing for additional HTTP status codes indicating success.
  • Added func NewUUID to the runtime package for generating UUIDs.

Bugs Fixed

  • Fixed an issue that prevented pollers using the Operation-Location strategy from unmarshaling the final result in some cases.

Other Changes

  • Updated dependencies.
Commits

Updates github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.5.2 to 1.7.0

Release notes

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

sdk/messaging/azservicebus/v1.7.0

1.7.0 (2024-04-02)

Features Added

  • Add in ability to handle emulator connection strings. (PR#22663)

sdk/internal/v1.7.0

1.7.0 (2024-05-01)

Features Added

  • Support for local repo override (via presence of eng/target_proxy_version.txt) of invoked test-proxy version.

  • RemoveRegisteredSanitizers selectively disables sanitizers the test proxy enables by default since version 1.0.0-dev.20240422.1

Breaking Changes

  • Deprecated the go-vcr based test recording API. Its methods now return errors or panic.
  • Changed value of recording.SanitizedValue from "sanitized" to "Sanitized" to match the test proxy

sdk/azidentity/v1.7.0

1.7.0 (2024-06-20)

Features Added

  • AzurePipelinesCredential authenticates an Azure Pipelines service connection with workload identity federation

Breaking Changes

These changes affect only code written against a beta version such as v1.7.0-beta.1

  • Removed the persistent token caching API. It will return in v1.8.0-beta.1

sdk/azidentity/v1.7.0-beta.1

1.7.0-beta.1 (2024-06-10)

Features Added

  • Restored AzurePipelinesCredential and persistent token caching API

Breaking Changes

These changes affect only code written against a beta version such as v1.6.0-beta.4

  • Values which NewAzurePipelinesCredential read from environment variables in prior versions are now parameters
  • Renamed AzurePipelinesServiceConnectionCredentialOptions to AzurePipelinesCredentialOptions

Bugs Fixed

  • Managed identity bug fixes

sdk/internal/v1.6.0

1.6.0 (2024-04-16)

... (truncated)

Commits

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

Release notes

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

Release v2.17.0

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

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

2.17.0

Added Functionality

**What's new:**
    * Multi Cluster
      * Support Alternate backend and cluster Ratio for Transport Server. See `Example <https://github.com/F5Networks/k8s-bigip-ctlr/blob/2.x-master/docs/config_examples/multicluster/customResource/transportServer/ts-with-weight-extended-service.yaml>`_.
    * CRD
      * `Issue 3337 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3337>`_: Support for access profile and per request policy in policy CRD and VS CRD. See `Example <https://github.com/F5Networks/k8s-bigip-ctlr/blob/2.x-master/docs/config_examples/customResource/Policy/policy-with-profileAccess.yaml>`_.
      * `Issue 3352 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3352>`_: Add support for alternate backend,weight and ratio for transport server. See `Example <https://github.com/F5Networks/k8s-bigip-ctlr/blob/2.x-master/docs/config_examples/customResource/TransportServer/ts-with-weight-alternate-backend/ts-with-weight-alternate-backend.yaml>`_.
    * Support for Calico CNI with Static Routing Mode. See `Documentation <https://github.com/F5Networks/k8s-bigip-ctlr/blob/2.x-master/docs/config_examples/StaticRoute/README.md>`_.
    * CIS compatible with OpenShift 4.15 and Kubernetes 1.31.
    * Improved operator support for OpenShift 4.15.

Bug Fixes

* `Issue 3371 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3371`_: CIS added irules cannot have &quot;event disable all&quot;.
* `Issue 3402 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3402`_: TLS iRule fails after recent browser updates.
* Fix for EDNS pool member empty issue.
* `Issue 3414 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3414`_: CIS is deleting referenced SSL Profile it did not create.
* `Issue 3434 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3434`_: Fix crash in CIS startup after using namespace-label parameter.
</code></pre>
</blockquote>
</details>
<details>
<summary>Commits</summary>

<ul>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/2005a628499692a18ac3ba564600d1e9e7b118a1&quot;&gt;&lt;code&gt;2005a62&lt;/code&gt;&lt;/a> Upgrade python version to 3.9.19 (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3461&quot;&gt;#3461&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/29fef9e80c8969f2799b48bbc26807d97e19b1fd&quot;&gt;&lt;code&gt;29fef9e&lt;/code&gt;&lt;/a> fix format (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3462&quot;&gt;#3462&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/c5a63b952427a189b9873a5b05b1c552425723d1&quot;&gt;&lt;code&gt;c5a63b9&lt;/code&gt;&lt;/a> 2.17.0 release with openshift 4.15 (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3449&quot;&gt;#3449&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/d18660c18b0ed0505ded7a875d978087a5e3a3b6&quot;&gt;&lt;code&gt;d18660c&lt;/code&gt;&lt;/a> Fix for CRD validation (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3446&quot;&gt;#3446&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/78f627e4277a5daade9d4ae660629e8b2a66e5d1&quot;&gt;&lt;code&gt;78f627e&lt;/code&gt;&lt;/a> Fix for documentation broken links (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3447&quot;&gt;#3447&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/7b223acbdac3c48fee325a43e879f5fc3e3b7f8f&quot;&gt;&lt;code&gt;7b223ac&lt;/code&gt;&lt;/a> Fix crash in CIS startup after using namespace-label parameter (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3436&quot;&gt;#3436&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/38cd9ea6669eaecb406f772fdb0f5186eead7c56&quot;&gt;&lt;code&gt;38cd9ea&lt;/code&gt;&lt;/a> <a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3279&quot;&gt;#3279&lt;/a> add disable partition check for cleanup (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3433&quot;&gt;#3433&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/2ffc097668e940d363eb7e56e6ab438392a640c2&quot;&gt;&lt;code&gt;2ffc097&lt;/code&gt;&lt;/a> Fix validation rules in CRDs (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3431&quot;&gt;#3431&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/ae0f5f2a7748ac26bed49a15ff00f8de27b21827&quot;&gt;&lt;code&gt;ae0f5f2&lt;/code&gt;&lt;/a> Fix for concurrent map access (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3426&quot;&gt;#3426&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/d8bf586af697f21a09b6c4974225b0ca1daf1cda&quot;&gt;&lt;code&gt;d8bf586&lt;/code&gt;&lt;/a> Improve CRD validations and logging (<a href="https://redirect.github.com/F5Networks/k8s-bigip-ctlr/issues/3427&quot;&gt;#3427&lt;/a&gt;)&lt;/li>
<li>Additional commits viewable in <a href="https://github.com/F5Networks/k8s-bigip-ctlr/compare/v2.16.1...v2.17.0&quot;&gt;compare view</a></li>
</ul>
</details>

<br />

Updates github.com/IBM-Cloud/ibm-cloud-cli-sdk from 1.3.0 to 1.4.0

Release notes

Sourced from github.com/IBM-Cloud/ibm-cloud-cli-sdk's releases.

v1.4.0

Change Logs

Breaking Changes

  • Cloud Foundry support is removed

Other Changes

  • Updated go version to 1.22
  • Updated dependencies
Commits

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

Release notes

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

v5.17.4

5.17.4 (2024-06-25)

Bug Fixes

This also includes the change to bump go-retryablehttp from v0.7.5 to v0.7.7 to avoid a vulnerability.

v5.17.3

5.17.3 (2024-05-16)

Bug Fixes

  • request_builder: encode unresolved path string prior to path parameter insertion (#219) (5f567da)

v5.17.2

5.17.2 (2024-05-08)

Bug Fixes

  • errors: flatten sdk problem chains to reduce hash complexity (#218) (9fc1ebc)

v5.17.1

5.17.1 (2024-05-06)

Bug Fixes

  • use correct error variable in external auth case (#217) (0b70d7d)
Changelog

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

5.17.4 (2024-06-25)

Bug Fixes

5.17.3 (2024-05-16)

Bug Fixes

  • request_builder: encode unresolved path string prior to path parameter insertion (#219) (5f567da)

5.17.2 (2024-05-08)

Bug Fixes

  • errors: flatten sdk problem chains to reduce hash complexity (#218) (9fc1ebc)

5.17.1 (2024-05-06)

Bug Fixes

  • use correct error variable in external auth case (#217) (0b70d7d)
Commits
  • 7c8519e chore(release): 5.17.4 release notes [skip ci]
  • 6425333 Update version numbers from 5.17.3 -> 5.17.4 [skip ci]
  • 5da6409 fix: tidy Go modules (#221)
  • f209755 chore(deps): bump go-retryablehttp v0.7.5 => v0.7.7 (#220)
  • d98b5ac chore(release): 5.17.3 release notes [skip ci]
  • 3818c23 Update version numbers from 5.17.2 -> 5.17.3 [skip ci]
  • 5f567da fix(request_builder): encode unresolved path string prior to path parameter i...
  • 183db98 chore(release): 5.17.2 release notes [skip ci]
  • b432042 Update version numbers from 5.17.1 -> 5.17.2 [skip ci]
  • 9fc1ebc fix(errors): flatten sdk problem chains to reduce hash complexity (#218)
  • Additional commits viewable in compare view

Updates github.com/IBM/networking-go-sdk from 0.46.1 to 0.47.1

Release notes

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

v0.47.1

What's Changed

Full Changelog: https://github.com/IBM/networking-go-sdk/compare/v0.47.0...v0.47.1

TGW-Adding new connection type RGRE support

Feature TGW-Adding new connection type RGRE support

Commits

Updates github.com/aliyun/alibaba-cloud-sdk-go from 1.62.724 to 1.62.777

Release notes

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

v1.62.777

  • Generated 2022-12-13 for PaiRecService. undefined

v1.62.776

  • Generated 2020-05-10 for quotas.
  • Add UsageMetric.

v1.62.775

  • Generated 2022-01-01 for quickbi-public.
  • Add QueryAuditLog, QueryApprovalInfo, DataSourceBlood, DataSetBlood and QueryDataServiceList APIs.
  • QueryUserInfoByAccount API updates error code.

v1.62.774

  • Generated 2022-05-30 for eflo.
  • Supported AssumeRoleProxyChain for CreateHighDensityElasticNetworkInterface.

v1.62.773

  • Generated 2019-04-30 for schedulerx2.
  • Create AppGroup Support Set AppVersion.
  • Update AppGroup Support Set AppVersion.
  • List AppGroup Support return AppVersion.

v1.62.772

  • Generated 2023-01-20 for csas. undefined

v1.62.771

  • Generated 2021-06-01 for ComputeNest.
  • Add status operation api.

v1.62.770

  • Generated 2016-11-01 for live.
  • Update to support new apis.

v1.62.769

  • Generated 2018-02-08 for Domain. undefined

v1.62.768

  • Generated 2018-02-08 for Domain. undefined

v1.62.767

  • Generated 2022-05-30 for eflo.
  • Supported modification of securityGroupId for UpdateElasticNetworkInterface API.

v1.62.766

  • Generated 2020-02-02 for polardbx. undefined

... (truncated)

Changelog

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

2024-07-01 Version: v1.62.777

  • Generated 2022-12-13 for PaiRecService. undefined

2024-06-30 Version: v1.62.776

  • Generated 2020-05-10 for quotas.
  • Add UsageMetric.

2024-06-28 Version: v1.62.775

  • Generated 2022-01-01 for quickbi-public.
  • Add QueryAuditLog, QueryApprovalInfo, DataSourceBlood, DataSetBlood and QueryDataServiceList APIs.
  • QueryUserInfoByAccount API updates error code.

2024-06-26 Version: v1.62.774

  • Generated 2022-05-30 for eflo.
  • Supported AssumeRoleProxyChain for CreateHighDensityElasticNetworkInterface.

2024-06-25 Version: v1.62.773

  • Generated 2019-04-30 for schedulerx2.
  • Create AppGroup Support Set AppVersion.
  • Update AppGroup Support Set AppVersion.
  • List AppGroup Support return AppVersion.

2024-06-20 Version: v1.62.772

  • Generated 2023-01-20 for csas. undefined

2024-06-18 Version: v1.62.771

  • Generated 2021-06-01 for ComputeNest.
  • Add status operation api.

2024-06-18 Version: v1.62.770

  • Generated 2016-11-01 for live.
  • Update to support new apis.

2024-06-18 Version: v1.62.769

  • Generated 2018-02-08 for Domain. undefined

2024-06-18 Version: v1.62.768

  • Generated 2018-02-08 for Domain. undefined

2024-06-18 Version: v1.62.767

  • Generated 2022-05-30 for eflo.
  • Supported modification of securityGroupId for UpdateElasticNetworkInterface API.

2024-06-18 Version: v1.62.766

  • Generated 2020-02-02 for polardbx. undefined

... (truncated)

Commits
  • 921adff Generated 2022-12-13 for PaiRecService.
  • 245dcc6 Generated 2020-05-10 for quotas.
  • 2d0c408 Generated 2022-01-01 for quickbi-public.
  • 2c92a93 Generated 2022-05-30 for eflo.
  • b1645d2 Generated 2019-04-30 for schedulerx2.
  • 3eb1b66 Generated 2023-01-20 for csas.
  • 2b9d209 Generated 2021-06-01 for ComputeNest.
  • 077c274 Generated 2016-11-01 for live.
  • c4fdac9 Generated 2018-02-08 for Domain.
  • 80c7c85 Generated 2018-02-08 for Domain.
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go from 1.51.28 to 1.54.12

Release notes

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

Release v1.54.12 (2024-07-01)

Service Client Updates

  • service/apigateway: Updates service API
    • Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • service/cognito-identity: Updates service API
  • service/connect: Updates service API, documentation, and paginators
  • service/docdb: Updates service API
    • Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • service/eks: Updates service API
  • service/payment-cryptography: Updates service API and documentation
  • service/payment-cryptography-data: Updates service API, documentation, and waiters
  • service/states: Updates service API
    • Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • service/swf: Updates service API
    • Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • service/wafv2: Updates service API and documentation

Release v1.54.11 (2024-06-28)

Service Client Updates

  • service/acm-pca: Updates service API
  • service/cloudhsmv2: Updates service API and documentation
    • Added 3 new APIs to support backup sharing: GetResourcePolicy, PutResourcePolicy, and DeleteResourcePolicy. Added BackupArn to the output of the DescribeBackups API. Added support for BackupArn in the CreateCluster API.
  • service/connect: Updates service API and documentation
  • service/elasticmapreduce: Updates service API and documentation
    • This release provides the support for new allocation strategies i.e. CAPACITY_OPTIMIZED_PRIORITIZED for Spot and PRIORITIZED for On-Demand by taking input of priority value for each instance type for instance fleet clusters.
  • service/glue: Updates service API and documentation
    • Added AttributesToGet parameter to Glue GetDatabases, allowing caller to limit output to include only the database name.
  • service/kinesisanalyticsv2: Updates service API and documentation
  • service/opensearch: Updates service API and documentation
  • service/pi: Updates service API and documentation
  • service/workspaces: Updates service API and documentation
    • Added support for Red Hat Enterprise Linux 8 on Amazon WorkSpaces Personal.

Release v1.54.10 (2024-06-27)

Service Client Updates

  • service/application-autoscaling: Updates service API and documentation
  • service/chime-sdk-media-pipelines: Updates service API and documentation
  • service/cloudfront: Updates service API and documentation
    • Doc only update for CloudFront that fixes customer-reported issue
  • service/datazone: Updates service API, documentation, and paginators
  • service/elasticache: Updates service API
    • Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • service/mq: Updates service API and documentation
    • This release makes the EngineVersion field optional for both broker and configuration and uses the latest available version by default. The AutoMinorVersionUpgrade field is also now optional for broker creation and defaults to 'true'.

... (truncated)

Commits

Updates github.com/civo/civogo from 0.3.69 to 0.3.70

Release notes

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

v0.3.70

What's Changed

Full Changelog: https://github.com/civo/civogo/compare/v0.3.69...v0.3.70

Commits

Updates github.com/cloudflare/cloudflare-go from 0.94.0 to 0.98.0

Release notes

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

v0.98.0

ENHANCEMENTS:

  • access_application: Add support for SaaS OIDC Access Token Lifetime (#2455)

DEPENDENCIES:

  • deps: bumps golang.org/x/net from 0.25.0 to 0.26.0 (#2364)
  • deps: bumps goreleaser/goreleaser-action from 5.1.0 to 6.0.0 (#2365)

v0.97.0

ENHANCEMENTS:

  • access_application: Add support for Hybrid/Implicit flows and options (#2131)
  • teams_account: Add Zero Trust connectivity settings (#2165)
  • teams_accounts: Add use_zt_virtual_ip attribute (#2126)

DEPENDENCIES:

  • deps: bumps github.com/goccy/go-json from 0.10.2 to 0.10.3 (#2107)
  • deps: bumps github.com/hashicorp/go-retryablehttp from 0.7.6 to 0.7.7 (#2249)

v0.96.0

ENHANCEMENTS:

  • access_application: Add Refresh Token, Custom Claims, and PKCE Without Client Secret support for OIDC SaaS configurations (#1981)
  • ruleset: add support for action parameters fonts and disable_rum (#1832)

DEPENDENCIES:

  • deps: bumps bflad/action-milestone-comment from 1 to 2 (#1991)
  • deps: bumps github.com/hashicorp/go-retryablehttp from 0.7.5 to 0.7.6 (#1993)
  • deps: bumps goreleaser/goreleaser-action from 5.0.0 to 5.1.0 (#1992)

v0.95.0

ENHANCEMENTS:

  • access_application: add support for policies array (#1956)
  • access_application: add support for scim_config (#1921)
  • access_policy: add support for reusable policies (#1956)
  • dlp: add support for zt risk behavior configuration (#1887)

BUG FIXES:

  • access_application: fix scim configuration authentication json marshalling (#1959)

DEPENDENCIES:

  • deps: bumps dependabot/fetch-metadata from 2.0.0 to 2.1.0 (#1839)
  • deps: bumps github.com/urfave/cli/v2 from 2.27.1 to 2.27.2 (#1861)

... (truncated)

Changelog

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

0.98.0 (June 19th, 2024)

ENHANCEMENTS:

  • access_application: Add support for SaaS OIDC Access Token Lifetime (#2455)

DEPENDENCIES:

  • deps: bumps golang.org/x/net from 0.25.0 to 0.26.0 (#2364)
  • deps: bumps goreleaser/goreleaser-action from 5.1.0 to 6.0.0 (#2365)

0.97.0 (June 5th, 2024)

ENHANCEMENTS:

  • access_application: Add support for Hybrid/Implicit flows and options (#2131)
  • teams_account: Add Zero Trust connectivity settings (#2165)
  • teams_accounts: Add use_zt_virtual_ip attribute (#2126)

DEPENDENCIES:

  • deps: bumps github.com/goccy/go-json from 0.10.2 to 0.10.3 (#2107)
  • deps: bumps github.com/hashicorp/go-retryablehttp from 0.7.6 to 0.7.7 (#2249)

0.96.0 (May 22nd, 2024)

ENHANCEMENTS:

  • access_application: Add Refresh Token, Custom Claims, and PKCE Without Client Secret support for OIDC SaaS configurations (#1981)
  • ruleset: add support for action parameters fonts and disable_rum (#1832)

DEPENDENCIES:

  • deps: bumps bflad/action-milestone-comment from 1 to 2 (#1991)
  • deps: bumps github.com/hashicorp/go-retryablehttp from 0.7.5 to 0.7.6 (#1993)
  • deps: bumps goreleaser/goreleaser-action from 5.0.0 to 5.1.0 (#1992)

0.95.0 (May 8th, 2024)

ENHANCEMENTS:

  • access_application: add support for policies array (#1956)
  • access_application: add support for scim_config (#1921)
  • access_policy: add support for reusable policies (#1956)
  • dlp: add support for zt risk behavior configuration (#1887)

BUG FIXES:

  • access_application: fix scim configuration authentication json marshalling (#1959)

... (truncated)

Commits
  • 95db331 Update CHANGELOG.md
  • 9745a54 update CHANGELOG.md
  • 38a43a3 Merge pull request #2455 from ajholland/aholland/AUTH-6181
  • 0c428c8 AUTH-6181 Add Access OIDC SaaS Application access token lifetime
  • ffaf12a Merge pull request #2364 from cloudflare/dependabot/go_modules/golang.org/x/n...
  • 3cd9193 Merge pull request #2365 from cloudflare/dependabot/github_actions/goreleaser...
  • 3c29c68 Update .goreleaser.yml
  • af2ae9b Update release.yml
  • dec1c41 add CHANGELOG for #2365
  • 0de3d88 Bump goreleaser/goreleaser-action from 5.1.0 to 6.0.0
  • Additional commits viewable in compare view

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

Release notes

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

v1.118.0

Note: This release contains beta functionality (#700). If you are not a member of the beta group for this feature, you will not be able to use it until it has been more widely released. Please watch the official DigitalOcean changelog for updates.

v1.117.0

  • #696 - @​llDrLove - Support specifying control plane firewall rules when creating or updating DOKS clusters
  • #697 - @​asaha2 - Add support for lb internal network type
  • #695 - @​ElanHasson - APPS-8732 - Update documentation on App Platform OpenSearch endpoint structure.
  • #692 - @​ElanHasson - APPS-8732 - Add OpenSearch as a Log Destination for App Platform.

Note: This release contains beta functionality. If you are not a member of the beta group for this feature, you will not be able to use it until it has been more widely released. Please watch the official DigitalOcean changelog for updates.

v1.116.0

Note: This release contains beta functionality. If you are not a member of the beta group for this feature, you will not be able to use it until it has been more widely released. Please watch the official DigitalOcean changelog for updates.

v1.115.0

  • #688 - @​asaha2 - Add support for GLB active-passive failover config

Note: This release contains beta functionality. If you are not a member of the beta group for this feature, you will not be able to use it until it has been more widely released. Please watch the official DigitalOcean changelog for updates.

v1.114.0

Changelog

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

[v1.118.0] - 2024-06-04

Note: This release contains features in closed beta (#700).

[v1.117.0] - 2024-06-04

  • #696 - @​llDrLove - Support specifying control plane firewall rules when creating or updating DOKS clusters
  • #697 - @​asaha2 - Add support for lb internal network type
  • #695 - @​ElanHasson - APPS-8732 - Update documentation on App Platform OpenSearch endpoint structure.
  • #692 - @​ElanHasson - APPS-8732 - Add OpenSearch as a Log Destination for App Platform.

[v1.116.0] - 2024-05-16

  • #693 -...

    Description has been truncated

…39 updates

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

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) | `0.3.0` | `0.4.0` |
| [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go) | `1.11.1` | `1.12.0` |
| [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go) | `1.5.2` | `1.7.0` |
| [github.com/F5Networks/k8s-bigip-ctlr/v2](https://github.com/F5Networks/k8s-bigip-ctlr) | `2.16.1` | `2.17.0` |
| [github.com/IBM-Cloud/ibm-cloud-cli-sdk](https://github.com/IBM-Cloud/ibm-cloud-cli-sdk) | `1.3.0` | `1.4.0` |
| [github.com/IBM/go-sdk-core/v5](https://github.com/IBM/go-sdk-core) | `5.17.0` | `5.17.4` |
| [github.com/IBM/networking-go-sdk](https://github.com/IBM/networking-go-sdk) | `0.46.1` | `0.47.1` |
| [github.com/aliyun/alibaba-cloud-sdk-go](https://github.com/aliyun/alibaba-cloud-sdk-go) | `1.62.724` | `1.62.777` |
| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.51.28` | `1.54.12` |
| [github.com/civo/civogo](https://github.com/civo/civogo) | `0.3.69` | `0.3.70` |
| [github.com/cloudflare/cloudflare-go](https://github.com/cloudflare/cloudflare-go) | `0.94.0` | `0.98.0` |
| [github.com/digitalocean/godo](https://github.com/digitalocean/godo) | `1.113.0` | `1.118.0` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.4.1` | `1.4.2` |
| [github.com/gophercloud/gophercloud](https://github.com/gophercloud/gophercloud) | `1.11.0` | `1.12.0` |
| [github.com/infobloxopen/infoblox-go-client/v2](https://github.com/infobloxopen/infoblox-go-client) | `2.6.0` | `2.7.0` |
| [github.com/linode/linodego](https://github.com/linode/linodego) | `1.33.0` | `1.36.1` |
| [github.com/miekg/dns](https://github.com/miekg/dns) | `1.1.59` | `1.1.61` |
| [github.com/oracle/oci-go-sdk/v65](https://github.com/oracle/oci-go-sdk) | `65.64.0` | `65.68.0` |
| [github.com/ovh/go-ovh](https://github.com/ovh/go-ovh) | `1.5.1` | `1.6.0` |
| [github.com/projectcontour/contour](https://github.com/projectcontour/contour) | `1.28.3` | `1.29.1` |
| [github.com/scaleway/scaleway-sdk-go](https://github.com/scaleway/scaleway-sdk-go) | `1.0.0-beta.26` | `1.0.0-beta.28` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.909` | `1.0.954` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.909` | `1.0.954` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.909` | `1.0.954` |
| [github.com/transip/gotransip/v6](https://github.com/transip/gotransip) | `6.23.0` | `6.24.0` |
| [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd) | `3.5.13` | `3.5.14` |
| [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd) | `3.5.13` | `3.5.14` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.176.1` | `0.187.0` |
| gopkg.in/ns1/ns1-go.v2 | `2.10.0` | `2.11.0` |
| [istio.io/api](https://github.com/istio/api) | `1.21.2` | `1.22.2` |
| [istio.io/client-go](https://github.com/istio/client-go) | `1.21.2` | `1.22.2` |
| [k8s.io/klog/v2](https://github.com/kubernetes/klog) | `2.120.1` | `2.130.1` |
| [sigs.k8s.io/gateway-api](https://github.com/kubernetes-sigs/gateway-api) | `1.0.0` | `1.1.0` |



Updates `cloud.google.com/go/compute/metadata` from 0.3.0 to 0.4.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.3.0...v0.4.0)

Updates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.11.1 to 1.12.0
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.11.1...sdk/azcore/v1.12.0)

Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.5.2 to 1.7.0
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md)
- [Commits](Azure/azure-sdk-for-go@sdk/internal/v1.5.2...sdk/azcore/v1.7.0)

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

Updates `github.com/IBM-Cloud/ibm-cloud-cli-sdk` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/IBM-Cloud/ibm-cloud-cli-sdk/releases)
- [Commits](IBM-Cloud/ibm-cloud-cli-sdk@v1.3.0...v1.4.0)

Updates `github.com/IBM/go-sdk-core/v5` from 5.17.0 to 5.17.4
- [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.17.0...v5.17.4)

Updates `github.com/IBM/networking-go-sdk` from 0.46.1 to 0.47.1
- [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.46.1...v0.47.1)

Updates `github.com/aliyun/alibaba-cloud-sdk-go` from 1.62.724 to 1.62.777
- [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.724...v1.62.777)

Updates `github.com/aws/aws-sdk-go` from 1.51.28 to 1.54.12
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](aws/aws-sdk-go@v1.51.28...v1.54.12)

Updates `github.com/civo/civogo` from 0.3.69 to 0.3.70
- [Release notes](https://github.com/civo/civogo/releases)
- [Changelog](https://github.com/civo/civogo/blob/master/changelog.yml)
- [Commits](civo/civogo@v0.3.69...v0.3.70)

Updates `github.com/cloudflare/cloudflare-go` from 0.94.0 to 0.98.0
- [Release notes](https://github.com/cloudflare/cloudflare-go/releases)
- [Changelog](https://github.com/cloudflare/cloudflare-go/blob/master/CHANGELOG.md)
- [Commits](cloudflare/cloudflare-go@v0.94.0...v0.98.0)

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

Updates `github.com/go-logr/logr` from 1.4.1 to 1.4.2
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v1.4.1...v1.4.2)

Updates `github.com/gophercloud/gophercloud` from 1.11.0 to 1.12.0
- [Release notes](https://github.com/gophercloud/gophercloud/releases)
- [Changelog](https://github.com/gophercloud/gophercloud/blob/master/CHANGELOG.md)
- [Commits](gophercloud/gophercloud@v1.11.0...v1.12.0)

Updates `github.com/infobloxopen/infoblox-go-client/v2` from 2.6.0 to 2.7.0
- [Release notes](https://github.com/infobloxopen/infoblox-go-client/releases)
- [Changelog](https://github.com/infobloxopen/infoblox-go-client/blob/master/CHANGELOG.md)
- [Commits](infobloxopen/infoblox-go-client@v2.6.0...v2.7.0)

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

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

Updates `github.com/oracle/oci-go-sdk/v65` from 65.64.0 to 65.68.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.64.0...v65.68.0)

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

Updates `github.com/projectcontour/contour` from 1.28.3 to 1.29.1
- [Release notes](https://github.com/projectcontour/contour/releases)
- [Changelog](https://github.com/projectcontour/contour/blob/main/RELEASES.md)
- [Commits](projectcontour/contour@v1.28.3...v1.29.1)

Updates `github.com/prometheus/client_golang` from 1.19.0 to 1.19.1
- [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.19.0...v1.19.1)

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

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common` from 1.0.909 to 1.0.954
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.909...v1.0.954)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod` from 1.0.909 to 1.0.954
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.909...v1.0.954)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns` from 1.0.909 to 1.0.954
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.909...v1.0.954)

Updates `github.com/transip/gotransip/v6` from 6.23.0 to 6.24.0
- [Release notes](https://github.com/transip/gotransip/releases)
- [Commits](transip/gotransip@v6.23.0...v6.24.0)

Updates `go.etcd.io/etcd/api/v3` from 3.5.13 to 3.5.14
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.13...v3.5.14)

Updates `go.etcd.io/etcd/client/v3` from 3.5.13 to 3.5.14
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.13...v3.5.14)

Updates `golang.org/x/net` from 0.24.0 to 0.26.0
- [Commits](golang/net@v0.24.0...v0.26.0)

Updates `golang.org/x/oauth2` from 0.19.0 to 0.21.0
- [Commits](golang/oauth2@v0.19.0...v0.21.0)

Updates `google.golang.org/api` from 0.176.1 to 0.187.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.176.1...v0.187.0)

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

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

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

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

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

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

Updates `k8s.io/klog/v2` from 2.120.1 to 2.130.1
- [Release notes](https://github.com/kubernetes/klog/releases)
- [Changelog](https://github.com/kubernetes/klog/blob/main/RELEASE.md)
- [Commits](kubernetes/klog@v2.120.1...v2.130.1)

Updates `sigs.k8s.io/gateway-api` from 1.0.0 to 1.1.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.0.0...v1.1.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/Azure/azure-sdk-for-go/sdk/azcore
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
  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-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/IBM-Cloud/ibm-cloud-cli-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/IBM/go-sdk-core/v5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-minor
  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/cloudflare/cloudflare-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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/go-logr/logr
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/gophercloud/gophercloud
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/infobloxopen/infoblox-go-client/v2
  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-minor
  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/projectcontour/contour
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: github.com/transip/gotransip/v6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: go.etcd.io/etcd/api/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/oauth2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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-minor
  dependency-group: dev-dependencies
- dependency-name: istio.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: k8s.io/klog/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: sigs.k8s.io/gateway-api
  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 Jul 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants