==================
- Move some parts of ``zope.app.publisher`` into this package
during ``zope.app.publisher`` refactoring:
* ``IModifiableUserPreferredLanguages`` adapter for requests
* ``browser:defaultView`` and ``browser:defaultSkin`` ZCML directives
* ``IHTTPView``, ``IXMLRPCView`` and like interfaces
* security ZCML declarations for some of ``zope.publisher`` classes
- Introduce ``IReRaiseException`` interface. If during publishing an
exception occurs and for this exception an adapter is available that
returns ``False`` on being called, the exception won't be reraised
by the publisher. This happens only if ``handle_errors`` parameter
of the ``publish()`` method is set to ``False``. Fixes problems when
acting in a WSGI pipeline with a debugger middleware enabled.
See https://bugs.launchpad.net/grok/+bug/332061 for details.
- Fix 98471: Restrict redirects to current host. This causes a ValueError to
be raised in the case of redirecting to a different host. If this is
intentional, the parameter `trusted` can be given.
- Move dependency on ``zope.testing`` from ``install_requires`` to
``tests_require``.
- Remove ``time.sleep`` in the ``supportsRetry`` http request.
- Add a fix for Internet Explorer versions which upload files with full
filesystem paths as filenames.