- Update to 1.3.0:
* Broker connection info can be now be specified using URLs * Now comes with default global connection and producer pools * SQS Transport: Persistence using SimpleDB is now disabled by default, after reports of unstable SimpleDB connections leading to errors * Producer can now be used as a context manager * Producer.__exit__ now properly calls release instead of close * Now silences all exceptions from import ctypes to match behaviour of the standard Python uuid module, and avoid passing on MemoryError exceptions on SELinux-enabled systems (Issue #52 + Issue #53) * amqp is now an alias to the amqplib transport * kombu.syn.detect_environment now returns ‘default’, ‘eventlet’, or ‘gevent’ depending on what monkey patches have been installed * Serialization registry has new attribute type_to_name so it is possible to lookup serializater name by content type * Exchange argument to Producer.publish can now be an Exchange instance * compat.Publisher now supports the channel keyword argument * Acking a message on some transports could lead to KeyError being raised (Issue #57) * Connection pool: Connections are no long instantiated when the pool is created, but instantiated as needed instead * Tests now pass on PyPy * Connection.as_uri now includes the password if the keyword argument include_password is set * Virtual transports now comes with a default default_connection_params attribute OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=14
This commit is contained in:
parent
95c4bae812
commit
5f6c3ebce4
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1f7ad3559c44b9d6bff0dc2fee66e01e764433ecda612b0dd2bcdeaf67d064e5
|
||||
size 210136
|
3
kombu-1.3.0.tar.bz2
Normal file
3
kombu-1.3.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:af2554b22261444fb94ea689099e94f670f7c3d6683d2b969ba425ffd26105fd
|
||||
size 213322
|
@ -1,3 +1,36 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 5 22:53:31 UTC 2011 - alexandre@exatati.com.br
|
||||
|
||||
- Update to 1.3.0:
|
||||
* Broker connection info can be now be specified using URLs
|
||||
* Now comes with default global connection and producer pools
|
||||
* SQS Transport: Persistence using SimpleDB is now disabled by
|
||||
default, after reports of unstable SimpleDB connections leading
|
||||
to errors
|
||||
* Producer can now be used as a context manager
|
||||
* Producer.__exit__ now properly calls release instead of close
|
||||
* Now silences all exceptions from import ctypes to match behaviour
|
||||
of the standard Python uuid module, and avoid passing on
|
||||
MemoryError exceptions on SELinux-enabled systems (Issue #52 +
|
||||
Issue #53)
|
||||
* amqp is now an alias to the amqplib transport
|
||||
* kombu.syn.detect_environment now returns ‘default’, ‘eventlet’,
|
||||
or ‘gevent’ depending on what monkey patches have been installed
|
||||
* Serialization registry has new attribute type_to_name so it is
|
||||
possible to lookup serializater name by content type
|
||||
* Exchange argument to Producer.publish can now be an Exchange
|
||||
instance
|
||||
* compat.Publisher now supports the channel keyword argument
|
||||
* Acking a message on some transports could lead to KeyError being
|
||||
raised (Issue #57)
|
||||
* Connection pool: Connections are no long instantiated when the
|
||||
pool is created, but instantiated as needed instead
|
||||
* Tests now pass on PyPy
|
||||
* Connection.as_uri now includes the password if the keyword
|
||||
argument include_password is set
|
||||
* Virtual transports now comes with a default
|
||||
default_connection_params attribute
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 29 12:44:33 UTC 2011 - alexandre@exatati.com.br
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
%define mod_name kombu
|
||||
|
||||
Name: python-%{mod_name}
|
||||
Version: 1.2.1
|
||||
Version: 1.3.0
|
||||
Release: 0
|
||||
License: BSD License
|
||||
Summary: AMQP Messaging Framework for Python
|
||||
@ -68,7 +68,6 @@ export CFLAGS="%{optflags}"
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS Changelog FAQ INSTALL README THANKS TODO
|
||||
%python_sitelib/%{mod_name}*
|
||||
%python_sitelib/*.egg-info
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user