Skip to content

Commit 9611816

Browse files
authored
Address Missing Migrations for NetBox 3.4 / plugin version 1.2 (#118)
* add missing netbox 3.4 migrations * bump version to 1.2.2
1 parent b74e8db commit 9611816

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Each Plugin Version listed below has been tested with its corresponding NetBox V
4040
|:--------------:|:--------------:|
4141
| 3.2 | 1.0.1 |
4242
| 3.3 | 1.1.0 |
43-
| 3.4 | 1.2.1 |
43+
| 3.4 | 1.2.2 |
4444

4545
## Installing
4646

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Generated by Django 4.1.5 on 2023-01-25 20:08
2+
3+
import utilities.json
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
("netbox_acls", "0002_alter_accesslist_options_and_more"),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name="accesslist",
16+
name="custom_field_data",
17+
field=models.JSONField(
18+
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
19+
),
20+
),
21+
migrations.AlterField(
22+
model_name="aclextendedrule",
23+
name="custom_field_data",
24+
field=models.JSONField(
25+
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
26+
),
27+
),
28+
migrations.AlterField(
29+
model_name="aclinterfaceassignment",
30+
name="custom_field_data",
31+
field=models.JSONField(
32+
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
33+
),
34+
),
35+
migrations.AlterField(
36+
model_name="aclstandardrule",
37+
name="custom_field_data",
38+
field=models.JSONField(
39+
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
40+
),
41+
),
42+
]

netbox_acls/version.py

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

0 commit comments

Comments
 (0)