Auto merge of #29133 - servo:dependabot/cargo/tiff-0.8.1, r=jdm

Bump tiff from 0.8.0 to 0.8.1

Bumps [tiff](https://github.com/image-rs/image-tiff) from 0.8.0 to 0.8.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/image-rs/image-tiff/blob/master/CHANGES.md">tiff's changelog</a>.</em></p>
<blockquote>
<h1>Version 0.8.1</h1>
<p>Changes:</p>
<ul>
<li>The jpeg decoder gained to ability to utilize the Photometric Interpretation
directly instead of relying on a custom APP segment.</li>
</ul>
<p>Fixes:</p>
<ul>
<li>A spurious error within the PackBits decoder lead to the incorrect results
(wrong bits or errors), based on the maximum size of reads from the
underlying reader.</li>
<li>Removed a panic path in jpeg decoding, when a feature such as photometric
interpretation is not supported. An error is returned instead.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="4dea7c4c81"><code>4dea7c4</code></a> Changelog and metadata for 0.8.1</li>
<li><a href="aa42fcb1bb"><code>aa42fcb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image-tiff/issues/193">#193</a> from image-rs/issue-192-desync-packbits</li>
<li><a href="1f7b25ef55"><code>1f7b25e</code></a> Fix read in packbits decoder</li>
<li><a href="6c65e66440"><code>6c65e66</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image-tiff/issues/170">#170</a> from AlanRace/jpeg-unwrap</li>
<li><a href="a733ff13d9"><code>a733ff1</code></a> Changed to using private constructor rather than From&lt;&gt; JpegDecoderError</li>
<li><a href="b1cd459330"><code>b1cd459</code></a> Updated error handling</li>
<li><a href="4f1c88e35f"><code>4f1c88e</code></a> Added unsupported error for interpretations not supported by JPEG</li>
<li><a href="7307e96782"><code>7307e96</code></a> Removed <code>unwrap</code> and set colour transform with Jpeg compressed tiffs</li>
<li><a href="9333d99c92"><code>9333d99</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image-tiff/issues/187">#187</a> from image-rs/release-0.8.0</li>
<li>See full diff in <a href="https://github.com/image-rs/image-tiff/compare/v0.8.0...v0.8.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tiff&package-manager=cargo&previous-version=0.8.0&new-version=0.8.1)](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 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>
This commit is contained in:
bors-servo 2022-12-12 12:38:56 -05:00 committed by GitHub
commit 8c4846f282
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Cargo.lock generated
View file

@ -6574,9 +6574,9 @@ checksum = "7572415bd688d401c52f6e36f4c8e805b9ae1622619303b9fa835d531db0acae"
[[package]] [[package]]
name = "tiff" name = "tiff"
version = "0.8.0" version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f17def29300a156c19ae30814710d9c63cd50288a49c6fd3a10ccfbe4cf886fd" checksum = "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471"
dependencies = [ dependencies = [
"flate2", "flate2",
"jpeg-decoder", "jpeg-decoder",