Skip to content

Commit

Permalink
Release summery 2.7.0 (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaish25491 authored Jan 22, 2025
1 parent 75d424a commit 7d3e43f
Show file tree
Hide file tree
Showing 8 changed files with 111 additions and 24 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,47 @@ Ansible Windows Release Notes

.. contents:: Topics

v2.7.0
======

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

Release summary for v2.7.0

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

- win_get_url - if checksum is passed and destination file exists with different checksum file is always downloaded (https://github.com/ansible-collections/ansible.windows/issues/717)
- win_get_url - if checksum is passed and destination file exists with identical checksum no download is done unless force=yes (https://github.com/ansible-collections/ansible.windows/issues/717)
- win_group - Added ``--diff`` output support.
- win_group - Added ``members`` option to set the group membership. This is designed to replace the functionality of the ``win_group_membership`` module.
- win_group - Added ``sid`` return value representing the security identifier of the group when ``state=present``.
- win_group - Migrate to newer Ansible.Basic fragment for better input validation and testing support.

Bugfixes
--------

- win_group_membership - Fix bug when input ``members`` contained duplicate members that were not already present in the group - https://github.com/ansible-collections/ansible.windows/issues/736

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

- win_audit_policy_system - Used to make changes to the system wide Audit Policy
- win_audit_rule - Adds an audit rule to files, folders, or registry keys
- win_auto_logon - Adds or Sets auto logon registry keys.
- win_computer_description - Set windows description, owner and organization
- win_credential - Manages Windows Credentials in the Credential Manager
- win_feature_info - Gather information about Windows features
- win_file_compression - Alters the compression of files and directories on NTFS partitions.
- win_http_proxy - Manages proxy settings for WinHTTP
- win_inet_proxy - Manages proxy settings for WinINet and Internet Explorer
- win_listen_ports_facts - Recopilates the facts of the listening ports of the machine
- win_mapped_drive - Map network drives for users
- win_product_facts - Provides Windows product and license information
- win_route - Add or remove a static route
- win_user_profile - Manages the Windows user profiles.

v2.6.0
======

Expand Down
69 changes: 69 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -825,3 +825,72 @@ releases:
name: win_timezone
namespace: ''
release_date: '2024-12-11'
2.7.0:
changes:
bugfixes:
- win_group_membership - Fix bug when input ``members`` contained duplicate
members that were not already present in the group - https://github.com/ansible-collections/ansible.windows/issues/736
minor_changes:
- win_get_url - if checksum is passed and destination file exists with different
checksum file is always downloaded (https://github.com/ansible-collections/ansible.windows/issues/717)
- win_get_url - if checksum is passed and destination file exists with identical
checksum no download is done unless force=yes (https://github.com/ansible-collections/ansible.windows/issues/717)
- win_group - Added ``--diff`` output support.
- win_group - Added ``members`` option to set the group membership. This is
designed to replace the functionality of the ``win_group_membership`` module.
- win_group - Added ``sid`` return value representing the security identifier
of the group when ``state=present``.
- win_group - Migrate to newer Ansible.Basic fragment for better input validation
and testing support.
release_summary: Release summary for v2.7.0
fragments:
- 717-win_get_url-checksum.yml
- release-summary.yml
- win_group-basic.yml
- win_group-diff.yml
- win_group-sid.yml
- win_group_membership-unique.yml
modules:
- description: Used to make changes to the system wide Audit Policy
name: win_audit_policy_system
namespace: ''
- description: Adds an audit rule to files, folders, or registry keys
name: win_audit_rule
namespace: ''
- description: Adds or Sets auto logon registry keys.
name: win_auto_logon
namespace: ''
- description: Set windows description, owner and organization
name: win_computer_description
namespace: ''
- description: Manages Windows Credentials in the Credential Manager
name: win_credential
namespace: ''
- description: Gather information about Windows features
name: win_feature_info
namespace: ''
- description: Alters the compression of files and directories on NTFS partitions.
name: win_file_compression
namespace: ''
- description: Manages proxy settings for WinHTTP
name: win_http_proxy
namespace: ''
- description: Manages proxy settings for WinINet and Internet Explorer
name: win_inet_proxy
namespace: ''
- description: Recopilates the facts of the listening ports of the machine
name: win_listen_ports_facts
namespace: ''
- description: Map network drives for users
name: win_mapped_drive
namespace: ''
- description: Provides Windows product and license information
name: win_product_facts
namespace: ''
- description: Add or remove a static route
name: win_route
namespace: ''
- description: Manages the Windows user profiles.
name: win_user_profile
namespace: ''
release_date: '2025-01-22'
7 changes: 0 additions & 7 deletions changelogs/fragments/717-win_get_url-checksum.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/win_group-basic.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/win_group-diff.yml

This file was deleted.

6 changes: 0 additions & 6 deletions changelogs/fragments/win_group-sid.yml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/win_group_membership-unique.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.6.0
version: 2.7.0
readme: README.md
authors:
- Jordan Borean @jborean93
Expand Down

0 comments on commit 7d3e43f

Please sign in to comment.