Aiozmq Versions Save

Asyncio (pep 3156) integration with ZeroMQ

v0.9.0

4 years ago

After a long hiatus, we're back! This release adds support for Python 3.7 and Python 3.8.

(Release 0.8.0 was tagged but never released on PyPI. This release is not yet on PyPI while I sort out some permissions issues.)

v0.7.1

8 years ago

Minor release, no new features

Changes

  • Fix monitoring events implementation
  • Make the library compatible with Python 3.5

v0.7.0

8 years ago

Major aiozmq release.

The main feature is adding support for zmq monitoring events (thanks to Chris Laws).

The full list of changes:

  • Implement monitoring ZMQ events #50
  • Do deeper lookup for inhereted classes #54
  • Relax endpont check #56
  • Implement monitoring events for stream api #52

v0.6.1

8 years ago

Minor bugfix aiozmq release.

It fixes bug #48 (dynamically get list of pyzmq socket types).

v0.6.0

9 years ago

The main feature of 0.6 branch is streams API: http://aiozmq.readthedocs.org/en/0.6/stream.html

Full list of changes:

  • Process asyncio specific exceptions as builtins.
  • Add repr(exception) to rpc server call logs if any
  • Add transport.get_write_buffer_limits() method
  • Add repr to transport
  • Add zmq_type to tr.get_extra_info()
  • Add zmq streams

v0.5.3

9 years ago

Minor release, has no code changes after 0.5.2

Added example for core transport/protocol usage, benchmark refactored.

v0.5.1

9 years ago

Fix loopless transport implementation.

v0.5.0

9 years ago

aiozmq 0.5 is a major release.

The main feature of release is the ability to work with any event loop that supports .add_reader()/.add_writer() methods.

ZmqEventLoopPolicy is not required anymore (but still present for sake of backward compatibility).

v0.4.1

9 years ago

Enhancement release: exclude_log_exceptions parameter added to rpc servers.

See http://aiozmq.readthedocs.org/en/0.4/rpc.html#logging-exceptions-from-remote-calls-at-server-side for details