From 51ed24904bf8cb05b943689eaa647d6a647c057e Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Mon, 11 Jul 2016 16:26:42 +0200 Subject: [PATCH 1/3] Update release notes for upcoming 1.1.1 release --- docs/news.rst | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/docs/news.rst b/docs/news.rst index ac87b449d..92481a741 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -3,6 +3,46 @@ Release notes ============= +1.1.1 (YYYY-MM-DD) +------------------ + +Bug fixes +~~~~~~~~~ + +- Add "Host" header in CONNECT requests to HTTPS proxies (:issue:`2069`) +- Use response ``body`` when choosing response class (:issue:`2001`, fixes :issue:`2000`) +- Do not fail on canonicalizing URLs with wrong netlocs (:issue:`2038`, fixes :issue:`2010`) +- a few fixes for ``HttpCompressionMiddleware`` (and ``SitemapSpider``): + - Do not decode HEAD responses (:issue:`2008`, fixes :issue:`1899`) + - Handle charset parameter in gzip Content-Type header (:issue:`2050`, fixes :issue:`2049`) + - Do not decompress gzip octet-stream responses (:issue:`2065`, fixes :issue:`2063`) + +New features +~~~~~~~~~~~~ + +- Enable genspider command outside project folder (:issue:`2052`) +- Retry HTTPS CONNECT ``TunnelError`` by default (:issue:`1974`) + + +Documentation +~~~~~~~~~~~~~ + +- ``FEED_TEMPDIR`` setting at lexicographical position (:commit:`9b3c72c`) +- Use idiomatic ``.extract_first()`` in overview (:issue:`1994`) +- Update years in copyright notice (:commit:`c2c8036`) +- Add information and example on errbacks (:issue:`1995`) +- Use "url" variable in downloader middleware example (:issue:`2015`) +- Grammar fixes (:issue:`2054`) +- New FAQ entry on using BeautifulSoup in spider callbacks (:issue:`2048`) +- Add notes about scrapy not working on Windows with Python 3 (:issue:`2060`) +- Encourage complete titles in pull requests (:issue:`2026`) + +Tests +~~~~~ + +- Upgrade py.test requirement on Travis CI and Pin pytest-cov to 2.2.1 (:issue:`2095`) + + 1.1.0 (2016-05-11) ------------------ From ed79193f49efde32a4805939a8c6297217b48cfe Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Wed, 13 Jul 2016 17:36:13 +0200 Subject: [PATCH 2/3] Update notes with latest 1.1 commits --- docs/news.rst | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/docs/news.rst b/docs/news.rst index 92481a741..0a6a40587 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -10,12 +10,24 @@ Bug fixes ~~~~~~~~~ - Add "Host" header in CONNECT requests to HTTPS proxies (:issue:`2069`) -- Use response ``body`` when choosing response class (:issue:`2001`, fixes :issue:`2000`) -- Do not fail on canonicalizing URLs with wrong netlocs (:issue:`2038`, fixes :issue:`2010`) +- Use response ``body`` when choosing response class + (:issue:`2001`, fixes :issue:`2000`) +- Do not fail on canonicalizing URLs with wrong netlocs + (:issue:`2038`, fixes :issue:`2010`) - a few fixes for ``HttpCompressionMiddleware`` (and ``SitemapSpider``): + - Do not decode HEAD responses (:issue:`2008`, fixes :issue:`1899`) - - Handle charset parameter in gzip Content-Type header (:issue:`2050`, fixes :issue:`2049`) - - Do not decompress gzip octet-stream responses (:issue:`2065`, fixes :issue:`2063`) + - Handle charset parameter in gzip Content-Type header + (:issue:`2050`, fixes :issue:`2049`) + - Do not decompress gzip octet-stream responses + (:issue:`2065`, fixes :issue:`2063`) + +- Catch (and ignore with a warning) exception when verifying certificate + against IP-address hosts (:issue:`2094`, fixes :issue:`2092`) +- Make ``FilesPipeline`` and ``ImagesPipeline`` backward compatible again + regarding the use of legacy class attributes for customization + (:issue:`1989`, fixes :issue:`1985`) + New features ~~~~~~~~~~~~ @@ -32,7 +44,7 @@ Documentation - Update years in copyright notice (:commit:`c2c8036`) - Add information and example on errbacks (:issue:`1995`) - Use "url" variable in downloader middleware example (:issue:`2015`) -- Grammar fixes (:issue:`2054`) +- Grammar fixes (:issue:`2054`, :issue:`2120`) - New FAQ entry on using BeautifulSoup in spider callbacks (:issue:`2048`) - Add notes about scrapy not working on Windows with Python 3 (:issue:`2060`) - Encourage complete titles in pull requests (:issue:`2026`) From 7e7c832f9f0cb31456c7619062225c4b05413197 Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Wed, 13 Jul 2016 17:59:11 +0200 Subject: [PATCH 3/3] Update 1.1.1 release date --- docs/news.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/news.rst b/docs/news.rst index 0a6a40587..82b59d5a8 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -3,7 +3,7 @@ Release notes ============= -1.1.1 (YYYY-MM-DD) +1.1.1 (2016-07-13) ------------------ Bug fixes