Skip to content

Commit

Permalink
Merge pull request #119 from ryanmerolle/dev
Browse files Browse the repository at this point in the history
release 1.2.2
  • Loading branch information
ryanmerolle authored Jan 25, 2023
2 parents 69823ec + 9611816 commit 6c744b1
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .devcontainer/configuration/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ def _read_secret(secret_name, default=None):
# on a production system.
DEBUG = environ.get("DEBUG", "False").lower() == "true"

# Set to True to enable DEVELOPER Mode. WARNING: ONLY netbox developers or plugin developers need this access.
DEVELOPER = environ.get("DEVELOPER_MODE", "False").lower() == "true"

# Email settings
EMAIL = {
"SERVER": environ.get("EMAIL_SERVER", "localhost"),
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/env/netbox.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ DB_NAME=netbox
DB_PASSWORD=J5brHrAXFLQSif0K
DB_USER=netbox
DEBUG=true
DEVELOPER_MODE=true
ENFORCE_GLOBAL_UNIQUE=true
LOGIN_REQUIRED=false
GRAPHQL_ENABLED=true
Expand All @@ -19,5 +20,4 @@ SUPERUSER_API_TOKEN=0123456789abcdef0123456789abcdef01234567
SUPERUSER_EMAIL=[email protected]
SUPERUSER_NAME=admin
SUPERUSER_PASSWORD=admin
STARTUP_SCRIPTS=false
WEBHOOKS_ENABLED=true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Each Plugin Version listed below has been tested with its corresponding NetBox V
|:--------------:|:--------------:|
| 3.2 | 1.0.1 |
| 3.3 | 1.1.0 |
| 3.4 | 1.2.1 |
| 3.4 | 1.2.2 |

## Installing

Expand Down
42 changes: 42 additions & 0 deletions netbox_acls/migrations/0003_netbox_acls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Generated by Django 4.1.5 on 2023-01-25 20:08

import utilities.json
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("netbox_acls", "0002_alter_accesslist_options_and_more"),
]

operations = [
migrations.AlterField(
model_name="accesslist",
name="custom_field_data",
field=models.JSONField(
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
),
),
migrations.AlterField(
model_name="aclextendedrule",
name="custom_field_data",
field=models.JSONField(
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
),
),
migrations.AlterField(
model_name="aclinterfaceassignment",
name="custom_field_data",
field=models.JSONField(
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
),
),
migrations.AlterField(
model_name="aclstandardrule",
name="custom_field_data",
field=models.JSONField(
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
),
),
]
2 changes: 1 addition & 1 deletion netbox_acls/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.1"
__version__ = "1.2.2"

0 comments on commit 6c744b1

Please sign in to comment.