From 783c58d1c8754e9c2442190189a5dd09c658a669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Mon, 4 Oct 2021 13:29:31 +0200 Subject: [PATCH] Version bump for 0.8.0 (#230) --- CHANGES.rst | 28 ++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 12e0789..9cc25b7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,34 @@ Changes ======= +0.8.0 (2021-10-04) +------------------ + +* Responses now expose the HTTP status code and headers from Splash as + ``response.splash_response_status`` and + ``response.splash_response_headers`` (#158) + +* The ``meta`` argument passed to the ``scrapy_splash.request.SplashRequest`` + constructor is no longer modified (#164) + +* Website responses with 400 or 498 as HTTP status code are no longer + handled as the equivalent Splash responses (#158) + +* Cookies are no longer sent to Splash itself (#156) + +* ``scrapy_splash.utils.dict_hash`` now also works with ``obj=None`` + (``225793b``) + +* Our test suite now includes integration tests (#156) and tests can be run + in parallel (``6fb8c41``) + +* There’s a new ‘Getting help’ section in the ``README.rst`` file (#161, + #162), the documentation about ``SPLASH_SLOT_POLICY`` has been improved + (#157) and a typo as been fixed (#121) + +* Made some internal improvements (``ee5000d``, ``25de545``, ``2aaa79d``) + + 0.7.2 (2017-03-30) ------------------ diff --git a/setup.py b/setup.py index e330d33..8aefcc6 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='scrapy-splash', - version='0.7.2', + version='0.8.0', url='https://github.com/scrapy-plugins/scrapy-splash', description='JavaScript support for Scrapy using Splash', long_description=open('README.rst').read() + "\n\n" + open("CHANGES.rst").read(),