Skip to content

Commit 901fe6b

Browse files
Staging v1.11.0 (#1726)
* Fixed zos_copy * Fixed encode test case * update version and remove author Signed-off-by: ddimatos <[email protected]> * Python is EOS 9-30, updated meta Signed-off-by: ddimatos <[email protected]> * Update README with new links and cleanup Signed-off-by: ddimatos <[email protected]> * Update GA dates Signed-off-by: ddimatos <[email protected]> * Update module docs with auto generations Signed-off-by: ddimatos <[email protected]> * Add changelog summary Signed-off-by: ddimatos <[email protected]> * Changelog updates Signed-off-by: ddimatos <[email protected]> * remove stale changelog files Signed-off-by: ddimatos <[email protected]> * update galaxy exclusions Signed-off-by: ddimatos <[email protected]> * update release notes for 1.11.0 Signed-off-by: ddimatos <[email protected]> * Remove unused imports from action plugin Signed-off-by: ddimatos <[email protected]> * Corrections for flake8 Signed-off-by: ddimatos <[email protected]> * Updated example to not escape the paren Signed-off-by: ddimatos <[email protected]> * Update module doc to correct use of monospace Signed-off-by: ddimatos <[email protected]> * Corretions to release notes Signed-off-by: ddimatos <[email protected]> * Corrections Signed-off-by: ddimatos <[email protected]> --------- Signed-off-by: ddimatos <[email protected]> Co-authored-by: Fernando Flores <[email protected]>
1 parent 58cda22 commit 901fe6b

23 files changed

+158
-270
lines changed

CHANGELOG.rst

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

55
.. contents:: Topics
66

7-
v1.11.0-beta.1
8-
==============
7+
v1.11.0
8+
=======
99

1010
Release Summary
1111
---------------
1212

13-
Release Date: '2024-08-05'
13+
Release Date: '2024-10-01'
1414
This changelog describes all changes made to the modules and plugins included
1515
in this collection. The release date is the date the changelog is created.
1616
For additional details such as required dependencies and availability review
@@ -32,11 +32,11 @@ Minor Changes
3232
- zos_job_submit - add support for generation data groups and generation data sets as sources for jobs. (https://github.com/ansible-collections/ibm_zos_core/pull/1497)
3333
- zos_lineinfile - Added support for GDG and GDS relative name notation to use a data set. And backup in new generations. Added support for data set names with special characters like $, /#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1516).
3434
- zos_mount - Added support for data set names with special characters ($, /#, /- and @). This is for both src and backup data set names. (https://github.com/ansible-collections/ibm_zos_core/pull/1631).
35-
- zos_tso_command - Added support for GDG and GDS relative name notation to use a data set name. Added support for data set names with special characters like $, /#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1563).
3635
- zos_mvs_raw - Added support for GDG and GDS relative name notation to use a data set. Added support for data set names with special characters like $, /#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1525).
3736
- zos_mvs_raw - Added support for GDG and GDS relative positive name notation to use a data set. (https://github.com/ansible-collections/ibm_zos_core/pull/1541).
3837
- zos_mvs_raw - Redesign the wrappers of dd clases to use properly the arguments. (https://github.com/ansible-collections/ibm_zos_core/pull/1470).
3938
- zos_script - Improved the copy to remote mechanic to avoid using deepcopy that could result in failure for some systems. (https://github.com/ansible-collections/ibm_zos_core/pull/1561).
39+
- zos_tso_command - Added support for GDG and GDS relative name notation to use a data set name. Added support for data set names with special characters like $, /#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1563).
4040
- zos_unarchive - Added support for data set names with special characters like $, /#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1511).
4141
- zos_unarchive - Improved the copy to remote mechanic to avoid using deepcopy that could result in failure for some systems. (https://github.com/ansible-collections/ibm_zos_core/pull/1561).
4242

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ The **IBM z/OS core** collection enables Ansible to interact with z/OS Data Sets
66

77
The **IBM z/OS core** collection is part of the **Red Hat® Ansible Certified Content for IBM Z®** offering that brings Ansible automation to IBM Z®. This collection brings forward the possibility to manage batch jobs, perform program authorizations, run operator operations, and execute both JES and MVS commands as well as execute shell, python, and REXX scripts. It supports data set creation, searching, copying, fetching, and encoding. It provides both archiving and unarchiving of data sets, initializing volumes, performing backups and supports Jinja templating.
88

9-
109
<br/>System programmers can enable pipelines to setup, tear down and deploy applications while system administrators can automate time consuming repetitive tasks inevitably freeing up their time. New z/OS users can find comfort in Ansible's familiarity and expedite their proficiency in record time.
1110

1211
## Requirements
@@ -64,7 +63,7 @@ after an update.
6463
```sh
6564
PYZ: "path_to_python_installation_on_zos_target"
6665
ZOAU: "path_to_zoau_installation_on_zos_target"
67-
ZOAU_PYTHONPATH: "path_to_zoau_wheel_installation_directory"
66+
ZOAU_PYTHON_LIBRARY_PATH: "path_to_zoau_wheel_installation_directory"
6867

6968
ansible_python_interpreter: "{{ PYZ }}/bin/python3"
7069

@@ -135,12 +134,10 @@ All releases will meet the following test criteria.
135134

136135
* ansible-core v2.15.x
137136
* Python 3.11.x
138-
* IBM Open Enterprise SDK for Python 3.11.x
137+
* IBM Open Enterprise SDK for Python 3.12.x
139138
* IBM Z Open Automation Utilities (ZOAU) 1.3.1.x
140139
* z/OS V2R5
141140

142-
This release introduces case sensitivity for option values and includes a porting guide in the [release notes](https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html) to assist with which option values will need to be updated.
143-
144141
## Contributing
145142

146143
This community is not currently accepting contributions. However, we encourage you to open [git issues](https://github.com/ansible-collections/ibm_zos_core/issues) for bugs, comments or feature requests and check back periodically for when community contributions will be accepted in the near future.
@@ -154,7 +151,7 @@ If you would like to communicate with this community, you can do so through the
154151
* GitHub [discussions](https://github.com/ansible-collections/ibm_zos_core/discussions).
155152
* GitHub [issues](https://github.com/ansible-collections/ibm_zos_core/issues/new/choose).
156153
* [Ansible Forum](https://forum.ansible.com/), please use the `zos` tag to ensure proper awareness.
157-
* Discord [System Z Enthusiasts](https://discord.gg/Kmy5QaUGbB) room [ansible](https://discord.gg/nHrDdRTC).
154+
* Discord [System Z Enthusiasts](https://discord.gg/sze) room `ansible`.
158155
* Matrix general usage questions [room](https://matrix.to/#/#users:ansible.com).
159156

160157
## Support
@@ -178,8 +175,8 @@ For Galaxy and GitHub users, to see the supported ansible-core versions, review
178175
| Version | Status | Release notes | Changelogs |
179176
|----------|----------------|---------------|------------|
180177
| 1.12.x | In development | unreleased | unreleased |
181-
| 1.11.x | In preview | [Release notes](https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html#version-1-11-0-beta.1) | [Changelogs](https://github.com/ansible-collections/ibm_zos_core/blob/v1.11.0-beta.1/CHANGELOG.rst) |
182-
| 1.10.x | Current | [Release notes](https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html#version-1-10-0) | [Changelogs](https://github.com/ansible-collections/ibm_zos_core/blob/v1.10.0/CHANGELOG.rst) |
178+
| 1.11.x | Current | [Release notes](https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html#version-1-11-0) | [Changelogs](https://github.com/ansible-collections/ibm_zos_core/blob/v1.11.0/CHANGELOG.rst) |
179+
| 1.10.x | Released | [Release notes](https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html#version-1-10-0) | [Changelogs](https://github.com/ansible-collections/ibm_zos_core/blob/v1.10.0/CHANGELOG.rst) |
183180
| 1.9.x | Released | [Release notes](https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html#version-1-9-2) | [Changelogs](https://github.com/ansible-collections/ibm_zos_core/blob/v1.9.2/CHANGELOG.rst) |
184181
| 1.8.x | Released | [Release notes](https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html#version-1-8-0) | [Changelogs](https://github.com/ansible-collections/ibm_zos_core/blob/v1.8.0/CHANGELOG.rst) |
185182
| 1.7.x | Released | [Release notes](https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html#version-1-7-0) | [Changelogs](https://github.com/ansible-collections/ibm_zos_core/blob/v1.7.0/CHANGELOG.rst) |

changelogs/.plugin-cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,4 @@ plugins:
135135
strategy: {}
136136
test: {}
137137
vars: {}
138-
version: 1.11.0-beta.1
138+
version: 1.11.0

changelogs/changelog.yaml

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,20 @@ releases:
259259
- 992-fix-sanity4to6.yml
260260
- v1.10.0-beta.1_summary.yml
261261
release_date: '2024-05-08'
262+
1.11.0:
263+
changes:
264+
release_summary: 'Release Date: ''2024-10-01''
265+
266+
This changelog describes all changes made to the modules and plugins included
267+
268+
in this collection. The release date is the date the changelog is created.
269+
270+
For additional details such as required dependencies and availability review
271+
272+
the collections `release notes <https://ibm.github.io/z_ansible_collections_doc/ibm_zos_core/docs/source/release_notes.html>`__'
273+
fragments:
274+
- v1.11.0_summary.yml
275+
release_date: '2024-09-25'
262276
1.11.0-beta.1:
263277
changes:
264278
bugfixes:
@@ -283,9 +297,9 @@ releases:
283297
- zos_archive - Added support for GDG and GDS relative name notation to archive
284298
data sets. Added support for data set names with special characters like $,
285299
/#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1511).
286-
- zos_backup_restore - Added support for GDS relative name notation to include or
287-
exclude data sets when operation is backup. Added support for data set names
288-
with special characters like $, /#, and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1527).
300+
- zos_backup_restore - Added support for GDS relative name notation to include
301+
or exclude data sets when operation is backup. Added support for data set
302+
names with special characters like $, /#, and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1527).
289303
- zos_blockinfile - Added support for GDG and GDS relative name notation to
290304
use a data set. And backup in new generations. Added support for data set
291305
names with special characters like $, /#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1516).
@@ -315,11 +329,11 @@ releases:
315329
to use a data set. (https://github.com/ansible-collections/ibm_zos_core/pull/1541).
316330
- zos_mvs_raw - Redesign the wrappers of dd clases to use properly the arguments.
317331
(https://github.com/ansible-collections/ibm_zos_core/pull/1470).
318-
- zos_tso_command - Added support for GDG and GDS relative name notation to use
319-
a data set name. Added support for data set names with special characters
320-
like $, /#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1563).
321332
- zos_script - Improved the copy to remote mechanic to avoid using deepcopy
322333
that could result in failure for some systems. (https://github.com/ansible-collections/ibm_zos_core/pull/1561).
334+
- zos_tso_command - Added support for GDG and GDS relative name notation to
335+
use a data set name. Added support for data set names with special characters
336+
like $, /#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1563).
323337
- zos_unarchive - Added support for data set names with special characters like
324338
$, /#, /- and @. (https://github.com/ansible-collections/ibm_zos_core/pull/1511).
325339
- zos_unarchive - Improved the copy to remote mechanic to avoid using deepcopy

changelogs/fragments/v1.11.0-beta.1_summary.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

docs/source/modules/zos_archive.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ Examples
397397
format:
398398
name: terse
399399
format_options:
400-
use_adrdssu: True
400+
use_adrdssu: true
401401

402402
- name: Archive multiple data sets into a new GDS
403403
zos_archive:
@@ -406,7 +406,7 @@ Examples
406406
format:
407407
name: terse
408408
format_options:
409-
use_adrdssu: True
409+
use_adrdssu: true
410410

411411

412412

docs/source/modules/zos_blockinfile.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ src
3333

3434
The USS file must be an absolute pathname.
3535

36-
Generation data set (GDS) relative name of generation already created. ``e.g. SOME.CREATION(-1``.)
36+
Generation data set (GDS) relative name of generation already created. e.g. *SOME.CREATION(-1*).
3737

3838
| **required**: True
3939
| **type**: str
@@ -295,7 +295,7 @@ Examples
295295
zos_blockinfile:
296296
src: SOME.CREATION.TEST
297297
insertbefore: BOF
298-
backup: True
298+
backup: true
299299
backup_name: CREATION.GDS(+1)
300300
block: "{{ CONTENT }}"
301301

docs/source/modules/zos_encode.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,7 @@ Examples
279279

280280

281281

282+
282283
Notes
283284
-----
284285

docs/source/modules/zos_find.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ Examples
253253

254254

255255

256-
257256
Notes
258257
-----
259258

docs/source/modules/zos_lineinfile.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ src
3333

3434
The USS file must be an absolute pathname.
3535

36-
Generation data set (GDS) relative name of generation already created. ``e.g. SOME.CREATION(-1.)``
36+
Generation data set (GDS) relative name of generation already created. e.g. *SOME.CREATION(-1*).
3737

3838
| **required**: True
3939
| **type**: str
@@ -262,7 +262,7 @@ Examples
262262
zos_lineinfile:
263263
src: SOME.CREATION.TEST
264264
insertafter: EOF
265-
backup: True
265+
backup: true
266266
backup_name: CREATION.GDS(+1)
267267
line: 'Should be a working test now'
268268

0 commit comments

Comments
 (0)