Skip to content

Commit 8b07925

Browse files
authored
Merge pull request #61 from ansible-collections/release-v1.0.1
Release v1.0.1
2 parents 029dcae + 6a4f106 commit 8b07925

File tree

85 files changed

+1863
-1623
lines changed

Some content is hidden

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

85 files changed

+1863
-1623
lines changed

.gitignore

100755100644
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
11
**/.DS_Store
22
**/__pycache__
33
**/ibm-*.tar.gz
4+
5+
#############################
6+
# OS generated files #
7+
#############################
8+
.DS_Store
9+
.DS_Store?
10+
._*
11+
.Spotlight-V100
12+
.Trashes
13+
ehthumbs.db
14+
Thumbs.db
15+
16+
#############################
17+
# Backup or temporary files #
18+
#############################
19+
*.pyo
20+
*.pyc
21+
*~
22+
*.bak
23+
*.swp
24+
25+
# Visual Studio Code workspace configuration files
26+
.vscode/*
27+
.vscode/
28+
!.vscode/tasks.json
29+
!.vscode/launch.json
30+
!.vscode/extensions.json
31+
*.code-workspace
32+
.vscode/settings.json
33+
34+
# Development files
35+
.keep

README.md

100755100644
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Features
3535
The IBM IMS collection includes
3636
[action plugins](https://github.com/ansible-collections/ibm_zos_ims/tree/master/plugins/action/)
3737
[modules](https://github.com/ansible-collections/ibm_zos_ims/tree/master/plugins/modules/),
38-
[sample playbooks](https://github.com/ansible-collections/ibm_zos_ims/tree/master/playbooks/),
3938
and ansible-doc to automate tasks on IMS.
4039

4140
Copyright

__init__.py

100755100644
File mode changed.

docs/source/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
author = 'IBM'
2121

2222
# The full version, including alpha/beta/rc tags
23-
release = '1.0.0-beta3'
23+
release = '1.0.1'
2424

2525
##############################################################################
2626
# General configuration
@@ -139,7 +139,7 @@
139139
# White list which Git tags documentation will be generated and linked into the
140140
# version selection box. This is currently a manual selection, until more
141141
# versions are released, there are no regular expressions used.
142-
scv_whitelist_tags = ('v1.0.0-beta1', 'v1.0.0-beta2')
142+
scv_whitelist_tags = ('v1.0.1', 'v1.1.0-beta.1')
143143

144144
# Sort versions by one or more values. Valid values are semver, alpha, and time.
145145
# Semantic is referred to as 'semver', this would ensure our latest VRM is
@@ -155,10 +155,10 @@
155155
# This can override the scv_banner_greatest_tag option, but given the greatest
156156
# tag is currently desired behavior, this site will rely on
157157
# 'scv_banner_greatest_tag = True' and not use 'scv_banner_main_ref'
158-
#scv_banner_main_ref = 'v1.1.0-beta2'
158+
# scv_banner_main_ref = 'v1.1.0-beta2'
159159

160160
# Override banner-main-ref to be the tag with the highest version number. If no
161161
# tags have docs then this option is ignored and --banner-main-ref is used.
162162
# The greatest tag is desirable behavior for this site.
163-
#scv_banner_greatest_tag = True
163+
# scv_banner_greatest_tag = True
164164
scv_banner_recent_tag = True

docs/source/modules/ims_acb_gen.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ compression
7676

7777
| **required**: False
7878
| **type**: str
79-
| **default**: none
8079
8180

8281

docs/source/modules/ims_command.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Return Values
174174
| Indicates the outcome of the module.
175175
176176
| **returned**: always
177-
| **type**: boolean
177+
| **type**: bool
178178
179179

180180

docs/source/modules/ims_dbd_gen.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ batch
7373

7474
If 'member_list' is empty and location is set to 'DATA_SET' or not specified, then src is expected to be a sequential data set.
7575

76+
Elements are of the list are str or dict with single key-value pair
77+
7678

7779
| **required**: False
7880
| **type**: list
@@ -141,6 +143,8 @@ member_list
141143

142144
If 'member_list' is empty and location is set to 'DATA_SET' or not specified, then src is expected to be a sequential data set.
143145

146+
Elements are of the list are str or dict with single key-value pair
147+
144148

145149
| **required**: False
146150
| **type**: list
@@ -278,6 +282,7 @@ Return Values
278282
batch_result
279283
| List of output for each DBDGEN run on each element in the list of input source if input is batch.
280284
285+
| **returned**: on batch call
281286
| **type**: list
282287
283288

docs/source/modules/ims_psb_gen.rst

Lines changed: 32 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ batch
6060

6161
If 'member_list' is empty and location is set to 'DATA_SET' or not specified, then src is expected to be a sequential data set.
6262

63+
Elements are of the list are str or dict with single key-value
64+
6365

6466
| **required**: False
6567
| **type**: list
@@ -128,6 +130,8 @@ member_list
128130

129131
If 'member_list' is empty and location is set to 'DATA_SET' or not specified, then src is expected to be a sequential data set.
130132

133+
Elements are of the list are str or dict with single key-value pair
134+
131135

132136
| **required**: False
133137
| **type**: list
@@ -182,45 +186,46 @@ Examples
182186
.. code-block:: yaml+jinja
183187

184188

189+
---
185190
- name: Basic example of IMS PSBGEN module with single data set
186191
ims_psb_gen:
187192
src: /tmp/src/somefile
188193
location: USS
189194
replace: true
190195
dest: SOME.DATA.SET.PSBLIB
191196
sys_lib:
192-
- SOME.DATA.SET.SDFSMAC
193-
- SYS1.MACLIB
197+
- SOME.DATA.SET.SDFSMAC
198+
- SYS1.MACLIB
194199

195200
- name: Basic example of IMS PSBGEN module
196201
ims_psb_gen:
197202
batch:
198-
-
199-
src: /tmp/psbgen02
200-
location: USS
201-
replace: true
202-
-
203-
src: OMVSADM.IMSTESTU.ANSIBLE.PSB.SRC
204-
location: DATA_SET
205-
member_list: [PSBGENL : TARGET1, PSBGENL : TARGET2]
206-
-
207-
src: OMVSADM.IMSTESTU.ANSIBLE.PSB.SRC
208-
member_list: [PSBGENL, PSBGENL]
209-
replace: true
210-
-
211-
src: OMVSADM.IMSTESTU.ANSIBLE.PSB.SRC
212-
member_list:
213-
- 'COGPSBL':'TARGET3'
214-
- 'COGPSBL2': 'TARGET4'
215-
replace: true
216-
-
217-
src: OMVSADM.IMSTESTU.ANSIBLE.PSB.SQ
218-
location: DATA_SET
219-
psb_name: SEQ
203+
-
204+
src: /tmp/psbgen02
205+
location: USS
206+
replace: true
207+
-
208+
src: OMVSADM.IMSTESTU.ANSIBLE.PSB.SRC
209+
location: DATA_SET
210+
member_list: [PSBGENL : TARGET1, PSBGENL : TARGET2]
211+
-
212+
src: OMVSADM.IMSTESTU.ANSIBLE.PSB.SRC
213+
member_list: [PSBGENL, PSBGENL]
214+
replace: true
215+
-
216+
src: OMVSADM.IMSTESTU.ANSIBLE.PSB.SRC
217+
member_list:
218+
- 'COGPSBL': 'TARGET3'
219+
- 'COGPSBL2': 'TARGET4'
220+
replace: true
221+
-
222+
src: OMVSADM.IMSTESTU.ANSIBLE.PSB.SQ
223+
location: DATA_SET
224+
psb_name: SEQ
220225
dest: IMSBANK.IMS1.PSBLIB
221226
sys_lib:
222-
- IMSBLD.I15RTSMM.SDFSMAC
223-
- SYS1.MACLIB
227+
- IMSBLD.I15RTSMM.SDFSMAC
228+
- SYS1.MACLIB
224229

225230

226231

@@ -245,6 +250,7 @@ Return Values
245250
batch_result
246251
| List of output for each PSBGEN run on each element in the list of input source if input is batch.
247252
253+
| **returned**: on batch call
248254
| **type**: list
249255
250256

docs/source/release_notes.rst

Lines changed: 80 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,87 @@
22
.. © Copyright IBM Corporation 2020 .
33
.. ...........................................................................
44
5+
========
56
Releases
67
========
78

9+
Version 1.0.1
10+
====================
11+
12+
Notes
13+
* Update recommended
14+
15+
* ``ims_acb_gen``
16+
* ``ims_dbd_gen``
17+
* ``ims_psb_gen``
18+
* ``ims_command``
19+
* Documentation updates
20+
* Improved test and security coverage
21+
22+
Availability
23+
* `Automation Hub`_
24+
* `Galaxy`_
25+
* `GitHub`_
26+
27+
Reference
28+
* Supported by IBM z/OS core collection v1.2.1 or later
29+
* Supported by IBM Z Open Enterprise Python for z/OS: 3.8.2 or later
30+
* Supported by IBM Z Open Automation Utilities 1.0.3 PTF UI70435 or later
31+
* Supported by z/OS V2R3
32+
* The z/OS® shell
33+
34+
.. _Automation Hub:
35+
https://www.ansible.com/products/automation-hub
36+
37+
.. _Galaxy:
38+
https://galaxy.ansible.com/ibm/ibm_zos_ims
39+
40+
.. _GitHub:
41+
https://github.com/ansible-collections/ibm_zos_ims
42+
43+
Version 1.1.0-beta.1
44+
====================
45+
46+
Notes
47+
-----
48+
49+
* Update recommended
50+
* New modules
51+
52+
* ``ims_catalog_populate``
53+
* ``ims_catalog_purge``
54+
* ``ims_dbrc``
55+
* Documentation
56+
57+
* Update documentation in support of `centralized content`_.
58+
* Updated sample playbook
59+
60+
Availability
61+
------------
62+
63+
* `Galaxy`_
64+
* `GitHub`_
65+
66+
Reference
67+
---------
68+
69+
* Supported by IBM z/OS core collection v1.2.0-beta.1 or later
70+
* Supported by IBM Z Open Enterprise Python for z/OS: 3.8.2 or later
71+
* Supported by IBM Z Open Automation Utilities 1.0.3 PTF UI70435 or later
72+
* Supported by z/OS V2R3
73+
* The z/OS® shell
74+
75+
.. _centralized content:
76+
https://ibm.github.io/z_ansible_collections_doc/index.html
77+
78+
.. _GitHub:
79+
https://github.com/ansible-collections/ibm_zos_ims
80+
81+
.. _Galaxy:
82+
https://galaxy.ansible.com/ibm/ibm_zos_ims
83+
884
Version 1.0.0-beta3
9-
-------------------
85+
====================
1086

1187
Notes
1288
* Update recommended
@@ -30,7 +106,7 @@ Reference
30106
* The z/OS® shell
31107

32108
Version 1.0.0-beta2
33-
-------------------
109+
====================
34110

35111
Notes
36112
* Update recommended
@@ -49,7 +125,7 @@ Reference
49125
* Supported by IBM z/OS core collection 1.0.0 or later
50126

51127
Version 1.0.0-beta1
52-
-------------------
128+
====================
53129

54130
Notes
55131
* Initial beta release of IBM z/OS IMS collection, referred to as ibm_zos_ims
@@ -62,4 +138,4 @@ Notes
62138
Availability
63139
* Galaxy
64140
* GitHub
65-
141+

galaxy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace: ibm
66
name: ibm_zos_ims
77

88
# The collection version
9-
version: 1.0.0-beta3
9+
version: 1.0.1
1010

1111
# Collection README file
1212
readme: README.md
@@ -18,22 +18,22 @@ authors:
1818
- Jerry Li <[email protected]>
1919
- Ketan Kelkar <[email protected]>
2020
- Omar Elbarmawi <[email protected]>
21-
- Seema Phalke <[email protected]>
21+
- Seema Phalke <[email protected]>
2222

2323
# Description
24-
description: The IBM z/OS IMS collection includes action plugins, modules and sample playbooks to automate tasks for IBM IMS.
24+
description: The IBM z/OS IMS collection includes action plugins and modules to automate tasks for IBM IMS.
2525

2626

2727
# This collection is licensed under Apache License, Version 2.0
2828
license:
2929
- "Apache-2.0"
3030

3131
# Tags
32-
tags: [ibm, z, zos, z_os, core, zos_core, data_set, jcl, uss, mvs, ims, zos_ims]
32+
tags: [ibm, z, zos, z_os, core, zos_core, data_set, jcl, uss, mvs, ims, zos_ims]
3333

3434
# Collections that this collection requires to be installed for it to be usable.
3535
dependencies:
36-
"ibm.ibm_zos_core": "==1.2.0-beta.1"
36+
"ibm.ibm_zos_core": ">=1.2.1"
3737

3838
# The URL of the originating SCM repository
3939
repository: https://github.com/ansible-collections/ibm_zos_ims

0 commit comments

Comments
 (0)