diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 16eeff8..1cd66e2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,32 @@ Ansible Microsoft Active Directory Release Notes .. contents:: Topics +v1.2.0 +====== + +Release Summary +--------------- + +Release summary for v1.2.0 + +Minor Changes +------------- + +- microsoft.ad.debug_ldap_client - Add ``dpapi_ng`` to list of packages checked +- microsoft.ad.ldap - Add support for decrypting LAPS encrypted password +- microsoft.ad.ldap - Allow setting LDAP connection and authentication options through environment variables - https://github.com/ansible-collections/microsoft.ad/issues/34 + +Deprecated Features +------------------- + +- Deprecating support for Server 2012 and Server 2012 R2. These OS versions are reaching End of Life status from Microsoft and support for using them in Ansible are nearing its end. + +Bugfixes +-------- + +- group - Fix idempotency check when ``scope: domainlocal`` is set - https://github.com/ansible-collections/microsoft.ad/issues/31 +- microsoft.ad.group - ensure the ``scope`` and ``category`` values are checked as case insensitive to avoid changes when not needed - https://github.com/ansible-collections/microsoft.ad/issues/31 + v1.1.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index aaf0e7d..37b1f81 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -42,3 +42,27 @@ releases: name: ldap namespace: null release_date: '2023-05-02' + 1.2.0: + changes: + bugfixes: + - 'group - Fix idempotency check when ``scope: domainlocal`` is set - https://github.com/ansible-collections/microsoft.ad/issues/31' + - microsoft.ad.group - ensure the ``scope`` and ``category`` values are checked + as case insensitive to avoid changes when not needed - https://github.com/ansible-collections/microsoft.ad/issues/31 + deprecated_features: + - Deprecating support for Server 2012 and Server 2012 R2. These OS versions + are reaching End of Life status from Microsoft and support for using them + in Ansible are nearing its end. + minor_changes: + - microsoft.ad.debug_ldap_client - Add ``dpapi_ng`` to list of packages checked + - microsoft.ad.ldap - Add support for decrypting LAPS encrypted password + - microsoft.ad.ldap - Allow setting LDAP connection and authentication options + through environment variables - https://github.com/ansible-collections/microsoft.ad/issues/34 + release_summary: Release summary for v1.2.0 + fragments: + - group-case-sensitivity-check.yml + - group-domainlocal-scopeinfo.yml + - ldap-env-var.yml + - ldap-laps-decryption.yml + - release_summary.yml + - server2012.yml + release_date: '2023-06-14' diff --git a/changelogs/fragments/group-case-sensitivity-check.yml b/changelogs/fragments/group-case-sensitivity-check.yml deleted file mode 100644 index 53bd2cb..0000000 --- a/changelogs/fragments/group-case-sensitivity-check.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- microsoft.ad.group - ensure the ``scope`` and ``category`` values are checked as case insensitive to avoid changes when not needed - https://github.com/ansible-collections/microsoft.ad/issues/31 diff --git a/changelogs/fragments/group-domainlocal-scopeinfo.yml b/changelogs/fragments/group-domainlocal-scopeinfo.yml deleted file mode 100644 index 6a4aa08..0000000 --- a/changelogs/fragments/group-domainlocal-scopeinfo.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- >- - group - Fix idempotency check when ``scope: domainlocal`` is set - https://github.com/ansible-collections/microsoft.ad/issues/31 diff --git a/changelogs/fragments/ldap-env-var.yml b/changelogs/fragments/ldap-env-var.yml deleted file mode 100644 index 2b0db88..0000000 --- a/changelogs/fragments/ldap-env-var.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- microsoft.ad.ldap - Allow setting LDAP connection and authentication options through environment variables - https://github.com/ansible-collections/microsoft.ad/issues/34 diff --git a/changelogs/fragments/ldap-laps-decryption.yml b/changelogs/fragments/ldap-laps-decryption.yml deleted file mode 100644 index 3ba6519..0000000 --- a/changelogs/fragments/ldap-laps-decryption.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: -- microsoft.ad.ldap - Add support for decrypting LAPS encrypted password -- microsoft.ad.debug_ldap_client - Add ``dpapi_ng`` to list of packages checked diff --git a/changelogs/fragments/server2012.yml b/changelogs/fragments/server2012.yml deleted file mode 100644 index beedf0d..0000000 --- a/changelogs/fragments/server2012.yml +++ /dev/null @@ -1,4 +0,0 @@ -deprecated_features: -- >- - Deprecating support for Server 2012 and Server 2012 R2. These OS versions are reaching End of Life status from - Microsoft and support for using them in Ansible are nearing its end. diff --git a/galaxy.yml b/galaxy.yml index 58be989..16d4830 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: microsoft name: ad -version: 1.1.0 +version: 1.2.0 readme: README.md authors: - Jordan Borean @jborean93