Skip to content

Commit

Permalink
Prepare for v1.8.0 release (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 authored Nov 2, 2021
1 parent 76a13ec commit a56c67b
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 27 deletions.
26 changes: 24 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,35 @@ Ansible Windows Release Notes
.. contents:: Topics


v1.7.3
v1.8.0
======

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

- Release summary for v1.7.3
- Release summary for v1.8.0

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

- win_updates - Added the ``skip_optional`` module option to skip optional updates

Bugfixes
--------

- win_copy - Fix remote dest size calculation logic
- win_dns_client - Fix method used to read IPv6 DNS settings given by DHCP - https://github.com/ansible-collections/ansible.windows/issues/283
- win_file - Fix conflicts with existing ``LIB`` environment variable
- win_find - Fix conflicts with existing ``LIB`` environment variable
- win_stat - Fix conflicts with existing ``LIB`` environment variable
- win_updates - Fix conflicts with existing ``LIB`` environment variable
- win_updates - Ignore named pipes with illegal filenames when checking for the task named pipe during bootstrapping - https://github.com/ansible-collections/ansible.windows/issues/291
- win_updates - Improve error handling when starting background update task
- win_user - Fix ``msg`` return value when setting ``state: query``
- win_whoami - Fix conflicts with existing ``LIB`` environment variable

v1.7.3
======

Bugfixes
--------
Expand Down
30 changes: 28 additions & 2 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -344,11 +344,37 @@ releases:
- win_updates - Bypass execution policy checks when polling or cancelling the
update task - https://github.com/ansible-collections/ansible.windows/issues/272
- win_user - Set validate user logic to always check local database
release_summary:
- Release summary for v1.7.3
fragments:
- reboot_error_outside_block.yml
- release_summary.yml
- win_updates-executionpolicy.yml
- win_user-domain.yml
release_date: '2021-09-23'
1.8.0:
changes:
bugfixes:
- win_copy - Fix remote dest size calculation logic
- win_dns_client - Fix method used to read IPv6 DNS settings given by DHCP -
https://github.com/ansible-collections/ansible.windows/issues/283
- win_file - Fix conflicts with existing ``LIB`` environment variable
- win_find - Fix conflicts with existing ``LIB`` environment variable
- win_stat - Fix conflicts with existing ``LIB`` environment variable
- win_updates - Fix conflicts with existing ``LIB`` environment variable
- win_updates - Ignore named pipes with illegal filenames when checking for
the task named pipe during bootstrapping - https://github.com/ansible-collections/ansible.windows/issues/291
- win_updates - Improve error handling when starting background update task
- 'win_user - Fix ``msg`` return value when setting ``state: query``'
- win_whoami - Fix conflicts with existing ``LIB`` environment variable
minor_changes:
- win_updates - Added the ``skip_optional`` module option to skip optional updates
release_summary:
- Release summary for v1.8.0
fragments:
- 283-win_dns_client_IPv6_DNS.yml
- 290-win_user-state-query.yml
- 291-win_updates-illegal-pipe-path.yml
- add-type-env.yml
- release.yml
- win_copy-dst-size.yml
- win_updates-skip-optional.yml
release_date: '2021-11-03'
2 changes: 0 additions & 2 deletions changelogs/fragments/283-win_dns_client_IPv6_DNS.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/290-win_user-state-query.yml

This file was deleted.

5 changes: 0 additions & 5 deletions changelogs/fragments/291-win_updates-illegal-pipe-path.yml

This file was deleted.

6 changes: 0 additions & 6 deletions changelogs/fragments/add-type-env.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/win_copy-dst-size.yml

This file was deleted.

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

This file was deleted.

3 changes: 2 additions & 1 deletion docs/ansible.windows.win_feature_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@ Common return values are documented `here <https://docs.ansible.com/ansible/late
</td>
<td>success</td>
<td>
<div>True when the target server requires a reboot to complete updates (no further updates can be installed until after a reboot).</div>
<div>True when the target server indicates a reboot is required (no further updates can be installed until after a reboot).</div>
<div>This my be true even if not change had occurred as the value is derived from the server state.</div>
<br/>
<div style="font-size: smaller"><b>Sample:</b></div>
<div style="font-size: smaller; color: blue; word-wrap: break-word; word-break: break-all;">True</div>
Expand Down
23 changes: 22 additions & 1 deletion docs/ansible.windows.win_updates_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,27 @@ Parameters
<div><code>windows_update</code> Use the Microsoft Windows Update catalog.</div>
</td>
</tr>
<tr>
<td colspan="1">
<div class="ansibleOptionAnchor" id="parameter-"></div>
<b>skip_optional</b>
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
<div style="font-size: small">
<span style="color: purple">boolean</span>
</div>
<div style="font-style: italic; font-size: small; color: darkgreen">added in 1.8.0</div>
</td>
<td>
<ul style="margin: 0; padding: 0"><b>Choices:</b>
<li><div style="color: blue"><b>no</b>&nbsp;&larr;</div></li>
<li>yes</li>
</ul>
</td>
<td>
<div>Skip optional updates where the update has BrowseOnly set by Microsoft.</div>
<div>Microsoft documents show that BrowseOnly means that the update should not be installed automatically and appear as optional updates.</div>
</td>
</tr>
<tr>
<td colspan="1">
<div class="ansibleOptionAnchor" id="parameter-"></div>
Expand Down Expand Up @@ -412,7 +433,7 @@ Common return values are documented `here <https://docs.ansible.com/ansible/late
<td></td>
<td>
<div>A list of reasons why the update has been filtered.</div>
<div>Can be <code>accept_list</code>, <code>reject_list</code>, <code>hidden</code>, or <code>category_names</code>.</div>
<div>Can be <code>accept_list</code>, <code>reject_list</code>, <code>hidden</code>, <code>category_names</code>, or <code>skip_optional</code>.</div>
<br/>
<div style="font-size: smaller"><b>Sample:</b></div>
<div style="font-size: smaller; color: blue; word-wrap: break-word; word-break: break-all;">[&#x27;category_names&#x27;, &#x27;accept_list&#x27;]</div>
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.3
version: 1.8.0
readme: README.md
authors:
- Jordan Borean @jborean93
Expand Down

0 comments on commit a56c67b

Please sign in to comment.