dependabot[bot] opened a new pull request, #72:
URL: https://github.com/apache/openserverless-runtimes/pull/72

   Bumps [scrapy](https://github.com/scrapy/scrapy) from 2.5.0 to 2.13.3.
   <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.13.3</h2>
   <ul>
   <li>Changed the values for <code>DOWNLOAD_DELAY</code> (from <code>0</code> 
to <code>1</code>) and <code>CONCURRENT_REQUESTS_PER_DOMAIN</code> (from 
<code>8</code> to <code>1</code>) in the default project template.</li>
   <li>Fixed several bugs in the engine initialization and exception handling 
logic.</li>
   <li>Allowed running tests with Twisted 25.5.0+ again and fixed test failures 
with lxml 6.0.0.</li>
   </ul>
   <p><a 
href="https://docs.scrapy.org/en/2.13/news.html#scrapy-2-13-3-2025-07-02";>See 
the full changelog</a></p>
   <h2>2.13.2</h2>
   <ul>
   <li>Fixed a bug introduced in Scrapy 2.13.0 that caused results of request 
errbacks to be ignored when the errback was called because of a downloader 
error.</li>
   <li>Docs and error messages improvements related to the Scrapy 2.13.0 
default reactor change.</li>
   </ul>
   <p><a 
href="https://docs.scrapy.org/en/2.13/news.html#scrapy-2-13-2-2025-06-09";>See 
the full changelog</a></p>
   <h2>2.13.1</h2>
   <ul>
   <li>Give callback requests precedence over start requests when priority 
values are the same.</li>
   </ul>
   <p><a 
href="https://docs.scrapy.org/en/2.13/news.html#scrapy-2-13-1-2025-05-28";>See 
the full changelog</a></p>
   <h2>2.13.0</h2>
   <ul>
   <li>The asyncio reactor is now enabled by default</li>
   <li>Replaced <code>start_requests()</code> (sync) with <code>start()</code> 
(async) and changed how it is iterated.</li>
   <li>Added the <code>allow_offsite</code> request meta key</li>
   <li>Spider middlewares that don't support asynchronous spider output are 
deprecated</li>
   <li>Added a base class for universal spider middlewares</li>
   </ul>
   <p><a href="https://docs.scrapy.org/en/2.13/news.html";>See the full 
changelog</a></p>
   <h2>2.12.0</h2>
   <ul>
   <li>Dropped support for Python 3.8, added support for Python 3.13</li>
   <li><code>start_requests</code> can now yield items</li>
   <li>Added <code>scrapy.http.JsonResponse</code></li>
   <li>Added the <code>CLOSESPIDER_PAGECOUNT_NO_ITEM</code> setting</li>
   </ul>
   <p><a 
href="https://docs.scrapy.org/en/2.12/news.html#scrapy-2-12-0-2024-11-18";>See 
the full changelog.</a></p>
   <h2>2.11.2</h2>
   <p>Mostly bug fixes, including security bug fixes.</p>
   <p><a 
href="https://docs.scrapy.org/en/latest/news.html#scrapy-2-11-2-2024-05-14";>See 
the full changelog.</a></p>
   <h2>2.11.1</h2>
   <ul>
   <li>Security bug fixes.</li>
   <li>Support for Twisted &gt;= 23.8.0.</li>
   <li>Documentation improvements.</li>
   </ul>
   <p><a 
href="https://docs.scrapy.org/en/latest/news.html#scrapy-2-11-1-2024-02-14";>See 
the full changelog.</a></p>
   <h2>2.11.0</h2>
   <ul>
   <li>Spiders can now modify settings in their <code>from_crawler</code> 
methods, e.g. based on spider arguments.</li>
   <li>Periodic logging of stats.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </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.13.3 (2025-07-02)</h2>
   <ul>
   <li>
   <p>Changed the values for :setting:<code>DOWNLOAD_DELAY</code> (from 
<code>0</code> to <code>1</code>) and
   :setting:<code>CONCURRENT_REQUESTS_PER_DOMAIN</code> (from <code>8</code> to 
<code>1</code>) in the
   default project template.
   (:issue:<code>6597</code>, :issue:<code>6918</code>, 
:issue:<code>6923</code>)</p>
   </li>
   <li>
   <p>Improved :class:<code>scrapy.core.engine.ExecutionEngine</code> logic 
related to
   initialization and exception handling, fixing several cases where the
   spider would crash, hang or log an unhandled exception.
   (:issue:<code>6783</code>, :issue:<code>6784</code>, 
:issue:<code>6900</code>, :issue:<code>6908</code>, :issue:<code>6910</code>,
   :issue:<code>6911</code>)</p>
   </li>
   <li>
   <p>Fixed a Windows issue with :ref:<code>feed exports 
&lt;topics-feed-exports&gt;</code> using
   :class:<code>scrapy.extensions.feedexport.FileFeedStorage</code> that caused 
the file
   to be created on the wrong drive.
   (:issue:<code>6894</code>, :issue:<code>6897</code>)</p>
   </li>
   <li>
   <p>Allowed running tests with Twisted 25.5.0+ again. Pytest 8.4.1+ is now
   required for running tests in non-pinned envs as support for the new
   Twisted version was added in that version.
   (:issue:<code>6893</code>)</p>
   </li>
   <li>
   <p>Fixed running tests with lxml 6.0.0+.
   (:issue:<code>6919</code>)</p>
   </li>
   <li>
   <p>Added a deprecation notice for
   <code>scrapy.spidermiddlewares.offsite.OffsiteMiddleware</code> to 
:ref:<code>the Scrapy 2.11.2 release notes &lt;release-2.11.2&gt;</code>.
   (:issue:<code>6926</code>)</p>
   </li>
   <li>
   <p>Updated :ref:<code>contribution docs &lt;topics-contributing&gt;</code> 
to refer to ruff_
   instead of black_.
   (:issue:<code>6903</code>)</p>
   </li>
   <li>
   <p>Added <code>.venv/</code> and <code>.vscode/</code> to 
<code>.gitignore</code>.
   (:issue:<code>6901</code>, :issue:<code>6907</code>)</p>
   </li>
   </ul>
   <p>.. _release-2.13.2:</p>
   <h2>Scrapy 2.13.2 (2025-06-09)</h2>
   <ul>
   <li>Fixed a bug introduced in Scrapy 2.13.0 that caused results of request
   errbacks to be ignored when the errback was called because of a downloader
   error.
   (:issue:<code>6861</code>, :issue:<code>6863</code>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/155a504f24b9dd180b8786a4fa709f87cfe8fb66";><code>155a504</code></a>
 Bump version: 2.13.2 → 2.13.3</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/cf465bf64403607f253313dbc05173c4c5f7e594";><code>cf465bf</code></a>
 Release notes for 2.13.3. (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/6934";>#6934</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/c9cdf0af3cacfc09614184d20af9a11f5eae5ace";><code>c9cdf0a</code></a>
 Narrow down TestEngine::test_short_timeout() expectations. (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/6911";>#6911</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/03fe7a642484dc7afcd2bc086abc182837d1b17f";><code>03fe7a6</code></a>
 Add a deprecation notice for the offsite spider middleware.</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/ba1cedee1b6a521cebbc679e22e875d9fa81b65f";><code>ba1cede</code></a>
 Document the new defaults of throttling settings (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/6923";>#6923</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/076c01104a30c173dbae0280db96f36e7f3dc5d2";><code>076c011</code></a>
 Lower the concurrency settings in the default project template. (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/6918";>#6918</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/5fbab843bd819da74d2c8cad88b2d3271592eb18";><code>5fbab84</code></a>
 Fix invalid XML samples in tests that break with lxml 6. (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/6919";>#6919</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/ef01a953b108b6c60d5ed5dcf85d3a1eb7ae7a2a";><code>ef01a95</code></a>
 Fix setting ExecutionEngine._slot to None on close. (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/6910";>#6910</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/7fbd56bc9baa33a4eb874f4337d740f5f25cfad3";><code>7fbd56b</code></a>
 Handle exceptions in _start_request_processing(), cancel it on engine stop 
(#...</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/b53faacfcd64f6717645bf4cd33159cef87cd5d9";><code>b53faac</code></a>
 Add .vscode to .gitignore. (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/6907";>#6907</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/scrapy/scrapy/compare/2.5.0...2.13.3";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=scrapy&package-manager=pip&previous-version=2.5.0&new-version=2.13.3)](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)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/openserverless-runtimes/network/alerts).
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to