Skip to content

Commit da0fffc

Browse files
authored
Merge pull request #183 from netbox-community/dev
prepare 3.7 release
2 parents 05be45c + 9c65bb1 commit da0fffc

File tree

9 files changed

+19
-11
lines changed

9 files changed

+19
-11
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.6
1+
ARG NETBOX_VARIANT=v3.7
22

33
FROM netboxcommunity/netbox:${NETBOX_VARIANT}
44

5-
ARG NETBOX_INITIALIZERS_VARIANT=3.6.*
5+
ARG NETBOX_INITIALIZERS_VARIANT=3.7.*
66

77
ARG DEBIAN_FRONTEND=noninteractive
88

.devcontainer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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

101108
More Documentation to come.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG NETBOX_VARIANT=v3.6
1+
ARG NETBOX_VARIANT=v3.7
22

33
FROM netboxcommunity/netbox:${NETBOX_VARIANT}
44

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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 |

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

netbox_acls/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

2424
config = NetBoxACLsConfig

netbox_acls/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.4.0"
1+
__version__ = "1.5.0"

0 commit comments

Comments
 (0)