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-go.git
The following commit(s) were added to refs/heads/main by this push:
new c21d503d chore: Bump github.com/twmb/avro from 1.7.2 to 1.8.0 (#1209)
c21d503d is described below
commit c21d503da7b9e9eb4e655e676ee9b84a872def67
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Aug 19 13:47:24 2026 -0400
chore: Bump github.com/twmb/avro from 1.7.2 to 1.8.0 (#1209)
Bumps [github.com/twmb/avro](https://github.com/twmb/avro) from 1.7.2 to
1.8.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/twmb/avro/commit/9e632beebdf58de2bf38b1833235029b204712bc"><code>9e632be</code></a>
Merge pull request <a
href="https://redirect.github.com/twmb/avro/issues/55">#55</a> from
twmb/drop-timing</li>
<li><a
href="https://github.com/twmb/avro/commit/a1bb9455c7f9dea293fdcba8b72699715002ece4"><code>a1bb945</code></a>
tests: the external cost cell is rowed, not exempted</li>
<li><a
href="https://github.com/twmb/avro/commit/587c5c85b49efc50e854b3dab9b1ab798f6bc74d"><code>587c5c8</code></a>
tests: the watchdogs stop grading a call that returned</li>
<li><a
href="https://github.com/twmb/avro/commit/9625650efc17e644d6395dcbc63cffc78713163b"><code>9625650</code></a>
tests: the battery headers stop promising a cost</li>
<li><a
href="https://github.com/twmb/avro/commit/5423c0113b8bb6b2525e6553989615d9a5cf0529"><code>5423c01</code></a>
tests: the external cells drop their inline stopwatches</li>
<li><a
href="https://github.com/twmb/avro/commit/23fa8aa7b4c87b032a9867e21813d2db192b4c27"><code>23fa8aa</code></a>
tests: the magnitude driver drives, it does not measure</li>
<li><a
href="https://github.com/twmb/avro/commit/68aedbdbb8e9c1e688c8babceda7bf2bb001098b"><code>68aedbd</code></a>
tests: the breadth and chain cells assert acceptance, not a
deadline</li>
<li><a
href="https://github.com/twmb/avro/commit/4e94ec53bb073dfec1935368cbf650be036c6651"><code>4e94ec5</code></a>
Merge pull request <a
href="https://redirect.github.com/twmb/avro/issues/53">#53</a> from
twmb/redundant-state</li>
<li><a
href="https://github.com/twmb/avro/commit/7285762fa074075b9e534df0aab3e8d3295e8c48"><code>7285762</code></a>
Merge pull request <a
href="https://redirect.github.com/twmb/avro/issues/52">#52</a> from
twmb/shared-decoder</li>
<li><a
href="https://github.com/twmb/avro/commit/4a01b67bedb1631924f8311b667ead9e060b49a5"><code>4a01b67</code></a>
deser: correct what a union's logical tag table holds</li>
<li>Additional commits viewable in <a
href="https://github.com/twmb/avro/compare/v1.7.2...v1.8.0">compare
view</a></li>
</ul>
</details>
<br />
[](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>
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matt Topol <[email protected]>
---
arrow/avro/schema.go | 4 ++--
go.mod | 2 +-
go.sum | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/arrow/avro/schema.go b/arrow/avro/schema.go
index 4e1e29d7..39053a4c 100644
--- a/arrow/avro/schema.go
+++ b/arrow/avro/schema.go
@@ -183,8 +183,8 @@ func arrowSchemaFromAvroInternal(schema *avro.Schema) (s
*arrow.Schema, err erro
panic(fmt.Errorf("avro schema root must be a record, got type
%q", root.Type))
}
n := newSchemaNode()
- n.node = root
- c := n.newChild(root.Name, root)
+ n.node = *root
+ c := n.newChild(root.Name, *root)
arrowSchemafromAvro(c)
var fields []arrow.Field
for _, g := range c.children() {
diff --git a/go.mod b/go.mod
index 600b85f5..f46bdecb 100644
--- a/go.mod
+++ b/go.mod
@@ -43,7 +43,7 @@ require (
github.com/substrait-io/substrait-go/v8 v8.1.1
github.com/substrait-io/substrait-protobuf/go v0.85.0
github.com/tidwall/sjson v1.2.5
- github.com/twmb/avro v1.7.2
+ github.com/twmb/avro v1.8.0
github.com/zeebo/xxh3 v1.1.0
golang.org/x/exp v0.0.0-20260112195511-716be5621a96
golang.org/x/sync v0.22.0
diff --git a/go.sum b/go.sum
index a6263ef8..cf70ac8d 100644
--- a/go.sum
+++ b/go.sum
@@ -160,8 +160,8 @@ github.com/tidwall/pretty v1.2.0
h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs=
github.com/tidwall/pretty v1.2.0/go.mod
h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
github.com/tidwall/sjson v1.2.5/go.mod
h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28=
-github.com/twmb/avro v1.7.2 h1:cmrEBRSbELRqsg/dRkQvVWuOaR2EfGifHIt/2iJ9lfI=
-github.com/twmb/avro v1.7.2/go.mod
h1:X0fT1dY2xcbV4YuCE4mYro+qljHl4kUF5uA/2z1rgSk=
+github.com/twmb/avro v1.8.0 h1:UMWLg+nH4P3yad5Om7yFSohYLy2RG1s7BcFFiOvmK9Q=
+github.com/twmb/avro v1.8.0/go.mod
h1:X0fT1dY2xcbV4YuCE4mYro+qljHl4kUF5uA/2z1rgSk=
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778/go.mod
h1:2MuV+tbUrU1zIOPMxZ5EncGwgmMJsa+9ucAQZXxsObs=
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e
h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no=
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e/go.mod
h1:RbqR21r5mrJuqunuUZ/Dhy/avygyECGrLceyNeo4LiM=