Auto merge of #29029 - servo:dependabot/cargo/tiff-0.7.4, r=jdm

chore(deps): bump tiff from 0.7.3 to 0.7.4

Bumps [tiff](https://github.com/image-rs/image-tiff) from 0.7.3 to 0.7.4.
<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.7.4</h1>
<p>New features:</p>
<ul>
<li>Creating an encoder for invalid, zero-sized images is now rejected.</li>
</ul>
<p>Fixes:</p>
<ul>
<li>Fix panic, in a case where decoding jpeg encoded images did not expect the
jpeg decoder to return an error.</li>
<li>Fix panic by validating <code>rows_per_strip</code> better, fixing a division-by-zero.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="d38b65eeb2"><code>d38b65e</code></a> Changelog for 0.7.4</li>
<li><a href="ee27553cf6"><code>ee27553</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image-tiff/issues/180">#180</a> from luksab/patch-1</li>
<li><a href="5a809a728e"><code>5a809a7</code></a> Update link to the TIFF specification</li>
<li><a href="b0b99fc536"><code>b0b99fc</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image-tiff/issues/173">#173</a> from micahsnyder/issue-168-handle-jpeg-decoder-errors</li>
<li><a href="3bce92781c"><code>3bce927</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image-tiff/issues/176">#176</a> from fintelia/zero-size</li>
<li><a href="907bbee576"><code>907bbee</code></a> cargo fmt</li>
<li><a href="fc0dafcde2"><code>fc0dafc</code></a> Change error kind</li>
<li><a href="945a02d1e1"><code>945a02d</code></a> Format</li>
<li><a href="ef3294d1fe"><code>ef3294d</code></a> Return an error for zero-size images</li>
<li><a href="0311402999"><code>0311402</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image-tiff/issues/177">#177</a> from fintelia/fix-warnings</li>
<li>Additional commits viewable in <a href="https://github.com/image-rs/image-tiff/compare/v0.7.3...v0.7.4">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.7.3&new-version=0.7.4)](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-11-01 00:52:27 -04:00 committed by GitHub
commit 4d3d3ca755
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Cargo.lock generated
View file

@ -6587,9 +6587,9 @@ checksum = "7572415bd688d401c52f6e36f4c8e805b9ae1622619303b9fa835d531db0acae"
[[package]]
name = "tiff"
version = "0.7.3"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7259662e32d1e219321eb309d5f9d898b779769d81b76e762c07c8e5d38fcb65"
checksum = "9f71e422515e83e3ab8a03d4781d05ebf864fc61f4546e6ecffa58cbd34181a0"
dependencies = [
"flate2",
"jpeg-decoder",