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

update CHANGES for 2.6.0 release!

README: update for 2.6, add links to guides!
bump version to 2.6.0
This commit is contained in:
Ilya Kreymer 2021-08-11 18:49:08 -07:00
parent b28c8f1748
commit 96de80f83e
3 changed files with 35 additions and 4 deletions

View File

@ -1,3 +1,13 @@
pywb 2.6.0 changelist
~~~~~~~~~~~~~~~~~~~~~
* Improvements for eval() rewriting + extra unnamed scope to avoid variable collision `#668 <https://github.com/webrecorder/pywb/pull/668>`_
* fix for documentation links `#666 <https://github.com/webrecorder/pywb/pull/666>`_
* Update to latest wombat.js (3.3.0)
pywb 2.6.0b4 changelist pywb 2.6.0b4 changelist
~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~
@ -11,6 +21,7 @@ pywb 2.6.0b4 changelist
* Update to latest wombat.js (3.2.2) * Update to latest wombat.js (3.2.2)
pywb 2.6.0b3 changelist pywb 2.6.0b3 changelist
~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -1,4 +1,4 @@
Webrecorder pywb 2.5 Webrecorder pywb 2.6
==================== ====================
.. image:: https://raw.githubusercontent.com/webrecorder/pywb/master/pywb/static/pywb-logo.png .. image:: https://raw.githubusercontent.com/webrecorder/pywb/master/pywb/static/pywb-logo.png
@ -43,9 +43,13 @@ The 2.x release included a major overhaul of pywb and introduces many new featur
* Improved 'calendar' query UI with incremental loading, grouping results by year and month, and updated replay banner. * Improved 'calendar' query UI with incremental loading, grouping results by year and month, and updated replay banner.
* New in 2.4: Extensible UI customizations system for modifying all aspects of the UI. * Extensible UI customizations system for modifying all aspects of the UI.
* New in 2.4: Robust access control system for blocking or excluding URLs, by prefix or by exact match. * Robust access control system for blocking or excluding URLs, by prefix or by exact match.
* New in 2.6: Access Control embargo and http-header control access settings.
* New in 2.6: Support for localization and multi-language deployment.
Please see the `full documentation <https://pywb.readthedocs.org>`_ for more detailed info on all these features. Please see the `full documentation <https://pywb.readthedocs.org>`_ for more detailed info on all these features.
@ -68,6 +72,22 @@ To run and install locally you can:
Consult the local or `online docs <https://pywb.readthedocs.org>`_ for latest usage and configuration details. Consult the local or `online docs <https://pywb.readthedocs.org>`_ for latest usage and configuration details.
Documentation
-------------
The pywb documentation is extensive. Some links to a few key guides:
* `Getting Started Guide <https://pywb.readthedocs.io/en/latest/manual/usage.html#getting-started>`_
* `Embargo and Access Control Guide <https://pywb.readthedocs.io/en/latest/manual/access-control.html>`_
* `Localization and Multi-Language Guide <https://pywb.readthedocs.io/en/latest/manual/localization.html>`_
* `Deployment Guide <https://pywb.readthedocs.io/en/latest/manual/usage.html#deployment>`_
* `OpenWayback Transition Guide <https://pywb.readthedocs.io/en/latest/manual/owb-transition.html>`_
Contributions & Bug Reports Contributions & Bug Reports
--------------------------- ---------------------------

View File

@ -1,4 +1,4 @@
__version__ = '2.6.0b4' __version__ = '2.6.0'
if __name__ == '__main__': if __name__ == '__main__':
print(__version__) print(__version__)