Skip to content

Commit 1479df7

Browse files
committed
moved supported ansible-core range to 2.17-2.15
1 parent 6aa54c7 commit 1479df7

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# v1.3.10
2+
3+
## Feature
4+
5+
- moved supported ansible-core range to 2.17-2.15
6+
7+
## Bug
8+
9+
- `zabbix_api module_utils`: removed certificate error exception.
10+
111
# v1.3.9
212

313
## Feature

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It is mainly intended for scalable tasks, for example, Zabbix agent deployment a
66

77
## Ansible version compatibility
88

9-
Tested with the Ansible Core 2.14, 2.15 and 2.16. EOL Versions are not supported. For more details, navigate to the collection component description.
9+
Tested with the Ansible Core 2.15, 2.16 and 2.17. EOL Versions are not supported. For more details, navigate to the collection component description.
1010

1111

1212
## Installing this collection

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace: zabbix
88
name: zabbix
99

1010
# The version of the collection. Must be compatible with semantic versioning
11-
version: 1.3.9
11+
version: 1.3.10
1212

1313
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1414
readme: README.md

plugins/module_utils/zabbix_api.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
from uuid import uuid4
1111

12-
from ansible.module_utils.urls import CertificateError
1312
from ansible.module_utils.connection import ConnectionError
1413
from ansible.module_utils.connection import Connection
1514

@@ -78,9 +77,6 @@ def send_api_request(self, method, params):
7877
except ConnectionError as e:
7978
self.module.fail_json(msg="Connection error: {0}".format(e))
8079

81-
except CertificateError as e:
82-
self.module.fail_json(msg="Certificate error: {0}".format(e))
83-
8480
except ValueError as e:
8581
self.module.fail_json(msg="Certificate not found: {0}".format(e))
8682

0 commit comments

Comments
 (0)