From 89d5f5acd3627cef040c421fce516bb87cfd4b5e Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Thu, 1 Dec 2016 22:42:16 +0100 Subject: [PATCH 1/3] Update changelog for upcoming 1.2.2 release --- docs/news.rst | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/docs/news.rst b/docs/news.rst index c302d2e17..db5856d31 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -3,6 +3,41 @@ Release notes ============= +Scrapy 1.2.2 (2016-12-XX) +------------------------- + +Bug fixes +~~~~~~~~~ + +- Fix a cryptic traceback when a pipeline fails on ``open_spider()`` (:issue:`2011`) +- Fix embedded IPython shell variables (fixing :issue:`396` that re-appeared + in 1.2.0, fixed in :issue:`2418`) +- A couple of patches when dealing with robots.txt: + + - handle (non-standard) relative sitemap URLs (:issue:`2390`) + - handle non-ASCII URLs and User-Agents in Python 2 (:issue:`2373`) + +Documentation +~~~~~~~~~~~~~ + +- Document ``"download_latency"`` key in ``Request``'s ``meta`` dict (:issue:`2033`) +- Remove page on (deprecated & unsupported) Ubuntu packages from ToC (:issue:`2335`) +- A few fixed typos (:issue:`2346`, :issue:`2369`, :issue:`2369`, :issue:`2380`) + and clarifications (:issue:`2354`, :issue:`2325`) + +Other changes +~~~~~~~~~~~~~ + +- Advertize `conda-forge`_ as Scrapy's official conda channel (:issue:`2387`) +- More helpful error messages when trying to use ``.css()`` or ``.xpath()`` + on non-Text Responses (:issue:`2264`) +- ``startproject`` command now generates a sample ``middlewares.py`` file (:issue:`2335`) +- Add more dependencies' version info in ``scrapy version`` verbose output (:issue:`2404`) +- Remove all ``*.pyc`` files from source distribution (:issue:`2386`) + +.. _conda-forge: https://anaconda.org/conda-forge/scrapy + + Scrapy 1.2.1 (2016-10-21) ------------------------- From aa2e1b030d717951475c3e4d06fcb447ab1e1181 Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Tue, 6 Dec 2016 14:44:19 +0100 Subject: [PATCH 2/3] Add reference to fixed scheduler settings documentation --- docs/news.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/news.rst b/docs/news.rst index db5856d31..3c75a0228 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -23,7 +23,7 @@ Documentation - Document ``"download_latency"`` key in ``Request``'s ``meta`` dict (:issue:`2033`) - Remove page on (deprecated & unsupported) Ubuntu packages from ToC (:issue:`2335`) - A few fixed typos (:issue:`2346`, :issue:`2369`, :issue:`2369`, :issue:`2380`) - and clarifications (:issue:`2354`, :issue:`2325`) + and clarifications (:issue:`2354`, :issue:`2325`, :issue:`2414`) Other changes ~~~~~~~~~~~~~ From 09e310d0b7db40a244cf3508c722ab251ac452eb Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Tue, 6 Dec 2016 15:03:38 +0100 Subject: [PATCH 3/3] Set release date for 1.2.2 --- docs/news.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/news.rst b/docs/news.rst index 3c75a0228..5e28fb130 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -3,7 +3,7 @@ Release notes ============= -Scrapy 1.2.2 (2016-12-XX) +Scrapy 1.2.2 (2016-12-06) ------------------------- Bug fixes