dependabot[bot] opened a new pull request, #38436:
URL: https://github.com/apache/beam/pull/38436

   Bumps 
[cloud.google.com/go/profiler](https://github.com/googleapis/google-cloud-go) 
from 0.4.3 to 0.6.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/googleapis/google-cloud-go/releases";>cloud.google.com/go/profiler's
 releases</a>.</em></p>
   <blockquote>
   <h2>financialservices: v0.6.0</h2>
   <h2><a 
href="https://github.com/googleapis/google-cloud-go/compare/financialservices/v0.5.0...financialservices/v0.6.0";>v0.6.0</a>
 (2026-05-07)</h2>
   <h2>gkerecommender: v0.6.0</h2>
   <h2><a 
href="https://github.com/googleapis/google-cloud-go/compare/gkerecommender/v0.5.0...gkerecommender/v0.6.0";>v0.6.0</a>
 (2026-05-07)</h2>
   <h2>licensemanager: v0.6.0</h2>
   <h2><a 
href="https://github.com/googleapis/google-cloud-go/compare/licensemanager/v0.5.0...licensemanager/v0.6.0";>v0.6.0</a>
 (2026-05-07)</h2>
   <h2>locationfinder: v0.6.0</h2>
   <h2><a 
href="https://github.com/googleapis/google-cloud-go/compare/locationfinder/v0.5.0...locationfinder/v0.6.0";>v0.6.0</a>
 (2026-05-07)</h2>
   <h2>workloadmanager: v0.6.0</h2>
   <h2><a 
href="https://github.com/googleapis/google-cloud-go/compare/workloadmanager/v0.5.0...workloadmanager/v0.6.0";>v0.6.0</a>
 (2026-05-07)</h2>
   </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/profiler's
 changelog</a>.</em></p>
   <blockquote>
   <h2>v0.6.0</h2>
   <ul>
   <li>
   <p>Beta release of BigQuery, DataStore, Logging and Storage. See the
   <a 
href="https://cloudplatform.googleblog.com/2016/12/announcing-new-google-cloud-client.html";>blog
 post</a>.</p>
   </li>
   <li>
   <p>bigquery:</p>
   <ul>
   <li>
   <p>struct support. Read a row directly into a struct with
   <code>RowIterator.Next</code>, and upload a row directly from a struct with 
<code>Uploader.Put</code>.
   You can also use field tags. See the [package 
documentation][cloud-bigquery-ref]
   for details.</p>
   </li>
   <li>
   <p>The <code>ValueList</code> type was removed. It is no longer necessary. 
Instead of</p>
   </li>
   </ul>
   <pre lang="go"><code>var v ValueList
   ... it.Next(&amp;v) ..
   </code></pre>
   <p>use</p>
   <pre lang="go"><code>var v []Value
   ... it.Next(&amp;v) ...
   </code></pre>
   <ul>
   <li>
   <p>Previously, repeatedly calling <code>RowIterator.Next</code> on the same 
<code>[]Value</code> or
   <code>ValueList</code> would append to the slice. Now each call resets the 
size to zero first.</p>
   </li>
   <li>
   <p>Schema inference will infer the SQL type BYTES for a struct field of
   type []byte. Previously it inferred STRING.</p>
   </li>
   <li>
   <p>The types <code>uint</code>, <code>uint64</code> and <code>uintptr</code> 
are no longer supported in schema
   inference. BigQuery's integer type is INT64, and those types may hold values
   that are not correctly represented in a 64-bit signed integer.</p>
   </li>
   </ul>
   </li>
   </ul>
   <h2>v0.5.0</h2>
   <ul>
   <li>bigquery:
   <ul>
   <li>The SQL types DATE, TIME and DATETIME are now supported. They correspond 
to
   the <code>Date</code>, <code>Time</code> and <code>DateTime</code> types in 
the new <code>cloud.google.com/go/civil</code>
   package.</li>
   <li>Support for query parameters.</li>
   <li>Support deleting a dataset.</li>
   <li>Values from INTEGER columns will now be returned as int64, not int. This
   will avoid errors arising from large values on 32-bit systems.</li>
   </ul>
   </li>
   <li>datastore:
   <ul>
   <li>Nested Go structs encoded as Entity values, instead of a
   flattened list of the embedded struct's fields. This means that you may now 
have twice-nested slices, eg.
   <pre lang="go"><code>type State struct {
     Cities  []struct{
       Populations []int
   </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/c116c7972ec94f148459a304d07a67ecbc770d4b";><code>c116c79</code></a>
 bigquery: cache schema inference</li>
   <li><a 
href="https://github.com/googleapis/google-cloud-go/commit/dd37f36e6841d2a314add12c93fe9e58aa467e59";><code>dd37f36</code></a>
 bigquery: check for recursive types during schema inference</li>
   <li><a 
href="https://github.com/googleapis/google-cloud-go/commit/0c87a68d703e5d09282162da4d4e74bd8f6d454b";><code>0c87a68</code></a>
 bigquery,logging,storage,datastore: mention beta status in doc comment</li>
   <li><a 
href="https://github.com/googleapis/google-cloud-go/commit/1e032f388e6fff73e1ce068a900955bfa2cca1d2";><code>1e032f3</code></a>
 datastore: implement structCodec using internal/fields</li>
   <li><a 
href="https://github.com/googleapis/google-cloud-go/commit/ee72afcb0653be2197c0e5b61bf2963b8544f02f";><code>ee72afc</code></a>
 README: change &quot;experimental&quot; to &quot;alpha&quot;</li>
   <li><a 
href="https://github.com/googleapis/google-cloud-go/commit/9d965e63e8cceb1b5d7977a202f0fcb8866d6525";><code>9d965e6</code></a>
 README: update status of select clients</li>
   <li><a 
href="https://github.com/googleapis/google-cloud-go/commit/3d66f77335c9f8a896c902471b6f699b6e0b1b54";><code>3d66f77</code></a>
 fields: factor out fast cache to separate package.</li>
   <li><a 
href="https://github.com/googleapis/google-cloud-go/commit/e80926d66a671112c7f04b7a0212f18030e12ad2";><code>e80926d</code></a>
 bigquery: support uploading structs directly</li>
   <li><a 
href="https://github.com/googleapis/google-cloud-go/commit/5bfd31360229a54fca5a3221bc32426efc471174";><code>5bfd313</code></a>
 internal/fields: adds func for validating struct</li>
   <li><a 
href="https://github.com/googleapis/google-cloud-go/commit/c9f70e2e8ce34c64319833a871281ec7b4bee6a0";><code>c9f70e2</code></a>
 bigquery: support struct field tags</li>
   <li>Additional commits viewable in <a 
href="https://github.com/googleapis/google-cloud-go/compare/apps/v0.4.3...v0.6.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/profiler&package-manager=go_modules&previous-version=0.4.3&new-version=0.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to