From 737a1c15c7e7d731f6f3cbd6c3c9d95e8cbec2f0 Mon Sep 17 00:00:00 2001 From: Adrian Chaves Date: Mon, 10 Aug 2026 18:58:07 +0200 Subject: [PATCH] WIP --- docs/news.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/news.rst b/docs/news.rst index 7080892b3..3ae9ae6e1 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -41,6 +41,10 @@ Backward-incompatible changes :class:`~scrapy.extensions.feedexport.StdoutFeedStorage` are no longer marked as implementing the ``IFeedStorage`` interface. + - :class:`~scrapy.core.downloader.handlers.http2.H2DownloadHandler` no + longer checks that the ``DOWNLOADER_CLIENTCONTEXTFACTORY`` class + implements the ``IPolicyForHTTPS`` interface. + (:issue:`6585`, :issue:`7731`) - The :attr:`~scrapy.crawler.Crawler.engine`, @@ -326,6 +330,12 @@ New features :ref:`custom item exporters ` to use. (:issue:`5706`, :issue:`7931`) +- Log formatters (:setting:`LOG_FORMATTER`), item processors + (``ITEM_PROCESSOR``) and :ref:`robots.txt parsers ` + (:setting:`ROBOTSTXT_PARSER`) are now built as :ref:`components + `, so they no longer need a ``from_crawler()`` method. + (:issue:`7808`) + Bug fixes ~~~~~~~~~