Skip to content

Releases: mosquito/aio-pika

9.6.2

22 Mar 19:02
8136a8c

Choose a tag to compare

What's Changed

  • Include license file in built distributions via project.license-files by @julia-thorn in #698

New Contributors

Full Changelog: 9.6.1...9.6.2

9.6.1

23 Feb 15:41
57029c3

Choose a tag to compare

What's Changed

Full Changelog: 9.6.0...9.6.1

9.6.0

21 Feb 18:17

Choose a tag to compare

What's Changed

Full Changelog: 9.5.8...9.6.0

9.4.2

01 Jul 13:57

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 9.4.1...9.4.2

9.4.1

19 Mar 11:58

Choose a tag to compare

What's Changed

  • Do not use deprecated datetime.utcnow and datetime.utcfromtimestamp by @decaz in #610
  • add 3.12 by @mosquito in #603
  • Prevent deadlock in RobustChannel.reopen() by @Darsstar in #622

Full Changelog: 9.4.0...9.4.1

9.4.0

15 Jan 14:09
8804f3c

Choose a tag to compare

  • drop python 3.7 support
  • update aiormq to 6.8.0

9.1.3

07 Jun 15:07

Choose a tag to compare

  • Ported publisher confirms tutorial by @MaPePeR #550
  • Fixed errored response when aio_pika.patterns.RPC can not serialize the result #552

9.1.2

01 Jun 16:16

Choose a tag to compare

  • Small fixes in docs

9.1.1

01 Jun 16:12

Choose a tag to compare

  • Upgrade requirements in poetry.lock
  • Rebuild docs

9.1.0

01 Jun 15:57
a19671d

Choose a tag to compare

9.1.0

The bulk of the changes are related to how the library entities are now interconnected. In previous versions of aio_pika.Channel instances not contains a link to the aio_pika.Connection instances for now is contains it.

While I don't want custom code to work directly with the aiormq.Channel instance, this was a public API and I should warn you about the change here. The aio_pika.Channel.channel property is deprecated. Use aio_pika.Channel.get_underlay_chanel() instead.

Now all library entities already use this method.