2019-09-02 11:55:50 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-amqp: updated to 2.5.1
2.5.1
- Ignore all methods except Close and Close-OK when channel/connection is closing
- Fix faulty ssl sni intiation parameters
- Undeprecate auto_delete flag for exchanges.
- Improved tests and testing environments
|
2019-07-09 13:35:15 by Nia Alarie | Files touched by this commit (9) |
Log message:
Use https for readthedocs.io.
|
2019-06-21 13:21:11 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-amqp: updated to 2.5.0
2.5.0
- Drop Python 3.4
- Add new platform
- Numerious bug fixes
|
2019-03-06 19:42:16 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-amqp: updated to 2.4.2
2.4.2:
- Added support for the Cygwin platform
- Correct offset incrementation when parsing bitmaps.
- Consequent bitmaps are now parsed correctly.
Previously the bit counter was reset with every bit.
We now reset it once per 8 bits, when we consume the next byte.
|
2019-02-13 17:20:01 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-amqp: updated to 2.4.1
2.4.1:
- To avoid breaking the API basic_consume() now returns the consumer tag
instead of a tuple when nowait is True.
- Fix crash in basic_publish when broker does not support connection.blocked
capability.
- read_frame() is now Python 3 compatible for large payloads.
- Support float read_timeout/write_timeout.
- Always treat SSLError timeouts as socket timeouts.
- Treat EWOULDBLOCK as timeout.
This fixes a regression on Windows from 2.4.0.
|
2019-01-15 12:42:59 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-amqp: updated to 2.4.0
2.4.0
- Fix inconsistent frame_handler return value.
The function returned by frame_handler is meant to return True
once the complete message is received and the callback is called,
False otherwise.
This fixes the return value for messages with a body split across
multiple frames, and heartbeat frames.
- Don't default content_encoding to utf-8 for bytes.
This is not an acceptable default as the content may not be
valid utf-8, and even if it is, the producer likely does not
expect the message to be decoded by the consumer.
- Fix encoding of messages with multibyte characters.
Body length was previously calculated using string length,
which may be less than the length of the encoded body when
it contains multibyte sequences. This caused the body of
the frame to be truncated.
- Respect content_encoding when encoding messages.
Previously the content_encoding was ignored and messages
were always encoded as utf-8. This caused messages to be
incorrectly decoded if content_encoding is properly respected
when decoding.
- Fix AMQP protocol header for AMQP 0-9-1.
- Add support for Python 3.7.
Change direct SSLSocket instantiation with wrap_socket.
Added Python 3.7 to CI.
- Add support for field type "x" (byte array).
- If there is an exception raised on Connection.connect or Connection.close,
ensure that the underlying transport socket is closed.
- TCP_USER_TIMEOUT has to be excluded from KNOWN_TCP_OPTS in BSD platforms.
- Handle negative acknowledgments.
- Added integration tests.
- Fix basic_consume() with no consumer_tag provided.
- Improved empty AMQPError string representation.
- Drain events before publish.
- Don't revive channel when connection is closing.
|
2018-06-18 09:09:38 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-amqp: updated to 2.3.2
2.3.1
- Fix a regression that occurs when running amqp under Python 2.7.
2.3.2
- Fix a regression that occurs when running amqp under Python 2.7 on OSX.
TCP_USER_TIMEOUT is not available when running on OSX.
We now remove it from the set of known TCP options.
|
2017-09-16 21:27:31 by Thomas Klausner | Files touched by this commit (372) |
Log message:
Reset maintainer
|
2017-09-15 13:28:22 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-amqp: update to 2.2.2
Changes 2.2.2:
- Sending empty messages no longer hangs. Instead an empty message is sent correctly.
- Fixed compatibility issues in UTF-8 encoding behavior between Py2/Py3
|
2017-07-14 09:52:39 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
2.2.1:
- Fix implicit conversion from bytes to string on the connection object.
This issue has caused Celery to crash on connection to RabbitMQ.
|