From dfe3db69ea8a8bd71cdee47a8a242e48d5f4e331 Mon Sep 17 00:00:00 2001 From: Ishaan Kapur <64529428+ishaanlabs-gg@users.noreply.github.com> Date: Wed, 1 Jul 2026 07:59:49 +0530 Subject: [PATCH] docs: note scrape_response output change --- docs/news.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/news.rst b/docs/news.rst index b8b976df9..761ea4564 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -1695,6 +1695,11 @@ Backward-incompatible changes ``process_start_requests()`` has been replaced by ``process_start()``. (:issue:`6729`) +- ``scrapy.core.spidermw.SpiderMiddlewareManager.scrape_response()``, which + is intended for internal use, now returns a deferred whose result is a + ``MutableAsyncChain`` instead of the previous callback output shape. + (:issue:`6787`) + - The now-deprecated ``start_requests()`` method, when it returns an iterable instead of being defined as a generator, is now executed *after* the :ref:`scheduler ` instance has been created.