diff --git a/CHANGES.rst b/CHANGES.rst index 8da42496..4bf54c34 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,9 @@ pywb 2.2.20190311 changelist ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -* Support for setting timestamp in proxy mode via ``--proxy-timestamp`` (fixes #352) +* Support for setting timestamp in proxy mode via ``--proxy-default-timestamp`` (fixes #452) * Remove any ``WB_wombat_`` found in POST requests from old versions of pywb. +* Fixes new query UI when loading traditional calendar ``/*/`` pages (#455, #456) pywb 2.2.x changelist diff --git a/docs/manual/configuring.rst b/docs/manual/configuring.rst index 8cbfd308..9e4fe984 100644 --- a/docs/manual/configuring.rst +++ b/docs/manual/configuring.rst @@ -433,8 +433,8 @@ To enable proxy mode, the collection can be specified by running: ``wayback --pr For HTTP proxy access, this is all that is needed to use the proxy. If pywb is running on port 8080 on localhost, the following curl command should provide proxy access: ``curl -x "localhost:8080" http://example.com/`` -Default Proxy Timestamp -^^^^^^^^^^^^^^^^^^^^^^^ +Default Timestamp +^^^^^^^^^^^^^^^^^ The timestamp can also be optionally specified by running: ``wayback --proxy my-coll --proxy-default-timestamp 20181226010203`` or by specifying the config:: diff --git a/docs/manual/memento.rst b/docs/manual/memento.rst index d9087b76..05d6b4e5 100644 --- a/docs/manual/memento.rst +++ b/docs/manual/memento.rst @@ -68,6 +68,7 @@ As this approach always includes a redirect, use of this system is discouraged w .. _memento-proxy: + Proxy Mode Memento API ^^^^^^^^^^^^^^^^^^^^^^ diff --git a/pywb/version.py b/pywb/version.py index b53dac8e..a0a793b0 100644 --- a/pywb/version.py +++ b/pywb/version.py @@ -1 +1 @@ -__version__ = '2.2.20190310' +__version__ = '2.2.20190311'