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

Bump the minor-and-patch group in /provider with 9 updates #188

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the minor-and-patch group in /provider with 9 updates:

Package From To
cloud.google.com/go/auth 0.6.0 0.6.1
cloud.google.com/go/compute/metadata 0.3.0 0.4.0
cloud.google.com/go/iam 1.1.9 1.1.10
cloud.google.com/go/kms 1.18.1 1.18.2
cloud.google.com/go/longrunning 0.5.8 0.5.9
github.com/aws/aws-sdk-go 1.54.11 1.54.12
google.golang.org/api 0.186.0 0.187.0
google.golang.org/genproto 0.0.0-20240617180043-68d350f18fd4 0.0.0-20240624140628-dc46fd24d27d
google.golang.org/genproto/googleapis/rpc 0.0.0-20240617180043-68d350f18fd4 0.0.0-20240624140628-dc46fd24d27d

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

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/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 cloud.google.com/go/iam from 1.1.9 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

Commits

Updates cloud.google.com/go/kms from 1.18.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

Changelog

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

Changes

1.30.3 (2024-07-01)

Bug Fixes

1.30.2 (2024-06-26)

Bug Fixes

  • documentai: Enable new auth lib (b95805f)

1.30.1 (2024-06-20)

Documentation

  • documentai: Update the comment to add a note about documentai.processors.create permission (4fa4308)

1.30.0 (2024-06-05)

Features

  • documentai: Make Layout Parser generally available in V1 (#10286) (92dc381)

1.29.0 (2024-05-29)

Features

  • documentai: Make Layout Parser generally available in V1 (#10277) (dafecc9)

1.28.1 (2024-05-16)

Documentation

  • documentai: Clarify the unavailability of some features (652ba8f)
  • documentai: Updated comments (292e812)

1.28.0 (2024-05-01)

Features

... (truncated)

Commits

Updates cloud.google.com/go/longrunning from 0.5.8 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

Commits

Updates github.com/aws/aws-sdk-go from 1.54.11 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
Commits

Updates google.golang.org/api from 0.186.0 to 0.187.0

Release notes

Sourced from google.golang.org/api's releases.

v0.187.0

0.187.0 (2024-07-01)

Features

Bug Fixes

  • gensupport: Wrap chunk upload err for retries (#2657) (a758bc1)
  • Pass through gRPC api key option to new auth lib (#2664) (e051997)
Changelog

Sourced from google.golang.org/api's changelog.

0.187.0 (2024-07-01)

Features

Bug Fixes

  • gensupport: Wrap chunk upload err for retries (#2657) (a758bc1)
  • Pass through gRPC api key option to new auth lib (#2664) (e051997)
Commits

Updates google.golang.org/genproto from 0.0.0-20240617180043-68d350f18fd4 to 0.0.0-20240624140628-dc46fd24d27d

Commits

Updates google.golang.org/genproto/googleapis/rpc from 0.0.0-20240617180043-68d350f18fd4 to 0.0.0-20240624140628-dc46fd24d27d

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-and-patch group in /provider with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/auth](https://github.com/googleapis/google-cloud-go) | `0.6.0` | `0.6.1` |
| [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) | `0.3.0` | `0.4.0` |
| [cloud.google.com/go/iam](https://github.com/googleapis/google-cloud-go) | `1.1.9` | `1.1.10` |
| [cloud.google.com/go/kms](https://github.com/googleapis/google-cloud-go) | `1.18.1` | `1.18.2` |
| [cloud.google.com/go/longrunning](https://github.com/googleapis/google-cloud-go) | `0.5.8` | `0.5.9` |
| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.11` | `1.54.12` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.186.0` | `0.187.0` |
| [google.golang.org/genproto](https://github.com/googleapis/go-genproto) | `0.0.0-20240617180043-68d350f18fd4` | `0.0.0-20240624140628-dc46fd24d27d` |
| [google.golang.org/genproto/googleapis/rpc](https://github.com/googleapis/go-genproto) | `0.0.0-20240617180043-68d350f18fd4` | `0.0.0-20240624140628-dc46fd24d27d` |


Updates `cloud.google.com/go/auth` from 0.6.0 to 0.6.1
- [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.6.0...auth/v0.6.1)

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 `cloud.google.com/go/iam` from 1.1.9 to 1.1.10
- [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@iam/v1.1.9...iam/v1.1.10)

Updates `cloud.google.com/go/kms` from 1.18.1 to 1.18.2
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md)
- [Commits](googleapis/google-cloud-go@kms/v1.18.1...kms/v1.18.2)

Updates `cloud.google.com/go/longrunning` from 0.5.8 to 0.5.9
- [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@longrunning/v0.5.8...longrunning/v0.5.9)

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

Updates `google.golang.org/api` from 0.186.0 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.186.0...v0.187.0)

Updates `google.golang.org/genproto` from 0.0.0-20240617180043-68d350f18fd4 to 0.0.0-20240624140628-dc46fd24d27d
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20240617180043-68d350f18fd4 to 0.0.0-20240624140628-dc46fd24d27d
- [Commits](https://github.com/googleapis/go-genproto/commits)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/auth
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: cloud.google.com/go/compute/metadata
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: cloud.google.com/go/iam
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: cloud.google.com/go/kms
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: cloud.google.com/go/longrunning
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: google.golang.org/api
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: google.golang.org/genproto
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 2, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 3, 2024

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

@dependabot dependabot bot closed this Jul 3, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/provider/minor-and-patch-63acdd53f0 branch July 3, 2024 03:39
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants