-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add changelog, bump version and update runtime.yml
- Loading branch information
Showing
6 changed files
with
136 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
========================================== | ||
Cisco ACI Ansible Collection Release Notes | ||
========================================== | ||
|
||
.. contents:: Topics | ||
|
||
|
||
v1.0.0 | ||
====== | ||
|
||
Release Summary | ||
--------------- | ||
|
||
This is the first official release of the ``cisco.aci`` collection on 2020-08-18. | ||
This changelog describes all changes made to the modules and plugins included in this collection since Ansible 2.9.0. | ||
|
||
|
||
Minor Changes | ||
------------- | ||
|
||
- Add Fex capability to aci_interface_policy_leaf_profile, aci_access_port_to_interface_policy_leaf_profile and aci_access_port_block_to_access_port | ||
- Add LICENSE file | ||
- Add aci_epg_to_contract_master module | ||
- Add annotation attribute to aci.py and to doc fragment. | ||
- Add annotation to every payload and add test case for annotation. | ||
- Add changelog | ||
- Add collection prefix to all integration tests | ||
- Add galaxy.yml file for collection listing | ||
- Add github action CI pipeline | ||
- Add module and test file for aci_bd_dhcp_label | ||
- Add modules and test files for aci_cloud_ctx_profile, aci_cloud_cidr, aci_cloud_subnet and aci_cloud_zone | ||
- Add modules and test files for aci_l2out, aci_l2out_extepg and aci_l3out_extepg_to_contract | ||
- Add names to documentation examples for modules from community.network | ||
- Add preferred group support to aci_vrf | ||
- Add support for Azure on all cloud modules | ||
- Add support for output_path to allow dump of REST API objects | ||
- Add support for owner_key and owner_tag for all modules and add test case for it. | ||
- Add vpn gateway dedicated module and remove vpn_gateway from cloud_ctx_profile module | ||
- Fix M() and module to use FQCN | ||
- Initial commit based on the collection migration available at "ansible-collection-migration/cisco.aci" which contains the ACI module from Ansible Core | ||
- Move aci.py to base of module_utils and fix references | ||
- Move test file to root of tests/unit/module_utils | ||
- Update Ansible version in CI and add 2.10.0 to sanity in CI. | ||
- Update Readme with supported versions | ||
- Update to test files to make the tests work on both 3.2 and 4.2. | ||
|
||
Bugfixes | ||
-------- | ||
|
||
- Fix sanity issues to support 2.10.0 | ||
- Fix some doc issues for a few modules | ||
- Fix some formatting issues (flake8) in unit tests. | ||
- Fixing integration tests and sanity. Tested on ACI 4.2(3l). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/.plugin-cache.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
ancestor: null | ||
releases: | ||
1.0.0: | ||
changes: | ||
bugfixes: | ||
- Fix sanity issues to support 2.10.0 | ||
- Fix some doc issues for a few modules | ||
- Fix some formatting issues (flake8) in unit tests. | ||
- Fixing integration tests and sanity. Tested on ACI 4.2(3l). | ||
minor_changes: | ||
- Add Fex capability to aci_interface_policy_leaf_profile, aci_access_port_to_interface_policy_leaf_profile | ||
and aci_access_port_block_to_access_port | ||
- Add LICENSE file | ||
- Add aci_epg_to_contract_master module | ||
- Add annotation attribute to aci.py and to doc fragment. | ||
- Add annotation to every payload and add test case for annotation. | ||
- Add changelog | ||
- Add collection prefix to all integration tests | ||
- Add galaxy.yml file for collection listing | ||
- Add github action CI pipeline | ||
- Add module and test file for aci_bd_dhcp_label | ||
- Add modules and test files for aci_cloud_ctx_profile, aci_cloud_cidr, aci_cloud_subnet | ||
and aci_cloud_zone | ||
- Add modules and test files for aci_l2out, aci_l2out_extepg and aci_l3out_extepg_to_contract | ||
- Add names to documentation examples for modules from community.network | ||
- Add preferred group support to aci_vrf | ||
- Add support for Azure on all cloud modules | ||
- Add support for output_path to allow dump of REST API objects | ||
- Add support for owner_key and owner_tag for all modules and add test case | ||
for it. | ||
- Add vpn gateway dedicated module and remove vpn_gateway from cloud_ctx_profile | ||
module | ||
- Fix M() and module to use FQCN | ||
- Initial commit based on the collection migration available at "ansible-collection-migration/cisco.aci" | ||
which contains the ACI module from Ansible Core | ||
- Move aci.py to base of module_utils and fix references | ||
- Move test file to root of tests/unit/module_utils | ||
- Update Ansible version in CI and add 2.10.0 to sanity in CI. | ||
- Update Readme with supported versions | ||
- Update to test files to make the tests work on both 3.2 and 4.2. | ||
release_summary: 'This is the first official release of the ``cisco.aci`` collection | ||
on 2020-08-18. | ||
This changelog describes all changes made to the modules and plugins included | ||
in this collection since Ansible 2.9.0. | ||
' | ||
release_date: '2020-08-18' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
changelog_filename_template: ../CHANGELOG.rst | ||
changelog_filename_version_depth: 0 | ||
changes_file: changelog.yaml | ||
changes_format: combined | ||
ignore_other_fragment_extensions: true | ||
keep_fragments: false | ||
mention_ancestor: true | ||
new_plugins_after_name: removed_features | ||
notesdir: fragments | ||
prelude_section_name: release_summary | ||
prelude_section_title: Release Summary | ||
sections: | ||
- - major_changes | ||
- Major Changes | ||
- - minor_changes | ||
- Minor Changes | ||
- - breaking_changes | ||
- Breaking Changes / Porting Guide | ||
- - deprecated_features | ||
- Deprecated Features | ||
- - removed_features | ||
- Removed Features (previously deprecated) | ||
- - security_fixes | ||
- Security Fixes | ||
- - bugfixes | ||
- Bugfixes | ||
- - known_issues | ||
- Known Issues | ||
title: Cisco ACI Ansible Collection | ||
trivial_section_name: trivial | ||
use_fqcn: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
namespace: cisco | ||
name: aci | ||
# The version of the collection. Must be compatible with semantic versioning | ||
version: 0.0.7 | ||
version: 1.0.0 | ||
readme: README.md | ||
authors: | ||
- Dag Wieers (@dagwieers) <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
requires_ansible: '>=2.9.10' |