Skip to content

Commit fe0513c

Browse files
authored
Bump flate2 from 1.1.4 to 1.1.5 (#699)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [flate2](https://github.com/rust-lang/flate2-rs) from 1.1.4 to 1.1.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/flate2-rs/releases">flate2's releases</a>.</em></p> <blockquote> <h2>1.1.5</h2> <p>This bugfix release fixes <a href="https://redirect.github.com/rust-lang/flate2-rs/issues/508">#508</a>, as flush didn't always work anymore in conjunction with <code>miniz_oxide</code>.</p> <h2>What's Changed</h2> <ul> <li>Revert flush change by <a href="https://github.com/fintelia"><code>@​fintelia</code></a> in <a href="https://redirect.github.com/rust-lang/flate2-rs/pull/509">rust-lang/flate2-rs#509</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/rust-lang/flate2-rs/compare/1.1.4...1.1.5">https://github.com/rust-lang/flate2-rs/compare/1.1.4...1.1.5</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/flate2-rs/commit/2661fbb3107a5489ad8d2315049d4d1a295f130b"><code>2661fbb</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/flate2-rs/issues/509">#509</a> from fintelia/revert-flush-change</li> <li><a href="https://github.com/rust-lang/flate2-rs/commit/bc36cf4af084b0da8b8fe4e9ef2e4ce8c903ba63"><code>bc36cf4</code></a> Bump patch version</li> <li><a href="https://github.com/rust-lang/flate2-rs/commit/4341fe263c606b61b6b4365c3255463446ecbe71"><code>4341fe2</code></a> Revert &quot;Use partial flushes with miniz_oxide backend&quot;</li> <li>See full diff in <a href="https://github.com/rust-lang/flate2-rs/compare/1.1.4...1.1.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=flate2&package-manager=cargo&previous-version=1.1.4&new-version=1.1.5)](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>
2 parents feb78c9 + adfaced commit fe0513c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

samply/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ tempfile = "3.13"
3434
uuid = { version = "1.11", features = ["v4"] }
3535
percent-encoding = "2.1.0"
3636
libc = "0.2"
37-
flate2 = "1.0"
37+
flate2 = "1.1"
3838
opener = { version = "0.8", default-features = false }
3939
rand = "0.9"
4040
nix-base32 = "0.2.0"
@@ -64,7 +64,7 @@ crossbeam-channel = "0.5.15"
6464

6565
mach2 = "0.5"
6666
lazy_static = "1.5.0"
67-
flate2 = "1.0"
67+
flate2 = "1.1"
6868
sysctl = "0.7.1"
6969
plist = "1.7.0"
7070

tools/benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ anyhow = "1"
1818
tempfile = "3.10.1"
1919
futures = "0.3.5"
2020
cab = "0.6.0"
21-
flate2 = "1.0"
21+
flate2 = "1.1"
2222
tar = "0.4.41"
2323
bzip2 = "0.6.0"

wholesym/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ core-foundation = "0.10"
5959
# So this is a (somewhat brittle) way to turn on the zlib-rs feature in
6060
# async-compression's use of flate2.
6161
[dependencies.flate2]
62-
version = "1.0.17"
62+
version = "1.1.5"
6363
features = ["zlib-rs"]
6464

6565
[dev-dependencies]

0 commit comments

Comments
 (0)