From ed863b377b4a86e01cc0bc7f3fb1163d85b3535c Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Thu, 13 Feb 2020 16:59:44 +1000 Subject: [PATCH] win_package: add missing porting guide entries (#67374) --- docs/docsite/rst/porting_guides/porting_guide_2.10.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docsite/rst/porting_guides/porting_guide_2.10.rst b/docs/docsite/rst/porting_guides/porting_guide_2.10.rst index e5a9b20120b..3ab2e1ec86d 100644 --- a/docs/docsite/rst/porting_guides/porting_guide_2.10.rst +++ b/docs/docsite/rst/porting_guides/porting_guide_2.10.rst @@ -75,6 +75,9 @@ The following functionality will be removed in Ansible 2.14. Please update updat * :ref:`clc_aa_policy `: the ``wait`` parameter will be removed. It has always been ignored by the module. * :ref:`redfish_config `, :ref:`redfish_command `: the behavior to select the first System, Manager, or Chassis resource to modify when multiple are present will be removed. Use the new ``resource_id`` option to specify target resource to modify. * :ref:`win_domain_controller `: the ``log_path`` option will be removed. This was undocumented and only related to debugging information for module development. +* :ref:`win_package `: the ``username`` and ``password`` options will be removed. The same functionality can be done by using ``become: yes`` and ``become_flags: logon_type=new_credentials logon_flags=netcredentials_only`` on the task. +* :ref:`win_package `: the ``ensure`` alias for the ``state`` option will be removed. Please use ``state`` instead of ``ensure``. +* :ref:`win_package `: the ``productid`` alias for the ``product_id`` option will be removed. Please use ``product_id`` instead of ``productid``.