forked from pool/python-kazoo
Accepting request 249255 from Cloud:OpenStack:Master
New upstream release OBS-URL: https://build.opensuse.org/request/show/249255 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kazoo?expand=0&rev=3
This commit is contained in:
committed by
Git OBS Bridge
parent
a5628bb4da
commit
71d332f796
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:51c6dec001b0ffabeab2f1516c92999e1554d0072e517a5a39d4428decf4d7c8
|
|
||||||
size 138816
|
|
||||||
3
kazoo-2.0.zip
Normal file
3
kazoo-2.0.zip
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f0c42cc7752a331ba59269827bd19cb271210399a9dcab32b6a91465b4431a18
|
||||||
|
size 145663
|
||||||
@@ -1,3 +1,58 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 15 12:13:02 UTC 2014 - tbechtold@suse.com
|
||||||
|
|
||||||
|
- update to version 2.0
|
||||||
|
* Extend support to Python 3.4, deprecating Python 3.2.
|
||||||
|
* Issue #198: Mention Zake as a sophisticated kazoo mock testing library.
|
||||||
|
* Issue #181: Add documentation on basic logging setup.
|
||||||
|
* Null or None data is no longer treated as "". Pull req #165, patch by
|
||||||
|
Raul Gutierrez S. This will affect how you should treat null data in a
|
||||||
|
znode vs. an empty string.
|
||||||
|
* Passing acl=[] to create() now works properly instead of an InvalidACLError
|
||||||
|
as it returned before. Patch by Raul Gutierrez S in PR #164.
|
||||||
|
* Removed the dependency on zope.interface. The classes in the interfaces
|
||||||
|
module are left for documentation purposes only (issue #131).
|
||||||
|
* Logging levels have been reduced.
|
||||||
|
+ Logging previously at the ``logging.DEBUG`` level is now logged at
|
||||||
|
the ``kazoo.loggingsupport.BLATHER`` level (5).
|
||||||
|
+ Some low-level logging previously at the ``logging.INFO`` level is
|
||||||
|
now logged at the ``logging.DEBUG`` level.
|
||||||
|
* Issue #133: Introduce a new environment variable `ZOOKEEPER_PORT_OFFSET`
|
||||||
|
for the testing support, to run the testing cluster on a different range.
|
||||||
|
* When authenticating via add_auth() the auth data will be saved to ensure that
|
||||||
|
the authentication happens on reconnect (as is the case when feeding auth
|
||||||
|
data via KazooClient's constructor). PR #172, patch by Raul Gutierrez S.
|
||||||
|
* Change gevent import to remove deprecation warning when newer gevent is
|
||||||
|
used. PR #191, patch by Hiroaki Kawai.
|
||||||
|
* Lock recipe was failing to use the client's sleep_func causing issues with
|
||||||
|
gevent. Issue #150.
|
||||||
|
* Calling a DataWatch or ChildrenWatch instance twice (decorator) now throws
|
||||||
|
an exception as only a single function can be associated with a single
|
||||||
|
watcher. Issue #154.
|
||||||
|
* Another fix for atexit handling so that when disposing of connections the
|
||||||
|
atexit handler is removed. PR #190, patch by Devaev Maxim.
|
||||||
|
* Fix atexit handling for kazoo threading handler, PR #183. Patch by
|
||||||
|
Brian Wickman.
|
||||||
|
* Partitioner should handle a suspended connection properly and restore
|
||||||
|
an allocated state if it was allocated previously. Patch by Manish Tomar.
|
||||||
|
* Issue #167: Closing a client that was never started throws a type error.
|
||||||
|
Patch by Joshua Harlow.
|
||||||
|
* Passing dictionaries to KazooClient.__init__() wasn't actually working
|
||||||
|
properly. Patch by Ryan Uber.
|
||||||
|
* Issue #119: Handler timeout takes the max of the random interval or
|
||||||
|
the read timeout to ensure a negative number isn't used for the read
|
||||||
|
timeout.
|
||||||
|
* Fix ordering of exception catches in lock.acquire as it was capturing a
|
||||||
|
parent exception before the child. Patch by ReneSac.
|
||||||
|
* Fix issue with client.stop() not always setting the client state to
|
||||||
|
KeeperState.CLOSED. Patch by Jyrki Pulliainen in PR #174.
|
||||||
|
* Issue #169: Fixed pipes leaking into child processes.
|
||||||
|
* Add section on contributing recipes, add maintainer/status information for
|
||||||
|
existing recipes.
|
||||||
|
* Add note about alternate use of DataWatch.
|
||||||
|
- Remove Require python-zope.interfaces
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 2 08:25:32 UTC 2014 - speilicke@suse.com
|
Wed Apr 2 08:25:32 UTC 2014 - speilicke@suse.com
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python-kazoo
|
Name: python-kazoo
|
||||||
Version: 1.3.1
|
Version: 2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Higher Level Zookeeper Client
|
Summary: Higher Level Zookeeper Client
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@@ -32,9 +32,7 @@ BuildRequires: unzip
|
|||||||
#BuildRequires: python-mock
|
#BuildRequires: python-mock
|
||||||
#BuildRequires: python-coverage
|
#BuildRequires: python-coverage
|
||||||
#BuildRequires: python-nose
|
#BuildRequires: python-nose
|
||||||
#BuildRequires: python-zope.interface >= 3.8.0
|
|
||||||
#BuildRequires: python-nose
|
#BuildRequires: python-nose
|
||||||
Requires: python-zope.interface >= 3.8.0
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
||||||
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
|||||||
Reference in New Issue
Block a user