Skip to content

Commit

Permalink
Merge pull request #87 from ansible-collections/release-v1.2.0-beta.1
Browse files Browse the repository at this point in the history
Merge Release v1.2.0 beta.1 to dev
  • Loading branch information
jashnani authored Oct 28, 2021
2 parents 6e5fa7e + 0bbd0ee commit 46c68ff
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 5 deletions.
33 changes: 33 additions & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,39 @@
Releases
========

Version 1.2.0-beta.1
====================

Notes
-----

* Update recommended
* Adds support for Ansible 4 (ansible-core 2.11)

Availability
------------

* `Galaxy`_
* `GitHub`_

Reference
---------

* Supported by IBM z/OS core collection v1.3.0 or later
* Supported by IBM Z Open Enterprise Python for z/OS: 3.8.2 or later
* Supported by IBM Z Open Automation Utilities 1.1.0 PTF or later
* Supported by z/OS V2R3
* The z/OS® shell

.. _centralized content:
https://ibm.github.io/z_ansible_collections_doc/index.html

.. _GitHub:
https://github.com/ansible-collections/ibm_zos_ims

.. _Galaxy:
https://galaxy.ansible.com/ibm/ibm_zos_ims

Version 1.1.0
====================

Expand Down
4 changes: 2 additions & 2 deletions galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace: ibm
name: ibm_zos_ims

# The collection version
version: 1.1.0
version: 1.2.0-beta.1

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

# Collections that this collection requires to be installed for it to be usable.
dependencies:
"ibm.ibm_zos_core": ">=1.2.1"
"ibm.ibm_zos_core": ">=1.3.0"

# The URL of the originating SCM repository
repository: https://github.com/ansible-collections/ibm_zos_ims
Expand Down
2 changes: 2 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
requires_ansible: '>=2.11.6'
2 changes: 1 addition & 1 deletion plugins/module_utils/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def _constructCatalogDDStatements(self):
for i in self.parsed_args.get('acb_lib'):
acbDataset = DatasetDefinition(i)
acbDatasetList.append(acbDataset)
acbDDStatement = DDStatement("IMSACBA", acbDatasetList)
acbDDStatement = DDStatement("IMSACB01", acbDatasetList)
dDStatementList.append(acbDDStatement)
# If check_timestamp is true, then we generate a dd statement for each dataset
else:
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/ims_catalog_populate.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@
it will ignore the ACB with the duplicate name.
type: bool
required: false
default: false
default: true
acb_lib:
description:
- Defines an ACB library data set that contains the ACB members that are used to populate the IMS catalog.
Expand Down Expand Up @@ -974,7 +974,7 @@ def run_module():
secondary_log_dataset=dict(type="dict", required=False),
psb_lib=dict(type="list", elements="str", required=True),
dbd_lib=dict(type="list", elements="str", required=True),
check_timestamp=dict(type="bool", required=False, default=False),
check_timestamp=dict(type="bool", required=False, default=True),
acb_lib=dict(type="list", elements="str", required=True),
bootstrap_dataset=dict(type="dict", required=False),
directory_datasets=dict(type="list", elements="dict", required=False),
Expand Down
File renamed without changes.

0 comments on commit 46c68ff

Please sign in to comment.