File tree Expand file tree Collapse file tree 9 files changed +19
-11
lines changed
Expand file tree Collapse file tree 9 files changed +19
-11
lines changed Original file line number Diff line number Diff line change 1- ARG NETBOX_VARIANT=v3.6
1+ ARG NETBOX_VARIANT=v3.7
22
33FROM netboxcommunity/netbox:${NETBOX_VARIANT}
44
5- ARG NETBOX_INITIALIZERS_VARIANT=3.6 .*
5+ ARG NETBOX_INITIALIZERS_VARIANT=3.7 .*
66
77ARG DEBIAN_FRONTEND=noninteractive
88
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ services:
4949
5050 # postgres
5151 postgres :
52- image : postgres:15 -alpine
52+ image : postgres:16 -alpine
5353 env_file : env/postgres.env
5454 volumes :
5555 - netbox-postgres-data:/var/lib/postgresql/data
Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ body:
2323 attributes :
2424 label : NetBox access-list plugin version
2525 description : What version of the NetBox access-list plugin are you currently running?
26- placeholder : v1.4 .0
26+ placeholder : v1.5 .0
2727 validations :
2828 required : true
2929 - type : input
3030 attributes :
3131 label : NetBox version
3232 description : What version of NetBox are you currently running?
33- placeholder : v3.6.3
33+ placeholder : v3.7.4
3434 validations :
3535 required : true
3636 - type : textarea
Original file line number Diff line number Diff line change @@ -97,5 +97,12 @@ Development with this plugin leverges:
9797* NetBox-Docker
9898* Docker-Compose
9999* Makefile for spin up of testing NetBox setup
100+ * Dependabot for dependency version management
101+
102+ ### Cutting Releases
103+
104+ 1 . Merge PR (squash) into ` dev ` branch
105+ 2 . Merge ` dev ` into ` release ` branch
106+ 3 . Create a release (pypi auto publishes)
100107
101108More Documentation to come.
Original file line number Diff line number Diff line change 1- ARG NETBOX_VARIANT=v3.6
1+ ARG NETBOX_VARIANT=v3.7
22
33FROM netboxcommunity/netbox:${NETBOX_VARIANT}
44
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This plugin provides the following models:
88
99- Access Lists
1010- Access List to Interface Assignment
11- - Access List Rules (abstract model bassis for other rules)
11+ - Access List Rules (abstract model basis for other rules)
1212- Access List Standard Rules
1313- Access List Extended Rules
1414
@@ -38,6 +38,7 @@ Each Plugin Version listed below has been tested with its corresponding NetBox V
3838
3939| NetBox Version | Plugin Version |
4040| :--------------:| :--------------:|
41+ | 3.7 | 1.5.0 |
4142| 3.6 | 1.4.0 |
4243| 3.5 | 1.3.0 |
4344| 3.4 | 1.2.2 |
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ services:
1515
1616 # postgres
1717 postgres :
18- image : postgres:15 -alpine
18+ image : postgres:16 -alpine
1919 env_file : env/postgres.env
2020
2121 # redis
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ class NetBoxACLsConfig(PluginConfig):
1717 version = __version__
1818 description = "Manage simple ACLs in NetBox"
1919 base_url = "access-lists"
20- min_version = "3.6 .0"
21- max_version = "3.6 .99"
20+ min_version = "3.7 .0"
21+ max_version = "3.7 .99"
2222
2323
2424config = NetBoxACLsConfig
Original file line number Diff line number Diff line change 1- __version__ = "1.4 .0"
1+ __version__ = "1.5 .0"
You can’t perform that action at this time.
0 commit comments