14
0

Accepting request 818948 from home:mnhauke:network:automation

- Update to version 0.8.0
  * Fixed weak reference support in classes with __slots__
  * Added __bytes__ to IPAddress for intuitive usage
  * Added format() function to EUI
  * Added IPNetwork.netmask property setter
  * Added support for IABs in the 40:D8:55 OUI
  * Drastically optimized spanning_cidr()
  * Fixed "x.x.x.x/x" in IPNetwork tests
  * Added support for passing iterables of IPRange to IPSet and
    cidr_merge()
  Bugfixes:
  * N log N complexity instead of linear
  * Efficiently creating a large IPSet from a list of IPRanges?
  * Weak reference support
- Run testsuite

OBS-URL: https://build.opensuse.org/request/show/818948
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=25
This commit is contained in:
Tomáš Chvátal
2020-07-06 15:10:29 +00:00
committed by Git OBS Bridge
parent ab487329ec
commit 97b1c875af
4 changed files with 32 additions and 11 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Sat Jul 4 18:19:40 UTC 2020 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.8.0
* Fixed weak reference support in classes with __slots__
* Added __bytes__ to IPAddress for intuitive usage
* Added format() function to EUI
* Added IPNetwork.netmask property setter
* Added support for IABs in the 40:D8:55 OUI
* Drastically optimized spanning_cidr()
* Fixed "x.x.x.x/x" in IPNetwork tests
* Added support for passing iterables of IPRange to IPSet and
cidr_merge()
Bugfixes:
* N log N complexity instead of linear
* Efficiently creating a large IPSet from a list of IPRanges?
* Weak reference support
- Run testsuite
-------------------------------------------------------------------
Thu May 21 10:56:34 UTC 2020 - Petr Gajdos <pgajdos@suse.com>