Skip to content

Commit 187c7f9

Browse files
Merge pull request #2070 from ansible-collections/cherry-picked-1140-into-dev
Cherry picked 1.14.0-beta.1 into dev branch
2 parents 8a0192e + 7ffc17e commit 187c7f9

File tree

99 files changed

+811
-1142
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+811
-1142
lines changed

CHANGELOG.rst

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,61 @@ ibm.ibm\_zos\_core Release Notes
44

55
.. contents:: Topics
66

7+
v1.14.0-beta.1
8+
==============
9+
10+
Release Summary
11+
---------------
12+
13+
Release Date: '2025-04-30'
14+
This changelog describes all changes made to the modules and plugins included
15+
in this collection. The release date is the date the changelog is created.
16+
For additional details such as required dependencies and availability review
17+
the collections `release notes <https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html>`__
18+
19+
Minor Changes
20+
-------------
21+
22+
- zos_copy - Adds ``large`` as a choice for ``type`` in ``dest_data_set``. (https://github.com/ansible-collections/ibm_zos_core/pull/1938)
23+
- zos_copy - Adds logging of Jinja rendered template content when `use_template` is true and verbosity level `-vvv` is used. (https://github.com/ansible-collections/ibm_zos_core/pull/1968).
24+
- zos_copy - Adds support for copying in asynchronous mode inside playbooks. (https://github.com/ansible-collections/ibm_zos_core/pull/1953).
25+
- zos_copy - Removes the need to allow READ access to MVS.MCSOPER.ZOAU to execute the module by changing how the module checks if a data set is locked. (https://github.com/ansible-collections/ibm_zos_core/pull/1917).
26+
- zos_job_output - Add execution_time return value in the modules response. (https://github.com/ansible-collections/ibm_zos_core/pull/1891).
27+
- zos_job_query - Add execution_time return value in the modules response. (https://github.com/ansible-collections/ibm_zos_core/pull/1891).
28+
- zos_job_query - Loads correct bytes size value for dds when using zoau 1.3.4 or later (https://github.com/ansible-collections/ibm_zos_core/pull/1868).
29+
- zos_job_query - System and Subsystem are now retrieved from JES. (https://github.com/ansible-collections/ibm_zos_core/pull/1900).
30+
- zos_job_submit - Adds logging of Jinja rendered template content when `use_template` is true and verbosity level `-vvv` is used. (https://github.com/ansible-collections/ibm_zos_core/pull/1962).
31+
- zos_job_submit - Add execution_time return value in the modules response. (https://github.com/ansible-collections/ibm_zos_core/pull/1891).
32+
- zos_job_submit - Loads correct bytes size value for dds when using zoau 1.3.4 or later (https://github.com/ansible-collections/ibm_zos_core/pull/1868).
33+
- zos_script - Adds error message for when remote source does not exist. (https://github.com/ansible-collections/ibm_zos_core/pull/1894).
34+
- zos_script - Adds logging of Jinja rendered template content when `use_template` is true and verbosity level `-vvv` is used. (https://github.com/ansible-collections/ibm_zos_core/pull/1968).
35+
- zos_script - Adds support for running local and remote scripts in asynchronous mode inside playbooks. (https://github.com/ansible-collections/ibm_zos_core/pull/1934).
36+
- zos_script - Support automatic removal of carriage return line breaks [CR, CRLF] when copying local files to USS. (https://github.com/ansible-collections/ibm_zos_core/pull/1954).
37+
- zos_stat - Adds support to query data sets using their aliases. (https://github.com/ansible-collections/ibm_zos_core/pull/2048)
38+
- zos_unarchive - Adds support for unarchiving files in asynchronous mode inside playbooks. (https://github.com/ansible-collections/ibm_zos_core/pull/2020).
39+
- zos_zfs_resize - Adds validations for trace destination dataset used for trace verbose. (https://github.com/ansible-collections/ibm_zos_core/pull/1897).
40+
41+
Bugfixes
42+
--------
43+
44+
- zos_apf - When trying to add a library into the APF list that was already added, the module would fail. Fix now will not fail the module, and will inform the user that the library is already on the APF list. (https://github.com/ansible-collections/ibm_zos_core/pull/1893)
45+
- zos_copy - Previously, if the dataset name included special characters such as $, validation would fail when force_lock was false. This has been changed to allow the use of special characters when force_lock option is false. (https://github.com/ansible-collections/ibm_zos_core/pull/1908)
46+
- zos_copy - When ``asa_text`` was set to true at the same time as ``force_lock``, a copy would fail saying the destination was already in use. Fix now opens destination data sets up with disposition SHR when ``force_lock`` and ``asa_text`` are set to true. (https://github.com/ansible-collections/ibm_zos_core/pull/1941).
47+
- zos_copy - the carriage return characters were being removed from only first 1024 bytes of a file. Now fixed that issue to support removal of the carriage return characters from the complete file content if the file size is more than 1024 bytes. (https://github.com/ansible-collections/ibm_zos_core/pull/1954).
48+
- zos_data_set - Module would fail when trying to delete a non-existent Generation Data Group. Fix now provides a successful response with `changed=false`. (https://github.com/ansible-collections/ibm_zos_core/pull/1971).
49+
- zos_data_set - Module would fail with TypeError when trying to replace an existing GDG. Fix now allows to replacing a GDG. (https://github.com/ansible-collections/ibm_zos_core/pull/1964).
50+
- zos_job_output - When searching for a job name, module performed a '*' (find all), then filtered the results. Fix now asks for specific job name, making the return faster and more precise. (https://github.com/ansible-collections/ibm_zos_core/pull/1916).
51+
- zos_job_query - When searching for a job name, module performed a '*' (find all), then filtered the results. Fix now asks for specific job name, making the return faster and more precise. (https://github.com/ansible-collections/ibm_zos_core/pull/1916).
52+
- zos_job_submit - When searching for a job name, module performed a '*' (find all), then filtered the results. Fix now asks for specific job name, making the return faster and more precise. (https://github.com/ansible-collections/ibm_zos_core/pull/1916).
53+
- zos_mount - Module failed when using persistent option with a data set that contains non UTF-8 characters. Fix now can use a data set with non UTF-8 characters as data_store. (https://github.com/ansible-collections/ibm_zos_core/pull/1871).
54+
55+
New Modules
56+
-----------
57+
58+
- ibm.ibm_zos_core.zos_stat - Retrieve facts from MVS data sets, USS files, aggregates and generation data groups
59+
760
v1.13.0
61+
=======
862

963
Release Summary
1064
---------------

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ All releases will meet the following test criteria.
135135
* ansible-core v2.15.x
136136
* Python 3.11.x
137137
* IBM Open Enterprise SDK for Python 3.12.x
138-
* IBM Z Open Automation Utilities (ZOAU) 1.3.3.x
138+
* IBM Z Open Automation Utilities (ZOAU) 1.3.4.x
139139
* z/OS V2R5
140140

141141
## Contributing

changelogs/.plugin-cache.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,12 @@ plugins:
115115
name: zos_script
116116
namespace: ''
117117
version_added: 1.8.0
118+
zos_stat:
119+
description: Retrieve facts from MVS data sets, USS files, aggregates and generation
120+
data groups
121+
name: zos_stat
122+
namespace: ''
123+
version_added: 1.14.0
118124
zos_tso_command:
119125
description: Execute TSO commands
120126
name: zos_tso_command
@@ -130,9 +136,14 @@ plugins:
130136
name: zos_volume_init
131137
namespace: ''
132138
version_added: 1.6.0
139+
zos_zfs_resize:
140+
description: Resize a zfs data set.
141+
name: zos_zfs_resize
142+
namespace: ''
143+
version_added: 1.13.0
133144
netconf: {}
134145
shell: {}
135146
strategy: {}
136147
test: {}
137148
vars: {}
138-
version: 1.12.0-beta.1
149+
version: 1.14.0-beta.1

0 commit comments

Comments
 (0)