Address Missing Migrations for NetBox 3.4 / plugin version 1.2 (#118)

* add missing netbox 3.4 migrations
* bump version to 1.2.2
This commit is contained in:
Ryan Merolle 2023-01-25 15:22:35 -05:00 committed by GitHub
parent b74e8db8e3
commit 9611816fe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 2 deletions

View File

@ -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

View File

@ -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
),
),
]

View File

@ -1 +1 @@
__version__ = "1.2.1"
__version__ = "1.2.2"