-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b71b14
commit 2c273b9
Showing
11 changed files
with
83 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fixed server error when navigating to Policy detail view. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Fixed name fields being optional on multiple forms. | ||
Fixed assigned devices and assigned dynamic groups fields not marked as optional on NATPolicy and Policy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Fixed server error when navigating to NATPolicy detail view. | ||
Fixed server error when updating device/dynamic group weights on NATPolicy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
nautobot_firewall_models/migrations/0022_fix_policy_natpolicy_m2ms.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Generated by Django 4.2.16 on 2024-10-03 21:29 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("dcim", "0062_module_data_migration"), | ||
("extras", "0114_computedfield_grouping"), | ||
("nautobot_firewall_models", "0021_alter_addressobject_status_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="natpolicy", | ||
name="assigned_devices", | ||
field=models.ManyToManyField( | ||
blank=True, | ||
related_name="nat_policies", | ||
through="nautobot_firewall_models.NATPolicyDeviceM2M", | ||
to="dcim.device", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="natpolicy", | ||
name="assigned_dynamic_groups", | ||
field=models.ManyToManyField( | ||
blank=True, | ||
related_name="nat_policies", | ||
through="nautobot_firewall_models.NATPolicyDynamicGroupM2M", | ||
to="extras.dynamicgroup", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="policy", | ||
name="assigned_devices", | ||
field=models.ManyToManyField( | ||
blank=True, | ||
related_name="firewall_policies", | ||
through="nautobot_firewall_models.PolicyDeviceM2M", | ||
to="dcim.device", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="policy", | ||
name="assigned_dynamic_groups", | ||
field=models.ManyToManyField( | ||
blank=True, | ||
related_name="firewall_policies", | ||
through="nautobot_firewall_models.PolicyDynamicGroupM2M", | ||
to="extras.dynamicgroup", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters