Skip to content

Commit

Permalink
Prepare for v1.7.0 release (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 authored Aug 29, 2024
1 parent b10df2e commit 55f8f10
Show file tree
Hide file tree
Showing 13 changed files with 86 additions and 43 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,40 @@ Ansible Microsoft Active Directory Release Notes

.. contents:: Topics

v1.7.0
======

Release Summary
---------------

Release summary for v1.7.0

Minor Changes
-------------

- Set minimum supported Ansible version to 2.15 to align with the versions still supported by Ansible.
- microsoft.ad.computer - Added the ``do_not_append_dollar_to_sam`` option which can create a computer account without the ``$`` suffix when an explicit ``sam_account_name`` was provided without one.
- microsoft.ad.domain - Added ``reboot_timeout`` option to control how long a reboot can go for.
- microsoft.ad.domain_child - Added ``reboot_timeout`` option to control how long a reboot can go for.
- microsoft.ad.domain_controller - Added ``reboot_timeout`` option to control how long a reboot can go for.
- microsoft.ad.membership - Added ``domain_server`` option to specify the DC to use for domain join operations - https://github.com/ansible-collections/microsoft.ad/issues/131#issuecomment-2201151651
- microsoft.ad.membership - Added ``reboot_timeout`` option to control how long a reboot can go for.

Bugfixes
--------

- Removed usages of the python call ``datetime.datetime.utcnow()`` in favour of ``datetime.datetime.now(datetime.timezone.utc)``. The original method is now deprecated in Python 3.12 and will be removed in a later version.
- group - fix error when creating a group with no members explicitly set - https://github.com/ansible-collections/microsoft.ad/issues/141
- ldap - Filter out managed service accounts in the default LDAP filter used. The ``filter_without_computer`` can be used to disable the default filter if needed.
- membership - allow domain join with hostname change if the account for that host already exists - https://github.com/ansible-collections/microsoft.ad/pull/145
- microsoft.ad.computer - Added fallback ``identity`` lookup for ``sAMAccountName`` with the ``$`` suffix. This ensures that finding the computer object will work with or without the ``$`` suffix. - https://github.com/ansible-collections/microsoft.ad/issues/124
- microsoft.ad.group - Fix setting group members of Builtin groups of a domain controller - https://github.com/ansible-collections/microsoft.ad/issues/130

New Modules
-----------

- service_account - Manage Active Directory service account objects

v1.6.0
======

Expand Down
52 changes: 52 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,55 @@ releases:
- user-account-locked.yml
- user-groups.yml
release_date: '2024-06-10'
1.7.0:
changes:
bugfixes:
- Removed usages of the python call ``datetime.datetime.utcnow()`` in favour
of ``datetime.datetime.now(datetime.timezone.utc)``. The original method is
now deprecated in Python 3.12 and will be removed in a later version.
- group - fix error when creating a group with no members explicitly set - https://github.com/ansible-collections/microsoft.ad/issues/141
- ldap - Filter out managed service accounts in the default LDAP filter used.
The ``filter_without_computer`` can be used to disable the default filter
if needed.
- membership - allow domain join with hostname change if the account for that
host already exists - https://github.com/ansible-collections/microsoft.ad/pull/145
- microsoft.ad.computer - Added fallback ``identity`` lookup for ``sAMAccountName``
with the ``$`` suffix. This ensures that finding the computer object will
work with or without the ``$`` suffix. - https://github.com/ansible-collections/microsoft.ad/issues/124
- microsoft.ad.group - Fix setting group members of Builtin groups of a domain
controller - https://github.com/ansible-collections/microsoft.ad/issues/130
minor_changes:
- Set minimum supported Ansible version to 2.15 to align with the versions still
supported by Ansible.
- microsoft.ad.computer - Added the ``do_not_append_dollar_to_sam`` option which
can create a computer account without the ``$`` suffix when an explicit ``sam_account_name``
was provided without one.
- microsoft.ad.domain - Added ``reboot_timeout`` option to control how long
a reboot can go for.
- microsoft.ad.domain_child - Added ``reboot_timeout`` option to control how
long a reboot can go for.
- microsoft.ad.domain_controller - Added ``reboot_timeout`` option to control
how long a reboot can go for.
- microsoft.ad.membership - Added ``domain_server`` option to specify the DC
to use for domain join operations - https://github.com/ansible-collections/microsoft.ad/issues/131#issuecomment-2201151651
- microsoft.ad.membership - Added ``reboot_timeout`` option to control how long
a reboot can go for.
release_summary: Release summary for v1.7.0
fragments:
- 0-readme.yml
- 124-computer-identity-dollar.yml
- 130-group-member.yml
- 141-group-empty-member.yml
- ansible-version.yml
- computer-sam.yml
- datetime-utc-deprecation.yml
- ldap-msa.yml
- membership-rename.yml
- membership-server.yml
- reboot_timeout.yml
- release-summary.yml
modules:
- description: Manage Active Directory service account objects
name: service_account
namespace: ''
release_date: '2024-08-30'
3 changes: 0 additions & 3 deletions changelogs/fragments/0-readme.yml

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/124-computer-identity-dollar.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/130-group-member.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/141-group-empty-member.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/ansible-version.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/computer-sam.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/datetime-utc-deprecation.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/ldap-msa.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/membership-rename.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/membership-server.yml

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/reboot_timeout.yml

This file was deleted.

0 comments on commit 55f8f10

Please sign in to comment.