Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release preparation for v2.6.0 #713

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,41 @@ Ansible Windows Release Notes

.. contents:: Topics

v2.6.0
======

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

Release summary for v2.6.0. Includes various modules promoted from ``community.windows``.

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

- Added support for Windows Server 2025
- setup - Added ``ansible_os_install_date`` as the OS installation date in the ISO 8601 format ``yyyy-MM-ddTHH:mm:ssZ``. This date is represented in the UTC timezone - https://github.com/ansible-collections/ansible.windows/issues/663

Bugfixes
--------

- ansible.windows.win_powershell - Add extra checks to avoid ``GetType`` error when converting the output object - ttps://github.com/ansible-collections/ansible.windows/issues/708
- win_powershell - Ensure ``$Ansible.Result = @()`` as an empty array is returned as an empty list and not null - https://github.com/ansible-collections/ansible.windows/issues/686
- win_updates - Only set the Access control sections on the temporary directory created by the module. This avoids the error when the ``SeSecurityPrivilege`` privilege isn't present.

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

- win_certificate_info - Get information on certificates from a Windows Certificate Store
- win_dhcp_lease - Manage Windows Server DHCP Leases
- win_dns_record - Manage Windows Server DNS records
- win_dns_zone - Manage Windows Server DNS Zones
- win_eventlog - Manage Windows event logs
- win_firewall - Enable or disable the Windows Firewall
- win_hosts - Manages hosts file entries on Windows.
- win_hotfix - Install and uninstalls Windows hotfixes
- win_region - Set the region and format settings
- win_timezone - Sets Windows machine timezone

v2.5.0
======

Expand Down
56 changes: 56 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -769,3 +769,59 @@ releases:
- release_summary-2.5.0.yml
- win_powershell-fix.yml
release_date: '2024-08-30'
2.6.0:
changes:
bugfixes:
- ansible.windows.win_powershell - Add extra checks to avoid ``GetType`` error
when converting the output object - ttps://github.com/ansible-collections/ansible.windows/issues/708
- win_powershell - Ensure ``$Ansible.Result = @()`` as an empty array is returned
as an empty list and not null - https://github.com/ansible-collections/ansible.windows/issues/686
- win_updates - Only set the Access control sections on the temporary directory
created by the module. This avoids the error when the ``SeSecurityPrivilege``
privilege isn't present.
minor_changes:
- Added support for Windows Server 2025
- setup - Added ``ansible_os_install_date`` as the OS installation date in the
ISO 8601 format ``yyyy-MM-ddTHH:mm:ssZ``. This date is represented in the
UTC timezone - https://github.com/ansible-collections/ansible.windows/issues/663
release_summary: Release summary for v2.6.0. Includes various modules promoted
from ``community.windows``.
fragments:
- release-summary.yml
- setup-install-date.yml
- win-2025.yml
- win_powershell-result-array.yml
- win_powershell-type.yml
- win_updates-acl.yml
modules:
- description: Get information on certificates from a Windows Certificate Store
name: win_certificate_info
namespace: ''
- description: Manage Windows Server DHCP Leases
name: win_dhcp_lease
namespace: ''
- description: Manage Windows Server DNS records
name: win_dns_record
namespace: ''
- description: Manage Windows Server DNS Zones
name: win_dns_zone
namespace: ''
- description: Manage Windows event logs
name: win_eventlog
namespace: ''
- description: Enable or disable the Windows Firewall
name: win_firewall
namespace: ''
- description: Manages hosts file entries on Windows.
name: win_hosts
namespace: ''
- description: Install and uninstalls Windows hotfixes
name: win_hotfix
namespace: ''
- description: Set the region and format settings
name: win_region
namespace: ''
- description: Sets Windows machine timezone
name: win_timezone
namespace: ''
release_date: '2024-12-11'
5 changes: 0 additions & 5 deletions changelogs/fragments/setup-install-date.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/win-2025.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/win_powershell-result-array.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/win_powershell-type.yml

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/win_updates-acl.yml

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: ansible
name: windows
version: 2.5.0
version: 2.6.0
readme: README.md
authors:
- Jordan Borean @jborean93
Expand Down
Loading