Commit 7af91457 authored by Jim Fulton's avatar Jim Fulton

5.0.0a1

parent 5ab0c3fb
Changelog
=========
5.0.0a1 (2016-07-21)
--------------------
- Added a ClientStorage prefetch method to prefetch oids.
When oids are prefetched, requests are made at once, but the caller
doesn't block waiting for the results. Rather, then the caller
later tries to fetch data for one of the object ids, it's either
delivered right away from the ZEO cache, if the prefetch for the
object id has completed, or the caller blocks until the inflight
prefetch completes. (No new request is made.)
- Fixed: SSL clients of servers with signed certs didn't load default
certs and were unable to connect.
5.0.0a0 (2016-07-08)
--------------------
......@@ -17,7 +29,7 @@ New features:
- Optional client-side conflict resolution.
- Lots of modtly internal clean ups.
- Lots of mostly internal clean ups.
Dropped features:
......
......@@ -11,7 +11,7 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
version = '5.0.0a0'
version = '5.0.0a1'
from setuptools import setup, find_packages
import os
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment