Skip to content

Commit 4f9c2d3

Browse files
Merge pull request #101 from Tom-Latham/version-update
v1.0.2
2 parents 7239a63 + 2b3ba4c commit 4f9c2d3

File tree

6 files changed

+31
-4
lines changed

6 files changed

+31
-4
lines changed

docs/source/release_notes.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,24 @@
77
Releases
88
========
99

10+
Version 1.0.2
11+
=============
12+
13+
What's New
14+
-------------------
15+
* Updated timeout support on requests to be configurable via the ``timeout`` option. The default value is 30 seconds if not specified
16+
17+
* Improve sanitisation and validation of parameters.
18+
19+
* Added support for CMCI Feedback on failed CMCI Requests.
20+
21+
1022
Version 1.0.1
1123
=============
1224

1325
What's New
1426
-------------------
27+
1528
Initial release of the **IBM® z/OS® CICS® collection**, also referred to as **ibm_zos_cics**, which is part of the broader offering **Red Hat® Ansible® Certified Content for IBM Z®**.
1629

1730
This collection can manage CICS and CICSPlex® SM resources and definitions by calling the `CMCI REST API`_, which can be configured in a CICSplex or in a stand-alone region.

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace: ibm
77
name: ibm_zos_cics
88

99
# The collection version
10-
version: 1.0.1
10+
version: 1.0.2
1111

1212
# Collection README file
1313
readme: README.md

meta/ibm_zos_cics_meta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ibm_zos_cics
2-
version: "1.0.1"
2+
version: "1.0.2"
33
managed_requirements:
44
- name: "Python"
55
version: ">=2.7"

plugins/module_utils/cmci.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def is_alphanumeric(value):
152152
return re.match('^([A-Za-z0-9]{1,100})$', value, flags=0)
153153

154154

155-
def read_node(node): # type: (OrderedDict) -> List[OrderedDict]
155+
def read_node(node): # type: (OrderedDict) -> List[OrderedDict]
156156
# Reads a record node that can contain multiple lists of attributes
157157
result = [
158158
OrderedDict(
@@ -195,7 +195,7 @@ def read_error_detail(key, value):
195195

196196
def get_attribute(k, v):
197197
# Return key, value pair stripping @ from the attributes key
198-
return k[1:], v
198+
return (k[1:], v)
199199

200200

201201
class AnsibleCMCIModule(object):

tests/sanity/ignore-2.11.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
docs/make.bat line-endings!skip # Windows batch file requires windows line endings
2+
plugins/modules/cmci_get.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
3+
plugins/modules/cmci_action.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
4+
plugins/modules/cmci_create.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
5+
plugins/modules/cmci_delete.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
6+
plugins/modules/cmci_update.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
7+
plugins/doc_fragments/cmci.py pep8:E501 # Link can't be split or it does not render correctly

tests/sanity/ignore-2.12.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
docs/make.bat line-endings!skip # Windows batch file requires windows line endings
2+
plugins/modules/cmci_get.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
3+
plugins/modules/cmci_action.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
4+
plugins/modules/cmci_create.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
5+
plugins/modules/cmci_delete.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
6+
plugins/modules/cmci_update.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
7+
plugins/doc_fragments/cmci.py pep8:E501 # Link can't be split or it does not render correctly

0 commit comments

Comments
 (0)