Skip to content

Commit 96a0166

Browse files
changelogs and version bump 2.1.0
1 parent dd86c49 commit 96a0166

16 files changed

+154
-217
lines changed

CHANGELOG.rst

Lines changed: 37 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -5,130 +5,72 @@ ibm.ibm_zos_cics Release Notes
55
.. contents:: Topics
66

77

8-
v2.0.0
8+
v2.1.0
99
======
1010

1111
Release Summary
1212
---------------
1313

14-
Removed support for Python 2.7
15-
16-
Breaking Changes / Porting Guide
17-
--------------------------------
18-
19-
- Python 2.7 is no longer supported as the managed node runtime
20-
21-
v1.0.6
22-
======
23-
24-
Release Summary
25-
---------------
26-
27-
This release contains one bug fix
28-
29-
Bugfixes
30-
--------
31-
32-
- Allows CPSM Scope and Context to contain the following special characters '$', '@', and '#'
33-
34-
v1.1.0-beta.5
35-
=============
36-
37-
Release Summary
38-
---------------
39-
40-
This release contains new modules for starting and stopping standalone CICS regions. The ``csd`` module now supports executing a ``CSDUP`` script against an existing ``CSD`` data set.
41-
42-
Major Changes
43-
-------------
44-
45-
- A new ``state`` option for the ``csd`` module that alllows a user to supply a script as either a data set or a z/OS Unix file containing ``CSDUP`` commands
46-
- Data set modules now support a ``space_secondary`` option to specify size of the secondary extent
47-
- Return values for all data set modules now use ``data_set_organization`` to indicate the organization of the data set. The ``vsam`` field has been removed from the return structure.
48-
49-
New Modules
50-
-----------
51-
52-
- ibm.ibm_zos_cics.start_cics - Start a CICS region
53-
- ibm.ibm_zos_cics.stop_cics - Stop a CICS Region
54-
55-
v1.1.0-beta.4
56-
=============
57-
58-
Release Summary
59-
---------------
60-
61-
This release delivers new modules for provisioning the CICS auxiliary temporary storage data set, the CICS system definition data set, the CICS transient data intrapartition data set, the CICS auxiliary trace data sets and the CICS transaction dump data sets. This release also contains fixes to the CICS local request queue data set module and the CICS local catalog data set module.
62-
63-
Bugfixes
64-
--------
65-
66-
- Additional ``state`` input parameter option ``warm`` added to ``local_request_queue`` module
67-
- Behaviour of ``local_catalog`` and ``local_request_queue`` module with ``state`` set to ``initial`` updated to match documentation
14+
General Availability of CICS provisioning modules. You can use these Ansible modules to create automation tasks that provision or deprovision, and start or stop a CICS region. Sample playbooks show you how to do this with the latest version of the Ansible IBM z/OS CICS collection. All modules were initially released with Version 1.1.0-beta as noted below. Subsequent Version 1.1.0-beta releases may include enhancements and bugfixes for these modules. Refer to the What's new of Version 1.1.0-beta releases for details.
15+
This release replaces all the previous 1.1.0-beta* releases.
16+
You can use the following modules for provisioning and managing CICS TS data sets
17+
``aux_temp_storage`` for the CICS auxiliary temporary storage data set. This module was initially released as ``auxiliary_temp`` with Version 1.1.0-beta.4. The module is changed to ``aux_temp_storage`` in Version 2.1.0.
18+
``aux_trace`` for the CICS auxiliary trace data sets. This module was initially released as ``trace`` with Version 1.1.0-beta.4. The module is changed to ``aux_trace`` in Version 2.1.0.
19+
``csd`` for the CICS system definition data set. This module was initially released with Version 1.1.0-beta.4.
20+
``global_catalog`` for the CICS global catalog data set. This module was initially released with Version 1.1.0-beta.4.
21+
``local_request_queue`` for the CICS local request queue data set. This module was initially released with Version 1.1.0-beta.3.
22+
``td_intrapartition`` for the CICS transient data intrapartition data set. This module was initially released as ``intrapartition`` with Version 1.1.0-beta.4. The module is changed to ``td_intrapartition`` in Version 2.1.0.
23+
``transaction_dump`` for the CICS transaction dump data sets. This module was initially released with Version 1.1.0-beta.4.
24+
You can use the following modules for CICS startup and shutdown operations
25+
``region_jcl`` - Create a CICS startup JCL data set. This module replaces ``start_cics``, which was released with Version 1.1.0-beta.5. ``region_jcl`` is significantly different from ``start_cics`` in function. ``region_jcl`` creates a data set that contains the startup JCL, but doesn't perform the actual startup processing. ``region_jcl`` also supports definition and allocation of user data sets with the ``user_data_sets`` parameter.
26+
``stop_region`` - Stop a CICS region. This module was initially released as ``stop_cics`` with Version 1.1.0-beta.5. The module is changed to ``stop_region`` in Version 2.1.0. In Version 2.1.0, ``stop_region`` supports a new input parameter, ``job_name`` so that you can use the job name, which is typically the CICS's APPLID, to identify a running CICS region.
27+
The group name for the CICS provisioning modules is ``region``. However, in the Version 1.1.0-beta releases, the group name was ``region_group``.
28+
CICS provisioning modules provide support for all in-service CICS TS releases including the latest CICS TS 6.2.
29+
30+
Deprecated Features
31+
-------------------
32+
33+
- The group name for the CMCI modules is changed to ``cmci`` instead of ``cmci_group``. ``cmci_group`` is deprecated.
6834

