diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a823b8e2..28c23a65 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,28 @@ Ansible Windows Release Notes .. contents:: Topics +v2.1.0 +====== + +Release Summary +--------------- + +Release summary for v2.1.0 + +Minor Changes +------------- + +- win_updates - Avoid using a scheduled task to spawn the updates background job when running as become. This provides an alternative method available to users in case the task scheduler does not work on their system - https://github.com/ansible-collections/ansible.windows/issues/543 + +Bugfixes +-------- + +- Remove some code which is no longer valid for dotnet 5+ +- win_async - Set maximum data size allowed when deserializing async output - https://github.com/ansible-collections/ansible.windows/pull/520 +- win_group_membership - Return accurate results when using check_mode - https://github.com/ansible-collections/ansible.windows/issues/532 +- win_updates - Add special handling for KB2267602 in case it fails - https://github.com/ansible-collections/ansible.windows/issues/530 +- win_updates - Fix up endless retries when an update failed to install more than once - https://github.com/ansible-collections/ansible.windows/issues/343 + v2.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 8063b86e..b25a3ce6 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -646,3 +646,26 @@ releases: - win_updates-removed-features.yml - win_uri-removed-features.yml release_date: '2023-06-14' + 2.1.0: + changes: + bugfixes: + - Remove some code which is no longer valid for dotnet 5+ + - win_async - Set maximum data size allowed when deserializing async output + - https://github.com/ansible-collections/ansible.windows/pull/520 + - win_group_membership - Return accurate results when using check_mode - https://github.com/ansible-collections/ansible.windows/issues/532 + - win_updates - Add special handling for KB2267602 in case it fails - https://github.com/ansible-collections/ansible.windows/issues/530 + - win_updates - Fix up endless retries when an update failed to install more + than once - https://github.com/ansible-collections/ansible.windows/issues/343 + minor_changes: + - win_updates - Avoid using a scheduled task to spawn the updates background + job when running as become. This provides an alternative method available + to users in case the task scheduler does not work on their system - https://github.com/ansible-collections/ansible.windows/issues/543 + release_summary: Release summary for v2.1.0 + fragments: + - dotnet-preparation.yml + - release.yml + - win_async-large-data-output.yml + - win_group_membership-check_mode_results.yml + - win_updates-become-proc.yml + - win_updates-loop.yml + release_date: '2023-08-22' 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_async-large-data-output.yml b/changelogs/fragments/win_async-large-data-output.yml deleted file mode 100644 index 35cf9957..00000000 --- a/changelogs/fragments/win_async-large-data-output.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- win_async - Set maximum data size allowed when deserializing async output - https://github.com/ansible-collections/ansible.windows/pull/520 diff --git a/changelogs/fragments/win_group_membership-check_mode_results.yml b/changelogs/fragments/win_group_membership-check_mode_results.yml deleted file mode 100644 index 3a4f0f33..00000000 --- a/changelogs/fragments/win_group_membership-check_mode_results.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- win_group_membership - Return accurate results when using check_mode - https://github.com/ansible-collections/ansible.windows/issues/532 diff --git a/changelogs/fragments/win_updates-become-proc.yml b/changelogs/fragments/win_updates-become-proc.yml deleted file mode 100644 index 1c3c2561..00000000 --- a/changelogs/fragments/win_updates-become-proc.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: -- >- - win_updates - Avoid using a scheduled task to spawn the updates background job when running as become. This provides - an alternative method available to users in case the task scheduler does not work on their system - https://github.com/ansible-collections/ansible.windows/issues/543 diff --git a/changelogs/fragments/win_updates-loop.yml b/changelogs/fragments/win_updates-loop.yml deleted file mode 100644 index 5896d17c..00000000 --- a/changelogs/fragments/win_updates-loop.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- win_updates - Fix up endless retries when an update failed to install more than once - https://github.com/ansible-collections/ansible.windows/issues/343 -- win_updates - Add special handling for KB2267602 in case it fails - https://github.com/ansible-collections/ansible.windows/issues/530 diff --git a/galaxy.yml b/galaxy.yml index b5d79f84..1baf2262 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: ansible name: windows -version: 2.0.0 +version: 2.1.0 readme: README.md authors: - Jordan Borean @jborean93