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

zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 9b1d7d3  build(deps): bump golang.org/x/net from 0.6.0 to 0.7.0 in 
/go/adbc (#470)
9b1d7d3 is described below

commit 9b1d7d3e01b006c0520e4948faaa2434ada48657
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Feb 20 19:53:06 2023 -0500

    build(deps): bump golang.org/x/net from 0.6.0 to 0.7.0 in /go/adbc (#470)
    
    Bumps [golang.org/x/net](https://github.com/golang/net) from 0.6.0 to
    0.7.0.
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    
href="https://github.com/golang/net/commit/8e2b117aee74f6b86c207a808b0255de45c0a18a";><code>8e2b117</code></a>
    http2/hpack: avoid quadratic complexity in hpack decoding</li>
    <li><a
    
href="https://github.com/golang/net/commit/547e7edf3873d6f3a9c093d3785f9e2289e00746";><code>547e7ed</code></a>
    http2: avoid referencing ResponseWrite.Write parameter after
    returning</li>
    <li><a
    
href="https://github.com/golang/net/commit/39940adcaaa73e661124cb80fb8dd57ea929dbaf";><code>39940ad</code></a>
    html: parse comments per HTML spec</li>
    <li>See full diff in <a
    href="https://github.com/golang/net/compare/v0.6.0...v0.7.0";>compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.6.0&new-version=0.7.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 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 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)
    - `@dependabot use these labels` will set the current labels as the
    default for future PRs for this repo and language
    - `@dependabot use these reviewers` will set the current reviewers as
    the default for future PRs for this repo and language
    - `@dependabot use these assignees` will set the current assignees as
    the default for future PRs for this repo and language
    - `@dependabot use this milestone` will set the current milestone as the
    default for future PRs for this repo and language
    
    You can disable automated security fix PRs for this repo from the
    [Security Alerts
    page](https://github.com/apache/arrow-adbc/network/alerts).
    
    </details>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 go/adbc/go.mod | 2 +-
 go/adbc/go.sum | 6 ++----
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/go/adbc/go.mod b/go/adbc/go.mod
index 7151e63..e284c6c 100644
--- a/go/adbc/go.mod
+++ b/go/adbc/go.mod
@@ -53,7 +53,7 @@ require (
        github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // 
indirect
        github.com/zeebo/xxh3 v1.0.2 // indirect
        golang.org/x/mod v0.8.0 // indirect
-       golang.org/x/net v0.6.0 // indirect
+       golang.org/x/net v0.7.0 // indirect
        golang.org/x/sys v0.5.0 // indirect
        golang.org/x/text v0.7.0 // indirect
        golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
diff --git a/go/adbc/go.sum b/go/adbc/go.sum
index 14dc7f0..1afbfe0 100644
--- a/go/adbc/go.sum
+++ b/go/adbc/go.sum
@@ -1,8 +1,6 @@
 github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c 
h1:RGWPOewvKIROun94nF7v2cua9qP+thov/7M50KEoeSU=
 github.com/andybalholm/brotli v1.0.4 
h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY3JY=
 github.com/andybalholm/brotli v1.0.4/go.mod 
h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
-github.com/apache/arrow/go/v12 v12.0.0-20230217185730-ae1f98f57f4b 
h1:hH2AUVUNqmQbRlbFOyolqFVhpnl3iZ9xie9OAhQYnyE=
-github.com/apache/arrow/go/v12 v12.0.0-20230217185730-ae1f98f57f4b/go.mod 
h1:qwJWRMGOu/SUTlFiQBgCjtOoxYqdG2KqXiDB3+e7BNA=
 github.com/apache/arrow/go/v12 v12.0.0-20230217202445-03463dec5f92 
h1:KIxA6iY3SPKpNxJMO/a8gTcvEvoNyxAtYBLGYZzloSU=
 github.com/apache/arrow/go/v12 v12.0.0-20230217202445-03463dec5f92/go.mod 
h1:qwJWRMGOu/SUTlFiQBgCjtOoxYqdG2KqXiDB3+e7BNA=
 github.com/apache/thrift v0.17.0 
h1:cMd2aj52n+8VoAtvSvLn4kDC3aZ6IAkBuqWQ2IDu7wo=
@@ -70,8 +68,8 @@ golang.org/x/exp v0.0.0-20230206171751-46f607a40771 
h1:xP7rWLUr1e1n2xkK5YB4LI0hP
 golang.org/x/exp v0.0.0-20230206171751-46f607a40771/go.mod 
h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
 golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8=
 golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
-golang.org/x/net v0.6.0 h1:L4ZwwTvKW9gr0ZMS1yrHD9GZhIuVjOBBnaKH+SPQK0Q=
-golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
+golang.org/x/net v0.7.0 h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g=
+golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
 golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o=
 golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod 
h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

Reply via email to