- Update to 2.5.7:
- Now depends on amqp 1.0.9 - Redis: A regression in 2.5.6 caused the redis transport to ignore options set in transport_options. - Redis: New socket_timeout transport option. - Redis: InconsistencyError is now regarded as a recoverable error. - Resource pools: Will no longer attempt to release resource that was never acquired. - MongoDB: Now supports the ssl option. Contributed by Sebastian Pawlus. - Update to 2.5.7: - Now depends on amqp 1.0.9 - Redis: A regression in 2.5.6 caused the redis transport to ignore options set in transport_options. - Redis: New socket_timeout transport option. - Redis: InconsistencyError is now regarded as a recoverable error. - Resource pools: Will no longer attempt to release resource that was never acquired. - MongoDB: Now supports the ssl option. Contributed by Sebastian Pawlus. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=73
This commit is contained in:
parent
364656dd22
commit
2d7b88b505
@ -1,24 +1,30 @@
|
|||||||
--- kombu.egg-info/requires.txt
|
Index: kombu.egg-info/requires.txt
|
||||||
|
===================================================================
|
||||||
|
--- kombu.egg-info/requires.txt.orig
|
||||||
+++ kombu.egg-info/requires.txt
|
+++ kombu.egg-info/requires.txt
|
||||||
@@ -1,2 +1,2 @@
|
@@ -1,2 +1,2 @@
|
||||||
anyjson>=0.3.3
|
anyjson>=0.3.3
|
||||||
-amqp>=1.0.8,<1.1.0
|
-amqp>=1.0.9,<1.1.0
|
||||||
\ Kein Zeilenumbruch am Dateiende.
|
\ No newline at end of file
|
||||||
+amqp>=1.0.8
|
+amqp>=1.0.9
|
||||||
--- requirements/default.txt
|
Index: requirements/default.txt
|
||||||
|
===================================================================
|
||||||
|
--- requirements/default.txt.orig
|
||||||
+++ requirements/default.txt
|
+++ requirements/default.txt
|
||||||
@@ -1,2 +1,2 @@
|
@@ -1,2 +1,2 @@
|
||||||
anyjson>=0.3.3
|
anyjson>=0.3.3
|
||||||
-amqp>=1.0.8,<1.1.0
|
-amqp>=1.0.9,<1.1.0
|
||||||
+amqp>=1.0.8
|
+amqp>=1.0.9
|
||||||
--- setup.cfg
|
Index: setup.cfg
|
||||||
|
===================================================================
|
||||||
|
--- setup.cfg.orig
|
||||||
+++ setup.cfg
|
+++ setup.cfg
|
||||||
@@ -28,7 +28,7 @@
|
@@ -28,7 +28,7 @@ upload-dir = docs/.build/html
|
||||||
|
|
||||||
[bdist_rpm]
|
[bdist_rpm]
|
||||||
requires = anyjson >= 0.3.3
|
requires = anyjson >= 0.3.3
|
||||||
- amqp < 1.1.0
|
- amqp < 1.1.0
|
||||||
+ amqp >= 1.0.8
|
+ amqp >= 1.0.9
|
||||||
importlib
|
importlib
|
||||||
ordereddict
|
ordereddict
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:01c0ba72782535df913b519d6509835f8210b4dbfde652d3a1c6f545d737beb9
|
|
||||||
size 301670
|
|
3
kombu-2.5.7.tar.gz
Normal file
3
kombu-2.5.7.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:32bcfabc02366738101861f06e737106dea8d2ea784a588d7a9e1fbd940b7a78
|
||||||
|
size 301904
|
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 8 13:10:29 UTC 2013 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 2.5.7:
|
||||||
|
- Now depends on amqp 1.0.9
|
||||||
|
- Redis: A regression in 2.5.6 caused the redis transport to
|
||||||
|
ignore options set in transport_options.
|
||||||
|
- Redis: New socket_timeout transport option.
|
||||||
|
- Redis: InconsistencyError is now regarded as a recoverable error.
|
||||||
|
- Resource pools: Will no longer attempt to release resource
|
||||||
|
that was never acquired.
|
||||||
|
- MongoDB: Now supports the ssl option.
|
||||||
|
Contributed by Sebastian Pawlus.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 12 13:27:34 UTC 2013 - dmueller@suse.com
|
Tue Feb 12 13:27:34 UTC 2013 - dmueller@suse.com
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python-kombu
|
Name: python-kombu
|
||||||
Version: 2.5.6
|
Version: 2.5.7
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: AMQP Messaging Framework for Python
|
Summary: AMQP Messaging Framework for Python
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
|
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 8 13:10:29 UTC 2013 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 2.5.7:
|
||||||
|
- Now depends on amqp 1.0.9
|
||||||
|
- Redis: A regression in 2.5.6 caused the redis transport to
|
||||||
|
ignore options set in transport_options.
|
||||||
|
- Redis: New socket_timeout transport option.
|
||||||
|
- Redis: InconsistencyError is now regarded as a recoverable error.
|
||||||
|
- Resource pools: Will no longer attempt to release resource
|
||||||
|
that was never acquired.
|
||||||
|
- MongoDB: Now supports the ssl option.
|
||||||
|
Contributed by Sebastian Pawlus.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 7 19:34:46 UTC 2013 - alexandre@exatati.com.br
|
Thu Feb 7 19:34:46 UTC 2013 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python3-kombu
|
Name: python3-kombu
|
||||||
Version: 2.5.6
|
Version: 2.5.7
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: AMQP Messaging Framework for Python
|
Summary: AMQP Messaging Framework for Python
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
|
Loading…
Reference in New Issue
Block a user