6935
New Modules
7036
-----------
7137

72-
- ibm.ibm_zos_cics.auxiliary_temp - Create and remove the CICS auxiliary temporary storage data set
38+
- ibm.ibm_zos_cics.aux_temp_storage - Create and remove the CICS auxiliary temporary storage data set
39+
- ibm.ibm_zos_cics.aux_trace - Allocate auxiliary trace data sets
7340
- ibm.ibm_zos_cics.csd - Create, remove, and manage the CICS CSD
74-
- ibm.ibm_zos_cics.intrapartition - Create and remove the CICS transient data intrapartition data set
75-
- ibm.ibm_zos_cics.trace - Allocate auxiliary trace data sets
41+
- ibm.ibm_zos_cics.global_catalog - Create, remove, and manage the CICS global catalog
42+
- ibm.ibm_zos_cics.local_catalog - Create, remove, and manage the CICS local catalog
43+
- ibm.ibm_zos_cics.local_request_queue - Create and remove the CICS local request queue
44+
- ibm.ibm_zos_cics.region_jcl - Create CICS startup JCL data set
45+
- ibm.ibm_zos_cics.stop_region - Stop a CICS region
46+
- ibm.ibm_zos_cics.td_intrapartition - Create and remove the CICS transient data intrapartition data set
7647
- ibm.ibm_zos_cics.transaction_dump - Allocate transaction dump data sets
7748

78-
v1.1.0-beta.3
79-
=============
49+
v2.0.0
50+
======
8051

8152
Release Summary
8253
---------------
8354

84-
This release introduces changes to the global and local catalog modules by adding support for the ``region_data_sets`` and ``cics_data_sets`` defaults groups. This changes the way you specifiy the data set location for these modules. A new ``local_request_queue`` module is also included to support provisioning a local request queue data set.
55+
Removed support for Python 2.7
8556

8657
Breaking Changes / Porting Guide
8758
--------------------------------
8859

89-
- Introduction of ``region_data_sets`` and ``cics_data_sets`` defaults group
90-
91-
New Modules
92-
-----------
93-
94-
- ibm.ibm_zos_cics.local_request_queue - Create and remove the CICS local request queue
60+
- Python 2.7 is no longer supported as the managed node runtime
9561

96-
v1.1.0-beta.2
97-
=============
62+
v1.0.6
63+
======
9864

9965
Release Summary
10066
---------------
10167

102-
This release improves the return values for the ``global_catalog`` module, fixes bugs related to its input parameters, and includes a new ``local_catalog`` module for provisioning a local catalog data set.
103-
104-
Minor Changes
105-
-------------
106-
107-
- Return values for ``global_catalog`` - changes the values returned to include ``start_state``, ``end_state``, and ``executions``.
68+
This release contains one bug fix
10869

