Bump image from 0.24.4 to 0.24.5
Bumps [image](https://github.com/image-rs/image) from 0.24.4 to 0.24.5.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/image-rs/image/blob/master/CHANGES.md">image's changelog</a>.</em></p>
<blockquote>
<h3>Version 0.24.5</h3>
<p>Structural changes:</p>
<ul>
<li>Increased the minimum supported Rust version (MSRV) to 1.61.</li>
<li>Increased the version requirement for the <code>tiff</code> crate to 0.8.0.</li>
<li>Increased the version requirement for the <code>jpeg</code> crate to 0.3.0.</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>The <code>as_rgb32f</code> function of <code>DynamicImage</code> is now correctly documented.</li>
<li>Fixed a crash when decoding ICO images. Added a regression test.</li>
<li>Fixed a panic when transforming webp images. Added a regression test.</li>
<li>Added a check to prevent integer overflow when calculating file size for BMP
images. The missing check could panic in debug mode or else set an incorrect
file size in release mode.</li>
<li>Upgraded the PNG image encoder to use the newer <code>PngEncoder::write_image</code>
instead of the deprecated <code>PngEncoder::encode</code> which did not account for byte
order and could result in images with incorrect colors.</li>
<li>Fixed <code>InsufficientMemory</code> error when trying to decode a PNG image.</li>
<li>Fix warnings and CI issues.</li>
<li>Typos and links in the documentation have been corrected.</li>
</ul>
<p>Performance:</p>
<ul>
<li>Added check for dynamic image dimensions before resizing. This improves
performance in cases where the image does not need to be resized or has
already been resized.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="aa1e81e82e"><code>aa1e81e</code></a> Changes and release notes for 0.24.5</li>
<li><a href="88aadcbac0"><code>88aadcb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image/issues/1821">#1821</a> from micahsnyder/bump-jpeg-dependency</li>
<li><a href="dffefce050"><code>dffefce</code></a> Bump the 'jpeg' version requirement to 0.3.0</li>
<li><a href="bf0a96b4f2"><code>bf0a96b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image/issues/1812">#1812</a> from fintelia/png-with-limits</li>
<li><a href="a7026e91a6"><code>a7026e9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image/issues/1817">#1817</a> from Flashover89/Check-dimensions-for-dyn-image-befo...</li>
<li><a href="392798ccef"><code>392798c</code></a> Fix white spacing</li>
<li><a href="2be3d17ac4"><code>2be3d17</code></a> Merge branch 'image-rs:master' into Check-dimensions-for-dyn-image-before-res...</li>
<li><a href="46812253f9"><code>4681225</code></a> Fix review findings</li>
<li><a href="1361f4aa85"><code>1361f4a</code></a> Add PngDecoder::with_limits</li>
<li><a href="1878c886db"><code>1878c88</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/image-rs/image/issues/1815">#1815</a> from fintelia/fix-ci</li>
<li>Additional commits viewable in <a href="https://github.com/image-rs/image/compare/v0.24.4...v0.24.5">compare view</a></li>
</ul>
</details>
<br />
[](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>
bootstrap.py compatibility patch for Fedora.
<!-- Please describe your changes on the following line: -->
This issue fixes certain problems with the automatic bootstrapping process of Servo on Fedora. Specifically, this patch adds zlib, libjpeg (also aliased as libjpeg-turbo), libjpeg-turbo-devel dependencies to the Fedora dependency array. The documentation was updated accordingly.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
`./mach test-tidy` fails, however, I am not too sure if these errors occurred because of my PR:
```py
Traceback (most recent call last):
File "/home/_/Documents/Projects/oss/servo/./mach", line 47, in <module>
main(sys.argv)
File "/home/_/Documents/Projects/oss/servo/./mach", line 29, in main
mach = mach_bootstrap.bootstrap(topdir)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/_/Documents/Projects/oss/servo/python/mach_bootstrap.py", line 306, in bootstrap
import mach.main
File "/home/_/Documents/Projects/oss/servo/python/mach/mach/main.py", line 164, in <module>
@CommandProvider
^^^^^^^^^^^^^^^
File "/home/_/Documents/Projects/oss/servo/python/mach/mach/decorators.py", line 115, in CommandProvider
spec = inspect.getargspec(cls.__init__)
^^^^^^^^^^^^^^^^^^
AttributeError: module 'inspect' has no attribute 'getargspec'. Did you mean: 'getargs'?
```
- [X] These changes fix#29101
<!-- Either: -->
- [X] These changes do not require tests because we are not changing anything major.
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Bump url from 2.2.2 to 2.3.1
Bumps [url](https://github.com/servo/rust-url) from 2.2.2 to 2.3.1.
<details>
<summary>Commits</summary>
<ul>
<li><a href="359bc90a4f"><code>359bc90</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/servo/rust-url/issues/792">#792</a> from servo/version_bump_2.3.1</li>
<li><a href="ad8911ae54"><code>ad8911a</code></a> Bump url version to 2.3.1 and bump minor for dependencies</li>
<li><a href="35abc325ba"><code>35abc32</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/servo/rust-url/issues/791">#791</a> from servo/ver_2.3.0</li>
<li><a href="25266fcc36"><code>25266fc</code></a> Bump url version to 2.3.0</li>
<li><a href="587e9628a9"><code>587e962</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/servo/rust-url/issues/790">#790</a> from crowlKats/remove_idna</li>
<li><a href="eaa23e556f"><code>eaa23e5</code></a> remove IDNA feature</li>
<li><a href="a3df36528a"><code>a3df365</code></a> feat(url): add <code>quirks::internal_components</code> (<a href="https://github-redirect.dependabot.com/servo/rust-url/issues/788">#788</a>)</li>
<li><a href="868719da3f"><code>868719d</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/servo/rust-url/issues/734">#734</a> from andrewbanchich/fix-set-host</li>
<li><a href="eb3f20d7e4"><code>eb3f20d</code></a> Fix setting file hosts to None</li>
<li><a href="6e5df8fe3b"><code>6e5df8f</code></a> perf(idna): fast-path simple/ascii domains (<a href="https://github-redirect.dependabot.com/servo/rust-url/issues/761">#761</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/servo/rust-url/compare/v2.2.2...v2.3.1">compare view</a></li>
</ul>
</details>
<br />
[](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>