Path to this page:
Subject: CVS commit: pkgsrc/net/py-netaddr
From: Adam Ciarcinski
Date: 2024-01-03 07:53:25
Message id: 20240103065325.C5165FA42@cvs.NetBSD.org
Log Message:
py-netaddr: updated to 0.10.1
Release: 0.10.1
Fixed:
* Get rid of some warnings
Deprecated:
* Deprecate the flag shorthands: ``N``, ``P`` and ``Z``. Use :data:`NOHOST`, \
:data:`INET_PTON`
and :data:`ZEROFILL` instead.
* Deprecate importing objects from ``netaddr`` subpackages. Only importing \
things from the
top-level ``netaddr`` namespace is supported, everything else is considered \
private.
This has already been the case but we can use a reminder.
* Deprecate permissive-by-default IPv4 parsing in :func:`valid_ipv4`. The \
``inet_pton()``
semantics (with leading zeros always disallowed) will become the default. Use \
:data:`INET_ATON`
and/or :data:`ZEROFILL` flags if you need the legacy behavior.
Files: