Skip to content

Commit 96fb120

Browse files
authored
6.2.1 (#144)
* interface module * add param for returned value * readme
1 parent dd23e7e commit 96fb120

File tree

5 files changed

+25
-2
lines changed

5 files changed

+25
-2
lines changed

CHANGELOG.rst

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

55
.. contents:: Topics
66

7+
v6.2.1
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This is release 6.2.1 of ``check_point.mgmt``, released on 2024-08-28.
14+
15+
716
v6.2.0
817
======
918

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ Example playbook:
6262
```
6363
Note - If you want to run against Ansible version 2.9 instead of the collection, just replace `check_point.mgmt.cp_mgmt_network` with `cp_mgmt_network`
6464

65+
### Testing:
66+
This collection is tested with the most current Ansible releases. Ansible versions from 2.15.0 and above are supported.
67+
68+
### License Information:
69+
Apache-2.0 license
70+
6571
### Notes:
6672
1. Because this Ansible module is controlling the management server remotely via the web API,
6773
the Ansible server needs to have access to the Check Point API server.
@@ -70,7 +76,7 @@ Note - If you want to run against Ansible version 2.9 instead of the collection,
7076
2. Ansible has a feature called "Check Mode" that enables you to test the
7177
changes without actually changing anything.
7278
3. The login and logout happens automatically.
73-
4. If you want to login to a specific domain, in the playbook above in the `vars`secion change the domain name to
79+
4. If you want to login to a specific domain, in the playbook above in the `vars`section change the domain name to
7480
`ansible_checkpoint_domain`
7581
5. There are two ways to publish changes:
7682
a. Set the `auto_publish_session` to `true` as displayed in the example playbook above.

changelogs/changelog.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,3 +1259,10 @@ releases:
12591259
name: cp_mgmt_interface_facts
12601260
namespace: ''
12611261
release_date: '2024-08-27'
1262+
6.2.1:
1263+
changes:
1264+
release_summary: This is release 6.2.1 of ``check_point.mgmt``, released on
1265+
2024-08-28.
1266+
fragments:
1267+
- 6.2.1.yml
1268+
release_date: '2024-08-28'

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: 6.2.0
12+
version: 6.2.1
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/module_utils/checkpoint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,6 +1088,7 @@ def get_number_and_section_from_position(
10881088
section_name,
10891089
above_relative_position,
10901090
pos_before_relative_empty_section,
1091+
prev_section
10911092
) = get_number_and_section_from_relative_position(
10921093
payload,
10931094
connection,

0 commit comments

Comments
 (0)