14
0

- 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%

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=9
This commit is contained in:
Antoine Belvire
2017-02-18 11:10:56 +00:00
committed by Git OBS Bridge
parent 818b8245ed
commit fe6e1f81ea

View File

@@ -5,6 +5,17 @@ Sat Feb 18 10:46:56 UTC 2017 - antoine.belvire@opensuse.org
* Dropped Python 2.6 support
* Improved error handling inside code executed when Zeroconf
object is being closed
- 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%
-------------------------------------------------------------------
Wed Dec 28 13:23:11 UTC 2016 - jengelh@inai.de