From 0078bf57b6982d0d79978f774308bc2642422689 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Tue, 2 May 2023 08:42:39 +1000 Subject: [PATCH] Prepare for v1.1.0 release (#30) --- CHANGELOG.rst | 35 +++++++++++++++++++ changelogs/changelog.yaml | 34 ++++++++++++++++++ .../fragments/user-password-expired.yml | 2 -- 3 files changed, 69 insertions(+), 2 deletions(-) delete mode 100644 changelogs/fragments/user-password-expired.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 333267d..16eeff8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,41 @@ Ansible Microsoft Active Directory Release Notes .. contents:: Topics +v1.1.0 +====== + +Release Summary +--------------- + +This release includes the new ``microsoft.ad.ldap`` inventory plugin which can be used to generate an Ansible +inventory from an LDAP/AD source. + + +Bugfixes +-------- + +- microsoft.ad.user - Fix setting ``password_expired`` when creating a new user - https://github.com/ansible-collections/microsoft.ad/issues/25 + +New Plugins +----------- + +Filter +~~~~~~ + +- as_datetime - Converts an LDAP value to a datetime string +- as_guid - Converts an LDAP value to a GUID string +- as_sid - Converts an LDAP value to a Security Identifier string + +Inventory +~~~~~~~~~ + +- ldap - Inventory plugin for Active Directory + +New Modules +----------- + +- debug_ldap_client - Get host information for debugging LDAP connections + v1.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 6e75931..aaf0e7d 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -8,3 +8,37 @@ releases: fragments: - release-summary.yml release_date: '2023-02-15' + 1.1.0: + changes: + bugfixes: + - microsoft.ad.user - Fix setting ``password_expired`` when creating a new user + - https://github.com/ansible-collections/microsoft.ad/issues/25 + release_summary: 'This release includes the new ``microsoft.ad.ldap`` inventory + plugin which can be used to generate an Ansible + + inventory from an LDAP/AD source. + + ' + fragments: + - release-1.1.0.yml + - user-password-expired.yml + modules: + - description: Get host information for debugging LDAP connections + name: debug_ldap_client + namespace: '' + plugins: + filter: + - description: Converts an LDAP value to a datetime string + name: as_datetime + namespace: null + - description: Converts an LDAP value to a GUID string + name: as_guid + namespace: null + - description: Converts an LDAP value to a Security Identifier string + name: as_sid + namespace: null + inventory: + - description: Inventory plugin for Active Directory + name: ldap + namespace: null + release_date: '2023-05-02' diff --git a/changelogs/fragments/user-password-expired.yml b/changelogs/fragments/user-password-expired.yml deleted file mode 100644 index eac8009..0000000 --- a/changelogs/fragments/user-password-expired.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- microsoft.ad.user - Fix setting ``password_expired`` when creating a new user - https://github.com/ansible-collections/microsoft.ad/issues/25