chainguard-dev / terraform-infra-common

A repository containing a collection of "glue" modules for encapsulating common Cloud Run patterns.
Apache License 2.0
4 stars 22 forks source link

build(deps): bump the gomod group across 1 directory with 3 updates #428

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the gomod group with 3 updates in the / directory: cloud.google.com/go/compute/metadata, cloud.google.com/go/profiler and google.golang.org/api.

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/profiler from 0.4.0 to 0.4.1

Release notes

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

profiler: v0.4.1

0.4.1 (2024-07-01)

Bug Fixes

  • profiler: Bump x/net to v0.24.0 (ba31ed5)
  • profiler: Update protobuf dep to v1.33.0 (30b038d)
Changelog

Sourced from cloud.google.com/go/profiler'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
  • b1c9263 chore: release main (#10004)
  • a03bd0e chore(spanner): update Spanner owner to harshachinta (#10060)
  • 7e8600a chore(all): update deps (#10058)
  • daea9d1 chore(deps): ignore go.opentelemetry.io/contrib/detectors/gcp (#10077)
  • 59457a3 feat(shopping): new shopping.merchant.conversions client (#10076)
  • e82cc5f feat(streetview): new client(s) (#10075)
  • 7656129 feat(aiplatform): A new value TPU_V5_LITEPOD is added to enum `AcceleratorT...
  • f537fdd chore: generate streetview publish client (#10072)
  • 1d757c6 docs(batch): Update description on allowed_locations in LocationPolicy field ...
  • bb47185 chore(spanner): temporarily skip spanner tests (#10071)
  • Additional commits viewable in compare view


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


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