14
0

- Update to 1.2.1:

* Fix bad version 1.2.0 upload to PyPI – now yanked. No changes to
    the package.
- 1.2.0:
  * Add CLI tool subcommand to display cli-network-info.
  * Support running interactive-shell without IPython installed.
  * Explicitly raise TypeError is a non-string value is passed to
    valid_ipv4 or valid_ipv6.
- 1.1.0:
  * Add the required Python version to the package metadata (#365).
  * Add expand_partial_ipv4_address to the public API.
  * Fix IPNetwork(...) in IPRange(...) false negatives (#157).
  * Fix a few IPNetwork slicing edge cases (#214).
  * Fix support for partial IP addresses accidentally left in IPNetwork in 1.0.0.
  * Fixed an incorrect license classifier in the package metadata.
- 1.0.0:
  * Removed:
    * Drop support for Python versions lower than 3.7.
    * Remove the flag shorthands: N, P and Z. Use NOHOST, INET_PTON
      and ZEROFILL instead.
    * Remove abbreviated CIDR format support in IPNetwork (implicit_prefix=True),
      use cidr_abbrev_to_verbose if you need this behavior.
    * Remove the IPAddress.is_private method.
  * Changed:
    * Stop accepting leading zeros when parsing IPv4 addresses in INET_PTON mode
      (it's been allowed on some platforms).
    * Stop parsing IPv4 addresses permissively (inet_aton()-like) by default.
    * Apply the two changes above to valid_ipv4 as well.
    * Update the address databases to the 2024-02-10 versions.
  * Fixed:

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-netaddr?expand=0&rev=34
This commit is contained in:
2024-03-21 09:25:55 +00:00
committed by Git OBS Bridge
parent 8130dfed35
commit 3df6f29901
4 changed files with 50 additions and 17 deletions

View File

@@ -1,3 +1,40 @@
-------------------------------------------------------------------
Thu Mar 21 09:13:43 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
- Update to 1.2.1:
* Fix bad version 1.2.0 upload to PyPI now yanked. No changes to
the package.
- 1.2.0:
* Add CLI tool subcommand to display cli-network-info.
* Support running interactive-shell without IPython installed.
* Explicitly raise TypeError is a non-string value is passed to
valid_ipv4 or valid_ipv6.
- 1.1.0:
* Add the required Python version to the package metadata (#365).
* Add expand_partial_ipv4_address to the public API.
* Fix IPNetwork(...) in IPRange(...) false negatives (#157).
* Fix a few IPNetwork slicing edge cases (#214).
* Fix support for partial IP addresses accidentally left in IPNetwork in 1.0.0.
* Fixed an incorrect license classifier in the package metadata.
- 1.0.0:
* Removed:
* Drop support for Python versions lower than 3.7.
* Remove the flag shorthands: N, P and Z. Use NOHOST, INET_PTON
and ZEROFILL instead.
* Remove abbreviated CIDR format support in IPNetwork (implicit_prefix=True),
use cidr_abbrev_to_verbose if you need this behavior.
* Remove the IPAddress.is_private method.
* Changed:
* Stop accepting leading zeros when parsing IPv4 addresses in INET_PTON mode
(it's been allowed on some platforms).
* Stop parsing IPv4 addresses permissively (inet_aton()-like) by default.
* Apply the two changes above to valid_ipv4 as well.
* Update the address databases to the 2024-02-10 versions.
* Fixed:
* Return False instead of raising AddrFormatError when an empty string is passed
to valid_ipv4 or valid_ipv6.
* Fix handling of dialect provided to EUI during copy-construction.
-------------------------------------------------------------------
Sun Jan 7 20:54:19 UTC 2024 - Dirk Müller <dmueller@suse.com>