Skip to content

Commit

Permalink
Bump the cloud-google-com-go group in /provider/secretmanager with 4 …
Browse files Browse the repository at this point in the history
…updates (#401)

Bumps the cloud-google-com-go group in /provider/secretmanager with 4
updates:
[cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go),
[cloud.google.com/go/secretmanager](https://github.com/googleapis/google-cloud-go),
[google.golang.org/api](https://github.com/googleapis/google-api-go-client)
and [google.golang.org/grpc](https://github.com/grpc/grpc-go).

Updates `cloud.google.com/go/compute/metadata` from 0.3.0 to 0.4.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-cloud-go/releases">cloud.google.com/go/compute/metadata's
releases</a>.</em></p>
<blockquote>
<h2>grafeas: v0.3.7</h2>
<h2><a
href="https://github.com/googleapis/google-cloud-go/compare/grafeas/v0.3.6...grafeas/v0.3.7">0.3.7</a>
(2024-07-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>grafeas:</strong> Bump google.golang.org/[email protected] (<a
href="https://github.com/googleapis/google-cloud-go/commit/8fa9e398e512fd8533fd49060371e61b5725a85b">8fa9e39</a>)</li>
</ul>
<h2>parallelstore: v0.3.2</h2>
<h2><a
href="https://github.com/googleapis/google-cloud-go/compare/parallelstore/v0.3.1...parallelstore/v0.3.2">0.3.2</a>
(2024-07-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>parallelstore:</strong> Bump google.golang.org/[email protected]
(<a
href="https://github.com/googleapis/google-cloud-go/commit/8fa9e398e512fd8533fd49060371e61b5725a85b">8fa9e39</a>)</li>
</ul>
<h2>errorreporting: v0.3.1</h2>
<h2><a
href="https://github.com/googleapis/google-cloud-go/compare/errorreporting/v0.3.0...errorreporting/v0.3.1">0.3.1</a>
(2024-07-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>errorreporting:</strong> Add
internaloption.WithDefaultEndpointTemplate (<a
href="https://github.com/googleapis/google-cloud-go/commit/3b414084450a5764a0248756e95e13383a645f90">3b41408</a>)</li>
<li><strong>errorreporting:</strong> Bump x/net to v0.24.0 (<a
href="https://github.com/googleapis/google-cloud-go/commit/ba31ed5fda2c9664f2e1cf972469295e63deb5b4">ba31ed5</a>)</li>
<li><strong>errorreporting:</strong> Update protobuf dep to v1.33.0 (<a
href="https://github.com/googleapis/google-cloud-go/commit/30b038d8cac0b8cd5dd4761c87f3f298760dd33a">30b038d</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md">cloud.google.com/go/compute/metadata's
changelog</a>.</em></p>
<blockquote>
<h2>v0.4.0</h2>
<ul>
<li>bigquery:
-<code>NewGCSReference</code> is now a function, not a method on
<code>Client</code>.
<ul>
<li><code>Table.LoaderFrom</code> now accepts a
<code>ReaderSource</code>, enabling
loading data into a table from a file or any
<code>io.Reader</code>.</li>
</ul>
<ul>
<li>
<p>Client.Table and Client.OpenTable have been removed.
Replace</p>
<pre lang="go"><code>client.OpenTable(&quot;project&quot;,
&quot;dataset&quot;, &quot;table&quot;)
</code></pre>
<p>with</p>
<pre lang="go"><code>client.DatasetInProject(&quot;project&quot;,
&quot;dataset&quot;).Table(&quot;table&quot;)
</code></pre>
</li>
<li>
<p>Client.CreateTable has been removed.
Replace</p>
<pre lang="go"><code>client.CreateTable(ctx, &quot;project&quot;,
&quot;dataset&quot;, &quot;table&quot;)
</code></pre>
<p>with</p>
<pre lang="go"><code>client.DatasetInProject(&quot;project&quot;,
&quot;dataset&quot;).Table(&quot;table&quot;).Create(ctx)
</code></pre>
</li>
<li>
<p>Dataset.ListTables have been replaced with Dataset.Tables.
Replace</p>
<pre lang="go"><code>tables, err := ds.ListTables(ctx)
</code></pre>
<p>with</p>
<pre lang="go"><code>it := ds.Tables(ctx)
for {
    table, err := it.Next()
    if err == iterator.Done {
        break
    }
    if err != nil {
        // TODO: Handle error.
    }
    // TODO: use table.
}
</code></pre>
</li>
<li>
<p>Client.Read has been replaced with Job.Read, Table.Read and
Query.Read.
Replace</p>
<pre lang="go"><code>it, err := client.Read(ctx, job)
</code></pre>
</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/8c2dc6124f184bbfc2f13949476cb98e12bda2bb"><code>8c2dc61</code></a>
logging: check for exact # of logs in tests</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/4791784d045a952c4de7eef608c8b0b9d66533a4"><code>4791784</code></a>
logadmin: use generated iterators</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/384ca5563740d2c07e9773b66107fdb7da979d59"><code>384ca55</code></a>
storage: use pointer receiver for ObjectAttrs</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/bd8a5e8b5d233a78bb4ef057f38eae438f8b6f55"><code>bd8a5e8</code></a>
datastore: add new key functions</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/09d95d938833fa0154e758c1485080cc63e58661"><code>09d95d9</code></a>
bigtable/bttest: add emulator support for DeleteCellsInFamily</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/7ee19e74f7fd11897ae3b7c4782d8205e810faa7"><code>7ee19e7</code></a>
bigquery: restore semantics of ForceZeroQuote</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/f7f94a2b9803b794a02e32e1339d3fe0df28a565"><code>f7f94a2</code></a>
bigquery: clean up implementation of LoadSource</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/f9c9ec4ec241ecb3f95058b959a0f294bc155a3e"><code>f9c9ec4</code></a>
storage: always send destination in compose request</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/67f57c54e27cf75ee0fbc2005b46c10b8b0f0051"><code>67f57c5</code></a>
storage: readObject method for tests</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/28994ff9b5baa92fe337dacaee126fcf80fefa3e"><code>28994ff</code></a>
bigtable: Use connection pool by default for data client.</li>
<li>Additional commits viewable in <a
href="https://github.com/googleapis/google-cloud-go/compare/v0.3.0...v0.4.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `cloud.google.com/go/secretmanager` from 1.13.2 to 1.13.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-cloud-go/releases">cloud.google.com/go/secretmanager's
releases</a>.</em></p>
<blockquote>
<h2>secretmanager: v1.13.3</h2>
<h2><a
href="https://github.com/googleapis/google-cloud-go/compare/secretmanager/v1.13.2...secretmanager/v1.13.3">1.13.3</a>
(2024-07-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>secretmanager:</strong> Bump google.golang.org/[email protected]
(<a
href="https://github.com/googleapis/google-cloud-go/commit/8fa9e398e512fd8533fd49060371e61b5725a85b">8fa9e39</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/aa41de6107a72f7f39eb10afdd9c45937f2b50a0"><code>aa41de6</code></a>
chore: release main (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8917">#8917</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/81a97b06cb28b25432e4ece595c55a9857e960b7"><code>81a97b0</code></a>
fix(all): update grpc-go to v1.59.0 (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8922">#8922</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/343cea8c43b1e31ae21ad50ad31d3b0b60143f8c"><code>343cea8</code></a>
fix(all): update grpc-go to v1.56.3 (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8916">#8916</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/7bb630b1c754b5b30d97521611a9876bf26312d5"><code>7bb630b</code></a>
test(bigtable): Add retries while getting app profile (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8751">#8751</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/b1409e316505b69f939de51d6eabcb56a4509770"><code>b1409e3</code></a>
chore(cloudquotas): Revert &quot;add config to generate apiv1 (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8766">#8766</a>)&quot;
(<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8770">#8770</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/b3cc26b34bcf8f60f752c4eb313691b8f6947d91"><code>b3cc26b</code></a>
chore(cloudquotas): add config to generate apiv1 (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8766">#8766</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/dfa8e22edf560211ae2a2ebf1f9a23b86887c7be"><code>dfa8e22</code></a>
feat(bigquery/storage/managedwriter): support default value controls (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8686">#8686</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/3e5ba248ba7b340edec0a5c725dcdd29f11c6db4"><code>3e5ba24</code></a>
chore(internal/godocfx): test a specific golden package version (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8759">#8759</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/1e6534f5873b9750d3ae313f8f445e0072770da7"><code>1e6534f</code></a>
chore(internal/kokoro): upload docs to subdirectory (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8763">#8763</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-go/commit/74fa78396d76f1291cfe148fa0dc11a895970cb5"><code>74fa783</code></a>
chore(internal/kokoro): fix doc upload (<a
href="https://redirect.github.com/googleapis/google-cloud-go/issues/8762">#8762</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/googleapis/google-cloud-go/compare/redis/v1.13.2...redis/v1.13.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `google.golang.org/api` from 0.186.0 to 0.187.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's
releases</a>.</em></p>
<blockquote>
<h2>v0.187.0</h2>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.186.0...v0.187.0">0.187.0</a>
(2024-07-01)</h2>
<h3>Features</h3>
<ul>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2655">#2655</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/1a28e0622fbb1a069f973a099f2340ccf5ced528">1a28e06</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2658">#2658</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/719f98850209581d9ba3d69e60f7cea310f57802">719f988</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2659">#2659</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/7cd88dabf7a36af1b9586f242e565e93b882f6de">7cd88da</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2660">#2660</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/3ca2f844a9d76ba63af67393338744387db73664">3ca2f84</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2661">#2661</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/0a238f578c422a11440ee094359d226880081056">0a238f5</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2663">#2663</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/6e061ced5f33f1aed0d5360d6a81617665de28ed">6e061ce</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>gensupport:</strong> Wrap chunk upload err for retries (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2657">#2657</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/a758bc17ee3fcce07913275095bafc512a7e441c">a758bc1</a>)</li>
<li>Pass through gRPC api key option to new auth lib (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2664">#2664</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/e05199702297d91cdce420f43fcc1c7c691a6f53">e051997</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.186.0...v0.187.0">0.187.0</a>
(2024-07-01)</h2>
<h3>Features</h3>
<ul>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2655">#2655</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/1a28e0622fbb1a069f973a099f2340ccf5ced528">1a28e06</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2658">#2658</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/719f98850209581d9ba3d69e60f7cea310f57802">719f988</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2659">#2659</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/7cd88dabf7a36af1b9586f242e565e93b882f6de">7cd88da</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2660">#2660</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/3ca2f844a9d76ba63af67393338744387db73664">3ca2f84</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2661">#2661</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/0a238f578c422a11440ee094359d226880081056">0a238f5</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2663">#2663</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/6e061ced5f33f1aed0d5360d6a81617665de28ed">6e061ce</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>gensupport:</strong> Wrap chunk upload err for retries (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2657">#2657</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/a758bc17ee3fcce07913275095bafc512a7e441c">a758bc1</a>)</li>
<li>Pass through gRPC api key option to new auth lib (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2664">#2664</a>)
(<a
href="https://github.com/googleapis/google-api-go-client/commit/e05199702297d91cdce420f43fcc1c7c691a6f53">e051997</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/b6c87f6266ea80ddbc13679929185c3a169b5871"><code>b6c87f6</code></a>
chore(main): release 0.187.0 (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2656">#2656</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/e05199702297d91cdce420f43fcc1c7c691a6f53"><code>e051997</code></a>
fix: pass through gRPC api key option to new auth lib (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2664">#2664</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/2ea4e07c4a3d85912a7919a0d514834e9d4721a0"><code>2ea4e07</code></a>
chore(all): update all to dc46fd2 (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2662">#2662</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/6e061ced5f33f1aed0d5360d6a81617665de28ed"><code>6e061ce</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2663">#2663</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/0a238f578c422a11440ee094359d226880081056"><code>0a238f5</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2661">#2661</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/3ca2f844a9d76ba63af67393338744387db73664"><code>3ca2f84</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2660">#2660</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/7cd88dabf7a36af1b9586f242e565e93b882f6de"><code>7cd88da</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2659">#2659</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/a758bc17ee3fcce07913275095bafc512a7e441c"><code>a758bc1</code></a>
fix(gensupport): wrap chunk upload err for retries (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2657">#2657</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/719f98850209581d9ba3d69e60f7cea310f57802"><code>719f988</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2658">#2658</a>)</li>
<li><a
href="https://github.com/googleapis/google-api-go-client/commit/1a28e0622fbb1a069f973a099f2340ccf5ced528"><code>1a28e06</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2655">#2655</a>)</li>
<li>See full diff in <a
href="https://github.com/googleapis/google-api-go-client/compare/v0.186.0...v0.187.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `google.golang.org/grpc` from 1.64.0 to 1.65.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's
releases</a>.</em></p>
<blockquote>
<h2>Release 1.65.0</h2>
<h1>Dependencies</h1>
<ul>
<li>Change support policy to cover only the latest TWO releases of Go,
matching the policy for Go itself. See <a
href="https://redirect.github.com/grpc/grpc-go/issues/7249">#7249</a>
for more information. (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7250">#7250</a>)</li>
<li>Update x/net/http2 to address <a
href="https://nvd.nist.gov/vuln/detail/CVE-2023-45288">CVE-2023-45288</a>
(<a
href="https://redirect.github.com/grpc/grpc-go/issues/7282">#7282</a>)</li>
</ul>
<h1>Behavior Changes</h1>
<ul>
<li>credentials/tls: clients and servers will now reject connections
that don't support ALPN when environment variable
<code>GRPC_ENFORCE_ALPN_ENABLED</code> is set to &quot;true&quot; (case
insensitive). (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7184">#7184</a>)
<ul>
<li>NOTE: this behavior will become the default in a future
release.</li>
</ul>
</li>
<li>metadata: remove String method from MD to make printing more
consistent (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7373">#7373</a>)</li>
</ul>
<h1>New Features</h1>
<ul>
<li>grpc: add <code>WithMaxCallAttempts</code> to configure gRPC's retry
behavior per-channel. (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7229">#7229</a>)
<ul>
<li>Special Thanks: <a
href="https://github.com/imoore76"><code>@​imoore76</code></a></li>
</ul>
</li>
</ul>
<h1>Bug Fixes</h1>
<ul>
<li>ringhash: properly apply endpoint weights instead of ignoring them
(<a
href="https://redirect.github.com/grpc/grpc-go/issues/7156">#7156</a>)</li>
<li>xds: fix a bug that could cause xds-enabled servers to stop
accepting new connections after handshaking errors (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7128">#7128</a>)
<ul>
<li>Special Thanks: <a
href="https://github.com/bozaro"><code>@​bozaro</code></a></li>
</ul>
</li>
</ul>
<h2>Release 1.64.1</h2>
<h1>Dependencies</h1>
<ul>
<li>Update x/net/http2 to address <a
href="https://nvd.nist.gov/vuln/detail/CVE-2023-45288">CVE-2023-45288</a>
(<a
href="https://redirect.github.com/grpc/grpc-go/issues/7352">#7352</a>)</li>
<li>metadata: remove String method from MD to make printing consistent
(<a
href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/grpc/grpc-go/commit/2da976983bbb33feb3e25b7daaa8f60b9769adb5"><code>2da9769</code></a>
Change version to 1.65.0 (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7306">#7306</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/ede96b776c9cea4ff2b06dfdedad841e53fb0c26"><code>ede96b7</code></a>
metadata: remove String method (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7373">#7373</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/64be203f7828d03224aa44944a84deacac54b72b"><code>64be203</code></a>
grpc: Readd pick first name (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7336">#7336</a>)
(<a
href="https://redirect.github.com/grpc/grpc-go/issues/7341">#7341</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/25e33a6c207464c6017d001255f9ac1297ba5d3e"><code>25e33a6</code></a>
examples: Add CSM Observability example (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7302">#7302</a>)
(<a
href="https://redirect.github.com/grpc/grpc-go/issues/7318">#7318</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/04a5f4604baa9297b7168543834e531cfb8858dc"><code>04a5f46</code></a>
xds/internal/xdsclient: Emit unknown for CSM Labels if not present in
CDS (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7">#7</a>...</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/cff5c3e3d0f104459af4f52e77fc1c49ef4cb6aa"><code>cff5c3e</code></a>
stats/opentelemetry: Add e2e testing for CSM Observability (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7279">#7279</a>)
(<a
href="https://redirect.github.com/grpc/grpc-go/issues/7316">#7316</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/9b970fdd173c1951a354630133273639e8acf00c"><code>9b970fd</code></a>
dns: fix constant 30s backoff for re-resolution (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7262">#7262</a>)
(<a
href="https://redirect.github.com/grpc/grpc-go/issues/7311">#7311</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/6d236200ea68ea644d78a164c4ad9952a765aed3"><code>6d23620</code></a>
documentation: on server, use FromIncomingContext for retrieving context
and...</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/7e5898e7c569b8cc32d6eee9bc8ad1393a8fcc61"><code>7e5898e</code></a>
xds: unify xDS client creation APIs meant for testing (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7268">#7268</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/5d7bd7aacb0c35fc14bf144fa81ecbb61eec91de"><code>5d7bd7a</code></a>
interop/xds: Interop client and server changes for CSM Observability (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7280">#7280</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/grpc/grpc-go/compare/v1.64.0...v1.65.0">compare
view</a></li>
</ul>
</details>
<br />


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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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


</details>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ktong <[email protected]>
  • Loading branch information
dependabot[bot] and ktong authored Jul 8, 2024
1 parent c171c38 commit 99815f0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
14 changes: 7 additions & 7 deletions provider/secretmanager/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ module github.com/nil-go/konf/provider/secretmanager
go 1.21

require (
cloud.google.com/go/compute/metadata v0.3.0
cloud.google.com/go/secretmanager v1.13.2
cloud.google.com/go/compute/metadata v0.4.0
cloud.google.com/go/secretmanager v1.13.3
github.com/stretchr/testify v1.9.0
google.golang.org/api v0.186.0
google.golang.org/grpc v1.64.0
google.golang.org/api v0.187.0
google.golang.org/grpc v1.65.0
google.golang.org/protobuf v1.34.2
)

require (
cloud.google.com/go/auth v0.6.0 // indirect
cloud.google.com/go/auth v0.6.1 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
cloud.google.com/go/iam v1.1.8 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
Expand All @@ -38,8 +38,8 @@ require (
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/time v0.5.0 // indirect
google.golang.org/genproto v0.0.0-20240617180043-68d350f18fd4 // indirect
google.golang.org/genproto v0.0.0-20240624140628-dc46fd24d27d // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
28 changes: 14 additions & 14 deletions provider/secretmanager/go.sum
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.115.0 h1:CnFSK6Xo3lDYRoBKEcAtia6VSC837/ZkJuRduSFnr14=
cloud.google.com/go v0.115.0/go.mod h1:8jIM5vVgoAEoiVxQ/O4BFTfHqulPZgs/ufEzMcFMdWU=
cloud.google.com/go/auth v0.6.0 h1:5x+d6b5zdezZ7gmLWD1m/xNjnaQ2YDhmIz/HH3doy1g=
cloud.google.com/go/auth v0.6.0/go.mod h1:b4acV+jLQDyjwm4OXHYjNvRi4jvGBzHWJRtJcy+2P4g=
cloud.google.com/go/auth v0.6.1 h1:T0Zw1XM5c1GlpN2HYr2s+m3vr1p2wy+8VN+Z1FKxW38=
cloud.google.com/go/auth v0.6.1/go.mod h1:eFHG7zDzbXHKmjJddFG/rBlcGp6t25SwRUiEQSlO4x4=
cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4=
cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q=
cloud.google.com/go/compute/metadata v0.3.0 h1:Tz+eQXMEqDIKRsmY3cHTL6FVaynIjX2QxYC4trgAKZc=
cloud.google.com/go/compute/metadata v0.3.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k=
cloud.google.com/go/compute/metadata v0.4.0 h1:vHzJCWaM4g8XIcm8kopr3XmDA4Gy/lblD3EhhSux05c=
cloud.google.com/go/compute/metadata v0.4.0/go.mod h1:SIQh1Kkb4ZJ8zJ874fqVkslA29PRXuleyj6vOzlbK7M=
cloud.google.com/go/iam v1.1.8 h1:r7umDwhj+BQyz0ScZMp4QrGXjSTI3ZINnpgU2nlB/K0=
cloud.google.com/go/iam v1.1.8/go.mod h1:GvE6lyMmfxXauzNq8NbgJbeVQNspG+tcdL/W8QO1+zE=
cloud.google.com/go/secretmanager v1.13.2 h1:WnyajcyWf5MLq9lPyVxEyOBAhQdPcpckG3lMw8LqAHw=
cloud.google.com/go/secretmanager v1.13.2/go.mod h1:rB3lORY7QZrjACov35PX0KXMM0bKlbkL0/eFlS312wk=
cloud.google.com/go/secretmanager v1.13.3 h1:VqUVYY3U6uFXOhPdZgAoZH9m8E6p7eK02TsDRj2SBf4=
cloud.google.com/go/secretmanager v1.13.3/go.mod h1:e45+CxK0w6GaL4hS+KabgQskl4RdSS30b+HRf0TH0kk=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
Expand Down Expand Up @@ -127,26 +127,26 @@ golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3
golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
google.golang.org/api v0.186.0 h1:n2OPp+PPXX0Axh4GuSsL5QL8xQCTb2oDwyzPnQvqUug=
google.golang.org/api v0.186.0/go.mod h1:hvRbBmgoje49RV3xqVXrmP6w93n6ehGgIVPYrGtBFFc=
google.golang.org/api v0.187.0 h1:Mxs7VATVC2v7CY+7Xwm4ndkX71hpElcvx0D1Ji/p1eo=
google.golang.org/api v0.187.0/go.mod h1:KIHlTc4x7N7gKKuVsdmfBXN13yEEWXWFURWY6SBp2gk=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
google.golang.org/genproto v0.0.0-20240617180043-68d350f18fd4 h1:CUiCqkPw1nNrNQzCCG4WA65m0nAmQiwXHpub3dNyruU=
google.golang.org/genproto v0.0.0-20240617180043-68d350f18fd4/go.mod h1:EvuUDCulqGgV80RvP1BHuom+smhX4qtlhnNatHuroGQ=
google.golang.org/genproto v0.0.0-20240624140628-dc46fd24d27d h1:PksQg4dV6Sem3/HkBX+Ltq8T0ke0PKIRBNBatoDTVls=
google.golang.org/genproto v0.0.0-20240624140628-dc46fd24d27d/go.mod h1:s7iA721uChleev562UJO2OYB0PPT9CMFjV+Ce7VJH5M=
google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4 h1:MuYw1wJzT+ZkybKfaOXKp5hJiZDn2iHaXRw0mRYdHSc=
google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4/go.mod h1:px9SlOOZBg1wM1zdnr8jEL4CNGUBZ+ZKYtNPApNQc4c=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4 h1:Di6ANFilr+S60a4S61ZM00vLdw0IrQOSMS2/6mrnOU0=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d h1:k3zyW3BYYR30e8v3x0bTDdE9vpYFjZHK+HcyqkrppWk=
google.golang.org/genproto/googleapis/rpc v0.0.0-20240624140628-dc46fd24d27d/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc=
google.golang.org/grpc v1.64.0 h1:KH3VH9y/MgNQg1dE7b3XfVK0GsPSIzJwdF617gUSbvY=
google.golang.org/grpc v1.64.0/go.mod h1:oxjF8E3FBnjp+/gVFYdWacaLDx9na1aqy9oovLpxQYg=
google.golang.org/grpc v1.65.0 h1:bs/cUb4lp1G5iImFFd3u5ixQzweKizoZJAwBNLR42lc=
google.golang.org/grpc v1.65.0/go.mod h1:WgYC2ypjlB0EiQi6wdKixMqukr6lBc0Vo+oOgjrM5ZQ=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
Expand Down
4 changes: 2 additions & 2 deletions provider/secretmanager/secretmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ type clientProxy struct {
func (p *clientProxy) load(ctx context.Context) (map[string]string, bool, error) { //nolint:cyclop,funlen
if p.project == "" {
var err error
if p.project, err = metadata.ProjectID(); err != nil {
if p.project, err = metadata.ProjectIDWithContext(ctx); err != nil {
return nil, false, fmt.Errorf("get GCP project ID: %w", err)
}
projectNumer, err := metadata.NumericProjectID()
projectNumer, err := metadata.NumericProjectIDWithContext(ctx)
if err != nil {
return nil, false, fmt.Errorf("get GCP numeric project ID: %w", err)
}
Expand Down

0 comments on commit 99815f0

Please sign in to comment.