cbd2f17058
- Update to 0.136.0 * fix: update python-semantic-release to fix release process * fix: add ignore for .c file for wheels * fix: correct typos * feat: use SPDX license identifier - from version 0.135.0 * feat: improve performance of DNSCache backend
Matej Cepl2024-11-05 21:30:08 +00:00
ecfe465d6b
Accepting request 1202578 from devel:languages:python
Ana Guerrero2024-09-23 13:23:51 +00:00
8e2ed284f4
- update to 0.134.0: * Improve performance when IP addresses change frequently * Improve helpfulness of ServiceInfo.request assertions
Dirk Mueller2024-09-23 09:06:54 +00:00
56c43f0b47
Accepting request 1199500 from devel:languages:python
Ana Guerrero2024-09-09 12:44:47 +00:00
44629868f7
- update to 0.133.0: * Improve performance of ip address caching * Enable building of arm64 macOS builds * Add classifier for python 3.13 * Python 3.13 support
Dirk Mueller2024-09-08 16:34:52 +00:00
6c80be97b6
- update to 0.132.2: * Update references to minimum-supported python version of 3.8 * Set change during iteration when dispatching listeners * Make async_get_service_info available on the Zeroconf object * Drop python 3.7 support * Avoid including scope_id in IPv6Address object if its zero * Small speed up to constructing outgoing packets * Speed up processing incoming packets * Speed up the query handler * Make ServiceInfo aware of question history * Small speed up to ServiceInfo construction * Significantly improve efficiency of the ServiceBrowser scheduler * Small speed up to processing incoming records * Small performance improvement for converting time * Small performance improvement for ServiceInfo asking questions * Small performance improvement constructing outgoing questions * Scheduling race with the QueryScheduler * Ensure question history suppresses duplicates * Microsecond precision loss in the query handler * Ensure IPv6 scoped address construction uses the string cache * Add decoded_properties method to ServiceInfo * Ensure ServiceInfo.properties always returns bytes * Cache is_unspecified for zeroconf ip address objects * ServiceInfo.properties always returns a dictionary with type dict[bytes, bytes | None] instead of a mix str and bytes. It was only possible to get a mixed dictionary if it was manually passed in when ServiceInfo was constructed. * Performance regression with ServiceInfo IPv6Addresses
Dirk Mueller2024-05-08 10:56:39 +00:00
576d1b9273
- update to 0.56.0: * Reduce denial of service protection overhead (#1157) * Improve performance of processing incoming records (#1155) * Avoid waking async_request when record updates are not relevant (#1153) (a3f970c) * Addresses incorrect after server name change (#1154) * Improve ServiceBrowser performance by removing OrderedDict * Make parsed_scoped_addresses return addresses in the same order as all other methods (#1150) (9b6adcf) * Small cleanups to cache cleanup interval (#1146) (b434b60) * Add ip_addresses_by_version to ServiceInfo (#1145) * Speed up processing records in the ServiceBrowser (#1143) * Speed up matching types in the ServiceBrowser (#1144) * Include tests and docs in sdist archives (#1142) (da10a3b) * Improve performance of constructing ServiceInfo (#1141) * Small speed up to handler dispatch (#1140) (5bd1b6e) * Speed up processing incoming records (#1139) (7246a34) * Reduce overhead to send responses (#1135) (c4077dd) * Correct duplicate record entries in windows wheels by updating poetry-core (#1134) (a43055d) * Hold a strong reference to the query sender start task (#1128) (808c3b2) * Missing c extensions with newer poetry (#1129) (44d7fc6) * The equality checks for DNSPointer and DNSService should be case insensitive (#1122) (48ae77f) * Optimize equality checks for DNS records (#1120) (3a25ff7) * Optimize the dns cache (#1119) (e80fcef) * Optimize construction of outgoing packets (#1118) (81e186d) * Optimize dns objects by adding pxd files (#1113) (919d4d8) * Optimize incoming parser by reducing call stack (#1116)
Dirk Mueller2023-05-03 10:29:33 +00:00
7a36669b43
- Add missing dependency on python-async_timeout at run time.
Antoine Belvire
2022-09-17 19:00:27 +00:00
0313cf748e
- Re-enable test_service_browser_expire_callbacks: Should be fixed with 0.39.0 (gh#jstasiak/python-zeroconf!1084). - Added build dependency python-async_timeout in order to fix build failure. - Update to 0.39.1: * Performance improvements for constructing outgoing packet data. - Changes from 0.39.0: * Switch to using async_timeout for timeouts: Significantly reduces the number of asyncio tasks that are created when using ServiceInfo or AsyncServiceInfo (gh#jstasiak/python-zeroconf!1081).
Antoine Belvire
2022-09-17 18:52:30 +00:00
df5d5e4b0d
Accepting request 1004373 from home:marec2000:branches:devel:languages:python
Antoine Belvire
2022-09-17 18:30:01 +00:00
bde8917676
- update to 0.39.1: * Switch to using async_timeout for timeouts * Significantly reduces the number of asyncio tasks that are created when * using ServiceInfo or AsyncServiceInfo * Performance improvements for constructing outgoing packet data
Dirk Mueller2022-09-17 07:30:02 +00:00
f8deecf013
- update to 0.38.6: * Performance improvements for fetching ServiceInfo * Fix ServiceBrowsers not getting ServiceStateChange.Removed callbacks on PTR record expire * Fix missing minimum version of python 3.7 * Fix IP Address updates when hostname is uppercase
Dirk Mueller2022-06-04 12:15:15 +00:00
18c76bee2e
- update to 0.38.1: * Dropped Python 3.6 support * Handle Service types that end with another service type * Improve performance of query scheduler * Avoid linear type searches in ServiceBrowsers
Dirk Mueller2022-01-03 10:30:56 +00:00
aae081512b
- update to 0.37.0: * Adding a listener that does not inherit from RecordUpdateListener now logs an error * The NotRunningException exception is now thrown when Zeroconf is not running (#1033) @bdraco * Before this change the consumer would get a timeout or an EventLoopBlocked exception when calling ServiceInfo.*request when the instance had already been shutdown or had failed to startup. * The EventLoopBlocked exception is now thrown when a coroutine times out
Dirk Mueller2021-11-29 11:11:24 +00:00
7b1bd22923
- update to 0.36.12: * scope_id is now stripped from IPv6 addresses if given * Optimized decoding labels from incoming packets * Prevent service lookups from deadlocking if time abruptly moves backwards
Dirk Mueller2021-11-06 18:22:51 +00:00
0af8a6766f
- update to 0.36.8 * Fixed ServiceBrowser infinite loop when zeroconf is closed before it is canceled * Improved performance of responding to queries * Improved log message when receiving an invalid or corrupt packet * Improved performance of sending outgoing packets * Reduced memory usage for incoming and outgoing packets * Improved performance of constructing outgoing packets * Deferred parsing of incoming packets when it can be avoided * Improved performance of parsing incoming packets
Dirk Mueller2021-10-16 19:51:57 +00:00
cf8c11b693
- update to 0.29.0: * A single socket is used for listening on responding when InterfaceChoice.Default is chosen. * Dropped Python 3.5 support
Dirk Mueller2021-04-21 21:31:47 +00:00
0dfec8eb62
- update to 0.28.7: * Fixed the IPv6 address rendering in the browser example, thanks to Alexey Vazhnov. * Fixed a crash happening when a service is added or removed during handle_response and improved exception handling, thanks to J. Nick Koston.
Dirk Mueller2020-12-19 10:36:18 +00:00
c8f4ed9e2c
- update to 0.28.6: * Loosened service name validation when receiving from the network this lets us handle some real world devices previously causing errors * Enabled ignoring duplicated messages which decreases CPU usage * Fixed spurious AttributeError: module 'unittest' has no attribute 'mock' * Improved cache reaper performance significantly
Dirk Mueller2020-11-26 08:51:49 +00:00
ecd1e68293
- update to 0.28.3: * Reduced a time an internal lock is held which should eliminate deadlocks in high-traffic networks. * Stopped asking questions we already have answers for in cache, thanks to Paul Daumlechner. * Removed initial delay before querying for service info, thanks to Erik Montnemery. * Fixed a resource leak connected to using ServiceBrowser with multiple types
Dirk Mueller2020-09-16 11:23:55 +00:00
9b7d197737
- update to 0.27.1 * Improved the logging situation * Large multi-resource responses are now split into separate packets which fixes a bad mdns-repeater/ChromeCast Audio interaction ending with ChromeCast Audio crash (and possibly some others) and improves RFC 6762 compliance, thanks to Greg Badros * Added a warning presented when the listener passed to ServiceBrowser lacks update_service() callback * Added support for finding all services available in the browser example, thanks to Perry Kunder * Removed previously deprecated ServiceInfo address constructor parameter and property * Improved readability of logged incoming data, thanks to Erik Montnemery * Threads are given unique names now to aid debugging, thanks to Erik Montnemery * Fixed a regression where get_service_info() called within a listener add_service method would deadlock, timeout and incorrectly return None, fix thanks to Erik Montnemery, but Matt Saxon and Hmmbob were also involved in debugging it. * Added support for multiple types to ServiceBrowser, thanks to J. Nick Koston * Fixed a race condition where a listener gets a message before the lock is created * Fixed a performance regression introduced in 0.26.0, thanks to J. Nick Koston (this is close in spirit to an optimization made in 0.24.5 by the same author) * Fixed a regression where service update listener wasn't called on IP address change (it's called on SRV/A/AAAA record changes now), thanks to Matt Saxon
Dirk Mueller2020-06-08 19:54:45 +00:00
c3eb83dd03
- Update to 0.21.3: * no upstream changelog * dropped python2 support - Execute tests - Update requirements based on upstream requires
Tomáš Chvátal
2019-03-11 11:59:24 +00:00
53880ddb9c
- Rebase patch: * Remove python-zeroconf-0.17.4-enum34-instead-of-enum-compat.patch. * Add python-zeroconf-0.19.1-enum34-instead-of-enum-compat.patch.
Antoine Belvire
2017-07-16 20:48:48 +00:00
ce5240661f
- Update to version 0.19.1: * Remove outdated example * On Windows, python-netifaces 0.10.5 triggers a bug - This has no impact for us, therefore there is no need for us to add a version requirement on this dependency as upstream did.
Antoine Belvire
2017-07-16 20:40:06 +00:00
68a8c46a47
Accepting request 481018 from devel:languages:python
Yuchen Lin2017-04-17 08:25:17 +00:00
996015b05b
- Remove .changes file from source (not needed).
Antoine Belvire
2017-03-18 12:54:51 +00:00
6e415dadd5
Accepting request 480969 from home:StefanBruens:branches:devel:languages:python
Antoine Belvire
2017-03-18 09:27:59 +00:00
fe6e1f81ea
- Changes from 0.17.7: * Better Handling of DNS Incoming Packets parsing exceptions * Many exceptions will now log a warning the first time they are seen * Catch and log sendto() errors * Fix/Implement duplicate name change * Fix overly strict name validation introduced in 0.17.6 * Greatly improve handling of oversized packets including: + Implement name compression per RFC1035 + Limit size of generated packets to 9000 bytes as per RFC6762 + Better handle over sized incoming packets * Increased test coverage to 95%
Antoine Belvire
2017-02-18 11:10:56 +00:00
818b8245ed
- Update to 0.18.0: * Dropped Python 2.6 support * Improved error handling inside code executed when Zeroconf object is being closed
Antoine Belvire
2017-02-18 10:57:04 +00:00
39c5fd57a7
- Update to 0.17.6: * Many improvements to address race conditions and exceptions during ZC() startup and shutdown, thanks to: morpav, veawor, justingiorgi, herczy, stephenrauch * Added more test coverage: strahlex, stephenrauch * Stephen Rauch contributed: + Speed up browser startup + Add ZeroconfServiceTypes() query class to discover all advertised service types + Add full validation for service names, types and subtypes + Fix for subtype browsing + Fix DNSHInfo support
Antoine Belvire
2016-07-17 22:43:24 +00:00
a8db0bcae1
- Fix build on SLE 11: avoid BuildArch noarch.
Antoine Belvire
2016-03-16 19:50:24 +00:00
41dbff4282
Accepting request 373941 from home:1Antoine1
Todd R
2016-03-16 19:09:57 +00:00