==================
- Drop Python 2.6 support.
- Add Python 3.4, 3.5, and 3.6 support.
- Add PyPy support.
- Made the HTTPTask not have ``command`` or ``uri`` values of
``"None"`` when the first request line cannot be parsed. Now they
are empty strings.
- Reimplement ``buffers.OverflowableBuffer`` in terms of the standard
library's ``tempfile.SpooledTemporaryFile``. This is much simpler.
See `issue 5 <https://github.com/zopefoundation/zope.server/issues/5>`_.
- Achieve and maintain 100% test coverage.
- Remove all the custom logging implementations in
``zope.server.logging`` and change the ``CommonAccessLogger`` and
``CommonFTPActivityLogger`` to only work with Python standard
library loggers. The standard library supports all the logging
functions this package previously provided. It can be easily configured
with ZConfig. See `issue 4
<https://github.com/zopefoundation/zope.server/issues/4>`_.