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

   Bumps [scrapy](https://github.com/scrapy/scrapy) from 2.5.0 to 2.13.4.
   <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.4</h2>
   <p>Fix for the <a 
href="https://nvd.nist.gov/vuln/detail/CVE-2025-6176";>CVE-2025-6176</a> 
security issue: improved protection against decompression bombs in 
<code>HttpCompressionMiddleware</code> for responses compressed using the 
<code>br</code> and <code>deflate</code> methods. Requires <code>brotli &gt;= 
1.2.0</code>.</p>
   <p><a 
href="https://docs.scrapy.org/en/latest/news.html#scrapy-2-13-4-2025-11-17";>Full
 changelog</a></p>
   <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>
   <!-- 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.4 (2025-11-17)</h2>
   <p>Security bug fixes</p>
   <pre><code>
   -   Improved protection against decompression bombs in
       
:class:`~scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware`
       for responses compressed using the ``br`` and ``deflate`` methods: if a
       single compressed chunk would be larger than the response size limit (see
       :setting:`DOWNLOAD_MAXSIZE`) when decompressed, decompression is no 
longer
       carried out. This is especially important for the ``br`` (Brotli) method
       that can provide a very high compression ratio. Please, see the
       `CVE-2025-6176`_ and `GHSA-2qfp-q593-8484`_ security advisories for more
       information.
       (:issue:`7134`)
   <pre><code>.. _CVE-2025-6176: https://nvd.nist.gov/vuln/detail/CVE-2025-6176
   .. _GHSA-2qfp-q593-8484: https://github.com/advisories/GHSA-2qfp-q593-8484
   </code></pre>
   <p>Modified requirements<br />
   </code></pre></p>
   <ul>
   <li>
   <p>The minimum supported version of the optional <code>brotli</code> package 
is now
   <code>1.2.0</code>.
   (:issue:<code>7134</code>)</p>
   </li>
   <li>
   <p>The <code>brotlicffi</code> and <code>brotlipy</code> packages can no 
longer be used to
   decompress Brotli-compressed responses. Please install the 
<code>brotli</code>
   package instead.
   (:issue:<code>7134</code>)</p>
   </li>
   </ul>
   <p>Other changes</p>
   <pre><code>
   -   Restricted the maximum supported Twisted version to ``25.5.0``, as Scrapy
       currently uses some private APIs changed in later Twisted versions.
       (:issue:`7142`)
   <ul>
   <li>
   <p>Stopped setting the <code>COVERAGE_CORE</code> environment variable in 
tests, it<br />
   didn't have an effect but caused the <code>coverage</code> module to produce 
a<br />
   warning or an error.<br />
   (:issue:<code>7137</code>)</p>
   </li>
   <li>
   <p>Removed the documentation build dependency on the deprecated<br />
   <code>sphinx-hoverxref</code> module.<br />
   (:issue:<code>6786</code>, :issue:<code>6922</code>)</p>
   </li>
   </ul>
   <p>.. _release-2.13.3:</p>
   <p>&lt;/tr&gt;&lt;/table&gt;<br />
   </code></pre></p>
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/2f62ab532dae41c1088312a6d5a32da485cdbc29";><code>2f62ab5</code></a>
 Bump version: 2.13.3 → 2.13.4</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/31a9c03c2482284a72d90af4c6dfcb0bca564b49";><code>31a9c03</code></a>
 Release notes for 2.13.4. (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/7144";>#7144</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/c44b8df6c7f8a6650c9655e271da2ba3a764fa15";><code>c44b8df</code></a>
 Cherry-pick: Mitigate brotli and deflate decompression bombs DoS (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/7134";>#7134</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/d091256c58bef4736c419bddd473f977553f0fd1";><code>d091256</code></a>
 Remove the deprecated sphinx-hoverxref (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/6922";>#6922</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/c83ca70db32c03b3c114a025230776331cbb8541";><code>c83ca70</code></a>
 Don't force the unavailable sysmon coverage core. (<a 
href="https://redirect.github.com/scrapy/scrapy/issues/7137";>#7137</a>)</li>
   <li><a 
href="https://github.com/scrapy/scrapy/commit/85e4e6c42bda49fda7febfca088ced8abaf60520";><code>85e4e6c</code></a>
 Pin Twisted to &lt;= 25.5.0 due to internal API changes.</li>
   <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>Additional commits viewable in <a 
href="https://github.com/scrapy/scrapy/compare/2.5.0...2.13.4";>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.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 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