From 70442f5b854f1b30f14cc0e1c15fb15c6e793cbe Mon Sep 17 00:00:00 2001 From: Nilashish Chakraborty Date: Thu, 28 Mar 2024 21:00:21 +0530 Subject: [PATCH] Fix CHANGELOG.rst (#345) Signed-off-by: NilashishC --- CHANGELOG.rst | 13 +++++++++++++ changelogs/changelog.yaml | 11 ++++------- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9023478..1264bc3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,19 @@ Ansible Utils Collection Release Notes .. contents:: Topics +v4.0.0 +====== + +Release Summary +--------------- +Starting from this release, the minimum `netaddr` version this collection requires is `>=0.10.1`. + +Major Changes +------------- + +- This release mainly addresses the breaking changes in the `netaddr` library. +- With the new release of `netaddr` 1.0.0, the `IPAddress.is_private()` method has been removed and instead, the `IPAddress.is_global()` method has been extended to support the same functionality. This change has been reflected in the `ipaddr` filter plugin. +- Bumping `netaddr` to `>=0.10.1`, means that starting from this release, the minimum `netaddr` version this collection requires is `>=0.10.1`. v3.1.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 6f17afd..b48197e 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -410,13 +410,10 @@ releases: 4.0.0: changes: major_changes: - - This release mainly fixes the breaking changes in the `netaddr` library. - - Removes the `IPAddress.is_private()` method and instead extends support to IPAddress.is_global() method as the replacement.(https://netaddr.readthedocs.io/en/latest/changes.html#release-1-0-0) - - Set netaddr minimum version required to `0.10.1` - - Bumping `netaddr` to `>=0.10.1`, means that anything lower than this would result in not using utils from next 4.0.0 release. - - Removes compat files as we stopped testing against python 2.7. - release_summary: Starting from this release, the minimum `netaddr` version - this collection requires is `>=0.10.1`. + - This release mainly addresses the breaking changes in the `netaddr` library. + - With the new release of `netaddr` 1.0.0, the `IPAddress.is_private()` method has been removed and instead, the `IPAddress.is_global()` method has been extended to support the same functionality. This change has been reflected in the `ipaddr` filter plugin. + - Bumping `netaddr` to `>=0.10.1`, means that starting from this release, the minimum `netaddr` version this collection requires is `>=0.10.1`. + release_summary: Starting from this release, the minimum `netaddr` version this collection requires is `>=0.10.1`. fragments: - netaddr_is_private_deprecation.yaml - trivial_tests_updates.yaml