Skip to content

Commit 3565f7c

Browse files
build(deps): bump github.com/klauspost/compress from 1.18.1 to 1.18.2 (#1957)
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 &quot;retracted&quot; 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 /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/klauspost/compress&package-manager=go_modules&previous-version=1.18.1&new-version=1.18.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> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ed68d95 commit 3565f7c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/hashicorp/go-cleanhttp v0.5.2
1414
github.com/hashicorp/go-retryablehttp v0.7.8
1515
github.com/invopop/jsonschema v0.13.0
16-
github.com/klauspost/compress v1.18.1
16+
github.com/klauspost/compress v1.18.2
1717
github.com/klauspost/pgzip v1.2.6
1818
github.com/package-url/packageurl-go v0.1.3
1919
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ github.com/kelseyhightower/envconfig v1.4.0 h1:Im6hONhd3pLkfDFsbRgu68RDNkGF1r3dv
155155
github.com/kelseyhightower/envconfig v1.4.0/go.mod h1:cccZRl6mQpaq41TPp5QxidR+Sa3axMbJDNb//FQX6Gg=
156156
github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4=
157157
github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM=
158-
github.com/klauspost/compress v1.18.1 h1:bcSGx7UbpBqMChDtsF28Lw6v/G94LPrrbMbdC3JH2co=
159-
github.com/klauspost/compress v1.18.1/go.mod h1:ZQFFVG+MdnR0P+l6wpXgIL4NTtwiKIdBnrBd8Nrxr+0=
158+
github.com/klauspost/compress v1.18.2 h1:iiPHWW0YrcFgpBYhsA6D1+fqHssJscY/Tm/y2Uqnapk=
159+
github.com/klauspost/compress v1.18.2/go.mod h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4=
160160
github.com/klauspost/pgzip v1.2.6 h1:8RXeL5crjEUFnR2/Sn6GJNWtSQ3Dk8pq4CL3jvdDyjU=
161161
github.com/klauspost/pgzip v1.2.6/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs=
162162
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=

0 commit comments

Comments
 (0)