From bea1faad356a145d4cc5848876ae660a50ac7d40 Mon Sep 17 00:00:00 2001 From: Anagha K H <70952486+anagha-infoblox@users.noreply.github.com> Date: Mon, 13 Dec 2021 18:09:02 +0530 Subject: [PATCH] Updated v1.2.0 release notes (#100) --- CHANGELOG.rst | 36 ++++++++++++++++++++++++++++++++++++ changelogs/changelog.yaml | 20 ++++++++++++++++++++ 2 files changed, 56 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 68d08c34..1d1829c5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,42 @@ Infoblox.Nios_Modules Release Notes .. contents:: Topics +v1.2.0 +====== +Release Summary +--------------- +- Issue fixes to update A Record using 'next_available_ip' function +- Added a new feature - Update canonical name of the CNAME Record +- Updated the 'required' fields in modules + +Minor Changes +------------- +- Updated 'required' field in modules `#99 `_ +- Following options are made required in the modules + +.. list-table:: + :widths: 25 25 + :header-rows: 1 + + * - Record + - Option made required + * - A + - ipv4addr + * - AAAA + - ipv6addr + * - CNAME + - canonical + * - MX + - mail_exchanger, preference + * - PTR + - ptrdname + +Bugfixes +------------- +- nios_a_record module - KeyError: 'old_ipv4addr' `#79 `_ +- Ansible playbook fails to update canonical name of CName Record `#97 `_ + + v1.1.2 ====== Release Summary diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index eece763d..e7520f06 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -131,3 +131,23 @@ releases: - Issue fixes and standardization of inventory plugin and lookup modules as per Ansible guidelines - Directory restructure and added integration & unit tests release_date: '2021-10-12' + 1.2.0: + changes: + bugfixes: + - nios_a_record module - KeyError 'old_ipv4addr' `#79 `_ + - Ansible playbook fails to update canonical name of CName Record `#97 `_ + minor_changes: + - Updated 'required' field in modules `#99 `_ + - Following options are made required in the modules + | Record | Option made required | + | ------ | -------------------- | + | A | ipv4addr | + | AAAA | ipv6addr | + | CNAME | canonical | + | MX | mail_exchanger, preference | + | PTR | ptrdname | + release_summary: + - Issue fixes to update A Record using 'next_available_ip' function + - Added a new feature - Update canonical name of the CNAME Record + - Updated the 'required' fields in modules + release_date: '2021-12-13'