diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3744cc27..cef90329 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,27 @@ Community Windows Release Notes .. contents:: Topics +v2.1.0 +====== + +Release Summary +--------------- + +Release summary for v2.1.0 + +Minor Changes +------------- + +- Set minimum supported Ansible version to 2.14 to align with the versions still supported by Ansible. + +Bugfixes +-------- + +- Remove some code which is no longer valid for dotnet 5+ +- community.windows.win_psmodule_info - exception thrown when host has no Installed Module. Fix now checks that variable $installedModules is not null before calling the .Contains(..) function on it. +- win_rabbitmq_plugin - Avoid using ``Invoke-Expression`` when running external commands +- win_rds_rap - The module crashed when creating a RAP with Gateway Managed Computer Group (https://github.com/ansible-collections/community.windows/issues/184). + v2.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 2d2bc130..9c7cf496 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -516,3 +516,26 @@ releases: - win_psmodule-removed-features.yml - win_scheduled_task-removed-features.yml release_date: '2023-06-14' + 2.1.0: + changes: + bugfixes: + - Remove some code which is no longer valid for dotnet 5+ + - community.windows.win_psmodule_info - exception thrown when host has no Installed + Module. Fix now checks that variable $installedModules is not null before + calling the .Contains(..) function on it. + - win_rabbitmq_plugin - Avoid using ``Invoke-Expression`` when running external + commands + - win_rds_rap - The module crashed when creating a RAP with Gateway Managed + Computer Group (https://github.com/ansible-collections/community.windows/issues/184). + minor_changes: + - Set minimum supported Ansible version to 2.14 to align with the versions still + supported by Ansible. + release_summary: Release summary for v2.1.0 + fragments: + - 534-rds-rap-fix-gw-managed-comp-groups.yml + - ansible_support.yml + - dotnet-preparation.yml + - release_summary.yml + - win_psmodule_info.yml + - win_rabbitmq_plugin_iex.yml + release_date: '2023-11-16' diff --git a/changelogs/fragments/534-rds-rap-fix-gw-managed-comp-groups.yml b/changelogs/fragments/534-rds-rap-fix-gw-managed-comp-groups.yml deleted file mode 100644 index 601e661f..00000000 --- a/changelogs/fragments/534-rds-rap-fix-gw-managed-comp-groups.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - win_rds_rap - The module crashed when creating a RAP with Gateway Managed Computer Group (https://github.com/ansible-collections/community.windows/issues/184). \ No newline at end of file diff --git a/changelogs/fragments/ansible_support.yml b/changelogs/fragments/ansible_support.yml deleted file mode 100644 index 163e241f..00000000 --- a/changelogs/fragments/ansible_support.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- Set minimum supported Ansible version to 2.14 to align with the versions still supported by Ansible. diff --git a/changelogs/fragments/dotnet-preparation.yml b/changelogs/fragments/dotnet-preparation.yml deleted file mode 100644 index f3c1311b..00000000 --- a/changelogs/fragments/dotnet-preparation.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- Remove some code which is no longer valid for dotnet 5+ diff --git a/changelogs/fragments/win_psmodule_info.yml b/changelogs/fragments/win_psmodule_info.yml deleted file mode 100644 index 78073ff9..00000000 --- a/changelogs/fragments/win_psmodule_info.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - community.windows.win_psmodule_info - exception thrown when host has no Installed Module. Fix now checks that variable $installedModules is not null before calling the .Contains(..) function on it. \ No newline at end of file diff --git a/changelogs/fragments/win_rabbitmq_plugin_iex.yml b/changelogs/fragments/win_rabbitmq_plugin_iex.yml deleted file mode 100644 index 06b9cb58..00000000 --- a/changelogs/fragments/win_rabbitmq_plugin_iex.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- win_rabbitmq_plugin - Avoid using ``Invoke-Expression`` when running external commands