Skip to content

Commit 46c68ff

Browse files
authored
Merge pull request #87 from ansible-collections/release-v1.2.0-beta.1
Merge Release v1.2.0 beta.1 to dev
2 parents 6e5fa7e + 0bbd0ee commit 46c68ff

File tree

6 files changed

+40
-5
lines changed

6 files changed

+40
-5
lines changed

docs/source/release_notes.rst

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,39 @@
66
Releases
77
========
88

9+
Version 1.2.0-beta.1
10+
====================
11+
12+
Notes
13+
-----
14+
15+
* Update recommended
16+
* Adds support for Ansible 4 (ansible-core 2.11)
17+
18+
Availability
19+
------------
20+
21+
* `Galaxy`_
22+
* `GitHub`_
23+
24+
Reference
25+
---------
26+
27+
* Supported by IBM z/OS core collection v1.3.0 or later
28+
* Supported by IBM Z Open Enterprise Python for z/OS: 3.8.2 or later
29+
* Supported by IBM Z Open Automation Utilities 1.1.0 PTF or later
30+
* Supported by z/OS V2R3
31+
* The z/OS® shell
32+
33+
.. _centralized content:
34+
https://ibm.github.io/z_ansible_collections_doc/index.html
35+
36+
.. _GitHub:
37+
https://github.com/ansible-collections/ibm_zos_ims
38+
39+
.. _Galaxy:
40+
https://galaxy.ansible.com/ibm/ibm_zos_ims
41+
942
Version 1.1.0
1043
====================
1144

galaxy.yml

Lines changed: 2 additions & 2 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.1.0
9+
version: 1.2.0-beta.1
1010

1111
# Collection README file
1212
readme: README.md
@@ -35,7 +35,7 @@ tags: [ibm, z, zos, z_os, core, zos_core, data_set, jcl, uss, mvs, ims, zos_ims]
3535

3636
# Collections that this collection requires to be installed for it to be usable.
3737
dependencies:
38-
"ibm.ibm_zos_core": ">=1.2.1"
38+
"ibm.ibm_zos_core": ">=1.3.0"
3939

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

meta/runtime.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
requires_ansible: '>=2.11.6'

plugins/module_utils/catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def _constructCatalogDDStatements(self):
182182
for i in self.parsed_args.get('acb_lib'):
183183
acbDataset = DatasetDefinition(i)
184184
acbDatasetList.append(acbDataset)
185-
acbDDStatement = DDStatement("IMSACBA", acbDatasetList)
185+
acbDDStatement = DDStatement("IMSACB01", acbDatasetList)
186186
dDStatementList.append(acbDDStatement)
187187
# If check_timestamp is true, then we generate a dd statement for each dataset
188188
else:

plugins/modules/ims_catalog_populate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@
340340
it will ignore the ACB with the duplicate name.
341341
type: bool
342342
required: false
343-
default: false
343+
default: true
344344
acb_lib:
345345
description:
346346
- Defines an ACB library data set that contains the ACB members that are used to populate the IMS catalog.
@@ -974,7 +974,7 @@ def run_module():
974974
secondary_log_dataset=dict(type="dict", required=False),
975975
psb_lib=dict(type="list", elements="str", required=True),
976976
dbd_lib=dict(type="list", elements="str", required=True),
977-
check_timestamp=dict(type="bool", required=False, default=False),
977+
check_timestamp=dict(type="bool", required=False, default=True),
978978
acb_lib=dict(type="list", elements="str", required=True),
979979
bootstrap_dataset=dict(type="dict", required=False),
980980
directory_datasets=dict(type="list", elements="dict", required=False),

0 commit comments

Comments
 (0)