10970
Bugfixes
11071
--------
11172

112-
- Input parameters for ``global_catalog`` failed when lowercase. Now these parameters are not case sensitive.
113-
- The ``changed`` flag did not always correspond with actions taken during the ``global_catalog`` execution. Now this flag represents if changes were made.
114-
115-
New Modules
116-
-----------
117-
118-
- ibm.ibm_zos_cics.local_catalog - Create, remove, and manage the CICS local catalog
119-
120-
v1.1.0-beta.1
121-
=============
122-
123-
Release Summary
124-
---------------
125-
126-
This release contains a new Global Catalog module
127-
128-
New Modules
129-
-----------
130-
131-
- ibm.ibm_zos_cics.global_catalog - Create and initialize CICS global catalog.
73+
- Allows CPSM Scope and Context to contain the following special characters '$', '@', and '#'
13274

13375
v1.0.5
13476
======

changelogs/.plugin-cache.yaml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,16 @@ plugins:
1111
inventory: {}
1212
lookup: {}
1313
module:
14-
auxiliary_temp:
14+
aux_temp_storage:
1515
description: Create and remove the CICS auxiliary temporary storage data set
16-
name: auxiliary_temp
16+
name: aux_temp_storage
1717
namespace: ''
18-
version_added: 1.1.0-beta.4
18+
version_added: 2.1.0
19+
aux_trace:
20+
description: Allocate auxiliary trace data sets
21+
name: aux_trace
22+
namespace: ''
23+
version_added: 2.1.0
1924
cmci_action:
2025
description: Perform actions on CICS and CICSPlex SM resources
2126
name: cmci_action
@@ -45,50 +50,45 @@ plugins:
4550
description: Create, remove, and manage the CICS CSD
4651
name: csd
4752
namespace: ''
48-
version_added: 1.1.0-beta.4
53+
version_added: 2.1.0
4954
global_catalog:
5055
description: Create, remove, and manage the CICS global catalog
5156
name: global_catalog
5257
namespace: ''
53-
version_added: 1.1.0-beta.1
54-
intrapartition:
55-
description: Create and remove the CICS transient data intrapartition data set
56-
name: intrapartition
57-
namespace: ''
58-
version_added: 1.1.0-beta.4
58+
version_added: 2.1.0
5959
local_catalog:
6060
description: Create, remove, and manage the CICS local catalog
6161
name: local_catalog
6262
namespace: ''
63-
version_added: 1.1.0-beta.2
63+
version_added: 2.1.0
6464
local_request_queue:
6565
description: Create and remove the CICS local request queue
6666
name: local_request_queue
6767
namespace: ''
68-
version_added: 1.1.0-beta.3
69-
start_cics:
70-
description: Start a CICS region
71-
name: start_cics
68+
version_added: 2.1.0
69+
region_jcl:
70+
description: Create CICS startup JCL data set
71+
name: region_jcl
7272
namespace: ''
73-
version_added: 1.1.0-beta.5
74-
stop_cics:
75-
description: Stop a CICS Region
76-
name: stop_cics
73+
version_added: 2.1.0
74+
stop_region:
75+
description: Stop a CICS region
76+
name: stop_region
7777
namespace: ''
78-
version_added: 1.1.0-beta.5
79-
trace:
80-
description: Allocate auxiliary trace data sets
81-
name: trace
78+
version_added: 2.1.0
79+
td_intrapartition:
80+
description: Create and remove the CICS transient data intrapartition data set
81+
name: td_intrapartition
8282
namespace: ''
83-
version_added: 1.1.0-beta.4
83+
version_added: 2.1.0
8484
transaction_dump:
8585
description: Allocate transaction dump data sets
8686
name: transaction_dump
8787
namespace: ''
88-
version_added: 1.1.0-beta.4
88+
version_added: 2.1.0
8989
netconf: {}
9090
shell: {}
9191
strategy: {}
9292
test: {}
9393
vars: {}
94-
version: 1.1.0-beta.5
94+
version: 2.1.0

0 commit comments

Comments
 (0)