-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e6d6235
commit 62287c6
Showing
23 changed files
with
1,202 additions
and
862 deletions.
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
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
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
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,24 @@ | ||
# v1.5 Release Notes | ||
|
||
- Add ability to update JSON based compliance via a job and have git integrations. | ||
- Made custom compliance a boolean to support both JSON or CLI custom compliance types. | ||
- Add metrics for Golden Config plugin. | ||
- Add Option to Update Config Context Repos. | ||
|
||
## v1.5.0 - 2023-08 | ||
|
||
### Added | ||
|
||
- [455](https://github.com/nautobot/nautobot-plugin-golden-config/pull/455) - Add metrics for Golden Config plugin. | ||
- [506](https://github.com/nautobot/nautobot-plugin-golden-config/pull/506) - Add Option to Update Config Context Repos. | ||
- [487](https://github.com/nautobot/nautobot-plugin-golden-config/pull/487) - Implement native JSON support. | ||
- [485](https://github.com/nautobot/nautobot-plugin-golden-config/pull/485) - Custom compliance for CLI and JSON rules. | ||
|
||
### Changed | ||
|
||
- [485](https://github.com/nautobot/nautobot-plugin-golden-config/pull/485) - Changed the behavior of custom compliance to a boolean vs toggle between cli, json, and custom. | ||
|
||
### Fixed | ||
|
||
- [513](https://github.com/nautobot/nautobot-plugin-golden-config/pull/513) - Fixed issue with native JSON support with `get_config_element` function. | ||
- [505](https://github.com/nautobot/nautobot-plugin-golden-config/pull/505) - fixes imports and choice definitions in the compliance nornir play. |
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
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
griffe==0.30.1 | ||
mkdocs==1.3.1 | ||
mkdocs-material==8.4.2 | ||
mkdocs==1.5.2 | ||
mkdocs-material==9.2.4 | ||
mkdocs-version-annotations==1.0.0 | ||
mkdocstrings==0.22.0 | ||
mkdocstrings-python==1.1.2 | ||
mkdocstrings-python==1.5.2 |
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,10 +1,7 @@ | ||
"""Plugin declaration for nautobot_golden_config.""" | ||
# Metadata is inherited from Nautobot. If not including Nautobot in the environment, this should be added | ||
try: | ||
from importlib import metadata | ||
except ImportError: | ||
# Python version < 3.8 | ||
import importlib_metadata as metadata | ||
from importlib import metadata | ||
|
||
|
||
__version__ = metadata.version(__name__) | ||
|
||
|
@@ -22,7 +19,7 @@ class GoldenConfig(PluginConfig): | |
author_email = "[email protected]" | ||
description = "Nautobot Apps that embraces NetDevOps and automates configuration backups, performs configuration compliance, and generates intended configurations. Includes native Git integration and gives users the flexibility to mix and match the supported features." | ||
base_url = "golden-config" | ||
min_version = "1.5.3" | ||
min_version = "1.6.1" | ||
max_version = "1.99" | ||
default_settings = { | ||
"enable_backup": 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
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
Oops, something went wrong.