Skip to content

Commit 2bcad20

Browse files
authored
Merge pull request #70 from ryanmerolle/1.1.0
Adds supports for NetBox 3.3 & Drops NetBox 3.2 support (Thanks @abhi1693)
2 parents 19a63d0 + a67576e commit 2bcad20

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.devcontainer/Dockerfile-plugin_dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
ARG NETBOX_VARIANT=v3.2
1+
ARG NETBOX_VARIANT=v3.3
22

33
FROM netboxcommunity/netbox:${NETBOX_VARIANT}
44

5-
ARG NETBOX_INITIALIZERS_VARIANT=3.2.3
5+
ARG NETBOX_INITIALIZERS_VARIANT=3.3.1
66

77
ARG DEBIAN_FRONTEND=noninteractive
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This plugin was first developed using 3.2.5, and tested with all of 3.2.
3030
| NetBox Version | Plugin Version |
3131
|----------------|----------------|
3232
| 3.2 | 1.0.1 |
33-
| 3.3 | TBD |
33+
| 3.3 | 1.1.0 |
3434

3535
## Installing
3636

netbox_acls/api/serializers.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,12 @@
77
from django.core.exceptions import ObjectDoesNotExist
88
from drf_yasg.utils import swagger_serializer_method
99
from ipam.api.serializers import NestedPrefixSerializer
10-
from netbox.api import ContentTypeField
10+
from netbox.api.fields import ContentTypeField
1111
from netbox.api.serializers import NetBoxModelSerializer
1212
from rest_framework import serializers
1313
from utilities.api import get_serializer_for_model
1414

15-
from ..constants import (
16-
ACL_HOST_ASSIGNMENT_MODELS,
17-
ACL_INTERFACE_ASSIGNMENT_MODELS,
18-
)
15+
from ..constants import ACL_HOST_ASSIGNMENT_MODELS, ACL_INTERFACE_ASSIGNMENT_MODELS
1916
from ..models import (
2017
AccessList,
2118
ACLExtendedRule,

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ def read(rel_path):
1515

1616
setup(
1717
name="netbox-acls",
18-
version="1.0.1",
18+
version="1.1.0",
1919
# version=get_version("netbox_acls/version.py"),
2020
description="A NetBox plugin for Access List management",
21-
# long_description=long_description,
21+
long_description=long_description,
2222
long_description_content_type="text/markdown",
2323
url="https://github.com/ryanmerolle/netbox-acls",
2424
install_requires=[],

0 commit comments

Comments
 (0)