From 42089e237bc1efdc903ad4c3c0a9cd0ba41b3da9 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Thu, 1 Aug 2019 16:23:31 -0700 Subject: [PATCH] update CHANGELIST and version for 2.3.2 release --- CHANGES.rst | 19 +++++++++++++++++++ pywb/version.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 517fec99..bb9277fd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,22 @@ +pywb 2.3.2 changelist +~~~~~~~~~~~~~~~~~~~~~ + +* Eval rewriting fix: don't rewrite ``$eval``, only ``eval`` identifier (#493) + +* Cookie rewriting improvements: (#491) + - Enable domain cookie cache for live index and recording modes using fakeredis, previously only available in Webrecorder + - Don't add duplicate cookies to Set-Cookie or Cookie headers + - Don't include cached Set-Cookie headers to serviceworkers for non-200 responses. + - Add cookies for ``sw_/`` and ``wkrf_`` modifiers + - Testing: add initial testing for domain cookie rewriting + +* Misc fixes: (#490) + - Ensure SCRIPT_NAME never empty (#490) + - Static Paths: load ``/index.html`` for paths ending in ``/``, ensure static_prefix always inited correctly + - Docker: switch to designated $VOLUME_DIR before initializing + - Rules: update rules for soundcloud + + pywb 2.3.1 changelist ~~~~~~~~~~~~~~~~~~~~~ diff --git a/pywb/version.py b/pywb/version.py index 780f81d6..436bf7e1 100644 --- a/pywb/version.py +++ b/pywb/version.py @@ -1,4 +1,4 @@ -__version__ = '2.3.2.dev0' +__version__ = '2.3.2' if __name__ == '__main__': print(__version__)