This is an automated email from the ASF dual-hosted git repository.

mgrund pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark-connect-go.git


The following commit(s) were added to refs/heads/master by this push:
     new 62c4341  Bump google.golang.org/grpc from 1.72.2 to 1.74.2
62c4341 is described below

commit 62c4341b3fd2afb9cfd3184abf2dffce78b561d7
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu Aug 14 21:54:52 2025 +0200

    Bump google.golang.org/grpc from 1.72.2 to 1.74.2
    
    Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.72.2 
to 1.74.2.
    <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.74.2</h2>
    <h1>New Features</h1>
    <ul>
    <li>grpc: introduce new <code>DialOptions</code> and 
<code>ServerOptions</code> (<code>WithStaticStreamWindowSize</code>, 
<code>WithStaticConnWindowSize</code>, <code>StaticStreamWindowSize</code>, 
<code>StaticConnWindowSize</code>) that force fixed window sizes for all HTTP/2 
connections.  By default, gRPC uses dynamic sizing of these windows based upon 
a BDP estimation algorithm.  The existing options 
(<code>WithInitialWindowSize</code>, etc) also disable BDP estimation, but this 
be [...]
    </ul>
    <h1>API Changes</h1>
    <ul>
    <li>balancer: add <code>ExitIdle</code> method to <code>Balancer</code> 
interface. Earlier, implementing this method was optional. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8367";>#8367</a>)</li>
    </ul>
    <h1>Behavior Changes</h1>
    <ul>
    <li>xds: Remove the <code>GRPC_EXPERIMENTAL_ENABLE_LEAST_REQUEST</code> 
environment variable that allows disabling the least request balancer with xDS. 
Least request was made available by default with xDS in v1.72.0. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8248";>#8248</a>)
    <ul>
    <li>Special Thanks: <a 
href="https://github.com/atollena";><code>​atollena</code></a></li>
    </ul>
    </li>
    <li>server: allow 0s grpc-timeout header values, which older gRPC-Java 
versions could send. This restores the behavior of grpc-go before v1.73.0. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8439";>#8439</a>)</li>
    </ul>
    <h1>Bug Fixes</h1>
    <ul>
    <li>googledirectpath: avoid logging the error message <code>Attempt to set 
