Skip to content

Commit b95359c

Browse files
authored
v8.6.0 changelog and README updated (#597)
* Changelog and README update
1 parent 2bdc3e1 commit b95359c

File tree

4 files changed

+96
-5
lines changed

4 files changed

+96
-5
lines changed

CHANGELOG.rst

+45
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,45 @@ Dell OpenManage Ansible Modules Release Notes
55
.. contents:: Topics
66

77

8+
v8.6.0
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
- Added support for the environment variables as fallback for credentials for all modules of iDRAC, OME, and Redfish.
15+
- Enhanced idrac_certificates module and idrac_certificate role to support `CUSTOMCERTIFICATE` and import `HTTPS` certificate with the SSL key.
16+
17+
Major Changes
18+
-------------
19+
20+
- All OME modules are enhanced to support the environment variables `OME_USERNAME` and `OME_PASSWORD` as fallback for credentials.
21+
- All iDRAC and Redfish modules are enhanced to support the environment variables `IDRAC_USERNAME` and `IDRAC_PASSWORD` as fallback for credentials.
22+
- idrac_certificates - The module is enhanced to support the import and export of `CUSTOMCERTIFICATE`.
23+
24+
Minor Changes
25+
-------------
26+
27+
- For idrac_certificate role, added support for import operation of `HTTPS` certificate with the SSL key.
28+
- For idrac_certificates module, below enhancements are made: Added support for import operation of `HTTPS` certificate with the SSL key. The `email_address` has been made as an optional parameter.
29+
30+
Bugfixes
31+
--------
32+
33+
- Fixed the issue for ignoring the environment variable `NO_PROXY` earlier. (https://github.com/dell/dellemc-openmanage-ansible-modules/issues/554)
34+
- For idrac_certificates module, the `email_address` has been made as an optional parameter. (https://github.com/dell/dellemc-openmanage-ansible-modules/issues/582).
35+
36+
Known Issues
37+
------------
38+
39+
- idrac_firmware - Issue(279282) - This module does not support firmware update using HTTP, HTTPS, and FTP shares with authentication on iDRAC8.
40+
- idrac_network_attributes - Issue(279049) - If unsupported values are provided for the parameter ``ome_network_attributes``, then this module does not provide a correct error message.
41+
- ome_device_network_services - Issue(212681) - The module does not provide a proper error message if unsupported values are provided for the following parameters- port_number, community_name, max_sessions, max_auth_retries, and idle_timeout.
42+
- ome_device_power_settings - Issue(212679) - The module displays the following message if the value provided for the parameter ``power_cap`` is not within the supported range of 0 to 32767, ``Unable to complete the request because PowerCap does not exist or is not applicable for the resource URI.``
43+
- ome_device_quick_deploy - Issue(275231) - This module does not deploy a new configuration to a slot that has disabled IPv6.
44+
- ome_diagnostics - Issue(279193) - Export of SupportAssist collection logs to the share location fails on OME version 4.0.0.
45+
- ome_smart_fabric_uplink - Issue(186024) - The module supported by OpenManage Enterprise Modular, however it does not allow the creation of multiple uplinks of the same name. If an uplink is created using the same name as an existing uplink, then the existing uplink is modified.
46+
847
v8.5.0
948
======
1049

@@ -14,6 +53,12 @@ Release Summary
1453
- Ansible lint issues are fixed for the collections.
1554
- redfish_storage_volume module is enhanced to support reboot options and job tracking operation.
1655

56+
Minor Changes
57+
-------------
58+
59+
- Ansible lint issues are fixed for the collections.
60+
- Module ``redfish_storage_volume`` is enhanced to support reboot options and job tracking operation.
61+
1762
Bugfixes
1863
--------
1964

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ OpenManage Ansible Modules simplifies and automates provisioning, deployment, an
2626
* iDRAC8 based Dell PowerEdge Servers with firmware versions 2.84.84.84 and above.
2727
* iDRAC9 based Dell PowerEdge Servers with firmware versions 6.10.80.00 and above.
2828
* Dell OpenManage Enterprise versions 3.10.2 and 4.0.0.
29-
* Dell OpenManage Enterprise Modular versions 2.00.00 and above.
29+
* Dell OpenManage Enterprise Modular versions 2.10.10 and above.
3030

3131
## Prerequisites
32-
* [Ansible Core >= 2.16.0 and 2.15.6](https://github.com/ansible/ansible)
32+
* [Ansible Core >= 2.16.2 and 2.15.8](https://github.com/ansible/ansible)
3333
* Python >= 3.9.6
3434
* To run the iDRAC modules, install OpenManage Python Software Development Kit (OMSDK)
3535
using either ```pip install omsdk --upgrade``` or ```pip install -r requirements.txt```.

changelogs/changelog.yaml

+48-2
Original file line numberDiff line numberDiff line change
@@ -1615,9 +1615,9 @@ releases:
16151615
bugfixes:
16161616
- ome_inventory - The plugin returns 50 results when a group is specified.
16171617
No results are shown when a group is not specified. (https://github.com/dell/dellemc-openmanage-ansible-modules/issues/575).
1618-
minor changes:
1618+
minor_changes:
16191619
- Module ``redfish_storage_volume`` is enhanced to support reboot options and job tracking operation.
1620-
- Ansible list issues are fixed for the collections.
1620+
- Ansible lint issues are fixed for the collections.
16211621
known_issues:
16221622
- ome_diagnostics - Issue(279193) - Export of SupportAssist collection logs to
16231623
the share location fails on OME version 4.0.0.
@@ -1644,3 +1644,49 @@ releases:
16441644
16451645
- redfish_storage_volume module is enhanced to support reboot options and job tracking operation.'
16461646
release_date: '2023-11-30'
1647+
8.6.0:
1648+
changes:
1649+
release_summary: '- Added support for the environment variables as fallback for
1650+
credentials for all modules of iDRAC, OME, and Redfish.
1651+
1652+
- Enhanced idrac_certificates module and idrac_certificate role
1653+
to support `CUSTOMCERTIFICATE` and import `HTTPS` certificate with the SSL key.'
1654+
bugfixes:
1655+
- For idrac_certificates module, the `email_address` has been made as an
1656+
optional parameter. (https://github.com/dell/dellemc-openmanage-ansible-modules/issues/582).
1657+
- Fixed the issue for ignoring the environment variable `NO_PROXY`
1658+
earlier. (https://github.com/dell/dellemc-openmanage-ansible-modules/issues/554)
1659+
major_changes:
1660+
- All iDRAC and Redfish modules are enhanced to support the environment variables
1661+
`IDRAC_USERNAME` and `IDRAC_PASSWORD` as fallback for credentials.
1662+
- All OME modules are enhanced to support the environment variables `OME_USERNAME`
1663+
and `OME_PASSWORD` as fallback for credentials.
1664+
- idrac_certificates - The module is enhanced to support the import and export of `CUSTOMCERTIFICATE`.
1665+
minor_changes:
1666+
- "For idrac_certificates module, below enhancements are made: Added support
1667+
for import operation of `HTTPS` certificate with the SSL key.
1668+
The `email_address` has been made as an optional parameter."
1669+
- For idrac_certificate role, added support for import operation of `HTTPS` certificate with the SSL key.
1670+
known_issues:
1671+
- ome_diagnostics - Issue(279193) - Export of SupportAssist collection logs to
1672+
the share location fails on OME version 4.0.0.
1673+
- idrac_firmware - Issue(279282) - This module does not support firmware update
1674+
using HTTP, HTTPS, and FTP shares with authentication on iDRAC8.
1675+
- idrac_network_attributes - Issue(279049) - If unsupported values are provided
1676+
for the parameter ``ome_network_attributes``, then this module does not provide
1677+
a correct error message.
1678+
- ome_device_network_services - Issue(212681) - The module does not provide
1679+
a proper error message if unsupported values are provided for the following
1680+
parameters- port_number, community_name, max_sessions, max_auth_retries, and
1681+
idle_timeout.
1682+
- ome_device_power_settings - Issue(212679) - The module displays the following
1683+
message if the value provided for the parameter ``power_cap`` is not within
1684+
the supported range of 0 to 32767, ``Unable to complete the request because
1685+
PowerCap does not exist or is not applicable for the resource URI.``
1686+
- ome_device_quick_deploy - Issue(275231) - This module does not deploy a new
1687+
configuration to a slot that has disabled IPv6.
1688+
- ome_smart_fabric_uplink - Issue(186024) - The module supported by
1689+
OpenManage Enterprise Modular, however it does not allow the creation of multiple
1690+
uplinks of the same name. If an uplink is created using the same name as an
1691+
existing uplink, then the existing uplink is modified.
1692+
release_date: '2023-12-30'

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace: dellemc
22
name: openmanage
3-
version: 8.5.0
3+
version: 8.6.0
44
readme: README.md
55
authors:
66
- Jagadeesh N V <Jagadeesh.N.V@Dell.com>

0 commit comments

Comments
 (0)