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 f0761d04 chore: Bump github.com/klauspost/compress from 1.18.1 to
1.18.2 (#588)
f0761d04 is described below
commit f0761d04407725b88f3cd3b034396f196d4f61c8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Dec 2 10:53:24 2025 -0500
chore: Bump github.com/klauspost/compress from 1.18.1 to 1.18.2 (#588)
Bumps
[github.com/klauspost/compress](https://github.com/klauspost/compress)
from 1.18.1 to 1.18.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/klauspost/compress/releases">github.com/klauspost/compress's
releases</a>.</em></p>
<blockquote>
<h2>v1.18.2</h2>
<h2>What's Changed</h2>
<ul>
<li>flate: Fix invalid encoding on level 9 with single value input by <a
href="https://github.com/klauspost"><code>@klauspost</code></a> in <a
href="https://redirect.github.com/klauspost/compress/pull/1115">klauspost/compress#1115</a></li>
<li>flate: reduce stateless allocations by <a
href="https://github.com/RXamzin"><code>@RXamzin</code></a> in <a
href="https://redirect.github.com/klauspost/compress/pull/1106">klauspost/compress#1106</a></li>
<li>build(deps): bump github/codeql-action from 3.30.5 to 4.31.2 in the
github-actions group by <a
href="https://github.com/dependabot"><code>@dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/klauspost/compress/pull/1111">klauspost/compress#1111</a></li>
</ul>
<p><code>v1.18.1</code> is marked "retracted" due to invalid
flate/zip/gzip encoding.</p>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/RXamzin"><code>@RXamzin</code></a> made
their first contribution in <a
href="https://redirect.github.com/klauspost/compress/pull/1106">klauspost/compress#1106</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/klauspost/compress/compare/v1.18.1...v1.18.2">https://github.com/klauspost/compress/compare/v1.18.1...v1.18.2</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/klauspost/compress/commit/444d5d9b74cdd224f607dea687edfc584fd493f6"><code>444d5d9</code></a>
Fix invalid encoding on level 9 with single value input (<a
href="https://redirect.github.com/klauspost/compress/issues/1115">#1115</a>)</li>
<li><a
href="https://github.com/klauspost/compress/commit/503c02816f2fbb1b1afa2de9c5e21146eb9aa812"><code>503c028</code></a>
build(deps): bump github/codeql-action in the github-actions group (<a
href="https://redirect.github.com/klauspost/compress/issues/1111">#1111</a>)</li>
<li><a
href="https://github.com/klauspost/compress/commit/701ca28bd550f622eb2dbccf0d7bd412ac41b0ad"><code>701ca28</code></a>
flate: reduce stateless allocations (<a
href="https://redirect.github.com/klauspost/compress/issues/1106">#1106</a>)</li>
<li><a
href="https://github.com/klauspost/compress/commit/e0b47ffa6861e3ce2ff3225f739ed234fb3df170"><code>e0b47ff</code></a>
Update changelog</li>
<li>See full diff in <a
href="https://github.com/klauspost/compress/compare/v1.18.1...v1.18.2">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 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>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
go.mod | 2 +-
go.sum | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/go.mod b/go.mod
index 65100e0e..411cb509 100644
--- a/go.mod
+++ b/go.mod
@@ -29,7 +29,7 @@ require (
github.com/google/uuid v1.6.0
github.com/hamba/avro/v2 v2.30.0
github.com/klauspost/asmfmt v1.3.2
- github.com/klauspost/compress v1.18.1
+ github.com/klauspost/compress v1.18.2
github.com/klauspost/cpuid/v2 v2.3.0
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3
diff --git a/go.sum b/go.sum
index 0778187b..d872d3af 100644
--- a/go.sum
+++ b/go.sum
@@ -77,8 +77,8 @@ github.com/json-iterator/go v1.1.12
h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnr
github.com/json-iterator/go v1.1.12/go.mod
h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
github.com/klauspost/asmfmt v1.3.2
h1:4Ri7ox3EwapiOjCki+hw14RyKk201CN4rzyCJRFLpK4=
github.com/klauspost/asmfmt v1.3.2/go.mod
h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE=
-github.com/klauspost/compress v1.18.1
h1:bcSGx7UbpBqMChDtsF28Lw6v/G94LPrrbMbdC3JH2co=
-github.com/klauspost/compress v1.18.1/go.mod
h1:ZQFFVG+MdnR0P+l6wpXgIL4NTtwiKIdBnrBd8Nrxr+0=
+github.com/klauspost/compress v1.18.2
h1:iiPHWW0YrcFgpBYhsA6D1+fqHssJscY/Tm/y2Uqnapk=
+github.com/klauspost/compress v1.18.2/go.mod
h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4=
github.com/klauspost/cpuid/v2 v2.0.9/go.mod
h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
github.com/klauspost/cpuid/v2 v2.0.10/go.mod
h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c=
github.com/klauspost/cpuid/v2 v2.0.12/go.mod
h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c=