Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"