Skip to content

Commit

Permalink
Prepare for v1.7.1 release (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 authored Jul 26, 2021
1 parent 1e3b7cd commit b9540df
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 18 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,24 @@ Ansible Windows Release Notes
.. contents:: Topics


v1.7.0
v1.7.1
======

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

- Release summary for v1.7.0
- Release summary for v1.7.1

Bugfixes
--------

- win_dsc - Fix import errors when running against host that wasn't installed with the ``en-US`` locale - https://github.com/ansible-collections/ansible.windows/issues/83
- win_state - Fixed the ``creationtime``, ``lastaccesstime``, and ``lastwritetime`` to report the time in UTC. This matches the ``stat`` module's behaviour and what many would expect for a epoch based timestamp - https://github.com/ansible-collections/ansible.windows/issues/240
- win_updates - Fixed ``win_updates`` output to not cast to an integer to preserve original behaviour and issues with non integer values - https://github.com/ansible-collections/ansible.windows/issues/247
- win_updates - fallback to run as SYSTEM if current user does not have batch logon rights - https://github.com/ansible-collections/ansible.windows/issues/253

v1.7.0
======

Minor Changes
-------------
Expand Down
23 changes: 21 additions & 2 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,29 @@ releases:
- win_updates - Improve Windows Update HRESULT error messages
- win_updates - Improve the details present in the ``log_path`` log entries
for better monitoring
release_summary:
- Release summary for v1.7.0
fragments:
- release-summary.yml
- win_reboot-flaky-connection.yml
- win_updates-refactor.yml
release_date: '2021-06-26'
1.7.1:
changes:
bugfixes:
- win_dsc - Fix import errors when running against host that wasn't installed
with the ``en-US`` locale - https://github.com/ansible-collections/ansible.windows/issues/83
- win_state - Fixed the ``creationtime``, ``lastaccesstime``, and ``lastwritetime``
to report the time in UTC. This matches the ``stat`` module's behaviour and
what many would expect for a epoch based timestamp - https://github.com/ansible-collections/ansible.windows/issues/240
- win_updates - Fixed ``win_updates`` output to not cast to an integer to preserve
original behaviour and issues with non integer values - https://github.com/ansible-collections/ansible.windows/issues/247
- win_updates - fallback to run as SYSTEM if current user does not have batch
logon rights - https://github.com/ansible-collections/ansible.windows/issues/253
release_summary:
- Release summary for v1.7.1
fragments:
- release_summary.yml
- win_dsc-locale.yml
- win_state-datetime.yml
- win_updates-batch.yml
- win_updates-kb.yml
release_date: '2021-07-27'
2 changes: 0 additions & 2 deletions changelogs/fragments/win_dsc-locale.yml

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/win_state-datetime.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/win_updates-batch.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/win_updates-kb.yml

This file was deleted.

3 changes: 2 additions & 1 deletion docs/ansible.windows.win_dsc_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,12 @@ Notes
-----

.. note::
- By default there are a few builtin resources that come with PowerShell 5.0, see https://docs.microsoft.com/en-us/powershell/scripting/dsc/resources/resources for more information on these resources.
- By default there are a few builtin resources that come with PowerShell 5.0, See https://docs.microsoft.com/en-us/powershell/scripting/dsc/resources/resources for more information on these resources.
- Custom DSC resources can be installed with :ref:`community.windows.win_psmodule <community.windows.win_psmodule_module>` using the *name* option.
- The DSC engine run's each task as the SYSTEM account, any resources that need to be accessed with a different account need to have ``PsDscRunAsCredential`` set.
- To see the valid options for a DSC resource, run the module with ``-vvv`` to show the possible module invocation. Default values are not shown in this output but are applied within the DSC engine.
- The DSC engine requires the HTTP WSMan listener to be online and its port configured as the default listener for HTTP. This is set up by default but if a custom HTTP port is used or only a HTTPS listener is present then the module will fail. See the examples for a way to check this out in PowerShell.
- The Local Configuration Manager ``LCM`` on the targeted host in question should be disabled to avoid any conflicts with resources being applied by this module. See https://devblogs.microsoft.com/powershell/invoking-powershell-dsc-resources-directly/ for more information on hwo to disable ``LCM``.



Expand Down
2 changes: 1 addition & 1 deletion docs/ansible.windows.win_regedit_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ Examples
path: HKLM:\ANSIBLE\Control Panel\Mouse
name: MouseTrails
data: 10
type: str
type: string
state: present
hive: C:\Users\Default\NTUSER.dat
Expand Down
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: 1.7.0
version: 1.7.1
readme: README.md
authors:
- Jordan Borean @jborean93
Expand Down

0 comments on commit b9540df

Please sign in to comment.