Commit de8ad91
Merge #382
382: Bump scrapy from 2.8.0 to 2.9.0 r=alallema a=dependabot[bot]
Bumps [scrapy](https://github.com/scrapy/scrapy) from 2.8.0 to 2.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/scrapy/scrapy/releases">scrapy's releases</a>.</em></p>
<blockquote>
<h2>2.9.0</h2>
<ul>
<li>Per-domain download settings.</li>
<li>Compatibility with new <a href="https://cryptography.io/en/latest/">cryptography</a> and new <a href="https://github.com/scrapy/parsel">parsel</a>.</li>
<li>JMESPath selectors from the new <a href="https://github.com/scrapy/parsel">parsel</a>.</li>
<li>Bug fixes.</li>
</ul>
<p><a href="https://docs.scrapy.org/en/latest/news.html#scrapy-2-9-0-2023-05-08">See the full changelog.</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/scrapy/scrapy/blob/master/docs/news.rst">scrapy's changelog</a>.</em></p>
<blockquote>
<h2>Scrapy 2.9.0 (2023-05-08)</h2>
<p>Highlights:</p>
<ul>
<li>Per-domain download settings.</li>
<li>Compatibility with new cryptography_ and new parsel_.</li>
<li>JMESPath selectors from the new parsel_.</li>
<li>Bug fixes.</li>
</ul>
<p>Deprecations</p>
<pre><code>
- :class:`scrapy.extensions.feedexport._FeedSlot` is renamed to
:class:`scrapy.extensions.feedexport.FeedSlot` and the old name is
deprecated. (:issue:`5876`)
<p>New features
</code></pre></p>
<ul>
<li>
<p>Settings correponding to :setting:<code>DOWNLOAD_DELAY</code>,
:setting:<code>CONCURRENT_REQUESTS_PER_DOMAIN</code> and
:setting:<code>RANDOMIZE_DOWNLOAD_DELAY</code> can now be set on a per-domain basis
via the new :setting:<code>DOWNLOAD_SLOTS</code> setting. (:issue:<code>5328</code>)</p>
</li>
<li>
<p>Added :meth:<code>TextResponse.jmespath</code>, a shortcut for JMESPath selectors
available since parsel_ 1.8.1. (:issue:<code>5894</code>, :issue:<code>5915</code>)</p>
</li>
<li>
<p>Added :signal:<code>feed_slot_closed</code> and :signal:<code>feed_exporter_closed</code>
signals. (:issue:<code>5876</code>)</p>
</li>
<li>
<p>Added :func:<code>scrapy.utils.request.request_to_curl</code>, a function to produce a
curl command from a :class:<code>~scrapy.Request</code> object. (:issue:<code>5892</code>)</p>
</li>
<li>
<p>Values of :setting:<code>FILES_STORE</code> and :setting:<code>IMAGES_STORE</code> can now be
:class:<code>pathlib.Path</code> instances. (:issue:<code>5801</code>)</p>
</li>
</ul>
<p>Bug fixes</p>
<pre><code>
- Fixed a warning with Parsel 1.8.1+. (:issue:`5903`, :issue:`5918`)
<ul>
<li>
<p>Fixed an error when using feed postprocessing with S3 storage.
(:issue:<code>5500</code>, :issue:<code>5581</code>)</p>
</li>
<li>
<p>Added the missing :meth:<code>scrapy.settings.BaseSettings.setdefault</code> method.
(:issue:<code>5811</code>, :issue:<code>5821</code>)</p>
</li>
<li>
<p>Fixed an error when using cryptography_ 40.0.0+ and
:setting:<code>DOWNLOADER_CLIENT_TLS_VERBOSE_LOGGING</code> is enabled.
</tr></table>
</code></pre></p>
</li>
</ul>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/scrapy/scrapy/commit/52c072640aa61884de05214cb1bdda07c2a87bef"><code>52c0726</code></a> Bump version: 2.8.0 → 2.9.0</li>
<li><a href="https://github.com/scrapy/scrapy/commit/5bb6dfbc256bbcec93911236dcff310875486b41"><code>5bb6dfb</code></a> Merge pull request <a href="https://redirect.github.com/scrapy/scrapy/issues/5909">#5909</a> from scrapy/relnotes-2.9</li>
<li><a href="https://github.com/scrapy/scrapy/commit/caa66fa15ae5d353434e5bb1d0c1cc2bdf857b6c"><code>caa66fa</code></a> Mention deprecating _FeedSlot.</li>
<li><a href="https://github.com/scrapy/scrapy/commit/636559f1cc652e839ef42522e7168e3ff9d77921"><code>636559f</code></a> Add newer changes.</li>
<li><a href="https://github.com/scrapy/scrapy/commit/92f86fab062d179fd68590f1be6a24ca13ec33b6"><code>92f86fa</code></a> Merge pull request <a href="https://redirect.github.com/scrapy/scrapy/issues/5919">#5919</a> from scrapy/docs-parsel-fixes</li>
<li><a href="https://github.com/scrapy/scrapy/commit/d1d6465ef4ea8987efb08e2f9abfd65b36719e04"><code>d1d6465</code></a> Address feedback.</li>
<li><a href="https://github.com/scrapy/scrapy/commit/cba891a66c2223745d7b8484550ed54ca1e155ec"><code>cba891a</code></a> Enable doc tests for selectors.rst, fix issues.</li>
<li><a href="https://github.com/scrapy/scrapy/commit/776cf5999079d05815d5cd123c495e1a960e0535"><code>776cf59</code></a> Merge pull request <a href="https://redirect.github.com/scrapy/scrapy/issues/5918">#5918</a> from Laerte/master</li>
<li><a href="https://github.com/scrapy/scrapy/commit/7317ff11014c4bf20d4e35193cc96a7151d1d5b0"><code>7317ff1</code></a> refactor: use kwargs strategy</li>
<li><a href="https://github.com/scrapy/scrapy/commit/d907f9e09284367d555c89d2bea862a310f60a19"><code>d907f9e</code></a> fix: Handle Parsel > 1.7.0 warning</li>
<li>Additional commits viewable in <a href="https://github.com/scrapy/scrapy/compare/2.8.0...2.9.0">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
You can trigger a rebase of this PR 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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2 files changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments