From ed4caa574afdce8ca1e72753323a4a391a8dadcc Mon Sep 17 00:00:00 2001 From: Nathan Swartz Date: Thu, 26 May 2022 16:19:15 -0400 Subject: [PATCH 1/3] Update changelog and collection version. --- CHANGELOG.rst | 15 +++++++++++++++ changelogs/.plugin-cache.yaml | 2 +- changelogs/changelog.yaml | 16 ++++++++++++++++ .../fragments/add_volume_size_tolerance.yml | 2 -- .../fragments/fix_required_if_state_option.yml | 2 -- .../fragments/improve_system_discovery.yml | 2 -- galaxy.yml | 2 +- 7 files changed, 33 insertions(+), 8 deletions(-) delete mode 100644 changelogs/fragments/add_volume_size_tolerance.yml delete mode 100644 changelogs/fragments/fix_required_if_state_option.yml delete mode 100644 changelogs/fragments/improve_system_discovery.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5b917f5..c2aecd7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,21 @@ Netapp E-Series SANtricity Collection Release Notes .. contents:: Topics +v1.3.1 +====== + +Minor Changes +------------- + +- Require Ansible 2.10 or later. +- na_santricity_volume - Add size_tolerance option to handle the difference in volume size with SANtricity System Manager. +- nar_santricity_common - utilize provided eseries management information to determine network to search. + +Bugfixes +-------- + +- na_santricity_mgmt_interface - Fix default required_if state option for na_santricity_mgmt_interface + v1.3.0 ====== diff --git a/changelogs/.plugin-cache.yaml b/changelogs/.plugin-cache.yaml index a10e881..d2f68bf 100644 --- a/changelogs/.plugin-cache.yaml +++ b/changelogs/.plugin-cache.yaml @@ -294,4 +294,4 @@ plugins: shell: {} strategy: {} vars: {} -version: 1.3.0 +version: 1.3.1 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index f04fb3d..2e13d60 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -232,3 +232,19 @@ releases: - add_volume_write_cache_mirroring_option.yml - fix_single_volume_host_mapping_determinations.yml release_date: '2022-04-05' + 1.3.1: + changes: + bugfixes: + - na_santricity_mgmt_interface - Fix default required_if state option for na_santricity_mgmt_interface + minor_changes: + - Require Ansible 2.10 or later. + - na_santricity_volume - Add size_tolerance option to handle the difference + in volume size with SANtricity System Manager. + - nar_santricity_common - utilize provided eseries management information to + determine network to search. + fragments: + - add_volume_size_tolerance.yml + - fix_required_if_state_option.yml + - improve_system_discovery.yml + - require_ansible_2.10_or_later.yml + release_date: '2022-05-26' diff --git a/changelogs/fragments/add_volume_size_tolerance.yml b/changelogs/fragments/add_volume_size_tolerance.yml deleted file mode 100644 index df1360b..0000000 --- a/changelogs/fragments/add_volume_size_tolerance.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - na_santricity_volume - Add size_tolerance option to handle the difference in volume size with SANtricity System Manager. diff --git a/changelogs/fragments/fix_required_if_state_option.yml b/changelogs/fragments/fix_required_if_state_option.yml deleted file mode 100644 index 60309cc..0000000 --- a/changelogs/fragments/fix_required_if_state_option.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - na_santricity_mgmt_interface - Fix default required_if state option for na_santricity_mgmt_interface diff --git a/changelogs/fragments/improve_system_discovery.yml b/changelogs/fragments/improve_system_discovery.yml deleted file mode 100644 index 62d1fc1..0000000 --- a/changelogs/fragments/improve_system_discovery.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - nar_santricity_common - utilize provided eseries management information to determine network to search. diff --git a/galaxy.yml b/galaxy.yml index 4b94e3d..cbae7d4 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ namespace: "netapp_eseries" description: "Latest content available for NetApp E-Series Ansible automation." name: "santricity" -version: "1.3.0" +version: "1.3.1" readme: "README.md" authors: - "Joe McCormick (@iamjoemccormick)" From 6441872e3c905deb647fff4dee9e553c34d9eaf2 Mon Sep 17 00:00:00 2001 From: Nathan Swartz Date: Thu, 4 Aug 2022 19:03:52 -0400 Subject: [PATCH 2/3] Update change log and collection release date. --- CHANGELOG.rst | 1 + changelogs/changelog.yaml | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c2aecd7..0f7d34a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -19,6 +19,7 @@ Bugfixes -------- - na_santricity_mgmt_interface - Fix default required_if state option for na_santricity_mgmt_interface +- netapp_eseries.santricity.nar_santricity_host - Fix default MTU value for NVMe RoCE. v1.3.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 2e13d60..12427cf 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -236,6 +236,8 @@ releases: changes: bugfixes: - na_santricity_mgmt_interface - Fix default required_if state option for na_santricity_mgmt_interface + - netapp_eseries.santricity.nar_santricity_host - Fix default MTU value for + NVMe RoCE. minor_changes: - Require Ansible 2.10 or later. - na_santricity_volume - Add size_tolerance option to handle the difference @@ -244,7 +246,8 @@ releases: determine network to search. fragments: - add_volume_size_tolerance.yml + - fix_nvme_roce_mtu_default.yml - fix_required_if_state_option.yml - improve_system_discovery.yml - require_ansible_2.10_or_later.yml - release_date: '2022-05-26' + release_date: '2022-08-08' From 0e5ca35e1a265e817557fd99d9221c057ed9f28a Mon Sep 17 00:00:00 2001 From: Nathan Swartz Date: Mon, 15 Aug 2022 10:31:21 -0400 Subject: [PATCH 3/3] Update change log release date. --- changelogs/changelog.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 12427cf..fd239d3 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -250,4 +250,4 @@ releases: - fix_required_if_state_option.yml - improve_system_discovery.yml - require_ansible_2.10_or_later.yml - release_date: '2022-08-08' + release_date: '2022-08-15'