nil-go / konf

The simplest config loader for Go that reads/watches from file, env, flag and clouds (AWS, Azure, GCP).
https://pkg.go.dev/github.com/nil-go/konf
MIT License
238 stars 9 forks source link

Bump the cloud-google-com-go group in /provider/secretmanager with 4 updates #401

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the cloud-google-com-go group in /provider/secretmanager with 4 updates: cloud.google.com/go/compute/metadata, cloud.google.com/go/secretmanager, google.golang.org/api and google.golang.org/grpc.

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/secretmanager from 1.13.2 to 1.13.3

Release notes

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

secretmanager: v1.13.3

1.13.3 (2024-07-01)

Bug Fixes

  • secretmanager: Bump google.golang.org/api@v0.187.0 (8fa9e39)
Commits
  • aa41de6 chore: release main (#8917)
  • 81a97b0 fix(all): update grpc-go to v1.59.0 (#8922)
  • 343cea8 fix(all): update grpc-go to v1.56.3 (#8916)
  • 7bb630b test(bigtable): Add retries while getting app profile (#8751)
  • b1409e3 chore(cloudquotas): Revert "add config to generate apiv1 (#8766)" (#8770)
  • b3cc26b chore(cloudquotas): add config to generate apiv1 (#8766)
  • dfa8e22 feat(bigquery/storage/managedwriter): support default value controls (#8686)
  • 3e5ba24 chore(internal/godocfx): test a specific golden package version (#8759)
  • 1e6534f chore(internal/kokoro): upload docs to subdirectory (#8763)
  • 74fa783 chore(internal/kokoro): fix doc upload (#8762)
  • 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


Updates google.golang.org/grpc from 1.64.0 to 1.65.0

Release notes

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

Release 1.65.0

Dependencies

  • Change support policy to cover only the latest TWO releases of Go, matching the policy for Go itself. See #7249 for more information. (#7250)
  • Update x/net/http2 to address CVE-2023-45288 (#7282)

Behavior Changes

  • credentials/tls: clients and servers will now reject connections that don't support ALPN when environment variable GRPC_ENFORCE_ALPN_ENABLED is set to "true" (case insensitive). (#7184)
    • NOTE: this behavior will become the default in a future release.
  • metadata: remove String method from MD to make printing more consistent (#7373)

New Features

  • grpc: add WithMaxCallAttempts to configure gRPC's retry behavior per-channel. (#7229)

Bug Fixes

  • ringhash: properly apply endpoint weights instead of ignoring them (#7156)
  • xds: fix a bug that could cause xds-enabled servers to stop accepting new connections after handshaking errors (#7128)

Release 1.64.1

Dependencies

  • Update x/net/http2 to address CVE-2023-45288 (#7352)
  • metadata: remove String method from MD to make printing consistent (#7374)
Commits
  • 2da9769 Change version to 1.65.0 (#7306)
  • ede96b7 metadata: remove String method (#7373)
  • 64be203 grpc: Readd pick first name (#7336) (#7341)
  • 25e33a6 examples: Add CSM Observability example (#7302) (#7318)
  • 04a5f46 xds/internal/xdsclient: Emit unknown for CSM Labels if not present in CDS (#7...
  • cff5c3e stats/opentelemetry: Add e2e testing for CSM Observability (#7279) (#7316)
  • 9b970fd dns: fix constant 30s backoff for re-resolution (#7262) (#7311)
  • 6d23620 documentation: on server, use FromIncomingContext for retrieving context and...
  • 7e5898e xds: unify xDS client creation APIs meant for testing (#7268)
  • 5d7bd7a interop/xds: Interop client and server changes for CSM Observability (#7280)
  • Additional commits viewable in compare view


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
codecov[bot] commented 4 months ago

Codecov Report

Attention: Patch coverage is 0% with 2 lines in your changes missing coverage. Please review.

Project coverage is 82.8%. Comparing base (adbf8cc) to head (a30a529). Report is 26 commits behind head on main.

Additional details and impacted files [![Impacted file tree graph](https://app.codecov.io/gh/nil-go/konf/pull/401/graphs/tree.svg?width=650&height=150&src=pr&token=2LIUXHDH9J&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=nil-go)](https://app.codecov.io/gh/nil-go/konf/pull/401?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=nil-go) ```diff @@ Coverage Diff @@ ## main #401 +/- ## ===================================== Coverage 82.8% 82.8% ===================================== Files 62 62 Lines 2652 2652 ===================================== Hits 2198 2198 Misses 371 371 Partials 83 83 ``` | [Files](https://app.codecov.io/gh/nil-go/konf/pull/401?dropdown=coverage&src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=nil-go) | Coverage Δ | | |---|---|---| | [provider/secretmanager/secretmanager.go](https://app.codecov.io/gh/nil-go/konf/pull/401?src=pr&el=tree&filepath=provider%2Fsecretmanager%2Fsecretmanager.go&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=nil-go#diff-cHJvdmlkZXIvc2VjcmV0bWFuYWdlci9zZWNyZXRtYW5hZ2VyLmdv) | `90.0% <0.0%> (ø)` | |