Skip to content

Commit e0e9a6e

Browse files
authored
v5.1.3 (#116)
1 parent ef3f631 commit e0e9a6e

File tree

6 files changed

+51
-7
lines changed

6 files changed

+51
-7
lines changed

CHANGELOG.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,31 @@ Check_Point.Mgmt Release Notes
44

55
.. contents:: Topics
66

7+
v5.1.3
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This is release 5.1.3 of ``check_point.mgmt``, released on 2023-12-13.
14+
15+
Bugfixes
16+
--------
17+
18+
- httpapi/checkpoint.py - Raise a fatal error if login wasn't successful.
19+
20+
v5.1.2
21+
======
22+
23+
Release Summary
24+
---------------
25+
26+
This is release 5.1.2 of ``check_point.mgmt``, released on 2023-12-12.
27+
28+
Minor Changes
29+
--------
30+
31+
- meta/runtime.yml - update minimum Ansible version required to 2.14.0.
732

833
v5.1.1
934
======

changelogs/changelog.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,3 +1035,21 @@ releases:
10351035
fragments:
10361036
- 5.1.1.yml
10371037
release_date: '2022-07-17'
1038+
5.1.2:
1039+
changes:
1040+
minor_changes:
1041+
- meta/runtime.yml - update minimum Ansible version required to 2.14.0.
1042+
release_summary: This is release 5.1.2 of ``check_point.mgmt``, released on
1043+
2023-12-12.
1044+
fragments:
1045+
- 5.1.2.yml
1046+
release_date: '2022-12-12'
1047+
5.1.3:
1048+
changes:
1049+
bugfixes:
1050+
- httpapi/checkpoint.py - Raise a fatal error if login wasn't successful.
1051+
release_summary: This is release 5.1.3 of ``check_point.mgmt``, released on
1052+
2023-12-13.
1053+
fragments:
1054+
- 5.1.2.yml
1055+
release_date: '2022-12-13'

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace: check_point
99
name: mgmt
1010

1111
# The version of the collection. Must be compatible with semantic versioning
12-
version: 5.1.1
12+
version: 5.1.3
1313

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

plugins/httpapi/checkpoint.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def login(self, username, password):
6767
)
6868
url = "/web_api/login"
6969
response, response_data = self.send_request(url, payload)
70-
70+
if response != 200:
71+
raise ConnectionError("Login to server failed: %s" % response_data)
7172
try:
7273
self.connection._auth = {"X-chkp-sid": response_data["sid"]}
7374
except KeyError:

plugins/modules/cp_mgmt_get_interfaces.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@
3131
short_description: Get physical interfaces with or without their topology from a Gaia Security Gateway or Cluster.
3232
description:
3333
- Get physical interfaces with or without their topology from a Gaia Security Gateway or Cluster.
34-
Note: The fetched topology is based on static routes.
35-
Prerequisites:
36-
- SIC must be established in the Security Gateway or Cluster Member object.
37-
- Security Gateway or Cluster Members must be up and running.
34+
- The fetched topology is based on static routes.
35+
- SIC must be established in the Security Gateway or Cluster Member object.
36+
- Security Gateway or Cluster Members must be up and running.
3837
- All operations are performed over Web Services API.
3938
version_added: "5.0.0"
4039
author: "Eden Brillant (@chkp-edenbr)"

plugins/modules/cp_mgmt_vsx_run_operation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
module: cp_mgmt_vsx_run_operation
3131
short_description: Run the VSX operation by its name and parameters.
3232
description:
33-
- Run the VSX operation by its name and parameters. <br><b>Important note:</b> An automatic session publish is part of all the operations in this API.
33+
- Run the VSX operation by its name and parameters.
34+
- An automatic session publish is part of all the operations in this API.
3435
- All operations are performed over Web Services API.
3536
version_added: "5.0.0"
3637
author: "Eden Brillant (@chkp-edenbr)"

0 commit comments

Comments
 (0)