Skip to content

Commit

Permalink
Merge pull request #101 from Tom-Latham/version-update
Browse files Browse the repository at this point in the history
v1.0.2
  • Loading branch information
stewartfrancis authored Jul 14, 2021
2 parents 7239a63 + 2b3ba4c commit 4f9c2d3
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 4 deletions.
13 changes: 13 additions & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,24 @@
Releases
========

Version 1.0.2
=============

What's New
-------------------
* Updated timeout support on requests to be configurable via the ``timeout`` option. The default value is 30 seconds if not specified

* Improve sanitisation and validation of parameters.

* Added support for CMCI Feedback on failed CMCI Requests.


Version 1.0.1
=============

What's New
-------------------

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®**.

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.
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace: ibm
name: ibm_zos_cics

# The collection version
version: 1.0.1
version: 1.0.2

# Collection README file
readme: README.md
Expand Down
2 changes: 1 addition & 1 deletion meta/ibm_zos_cics_meta.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ibm_zos_cics
version: "1.0.1"
version: "1.0.2"
managed_requirements:
- name: "Python"
version: ">=2.7"
Expand Down
4 changes: 2 additions & 2 deletions plugins/module_utils/cmci.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def is_alphanumeric(value):
return re.match('^([A-Za-z0-9]{1,100})$', value, flags=0)


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

def get_attribute(k, v):
# Return key, value pair stripping @ from the attributes key
return k[1:], v
return (k[1:], v)


class AnsibleCMCIModule(object):
Expand Down
7 changes: 7 additions & 0 deletions tests/sanity/ignore-2.11.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
docs/make.bat line-endings!skip # Windows batch file requires windows line endings
plugins/modules/cmci_get.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/modules/cmci_action.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/modules/cmci_create.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/modules/cmci_delete.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/modules/cmci_update.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/doc_fragments/cmci.py pep8:E501 # Link can't be split or it does not render correctly
7 changes: 7 additions & 0 deletions tests/sanity/ignore-2.12.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
docs/make.bat line-endings!skip # Windows batch file requires windows line endings
plugins/modules/cmci_get.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/modules/cmci_action.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/modules/cmci_create.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/modules/cmci_delete.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/modules/cmci_update.py validate-modules:missing-gplv3-license # Licence is Apache-2.0
plugins/doc_fragments/cmci.py pep8:E501 # Link can't be split or it does not render correctly

0 comments on commit 4f9c2d3

Please sign in to comment.