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
2
2
3
3
FROM netboxcommunity/netbox:${NETBOX_VARIANT}
4
4
5
- ARG NETBOX_INITIALIZERS_VARIANT=3.6 .*
5
+ ARG NETBOX_INITIALIZERS_VARIANT=3.7 .*
6
6
7
7
ARG DEBIAN_FRONTEND=noninteractive
8
8
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ services:
49
49
50
50
# postgres
51
51
postgres :
52
- image : postgres:15 -alpine
52
+ image : postgres:16 -alpine
53
53
env_file : env/postgres.env
54
54
volumes :
55
55
- netbox-postgres-data:/var/lib/postgresql/data
Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ body:
23
23
attributes :
24
24
label : NetBox access-list plugin version
25
25
description : What version of the NetBox access-list plugin are you currently running?
26
- placeholder : v1.4 .0
26
+ placeholder : v1.5 .0
27
27
validations :
28
28
required : true
29
29
- type : input
30
30
attributes :
31
31
label : NetBox version
32
32
description : What version of NetBox are you currently running?
33
- placeholder : v3.6.3
33
+ placeholder : v3.7.4
34
34
validations :
35
35
required : true
36
36
- type : textarea
Original file line number Diff line number Diff line change @@ -97,5 +97,12 @@ Development with this plugin leverges:
97
97
* NetBox-Docker
98
98
* Docker-Compose
99
99
* 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)
100
107
101
108
More 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
2
2
3
3
FROM netboxcommunity/netbox:${NETBOX_VARIANT}
4
4
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This plugin provides the following models:
8
8
9
9
- Access Lists
10
10
- 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)
12
12
- Access List Standard Rules
13
13
- Access List Extended Rules
14
14
@@ -38,6 +38,7 @@ Each Plugin Version listed below has been tested with its corresponding NetBox V
38
38
39
39
| NetBox Version | Plugin Version |
40
40
| :--------------:| :--------------:|
41
+ | 3.7 | 1.5.0 |
41
42
| 3.6 | 1.4.0 |
42
43
| 3.5 | 1.3.0 |
43
44
| 3.4 | 1.2.2 |
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ services:
15
15
16
16
# postgres
17
17
postgres :
18
- image : postgres:15 -alpine
18
+ image : postgres:16 -alpine
19
19
env_file : env/postgres.env
20
20
21
21
# redis
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ class NetBoxACLsConfig(PluginConfig):
17
17
version = __version__
18
18
description = "Manage simple ACLs in NetBox"
19
19
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"
22
22
23
23
24
24
config = 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