diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f5c02a9f..69a72435 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,13 +5,25 @@ Community Windows Release Notes .. contents:: Topics -v1.6.0 +v1.7.0 ====== -Release Summary ---------------- +Minor Changes +------------- + +- win_domain_user - Added ``sam_account_name`` to explicitly set the ``sAMAccountName`` property of an object - https://github.com/ansible-collections/community.windows/issues/281 -- Release summary for v1.6.0 +Bugfixes +-------- + +- win_dns_record - Fix issue when trying to use the ``computer_name`` option - https://github.com/ansible-collections/community.windows/issues/276 +- win_domain_user - Fallback to NETBIOS username for password verification check if the UPN is not set - https://github.com/ansible-collections/community.windows/pull/289 +- win_initialize_disk - Ensure ``online: False`` doesn't bring the disk online again - https://github.com/ansible-collections/community.windows/pull/268 +- win_lineinfile - Fix up diff output with ending newlines - https://github.com/ansible-collections/community.windows/pull/283 +- win_region - Fix ``copy_settings`` on a host that has disabled ``reg.exe`` access - https://github.com/ansible-collections/community.windows/issues/287 + +v1.6.0 +====== Minor Changes ------------- diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index dc669b0d..a54334ee 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -226,8 +226,6 @@ releases: trigger by documenting the human friendly values for ``state_change`` - win_scheduled_task_state - Added ``state_change_str`` to the trigger output to give a human readable description of the value - release_summary: - - Release summary for v1.6.0 security_fixes: - win_psexec - Ensure password is masked in ``psexec_command`` return result - https://github.com/ansible-collections/community.windows/issues/43 @@ -237,3 +235,27 @@ releases: - win_dns_record-txtsupport.yml - win_psexec-cmd-output.yml release_date: '2021-07-27' + 1.7.0: + changes: + bugfixes: + - win_dns_record - Fix issue when trying to use the ``computer_name`` option + - https://github.com/ansible-collections/community.windows/issues/276 + - win_domain_user - Fallback to NETBIOS username for password verification check + if the UPN is not set - https://github.com/ansible-collections/community.windows/pull/289 + - 'win_initialize_disk - Ensure ``online: False`` doesn''t bring the disk online + again - https://github.com/ansible-collections/community.windows/pull/268' + - win_lineinfile - Fix up diff output with ending newlines - https://github.com/ansible-collections/community.windows/pull/283 + - win_region - Fix ``copy_settings`` on a host that has disabled ``reg.exe`` + access - https://github.com/ansible-collections/community.windows/issues/287 + minor_changes: + - win_domain_user - Added ``sam_account_name`` to explicitly set the ``sAMAccountName`` + property of an object - https://github.com/ansible-collections/community.windows/issues/281 + fragments: + - 1.7.0-release.yml + - win_dns_record-comp-name.yml + - win_domain_user-missing-upn.yml + - win_domain_user_samaccount.yml + - win_initialize_disk-offline.yml + - win_lineinfile-diff.yml + - win_region_hardened_registry.yml + release_date: '2021-09-23' diff --git a/changelogs/fragments/win_dns_record-comp-name.yml b/changelogs/fragments/win_dns_record-comp-name.yml deleted file mode 100644 index 36de3a7b..00000000 --- a/changelogs/fragments/win_dns_record-comp-name.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- win_dns_record - Fix issue when trying to use the ``computer_name`` option - https://github.com/ansible-collections/community.windows/issues/276 diff --git a/changelogs/fragments/win_domain_user-missing-upn.yml b/changelogs/fragments/win_domain_user-missing-upn.yml deleted file mode 100644 index eb345c0d..00000000 --- a/changelogs/fragments/win_domain_user-missing-upn.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- win_domain_user - Fallback to NETBIOS username for password verification check if the UPN is not set - https://github.com/ansible-collections/community.windows/pull/289 diff --git a/changelogs/fragments/win_domain_user_samaccount.yml b/changelogs/fragments/win_domain_user_samaccount.yml deleted file mode 100644 index 76e7c652..00000000 --- a/changelogs/fragments/win_domain_user_samaccount.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- win_domain_user - Added ``sam_account_name`` to explicitly set the ``sAMAccountName`` property of an object - https://github.com/ansible-collections/community.windows/issues/281 diff --git a/changelogs/fragments/win_initialize_disk-offline.yml b/changelogs/fragments/win_initialize_disk-offline.yml deleted file mode 100644 index 2277de32..00000000 --- a/changelogs/fragments/win_initialize_disk-offline.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- >- - win_initialize_disk - Ensure ``online: False`` doesn't bring the disk online again - https://github.com/ansible-collections/community.windows/pull/268 diff --git a/changelogs/fragments/win_lineinfile-diff.yml b/changelogs/fragments/win_lineinfile-diff.yml deleted file mode 100644 index 18def327..00000000 --- a/changelogs/fragments/win_lineinfile-diff.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- win_lineinfile - Fix up diff output with ending newlines - https://github.com/ansible-collections/community.windows/pull/283 diff --git a/changelogs/fragments/win_region_hardened_registry.yml b/changelogs/fragments/win_region_hardened_registry.yml deleted file mode 100644 index 7107e0c9..00000000 --- a/changelogs/fragments/win_region_hardened_registry.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- win_region - Fix ``copy_settings`` on a host that has disabled ``reg.exe`` access - https://github.com/ansible-collections/community.windows/issues/287 \ No newline at end of file diff --git a/docs/community.windows.win_scheduled_task_module.rst b/docs/community.windows.win_scheduled_task_module.rst index 5ff5c70c..f582c4c5 100644 --- a/docs/community.windows.win_scheduled_task_module.rst +++ b/docs/community.windows.win_scheduled_task_module.rst @@ -16,7 +16,7 @@ community.windows.win_scheduled_task Synopsis -------- -- Creates/modified or removes Windows scheduled tasks. +- Creates/modifies or removes Windows scheduled tasks. diff --git a/galaxy.yml b/galaxy.yml index 06fd15d5..75fae412 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: windows -version: 1.6.0 +version: 1.7.0 readme: README.md authors: - Jordan Borean @jborean93