Skip to content

Releases: aio-libs/aiozmq

aiozmq 0.9.0

25 Jan 16:33
Compare
Choose a tag to compare

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.)

aiozmq 0.7.1

20 Sep 07:51
Compare
Choose a tag to compare

Minor release, no new features

Changes

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

aiozmq 0.7 release

31 Jul 11:24
Compare
Choose a tag to compare

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

aiozmq 0.6.1

19 May 08:49
Compare
Choose a tag to compare

Minor bugfix aiozmq release.

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

aiozmq 0.6.0 release

14 Feb 18:36
Compare
Choose a tag to compare

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

aiozmq 0.5.3

23 Nov 12:42
Compare
Choose a tag to compare

Minor release, has no code changes after 0.5.2

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

0.5.1 bugfix release

27 Sep 18:00
Compare
Choose a tag to compare

Fix loopless transport implementation.

aiozmq 0.5 has been released

18 Aug 14:41
Compare
Choose a tag to compare

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).

Release 0.4.1

03 Jul 09:09
Compare
Choose a tag to compare

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