docs: note scrape_response output change

This commit is contained in:
Ishaan Kapur 2026-07-01 07:59:49 +05:30
parent a6d6a48aa6
commit dfe3db69ea
1 changed files with 5 additions and 0 deletions

View File

@ -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 <topics-scheduler>` instance has been created.