a bootstrap configuration...</code> when creating multiple directpath channels. 
(<a href="https://redirect.github.com/grpc/grpc-go/issues/8419";>#8419</a>)</li>
    </ul>
    <h1>Performance Improvements</h1>
    <ul>
    <li>transport: reduce heap allocations by pooling objects and avoiding 
method-to-closure conversions. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8361";>#8361</a>)</li>
    <li>transport: reduce heap allocations by re-using <code>mem.Reader</code> 
objects. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8360";>#8360</a>)</li>
    </ul>
    <h1>Documentation</h1>
    <ul>
    <li>examples: add examples to demonstrate enabling experimental metrics 
using the OpenTelemetry plugin. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8388";>#8388</a>)
    <ul>
    <li>Special Thanks: <a 
href="https://github.com/vinothkumarr227";><code>​vinothkumarr227</code></a></li>
    </ul>
    </li>
    </ul>
    <h2>Release 1.74.1</h2>
    <p>Version 1.74.1 retracts release v1.74.0 and itself.  Release 1.74.0 was 
accidentally tagged on the wrong commit and should not be used. Version 1.73.0 
should be used until 1.74.2 is released.</p>
    <p>Release 1.74.0 was accidentally tagged on the wrong commit and should 
not be used.  Version 1.73.0 should be used until 1.74.1 is released.</p>
    <h2>Release 1.73.0</h2>
    <h1>New Features</h1>
    <ul>
    <li>balancer/ringhash: move LB policy from xds/internal to exported path to 
facilitate use without xds (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8249";>#8249</a>)</li>
    <li>xds: enable least request LB policy by default. It can be disabled by 
setting <code>GRPC_EXPERIMENTAL_ENABLE_LEAST_REQUEST=false</code> in your 
environment. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8253";>#8253</a>)</li>
    <li>grpc: add a <code>CallAuthority</code> Call Option that can be used to 
overwrite the http <code>:authority</code> header on per-RPC basis. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8068";>#8068</a>)</li>
    <li>stats/opentelemetry: add trace event for name resolution delay. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8074";>#8074</a>)</li>
    <li>health: added <code>List</code> method to gRPC Health service. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8155";>#8155</a>)
    <ul>
    <li>Special Thanks: <a 
href="https://github.com/marcoshuck";><code>​marcoshuck</code></a></li>
    </ul>
    </li>
    <li>ringhash: implement features from gRFC A76. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8159";>#8159</a>)</li>
    <li>xds: add functionality to support SPIFFE Bundle Maps as roots of trust 
in XDS which can be enabled by setting 
<code>GRPC_EXPERIMENTAL_XDS_MTLS_SPIFFE=true</code>. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8167";>#8167</a>, <a 
href="https://redirect.github.com/grpc/grpc-go/issues/8180";>#8180</a>, <a 
href="https://redirect.github.com/grpc/grpc-go/issues/8229";>#8229</a>, <a 
href="https://redirect.github.com/grpc/grpc-go/issues/8343";>#8343</a>)</li>
    </ul>
    <h1>Bug Fixes</h1>
    <ul>
    <li>xds: locality ID metric label is changed to make it consistent with <a 
href="https://github.com/grpc/proposal/blob/master/A78-grpc-metrics-wrr-pf-xds.md#optional-xds-locality-label";>gRFC
 A78</a>. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8256";>#8256</a>)</li>
    <li>client: fail RPCs on the client when using extremely short contexts 
that expire before the <code>grpc-timeout</code> header is created. (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8312";>#8312</a>)</li>
    </ul>
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a 
href="https://github.com/grpc/grpc-go/commit/e9e00cb28e350d6440145d883d1d6cf675f3c0f3";><code>e9e00cb</code></a>
 Change version to 1.74.2 (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8470";>#8470</a>)</li>
    <li><a 
href="https://github.com/grpc/grpc-go/commit/bd7cb0a95b518e3f987cccbc44b4ba9a0e51eb80";><code>bd7cb0a</code></a>
 Change version to 1.74.2-dev (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8461";>#8461</a>)</li>
    <li><a 
href="https://github.com/grpc/grpc-go/commit/002a22c03ed5cb1068ab800fc329c1f199037b63";><code>002a22c</code></a>
 Change version to 1.74.1 (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8455";>#8455</a>)</li>
    <li><a 
href="https://github.com/grpc/grpc-go/commit/6e8e7e48d13e1891e0f3b5df22f16746edb6e788";><code>6e8e7e4</code></a>
 Retract v1.74.0 and v1.74.1 (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8457";>#8457</a>)</li>
    <li><a 
href="https://github.com/grpc/grpc-go/commit/48c9e4d1eee9b075a1855dadc24f66157dbf60b3";><code>48c9e4d</code></a>
 Change version to 1.74.1-dev (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8408";>#8408</a>)</li>
    <li><a 
href="https://github.com/grpc/grpc-go/commit/b8b6cffbb2a9c5dc41fd7ab902b4a0cc37c05b19";><code>b8b6cff</code></a>
 Change version to 1.74.0 (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8407";>#8407</a>)</li>
    <li><a 
href="https://github.com/grpc/grpc-go/commit/077e2c37bd9f14b1300e3d1feedd431d105895c0";><code>077e2c3</code></a>
 Cherry-pick <a 
href="https://redirect.github.com/grpc/grpc-go/issues/8411";>#8411</a>, <a 
href="https://redirect.github.com/grpc/grpc-go/issues/8419";>#8419</a>, <a 
href="https://redirect.github.com/grpc/grpc-go/issues/8422";>#8422</a>, <a 
href="https://redirect.github.com/grpc/grpc-go/issues/8445";>#8445</a> and <a 
href="https://redirect.github.com/grpc/grpc-go/issues/84 [...]
    <li><a 
href="https://github.com/grpc/grpc-go/commit/b34f845d7056a2e052ddb4e99d9d691bf69159bf";><code>b34f845</code></a>
 server: allow 0s grpc-timeout header values, as java is known to be able to 
s...</li>
    <li><a 
href="https://github.com/grpc/grpc-go/commit/1787f9427568898e905841f40798bbb78c8dd52c";><code>1787f94</code></a>
 xdsclient: export genericResourceTypeDecoder (<a 
href="https://redirect.github.com/grpc/grpc-go/issues/8406";>#8406</a>)</li>
    <li><a 
href="https://github.com/grpc/grpc-go/commit/15299ccca32bba47c533b0a8e8ba2564a29d71db";><code>15299cc</code></a>
 xdsclient: make a function to return the supported resource type 
implementati...</li>
    <li>Additional commits viewable in <a 
href="https://github.com/grpc/grpc-go/compare/v1.72.2...v1.74.2";>compare 
view</a></li>
    </ul>
    </details>
    <br />
    
    [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/grpc&package-manager=go_modules&previous-version=1.72.2&new-version=1.74.2)](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 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 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>
    
    Closes #158 from 
dependabot[bot]/dependabot/go_modules/google.golang.org/grpc-1.74.2.
    
    Authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
    Signed-off-by: Martin Grund <martin.gr...@databricks.com>
---
 go.mod | 12 ++++++------
 go.sum | 52 ++++++++++++++++++++++++++--------------------------
 2 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/go.mod b/go.mod
index b17b455..9519fac 100644
--- a/go.mod
+++ b/go.mod
@@ -22,17 +22,17 @@ require (
        github.com/go-errors/errors v1.5.1
        github.com/google/uuid v1.6.0
        github.com/stretchr/testify v1.10.0
-       google.golang.org/genproto/googleapis/rpc 
v0.0.0-20250218202821-56aae31c358a
-       google.golang.org/grpc v1.72.2
+       google.golang.org/genproto/googleapis/rpc 
v0.0.0-20250528174236-200df99c418a
+       google.golang.org/grpc v1.74.2
        google.golang.org/protobuf v1.36.6
 )
 
 require (
-       cloud.google.com/go/compute/metadata v0.6.0 // indirect
+       cloud.google.com/go/compute/metadata v0.7.0 // indirect
        github.com/kr/pretty v0.3.0 // indirect
        golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
-       golang.org/x/net v0.39.0 // indirect
-       golang.org/x/sync v0.13.0 // indirect
+       golang.org/x/net v0.40.0 // indirect
+       golang.org/x/sync v0.14.0 // indirect
        gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
 )
 
@@ -48,7 +48,7 @@ require (
        golang.org/x/mod v0.24.0 // indirect
        golang.org/x/oauth2 v0.30.0
        golang.org/x/sys v0.33.0 // indirect
-       golang.org/x/text v0.24.0 // indirect
+       golang.org/x/text v0.25.0 // indirect
        golang.org/x/tools v0.32.0 // indirect
        golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
        gopkg.in/yaml.v3 v3.0.1 // indirect
diff --git a/go.sum b/go.sum
index d3b571f..f448691 100644
--- a/go.sum
+++ b/go.sum
@@ -1,5 +1,5 @@
-cloud.google.com/go/compute/metadata v0.6.0 
h1:A6hENjEsCDtC1k8byVsgwvVcioamEHvZ4j01OwKxG9I=
-cloud.google.com/go/compute/metadata v0.6.0/go.mod 
h1:FjyFAW1MW0C203CEOMDTu3Dk1FlqW3Rga40jzHL4hfg=
+cloud.google.com/go/compute/metadata v0.7.0 
h1:PBWF+iiAerVNe8UCHxdOt6eHLVc3ydFeOCw78U8ytSU=
+cloud.google.com/go/compute/metadata v0.7.0/go.mod 
h1:j5MvL9PprKL39t166CoB1uVHfQMs4tFQZZcKwksXUjo=
 github.com/andybalholm/brotli v1.1.1 
h1:PR2pgnyFznKEugtsUo0xLdDop5SKXd5Qf5ysW+7XdTA=
 github.com/andybalholm/brotli v1.1.1/go.mod 
h1:05ib4cKhjx3OQYUY22hTVd34Bc8upXjOLL2rKwwZBoA=
 github.com/apache/arrow-go/v18 v18.3.0 
h1:Xq4A6dZj9Nu33sqZibzn012LNnewkTUlfKVUFD/RX/I=
@@ -11,8 +11,8 @@ github.com/davecgh/go-spew v1.1.1 
h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
 github.com/davecgh/go-spew v1.1.1/go.mod 
h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
 github.com/go-errors/errors v1.5.1 
h1:ZwEMSLRCapFLflTpT7NKaAc7ukJ8ZPEjzlxt8rPN8bk=
 github.com/go-errors/errors v1.5.1/go.mod 
h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og=
-github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
-github.com/go-logr/logr v1.4.2/go.mod 
h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
+github.com/go-logr/logr v1.4.3 h1:CjnDlHq8ikf6E492q6eKboGOC0T8CDaOvkHCIg8idEI=
+github.com/go-logr/logr v1.4.3/go.mod 
h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
 github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=
 github.com/go-logr/stdr v1.2.2/go.mod 
h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE=
 github.com/goccy/go-json v0.10.5 
h1:Fq85nIqj+gXn/S5ahsiTlK3TmC85qgirsdTP/+DeaC4=
@@ -23,8 +23,8 @@ github.com/golang/snappy v1.0.0 
h1:Oy607GVXHs7RtbggtPBnr2RmDArIsAefDwvrdWvRhGs=
 github.com/golang/snappy v1.0.0/go.mod 
h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
 github.com/google/flatbuffers v25.2.10+incompatible 
h1:F3vclr7C3HpB1k9mxCGRMXq6FdUalZ6H/pNX4FP1v0Q=
 github.com/google/flatbuffers v25.2.10+incompatible/go.mod 
h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8=
-github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
-github.com/google/go-cmp v0.6.0/go.mod 
h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
+github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
+github.com/google/go-cmp v0.7.0/go.mod 
h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
 github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
 github.com/google/uuid v1.6.0/go.mod 
h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
 github.com/klauspost/asmfmt v1.3.2 
h1:4Ri7ox3EwapiOjCki+hw14RyKk201CN4rzyCJRFLpK4=
@@ -59,40 +59,40 @@ github.com/zeebo/xxh3 v1.0.2 
h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0=
 github.com/zeebo/xxh3 v1.0.2/go.mod 
h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA=
 go.opentelemetry.io/auto/sdk v1.1.0 
h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA=
 go.opentelemetry.io/auto/sdk v1.1.0/go.mod 
h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A=
-go.opentelemetry.io/otel v1.34.0 
h1:zRLXxLCgL1WyKsPVrgbSdMN4c0FMkDAskSTQP+0hdUY=
-go.opentelemetry.io/otel v1.34.0/go.mod 
h1:OWFPOQ+h4G8xpyjgqo4SxJYdDQ/qmRH+wivy7zzx9oI=
-go.opentelemetry.io/otel/metric v1.34.0 
h1:+eTR3U0MyfWjRDhmFMxe2SsW64QrZ84AOhvqS7Y+PoQ=
-go.opentelemetry.io/otel/metric v1.34.0/go.mod 
h1:CEDrp0fy2D0MvkXE+dPV7cMi8tWZwX3dmaIhwPOaqHE=
-go.opentelemetry.io/otel/sdk v1.34.0 
h1:95zS4k/2GOy069d321O8jWgYsW3MzVV+KuSPKp7Wr1A=
-go.opentelemetry.io/otel/sdk v1.34.0/go.mod 
h1:0e/pNiaMAqaykJGKbi+tSjWfNNHMTxoC9qANsCzbyxU=
-go.opentelemetry.io/otel/sdk/metric v1.34.0 
h1:5CeK9ujjbFVL5c1PhLuStg1wxA7vQv7ce1EK0Gyvahk=
-go.opentelemetry.io/otel/sdk/metric v1.34.0/go.mod 
h1:jQ/r8Ze28zRKoNRdkjCZxfs6YvBTG1+YIqyFVFYec5w=
-go.opentelemetry.io/otel/trace v1.34.0 
h1:+ouXS2V8Rd4hp4580a8q23bg0azF2nI8cqLYnC8mh/k=
-go.opentelemetry.io/otel/trace v1.34.0/go.mod 
h1:Svm7lSjQD7kG7KJ/MUHPVXSDGz2OX4h0M2jHBhmSfRE=
+go.opentelemetry.io/otel v1.36.0 
h1:UumtzIklRBY6cI/lllNZlALOF5nNIzJVb16APdvgTXg=
+go.opentelemetry.io/otel v1.36.0/go.mod 
h1:/TcFMXYjyRNh8khOAO9ybYkqaDBb/70aVwkNML4pP8E=
+go.opentelemetry.io/otel/metric v1.36.0 
h1:MoWPKVhQvJ+eeXWHFBOPoBOi20jh6Iq2CcCREuTYufE=
+go.opentelemetry.io/otel/metric v1.36.0/go.mod 
h1:zC7Ks+yeyJt4xig9DEw9kuUFe5C3zLbVjV2PzT6qzbs=
+go.opentelemetry.io/otel/sdk v1.36.0 
h1:b6SYIuLRs88ztox4EyrvRti80uXIFy+Sqzoh9kFULbs=
+go.opentelemetry.io/otel/sdk v1.36.0/go.mod 
h1:+lC+mTgD+MUWfjJubi2vvXWcVxyr9rmlshZni72pXeY=
+go.opentelemetry.io/otel/sdk/metric v1.36.0 
h1:r0ntwwGosWGaa0CrSt8cuNuTcccMXERFwHX4dThiPis=
+go.opentelemetry.io/otel/sdk/metric v1.36.0/go.mod 
h1:qTNOhFDfKRwX0yXOqJYegL5WRaW376QbB7P4Pb0qva4=
+go.opentelemetry.io/otel/trace v1.36.0 
h1:ahxWNuqZjpdiFAyrIoQ4GIiAIhxAunQR6MUoKrsNd4w=
+go.opentelemetry.io/otel/trace v1.36.0/go.mod 
h1:gQ+OnDZzrybY4k4seLzPAWNwVBBVlF2szhehOBB/tGA=
 golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 
h1:e66Fs6Z+fZTbFBAxKfP3PALWBtpfqks2bwGcexMxgtk=
 golang.org/x/exp v0.0.0-20240909161429-701f63a606c0/go.mod 
h1:2TbTHSBQa924w8M6Xs1QcRcFwyucIwBGpK1p2f1YFFY=
 golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU=
 golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
-golang.org/x/net v0.39.0 h1:ZCu7HMWDxpXpaiKdhzIfaltL9Lp31x/3fCP11bc6/fY=
-golang.org/x/net v0.39.0/go.mod h1:X7NRbYVEA+ewNkCNyJ513WmMdQ3BineSwVtN2zD/d+E=
+golang.org/x/net v0.40.0 h1:79Xs7wF06Gbdcg4kdCCIQArK11Z1hr5POQ6+fIYHNuY=
+golang.org/x/net v0.40.0/go.mod h1:y0hY0exeL2Pku80/zKK7tpntoX23cqL3Oa6njdgRtds=
 golang.org/x/oauth2 v0.30.0 h1:dnDm7JmhM45NNpd8FDDeLhK6FwqbOf4MLCM9zb1BOHI=
 golang.org/x/oauth2 v0.30.0/go.mod 
h1:B++QgG3ZKulg6sRPGD/mqlHQs5rB3Ml9erfeDY7xKlU=
-golang.org/x/sync v0.13.0 h1:AauUjRAJ9OSnvULf/ARrrVywoJDy0YS2AwQ98I37610=
-golang.org/x/sync v0.13.0/go.mod 
h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
+golang.org/x/sync v0.14.0 h1:woo0S4Yywslg6hp4eUFjTVOyKt0RookbpAHG4c1HmhQ=
+golang.org/x/sync v0.14.0/go.mod 
h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
 golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
 golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
-golang.org/x/text v0.24.0 h1:dd5Bzh4yt5KYA8f9CJHCP4FB4D51c2c6JvN37xJJkJ0=
-golang.org/x/text v0.24.0/go.mod 
h1:L8rBsPeo2pSS+xqN0d5u2ikmjtmoJbDBT1b7nHvFCdU=
+golang.org/x/text v0.25.0 h1:qVyWApTSYLk/drJRO5mDlNYskwQznZmkpV2c8q9zls4=
+golang.org/x/text v0.25.0/go.mod 
h1:WEdwpYrmk1qmdHvhkSTNPm3app7v4rsT8F2UD6+VHIA=
 golang.org/x/tools v0.32.0 h1:Q7N1vhpkQv7ybVzLFtTjvQya2ewbwNDZzUgfXGqtMWU=
 golang.org/x/tools v0.32.0/go.mod 
h1:ZxrU41P/wAbZD8EDa6dDCa6XfpkhJ7HFMjHJXfBDu8s=
 golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da 
h1:noIWHXmPHxILtqtCOPIhSt0ABwskkZKjD3bXGnZGpNY=
 golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da/go.mod 
h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90=
 gonum.org/v1/gonum v0.16.0 h1:5+ul4Swaf3ESvrOnidPp4GZbzf0mxVQpDCYUQE7OJfk=
 gonum.org/v1/gonum v0.16.0/go.mod 
h1:fef3am4MQ93R2HHpKnLk4/Tbh/s0+wqD5nfa6Pnwy4E=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a 
h1:51aaUVRocpvUOSQKM6Q7VuoaktNIaMCLuhZB6DKksq4=
-google.golang.org/genproto/googleapis/rpc 
v0.0.0-20250218202821-56aae31c358a/go.mod 
h1:uRxBH1mhmO8PGhU89cMcHaXKZqO+OfakD8QQO0oYwlQ=
-google.golang.org/grpc v1.72.2 h1:TdbGzwb82ty4OusHWepvFWGLgIbNo1/SUynEN0ssqv8=
-google.golang.org/grpc v1.72.2/go.mod 
h1:wH5Aktxcg25y1I3w7H69nHfXdOG3UiadoBtjh3izSDM=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a 
h1:v2PbRU4K3llS09c7zodFpNePeamkAwG3mPrAery9VeE=
+google.golang.org/genproto/googleapis/rpc 
v0.0.0-20250528174236-200df99c418a/go.mod 
h1:qQ0YXyHHx3XkvlzUtpXDkS29lDSafHMZBAZDc03LQ3A=
+google.golang.org/grpc v1.74.2 h1:WoosgB65DlWVC9FqI82dGsZhWFNBSLjQ84bjROOpMu4=
+google.golang.org/grpc v1.74.2/go.mod 
h1:CtQ+BGjaAIXHs/5YS3i473GqwBBa1zGQNevxdeBEXrM=
 google.golang.org/protobuf v1.36.6 
h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY=
 google.golang.org/protobuf v1.36.6/go.mod 
h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY=
 gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod 
h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to