diff --git a/CHANGES.rst b/CHANGES.rst index 0f11edbb..d3ac8897 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ Change log .. note:: **Upgrade notes**: after upgrading, run the ``arouteserver setup-templates`` command to sync the local templates with those distributed with the new version. More details on the `Upgrading `__ section of the documentation. +1.22.1 +------ + +- Fix: IPv4 prefix length verification when RFC8950 is enabled. + + When a peer is configured for RFC8950 support, the prefix length is checked for the IPv6 limits only. This will permit too long IPv4 (up to /48) prefixes and will reject short IPv4 (< /12) prefixes. + + See also `GitHub issue 130 `__. + 1.22.0 ------ diff --git a/pierky/arouteserver/version.py b/pierky/arouteserver/version.py index 45dfa285..ba7d9701 100644 --- a/pierky/arouteserver/version.py +++ b/pierky/arouteserver/version.py @@ -13,5 +13,5 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -__version__ = "1.22.0" # pragma: no cover +__version__ = "1.22.1" # pragma: no cover COPYRIGHT_YEAR = 2024 # pragma: no cover