Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,21 @@ See examples directory for more.
Changelog
=========

0.33.0 (Unreleased)
===================

This release eliminates all threading locks as all non-threadsafe operations
now happen in the event loop.

Technically backwards incompatible:

* Remove duplicate unregister_all_services code (#910) @bdraco

Calling Zeroconf.close from same asyncio event loop zeroconf is running in
will now skip unregister_all_services and log a warning as this a blocking
operation and is not async safe and never has been.

Use AsyncZeroconf instead, or for legacy code call async_unregister_all_services before Zeroconf.close

0.32.1
======
Expand Down