kubernetes-sigs / gcp-compute-persistent-disk-csi-driver

The Google Compute Engine Persistent Disk (GCE PD) Container Storage Interface (CSI) Storage Plugin.
Apache License 2.0
159 stars 141 forks source link

Bump the cloud-go group across 1 directory with 7 updates #1781

Closed dependabot[bot] closed 5 days ago

dependabot[bot] commented 1 week ago

Bumps the cloud-go group with 5 updates in the / directory:

Package From To
cloud.google.com/go/compute/metadata 0.3.0 0.4.0
cloud.google.com/go/kms 1.17.1 1.18.2
cloud.google.com/go/resourcemanager 1.9.7 1.9.9
cloud.google.com/go/iam 1.1.8 1.1.10
cloud.google.com/go/longrunning 0.5.7 0.5.9

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

  • grafeas: Bump google.golang.org/api@v0.187.0 (8fa9e39)

parallelstore: v0.3.2

0.3.2 (2024-07-01)

Bug Fixes

  • parallelstore: Bump google.golang.org/api@v0.187.0 (8fa9e39)

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 cloud.google.com/go/kms from 1.17.1 to 1.18.2

Release notes

Sourced from cloud.google.com/go/kms's releases.

kms: v1.18.2

1.18.2 (2024-07-01)

Bug Fixes

  • kms: Bump google.golang.org/api@v0.187.0 (8fa9e39)

retail: v1.17.2

1.17.2 (2024-07-01)

Bug Fixes

  • retail: Bump google.golang.org/api@v0.187.0 (8fa9e39)

security: v1.17.2

1.17.2 (2024-07-01)

Bug Fixes

  • security: Bump google.golang.org/api@v0.187.0 (8fa9e39)
Commits


Updates cloud.google.com/go/resourcemanager from 1.9.7 to 1.9.9

Release notes

Sourced from cloud.google.com/go/resourcemanager's releases.

resourcemanager: v1.9.9

1.9.9 (2024-07-01)

Bug Fixes

  • resourcemanager: Bump google.golang.org/api@v0.187.0 (8fa9e39)

webrisk: v1.9.9

1.9.9 (2024-07-01)

Bug Fixes

  • webrisk: Bump google.golang.org/api@v0.187.0 (8fa9e39)

iap: v1.9.8

1.9.8 (2024-07-01)

Bug Fixes

  • iap: Bump google.golang.org/api@v0.187.0 (8fa9e39)
Commits


Updates cloud.google.com/go from 0.114.0 to 0.115.0

Changelog

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

0.115.0 (2024-06-12)

Features

Bug Fixes

  • internal/postprocessor: Use approved image tag (#10341) (a388fe5)
Commits


Updates cloud.google.com/go/auth from 0.5.1 to 0.6.1

Release notes

Sourced from cloud.google.com/go/auth's releases.

longrunning: v0.5.9

0.5.9 (2024-07-01)

Bug Fixes

  • longrunning: Bump google.golang.org/api@v0.187.0 (8fa9e39)
Changelog

Sourced from cloud.google.com/go/auth's changelog.

Changes

0.115.0 (2024-06-12)

Features

Bug Fixes

  • internal/postprocessor: Use approved image tag (#10341) (a388fe5)

0.114.0 (2024-05-23)

Features

  • civil: Add Compare method to Date, Time, and DateTime (#10193) (c2920d7)

Bug Fixes

  • internal/postprocessor: Add scopes to all appropriate commit lines (#10192) (c21399b)

0.113.0 (2024-05-08)

Features

  • civil: Add Compare method to Date, Time, and DateTime (#10010) (34455c1)

Bug Fixes

  • all: Bump x/net to v0.24.0 (#10000) (ba31ed5)
  • debugger: Add internaloption.WithDefaultEndpointTemplate (3b41408)
  • internal/aliasfix: Handle import paths correctly (#10097) (fafaf0d)
  • rpcreplay: Properly unmarshal dynamic message (#9774) (53ccb20), refs #9773

Documentation

  • testing: Switch deprecated WithInsecure to WithTransportCredentials (#10091) (2b576ab)

0.112.2 (2024-03-27)

Bug Fixes

... (truncated)

Commits
  • db3c6d1 chore(main): release auth 0.6.1 (#10455)
  • daa6646 fix(auth): support gRPC API keys (#10460)
  • 66b8efe feat(compute/metadata): add context for all functions/methods (#10370)
  • 6e16c64 chore(main): release ai 0.8.0 (#10452)
  • b425993 chore(main): release spanner 1.64.0 (#10275)
  • 6a9c12a feat(aiplatform): add UpdateDeploymentResourcePool method to DeploymentResour...
  • c6dfdcf fix(auth): Update http and grpc transports to support token exchange over mTL...
  • a1e198a fix(spanner): fix negative values for max_in_use_sessions metrics (#10449)
  • fc4c910 fix(logging): Skip automatic resource detection if a CommonResource (#10441)
  • eec7a3b feat(dataplex): expose data scan execution create time to customers (#10438)
  • Additional commits viewable in compare view


Updates cloud.google.com/go/iam from 1.1.8 to 1.1.10

Release notes

Sourced from cloud.google.com/go/iam's releases.

iam: v1.1.10

1.1.10 (2024-07-01)

Bug Fixes

  • iam: Bump google.golang.org/api@v0.187.0 (8fa9e39)
Commits


Updates cloud.google.com/go/longrunning from 0.5.7 to 0.5.9

Release notes

Sourced from cloud.google.com/go/longrunning's releases.

longrunning: v0.5.9

0.5.9 (2024-07-01)

Bug Fixes

  • longrunning: Bump google.golang.org/api@v0.187.0 (8fa9e39)
Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
k8s-ci-robot commented 1 week ago

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](https://git.k8s.io/community/contributors/guide/pull-requests.md). If you have questions or suggestions related to my behavior, please file an issue against the [kubernetes-sigs/prow](https://github.com/kubernetes-sigs/prow/issues/new?title=Prow%20issue:) repository.
k8s-ci-robot commented 1 week ago

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: dependabot[bot] Once this PR has been reviewed and has the lgtm label, please assign tyuchn 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: - **[OWNERS](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/blob/master/OWNERS)** 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 commented 1 week ago

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

Test name Commit Details Required Rerun command
pull-gcp-compute-persistent-disk-csi-driver-kubernetes-integration a2ec5dc3040dc76d6ba6efab9caa4c9b4d37c328 link true /test pull-gcp-compute-persistent-disk-csi-driver-kubernetes-integration

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

Instructions for interacting with me using PR comments are available [here](https://git.k8s.io/community/contributors/guide/pull-requests.md). If you have questions or suggestions related to my behavior, please file an issue against the [kubernetes-sigs/prow](https://github.com/kubernetes-sigs/prow/issues/new?title=Prow%20issue:) repository. I understand the commands that are listed [here](https://go.k8s.io/bot-commands).
dependabot[bot] commented 5 days ago

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