Skip to content

Commit

Permalink
Prep release 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KB-perByte committed Jan 6, 2025
1 parent 56eb2fa commit d003ec9
Show file tree
Hide file tree
Showing 13 changed files with 42 additions and 191 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ Cisco Asa Collection Release Notes

.. contents:: Topics

v6.1.0
======

Minor Changes
-------------

- cisco.asa.asa - add support to fetch hardware specific information in facts
- cisco.asa.asa_acls - add support for specifying object-group as protocol

Bugfixes
--------

- cisco.asa.asa_acls - fixed ace parsing when source is object-group and its name contains dots

Documentation Changes
---------------------

- Includes a new support related section in the README.

v6.0.0
======

Expand Down Expand Up @@ -31,7 +50,7 @@ v5.0.0
Release Summary
---------------

Starting from this release, the minimum `ansible-core` version this collection requires is `2.14.0`. The last known version compatible with ansible-core<2.14 is `v4.0.3`.
Starting from this release, the minimum `ansible-core` version this collection requires is `2.14.0`. The last known version compatible with

Major Changes
-------------
Expand Down
22 changes: 20 additions & 2 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,28 @@ releases:
- Bumping `requires_ansible` to `>=2.15.0`, since previous ansible-core versions
are EoL now.
release_summary:
"With this release, the minimum required version of `ansible-core`
With this release, the minimum required version of `ansible-core`
for this collection is `2.15.0`. The last version known to be compatible with
`ansible-core` versions below `2.15` is v5.0.1."
`ansible-core` versions below `2.15` is v5.0.1.
fragments:
- add_2.18.yaml
- bump_215.yaml
release_date: "2024-06-11"
6.1.0:
changes:
bugfixes:
- cisco.asa.asa_acls - fixed ace parsing when source is object-group and its
name contains dots
doc_changes:
- Includes a new support related section in the README.
minor_changes:
- cisco.asa.asa - add support to fetch hardware specific information in facts
- cisco.asa.asa_acls - add support for specifying object-group as protocol
fragments:
- 0-readme.yml
- 239-ace-object-group-fix.yml
- 240-ace-protocol-object-group.yml
- adds_support.yaml
- asa_hardware.yml
- ignore_219.yaml
release_date: "2025-01-06"
3 changes: 0 additions & 3 deletions changelogs/fragments/0-readme.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/239-ace-object-group-fix.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/240-ace-protocol-object-group.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/adds_support.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/asa_hardware.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/ignore_219.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ issues: https://github.com/ansible-collections/cisco.asa/issues
tags: [cisco, asa, networking, security]
# NOTE(pabelanger): We create an empty version key to keep ansible-galaxy
# happy. We dynamically inject version info based on git information.
version: 6.0.0
version: 6.1.0
2 changes: 1 addition & 1 deletion plugins/module_utils/network/asa/facts/legacy/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def populate(self):
if "Invalid input detected" in data:
warnings.append("Unable to gather memory statistics")
else:
mem_list = [l for l in data.splitlines() if "memory" in l]
mem_list = [mem for mem in data.splitlines() if "memory" in mem]
for each in mem_list:
if "Free memory" in each:
match = re.search(
Expand Down
Empty file removed tests/unit/compat/__init__.py
Empty file.
130 changes: 0 additions & 130 deletions tests/unit/compat/mock.py

This file was deleted.

41 changes: 0 additions & 41 deletions tests/unit/compat/unittest.py

This file was deleted.

0 comments on commit d003ec9

Please sign in to comment.