From ccb0c6e8ca4748665cc378c840d2c2eea4f8f435 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 07:55:02 +0000 Subject: [PATCH 1/3] [skip ci] Updated CHANGELOG.md --- CHANGELOG.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5a636..5662361 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,19 @@ ## [Unreleased](https://github.com/Onemind-Services-LLC/netbox-secrets/tree/HEAD) -[Full Changelog](https://github.com/Onemind-Services-LLC/netbox-secrets/compare/v1.9.0...HEAD) +[Full Changelog](https://github.com/Onemind-Services-LLC/netbox-secrets/compare/v1.9.1...HEAD) + +**Closed issues:** + +- Netbox v3.7.0 support [\#117](https://github.com/Onemind-Services-LLC/netbox-secrets/issues/117) + +**Merged pull requests:** + +- Release v1.10.0 [\#119](https://github.com/Onemind-Services-LLC/netbox-secrets/pull/119) ([abhi1693](https://github.com/abhi1693)) + +## [v1.9.1](https://github.com/Onemind-Services-LLC/netbox-secrets/tree/v1.9.1) (2024-01-01) + +[Full Changelog](https://github.com/Onemind-Services-LLC/netbox-secrets/compare/v1.9.0...v1.9.1) **Closed issues:** From 611083e5876c07761f2770447a1d1f8787c77fff Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Thu, 4 Jan 2024 00:38:21 +0530 Subject: [PATCH 2/3] fixed description and verbose name #121 --- netbox_secrets/__init__.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox_secrets/__init__.py b/netbox_secrets/__init__.py index 8c3e19e..3e02853 100644 --- a/netbox_secrets/__init__.py +++ b/netbox_secrets/__init__.py @@ -8,8 +8,8 @@ class NetBoxSecrets(PluginConfig): name = metadata.get('Name').replace('-', '_') - verbose_name = metadata.get('Summary') - description = metadata.get('Description') + verbose_name = metadata.get('Name') + description = metadata.get('Summary') version = metadata.get('Version') author = metadata.get('Author') author_email = metadata.get('Author-email') diff --git a/setup.py b/setup.py index 6066dd6..755cdd7 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='netbox-secrets', - version='1.10.0', + version='1.10.1', description=description, long_description=long_description, long_description_content_type="text/markdown", From 5532a6208c09cd1a0d3f82e20630aefba60d8610 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Thu, 4 Jan 2024 00:39:57 +0530 Subject: [PATCH 3/3] added top_level_menu doc #122 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 953a883..dde23a5 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,10 @@ The following options are available in the configuration file: - __Description__: Size of the public key - __Default__: `2048` - __Options__: `2048`, `4096`, `8192` +- `top_level_menu` + - __Type__: `Boolean` + - __Description__: Enable top level menu + - __Default__: `False` ## Extra Configuration