1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

update CHANGELIST and version for 2.3.2 release

This commit is contained in:
Ilya Kreymer 2019-08-01 16:23:31 -07:00
parent af1a34cb58
commit 42089e237b
2 changed files with 20 additions and 1 deletions

View File

@ -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 pywb 2.3.1 changelist
~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~

View File

@ -1,4 +1,4 @@
__version__ = '2.3.2.dev0' __version__ = '2.3.2'
if __name__ == '__main__': if __name__ == '__main__':
print(__version__) print(__version__)