Revisions of python-pika

Ana Guerrero's avatar Ana Guerrero (anag+factory) accepted request 1125422 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 21)
- switch SLE15 build to the new python stack as only >= 3.7 is
  supported

  * see https://github.com/pika/pika/milestone/19?closed=1
    deprecated and will raise a DeprecationWarning. If you relied on
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 1095667 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 20)
- update to 1.3.2:
  * see https://github.com/pika/pika/milestone/22?closed=1
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 1046518 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 19)
- update to 1.3.1:
  * see https://github.com/pika/pika/milestone/21?closed=1
Richard Brown's avatar Richard Brown (RBrownFactory) accepted request 1007460 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 18)
- update to 1.3.0:
  * see https://github.com/pika/pika/milestone/19?closed=1
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 973774 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 17)
- version update to 1.2.1
  1.2.1 2022-04-27
  `GitHub milestone <https://github.com/pika/pika/milestone/18?closed=1>`_
  1.2.0 2021-02-04
  `GitHub milestone <https://github.com/pika/pika/milestone/17?closed=1>`_
- python-mock is not required for build
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 794817 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 16)
- Switch from using nosetest runner to pytest
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 717865 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 15)
- Update to 1.1.0:
  * various bugfixes
- Drop merged patch e95001e480ec30f1617c47e77fb92e0384ff9e78.patch
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 710562 from Thomas Bechtold's avatar Thomas Bechtold (tbechtold) (revision 14)
- Fix build for older distros which fail with
  UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 4575: \
    ordinal not in range(128)
  Added e95001e480ec30f1617c47e77fb92e0384ff9e78.patch
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 695707 from Ondřej Súkup's avatar Ondřej Súkup (mimi_vx) (revision 13)
- update to 1.0.1
 * API docstring updates
 * Twisted adapter: Add basic_consume Deferred to the call list
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 692275 from Ondřej Súkup's avatar Ondřej Súkup (mimi_vx) (revision 12)
- update to 1.0.0
 * AsyncioConnection, TornadoConnection and TwistedProtocolConnection
     are no longer auto-imported
 * BlockingConnection.consume now returns (None, None, None) when inactivity
     timeout is reached
 * Python 3.7 support
 * all_channels parameter of the Channel.basic_qos method renamed to global_qos
 *  global_ parameter of the Basic.Qos spec class renamed to global_qos
 * NOTE: heartbeat_interval is removed, use heartbeat instead.
 * NOTE: The backpressure_detection option of ConnectionParameters
     and URLParameters property is REMOVED in favor of Connection.Blocked
     and Connection.Unblocked. See Connection.add_on_connection_blocked_callback
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 684704 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 11)
- Update to 0.13.1:
  * URLParameters with SSL options not working
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 671960 from Todd R's avatar Todd R (TheBlackCat) (revision 10)
- Update to 0.13.0:
  * AsyncioConnection, TornadoConnection and TwistedProtocolConnection are no longer auto-imported
  * Python 3.7 support
- Drop merged patch 1119-increase_timeouts.patch
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 638342 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 9)
- Add 1119-increase_timeouts.patch to increase timeouts and hopefully
  make tests more resilient.
- Fix %files section double inclduing egg files.
- Switch to github tarball in order to get tests
- Run the tests
- Version update to 0.12.0:
  * BlockingConnection now supports the add_callback_threadsafe method which
    allows a function to be executed correctly on the IO loop thread.
- Added Dep: Pika requires ssl python module provided by python
- Fix license macro
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 4)
Split 13.2 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 209553 from Denisart Benjamin's avatar Denisart Benjamin (posophe) (revision 3)
- Update to version 0.9.13
  + IPv6 Support
  + Officially remove support for <= Python 2.5 even though it was
    broken already
  + Drop pika.simplebuffer.SimpleBuffer in favor of the Python stdlib
    collections.deque object
  + New default object for receiving content is a “bytes” object which
    is a str wrapper in Python 2, but paves way for Python 3 support
  + New “Raw” mode for frame decoding content frames (#334) addresses
    issues #331, #229
  + Connection and Disconnection logic refactored, allowing for cleaner
    separation of protocol logic and socket handling logic as well as
    connection state management
  + New “on_open_error_callback” argument in creating connection
    objects and new Connection.add_on_open_error_callback method
  + New Connection.connect method to cleanly allow for reconnection code
  + Support for all AMQP field types, using protocol specified
    signed/unsigned unpacking
  + Method signature for creating connection objects has new argument
    “on_open_error_callback” which is positionally before “on_close_callback”
  + Internal callback variable names in connection.Connection have been
    renamed and constants used. If you relied on any of these callbacks
    outside of their internal use, make sure to check out the new constants.
  + Connection._connect method, which was an internal only method is now
    deprecated and will raise a DeprecationWarning. If you relied on 
    this method, your code needs to change.
  + pika.simplebuffer has been removed
  + BlockingConnection consumer generator does not free buffer
    when exited (#328)
  + Unicode body payloads in the blocking adapter raises exception (#333)
  + Support “b” short-short-int AMQP data type (#318)
  + Docstring type fix in adapters/select_connection (#316)
  + IPv6 not supported (#309)
  + Stop the HeartbeatChecker when connection is closed (#307)
  + Unittest fix for SelectConnection (#336)
  + Handle condition where no connection or socket exists but
    SelectConnection needs a timeout for retrying a connection (#322)
  + TwistedAdapter lagging behind BaseConnection changes (#321)
  + Refactored documentation
  + Added Twisted Adapter example (#314)
- Remove CFLAGS definition
- Remove redundant %clean section (forwarded request 209552 from posophe)
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 2)
Split 13.1 from Factory
Displaying revisions 1 - 20 of 21
openSUSE Build Service is sponsored by