diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 53c63d1..f778721 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,32 @@ Ansible Microsoft Active Directory Release Notes .. contents:: Topics +v1.6.0 +====== + +Release Summary +--------------- + +Release summary for v1.6.0 + +Minor Changes +------------- + +- microsoft.ad AD modules - Added ``domain_credentials`` as a common module option that can be used to specify credentials for specific AD servers. +- microsoft.ad AD modules - Added ``lookup_failure_action`` on all modules that can specify a list of distinguishedName values to control what should happen if the lookup fails. +- microsoft.ad.computer - Added the ability to lookup a distinguishedName on a specific domain server for ``delegates`` and ``managed_by``. +- microsoft.ad.group - Added the ability to lookup a distinguishedName on a specific domain server for ``managed_by`` and ``members``. +- microsoft.ad.ou - Added the ability to lookup a distinguishedName on a specific domain server for ``managed_by``. +- microsoft.ad.user - Added the ability to lookup a distinguishedName on a specific domain server for ``delegates``. +- microsoft.ad.user - Rename the option ``groups.missing_action`` to ``groups.lookup_failure_action`` to make the option more consistent with other modules. The ``missing_action`` option is still supported as an alias. +- microsoft.ad.user - Support group member lookup on alternative server using the DN lookup syntax. This syntax uses a dictionary where ``name`` defined the group to lookup and ``server`` defines the server to lookup the group on. + +Bugfixes +-------- + +- microsoft.ad.membership - Fix hostname check to work with hostnames longer than 15 characters long - https://github.com/ansible-collections/microsoft.ad/issues/113 +- microsoft.ad.user - Fix issue when creating a new user account with ``account_locked: false`` - https://github.com/ansible-collections/microsoft.ad/issues/108 + v1.5.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index f9d1dc5..f2a6c65 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -153,3 +153,39 @@ releases: name: parse_dn namespace: null release_date: '2024-03-20' + 1.6.0: + changes: + bugfixes: + - microsoft.ad.membership - Fix hostname check to work with hostnames longer + than 15 characters long - https://github.com/ansible-collections/microsoft.ad/issues/113 + - 'microsoft.ad.user - Fix issue when creating a new user account with ``account_locked: + false`` - https://github.com/ansible-collections/microsoft.ad/issues/108' + minor_changes: + - microsoft.ad AD modules - Added ``domain_credentials`` as a common module + option that can be used to specify credentials for specific AD servers. + - microsoft.ad AD modules - Added ``lookup_failure_action`` on all modules that + can specify a list of distinguishedName values to control what should happen + if the lookup fails. + - microsoft.ad.computer - Added the ability to lookup a distinguishedName on + a specific domain server for ``delegates`` and ``managed_by``. + - microsoft.ad.group - Added the ability to lookup a distinguishedName on a + specific domain server for ``managed_by`` and ``members``. + - microsoft.ad.ou - Added the ability to lookup a distinguishedName on a specific + domain server for ``managed_by``. + - microsoft.ad.user - Added the ability to lookup a distinguishedName on a specific + domain server for ``delegates``. + - microsoft.ad.user - Rename the option ``groups.missing_action`` to ``groups.lookup_failure_action`` + to make the option more consistent with other modules. The ``missing_action`` + option is still supported as an alias. + - microsoft.ad.user - Support group member lookup on alternative server using + the DN lookup syntax. This syntax uses a dictionary where ``name`` defined + the group to lookup and ``server`` defines the server to lookup the group + on. + release_summary: Release summary for v1.6.0 + fragments: + - lookup-dn.yml + - membership-long-name.yml + - release-1.6.0.yml + - user-account-locked.yml + - user-groups.yml + release_date: '2024-06-10' diff --git a/changelogs/fragments/lookup-dn.yml b/changelogs/fragments/lookup-dn.yml deleted file mode 100644 index f37eead..0000000 --- a/changelogs/fragments/lookup-dn.yml +++ /dev/null @@ -1,19 +0,0 @@ -minor_changes: - - >- - microsoft.ad AD modules - Added ``domain_credentials`` as a common module option that can be used to specify - credentials for specific AD servers. - - >- - microsoft.ad AD modules - Added ``lookup_failure_action`` on all modules that can specify a list of - distinguishedName values to control what should happen if the lookup fails. - - >- - microsoft.ad.computer - Added the ability to lookup a distinguishedName on a specific domain server for - ``delegates`` and ``managed_by``. - - >- - microsoft.ad.group - Added the ability to lookup a distinguishedName on a specific domain server for - ``managed_by`` and ``members``. - - >- - microsoft.ad.ou - Added the ability to lookup a distinguishedName on a specific domain server for - ``managed_by``. - - >- - microsoft.ad.user - Added the ability to lookup a distinguishedName on a specific domain server for - ``delegates``. diff --git a/changelogs/fragments/membership-long-name.yml b/changelogs/fragments/membership-long-name.yml deleted file mode 100644 index 19acb47..0000000 --- a/changelogs/fragments/membership-long-name.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: - - >- - microsoft.ad.membership - Fix hostname check to work with hostnames longer than 15 characters long - - https://github.com/ansible-collections/microsoft.ad/issues/113 diff --git a/changelogs/fragments/user-account-locked.yml b/changelogs/fragments/user-account-locked.yml deleted file mode 100644 index 4d5373e..0000000 --- a/changelogs/fragments/user-account-locked.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: - - >- - microsoft.ad.user - Fix issue when creating a new user account with ``account_locked: false`` - - https://github.com/ansible-collections/microsoft.ad/issues/108 diff --git a/changelogs/fragments/user-groups.yml b/changelogs/fragments/user-groups.yml deleted file mode 100644 index 5ade0ef..0000000 --- a/changelogs/fragments/user-groups.yml +++ /dev/null @@ -1,9 +0,0 @@ -minor_changes: - - >- - microsoft.ad.user - Support group member lookup on alternative server using the DN lookup syntax. - This syntax uses a dictionary where ``name`` defined the group to lookup and ``server`` defines the - server to lookup the group on. - - >- - microsoft.ad.user - Rename the option ``groups.missing_action`` to ``groups.lookup_failure_action`` - to make the option more consistent with other modules. The ``missing_action`` option is still - supported as an alias.