15
0
forked from pool/python-ZEO

- Change url to match up with upstream

- Update to release 5.2.0:
  * Fixed: The quickstart/ad-hoc/play ZEO server relied on test
    dependencies. See `issue 105
    <https://github.com/zopefoundation/ZEO/issues/105>`_.
  * Disallow passing strings as addresses to ClientStorage under Windows
    because string addresses are used for unix-domain sockets, which
    aren't supported on Windows. See `issue 107
    <https://github.com/zopefoundation/ZEO/issues/107>`_.
  * Renamed all ``async`` attributes to ``async_`` for compatibility
    with Python 3.7. See `issue 104
    <https://github.com/zopefoundation/ZEO/issues/104>`_.
  * Fixed to work with some changes made in ZODB 5.4.0.
    Client-side updates are incuded for ZODB 5.4.0 or databases that
    already had ``zodbpickle.binary`` OIDs. See `issue 113
    <https://github.com/zopefoundation/ZEO/issues/113>`_.
  * ZEO now uses pickle protocol 3 for both Python 2 and Python 3.
    (Previously protocol 1 was used for Python 2.) This matches the
    change in ZODB 5.4.0.
- Drop the docs as they are present on web and fail to build with
  current sphinx

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ZEO?expand=0&rev=13
This commit is contained in:
Tomáš Chvátal
2018-05-02 08:40:55 +00:00
committed by Git OBS Bridge
parent 2268608fe5
commit 9fefe36a08
4 changed files with 50 additions and 32 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Wed May 2 08:29:57 UTC 2018 - tchvatal@suse.com
- Change url to match up with upstream
- Update to release 5.2.0:
* Fixed: The quickstart/ad-hoc/play ZEO server relied on test
dependencies. See `issue 105
<https://github.com/zopefoundation/ZEO/issues/105>`_.
* Disallow passing strings as addresses to ClientStorage under Windows
because string addresses are used for unix-domain sockets, which
aren't supported on Windows. See `issue 107
<https://github.com/zopefoundation/ZEO/issues/107>`_.
* Renamed all ``async`` attributes to ``async_`` for compatibility
with Python 3.7. See `issue 104
<https://github.com/zopefoundation/ZEO/issues/104>`_.
* Fixed to work with some changes made in ZODB 5.4.0.
Client-side updates are incuded for ZODB 5.4.0 or databases that
already had ``zodbpickle.binary`` OIDs. See `issue 113
<https://github.com/zopefoundation/ZEO/issues/113>`_.
* ZEO now uses pickle protocol 3 for both Python 2 and Python 3.
(Previously protocol 1 was used for Python 2.) This matches the
change in ZODB 5.4.0.
- Drop the docs as they are present on web and fail to build with
current sphinx
-------------------------------------------------------------------
Fri Sep 15 17:57:56 UTC 2017 - toddrme2178@gmail.com