Skip to content

Commit

Permalink
Bump github.com/andybalholm/brotli from 1.0.6 to 1.1.0 (#357)
Browse files Browse the repository at this point in the history
Bumps
[github.com/andybalholm/brotli](https://github.com/andybalholm/brotli)
from 1.0.6 to 1.1.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/andybalholm/brotli/commit/17e5901d050574f228e7d5a3f754a30a7cb55d55"><code>17e5901</code></a>
Make my matchfinder work more accessible.</li>
<li><a
href="https://github.com/andybalholm/brotli/commit/cf812c06f81910e3ae90490e622d9e35649e84eb"><code>cf812c0</code></a>
matchfinder: add M0</li>
<li><a
href="https://github.com/andybalholm/brotli/commit/1b6cf3696e719ad6494a1cfb3498b7cb9454350c"><code>1b6cf36</code></a>
matchfinder: remove MultiHash</li>
<li><a
href="https://github.com/andybalholm/brotli/commit/265f3afc2a20805dd16a7adee7eed6fc30a2b548"><code>265f3af</code></a>
matchfinder: penalize score for overlapping matches</li>
<li><a
href="https://github.com/andybalholm/brotli/commit/a8d524a96df6d1853526c1e953fc83fc5294f912"><code>a8d524a</code></a>
matchfinder: replace Score function with DistanceBitCost</li>
<li><a
href="https://github.com/andybalholm/brotli/commit/578645e154bc2f876fc6cdf5c7c4c7bd5036b25c"><code>578645e</code></a>
matchfinder: add MultiHash</li>
<li><a
href="https://github.com/andybalholm/brotli/commit/24b2bfad2d0c50a17d75dbb35e208adcbc1c4708"><code>24b2bfa</code></a>
matchfinder.M4: add Score function</li>
<li><a
href="https://github.com/andybalholm/brotli/commit/4a024e3eff5fe82fc6eb6dda0b8d0c4a3d5484ec"><code>4a024e3</code></a>
matchfinder.M4: add match chain</li>
<li><a
href="https://github.com/andybalholm/brotli/commit/3a1c5cd370951059b6490f869ebc1f16f4559c95"><code>3a1c5cd</code></a>
Fix typo in comment.</li>
<li><a
href="https://github.com/andybalholm/brotli/commit/0d2aef37af4839ea55889a491d417d9f54c8d268"><code>0d2aef3</code></a>
matchfinder.M4: factor out extendMatch2</li>
<li>Additional commits viewable in <a
href="https://github.com/andybalholm/brotli/compare/v1.0.6...v1.1.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/andybalholm/brotli&package-manager=go_modules&previous-version=1.0.6&new-version=1.1.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 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>
  • Loading branch information
dependabot[bot] authored Jan 12, 2024
1 parent ea1bea5 commit 9cf5a84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/raviqqe/muffet/v2
go 1.19

require (
github.com/andybalholm/brotli v1.0.6
github.com/andybalholm/brotli v1.1.0
github.com/bradleyjkemp/cupaloy v2.3.0+incompatible
github.com/jessevdk/go-flags v1.5.0
github.com/logrusorgru/aurora/v3 v3.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/andybalholm/brotli v1.0.6 h1:Yf9fFpf49Zrxb9NlQaluyE92/+X7UVHlhMNJN2sxfOI=
github.com/andybalholm/brotli v1.0.6/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M=
github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY=
github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A=
github.com/benbjohnson/clock v1.3.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
github.com/bradleyjkemp/cupaloy v2.3.0+incompatible h1:UafIjBvWQmS9i/xRg+CamMrnLTKNzo+bdmT/oH34c2Y=
Expand Down

0 comments on commit 9cf5a84

Please sign in to comment.