Skip to content

Commit

Permalink
chore(version): Bump version to 0.0.9
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Requires NetBox version 4.1
  • Loading branch information
pheus committed Oct 8, 2024
1 parent a18e157 commit 83f3f88
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ body:
attributes:
label: NetBox ACI Plugin version
description: What version of NetBox ACI Plugin are you currently running?
placeholder: v0.0.8
placeholder: v0.0.9
validations:
required: true
- type: input
attributes:
label: NetBox version
description: What version of NetBox are you currently running?
placeholder: v4.0.7
placeholder: v4.1.3
validations:
required: true
- type: dropdown
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ body:
attributes:
label: NetBox ACI Plugin version
description: What version of NetBox ACI Plugin are you currently running?
placeholder: v0.0.8
placeholder: v0.0.9
validations:
required: true
- type: input
attributes:
label: NetBox version
description: What version of NetBox are you currently running?
placeholder: v4.0.7
placeholder: v4.1.3
validations:
required: true
- type: dropdown
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ repos:
exclude: ^.devcontainer/

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.5.6"
rev: "v0.6.9"
hooks:
# Run the linter.
- id: ruff
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@

---

## 0.0.9 (2024-10-08)

### Breaking Changes

* Requires NetBox version 4.1.0 or higher

### Enhancements

* Add database migration for ACITenant
* Allow creation of default ACI Tenants (`common`, `infra`, `mgmt`) during migration
* Add database migrations for ACIVRF, ACIBridgeDomain, ACIBridgeDomainSubnet
* Add database migrations for ACIAppProfile, ACIEndpointGroup
* Provide a plugin configuration option to disable the creation of the default ACI Tenants
* Add support for GraphQL extended permissions in NetBox v4.0.10 and v4.0.11
* Add NetBox v4.1 compatibility

### Bug Fixes

* Fix OpenAPI schema generation warning for 'present_in_aci_tenant_or_common' filter
* Include `_id` suffix for filter `present_in_aci_tenant_or_common`

## 0.0.8 (2024-07-17)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Documentation: https://pheus.github.io/netbox-aci-plugin/

| NetBox Version | Plugin Version |
|----------------|----------------|
| 4.0 | 0.0.8 |
| 4.1 | 0.0.9 |

## Installing

Expand Down
6 changes: 3 additions & 3 deletions netbox_aci_plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Martin Hauser"""
__email__ = "[email protected]"
__version__ = "0.0.8"
__version__ = "0.0.9"


from netbox.plugins import PluginConfig
Expand All @@ -12,13 +12,13 @@ class ACIConfig(PluginConfig):
"""NetBox ACI Plugin specific configuration."""

name = "netbox_aci_plugin"
verbose_name = "ACI"
verbose_name = "NetBox ACI"
description = "NetBox plugin for documenting Cisco ACI specific objects."
version = __version__
author = __author__
author_email = __email__
base_url = "aci"
min_version = "4.0.0"
min_version = "4.1.0"
max_version = "4.1.99"
default_settings = {
"create_default_aci_tenants": True,
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "netbox-aci-plugin"
version = "0.0.8"
version = "0.0.9"
authors = [
{name = "Martin Hauser", email = "[email protected]"},
]
Expand All @@ -32,8 +32,8 @@ test = [
"check-manifest==0.49",
"isort",
"pre-commit==3.8.0",
"pytest==8.3.2",
"ruff==0.5.6",
"pytest==8.3.3",
"ruff==0.6.9",
"yamllint",
]

Expand Down
4 changes: 2 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ check-manifest==0.49
isort==5.13.2
pip==24.2
pre-commit==3.8.0
pytest==8.3.2
ruff==0.5.6
pytest==8.3.3
ruff==0.6.9
yamllint==1.35.1

0 comments on commit 83f3f88

Please sign in to comment.