nautobot 2.3.7__py3-none-any.whl → 2.3.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/core/templates/inc/paginator.html +3 -0
- nautobot/core/templates/utilities/obj_table.html +1 -1
- nautobot/dcim/api/serializers.py +10 -5
- nautobot/dcim/forms.py +11 -7
- nautobot/dcim/models/device_components.py +7 -4
- nautobot/dcim/tests/test_api.py +28 -0
- nautobot/dcim/tests/test_forms.py +17 -1
- nautobot/dcim/tests/test_models.py +42 -4
- nautobot/dcim/utils.py +9 -6
- nautobot/extras/plugins/views.py +18 -3
- nautobot/ipam/filters.py +2 -2
- nautobot/ipam/models.py +29 -2
- nautobot/ipam/templates/ipam/ipaddress.html +2 -2
- nautobot/ipam/templates/ipam/ipaddress_interfaces.html +3 -0
- nautobot/ipam/templates/ipam/ipaddress_vm_interfaces.html +3 -0
- nautobot/ipam/templates/ipam/prefix.html +3 -3
- nautobot/ipam/templates/ipam/routetarget.html +2 -2
- nautobot/ipam/templates/ipam/vlan.html +3 -0
- nautobot/ipam/templates/ipam/vrf.html +7 -4
- nautobot/ipam/tests/test_models.py +68 -12
- nautobot/ipam/views.py +43 -0
- nautobot/project-static/docs/release-notes/version-2.3.html +86 -29
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +269 -269
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- {nautobot-2.3.7.dist-info → nautobot-2.3.8.dist-info}/METADATA +1 -1
- {nautobot-2.3.7.dist-info → nautobot-2.3.8.dist-info}/RECORD +31 -31
- {nautobot-2.3.7.dist-info → nautobot-2.3.8.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.7.dist-info → nautobot-2.3.8.dist-info}/NOTICE +0 -0
- {nautobot-2.3.7.dist-info → nautobot-2.3.8.dist-info}/WHEEL +0 -0
- {nautobot-2.3.7.dist-info → nautobot-2.3.8.dist-info}/entry_points.txt +0 -0
nautobot/ipam/views.py
CHANGED
|
@@ -270,6 +270,15 @@ class VRFView(generic.ObjectView):
|
|
|
270
270
|
vrf_table.exclude = ("vrf",)
|
|
271
271
|
# context["vrf_table"] = vrf_table
|
|
272
272
|
|
|
273
|
+
paginate = {
|
|
274
|
+
"paginator_class": EnhancedPaginator,
|
|
275
|
+
"per_page": get_paginate_count(request),
|
|
276
|
+
}
|
|
277
|
+
RequestConfig(request, paginate).configure(prefix_table)
|
|
278
|
+
RequestConfig(request, paginate).configure(vrf_table)
|
|
279
|
+
RequestConfig(request, paginate).configure(import_targets_table)
|
|
280
|
+
RequestConfig(request, paginate).configure(export_targets_table)
|
|
281
|
+
|
|
273
282
|
context.update(
|
|
274
283
|
{
|
|
275
284
|
"device_table": vrf_table,
|
|
@@ -337,6 +346,13 @@ class RouteTargetView(generic.ObjectView):
|
|
|
337
346
|
importing_vrfs_table = tables.VRFTable(instance.importing_vrfs.select_related("tenant"), orderable=False)
|
|
338
347
|
exporting_vrfs_table = tables.VRFTable(instance.exporting_vrfs.select_related("tenant"), orderable=False)
|
|
339
348
|
|
|
349
|
+
paginate = {
|
|
350
|
+
"paginator_class": EnhancedPaginator,
|
|
351
|
+
"per_page": get_paginate_count(request),
|
|
352
|
+
}
|
|
353
|
+
RequestConfig(request, paginate).configure(importing_vrfs_table)
|
|
354
|
+
RequestConfig(request, paginate).configure(exporting_vrfs_table)
|
|
355
|
+
|
|
340
356
|
return {
|
|
341
357
|
"importing_vrfs_table": importing_vrfs_table,
|
|
342
358
|
"exporting_vrfs_table": exporting_vrfs_table,
|
|
@@ -460,6 +476,14 @@ class PrefixView(generic.ObjectView):
|
|
|
460
476
|
cloud_network_table = CloudNetworkTable(cloud_networks, orderable=False)
|
|
461
477
|
cloud_network_table.exclude = ("actions", "assigned_prefix_count", "circuit_count", "cloud_service_count")
|
|
462
478
|
|
|
479
|
+
paginate = {
|
|
480
|
+
"paginator_class": EnhancedPaginator,
|
|
481
|
+
"per_page": get_paginate_count(request),
|
|
482
|
+
}
|
|
483
|
+
RequestConfig(request, paginate).configure(parent_prefix_table)
|
|
484
|
+
RequestConfig(request, paginate).configure(vrf_table)
|
|
485
|
+
RequestConfig(request, paginate).configure(cloud_network_table)
|
|
486
|
+
|
|
463
487
|
return {
|
|
464
488
|
"vrf_table": vrf_table,
|
|
465
489
|
"parent_prefix_table": parent_prefix_table,
|
|
@@ -778,6 +802,7 @@ class IPAddressView(generic.ObjectView):
|
|
|
778
802
|
"paginator_class": EnhancedPaginator,
|
|
779
803
|
"per_page": get_paginate_count(request),
|
|
780
804
|
}
|
|
805
|
+
RequestConfig(request, paginate).configure(parent_prefixes_table)
|
|
781
806
|
RequestConfig(request, paginate).configure(related_ips_table)
|
|
782
807
|
|
|
783
808
|
return {
|
|
@@ -1158,6 +1183,12 @@ class IPAddressInterfacesView(generic.ObjectView):
|
|
|
1158
1183
|
if request.user.has_perm("dcim.change_interface") or request.user.has_perm("dcim.delete_interface"):
|
|
1159
1184
|
interface_table.columns.show("pk")
|
|
1160
1185
|
|
|
1186
|
+
paginate = {
|
|
1187
|
+
"paginator_class": EnhancedPaginator,
|
|
1188
|
+
"per_page": get_paginate_count(request),
|
|
1189
|
+
}
|
|
1190
|
+
RequestConfig(request, paginate).configure(interface_table)
|
|
1191
|
+
|
|
1161
1192
|
return {
|
|
1162
1193
|
"interface_table": interface_table,
|
|
1163
1194
|
"active_tab": "interfaces",
|
|
@@ -1178,6 +1209,12 @@ class IPAddressVMInterfacesView(generic.ObjectView):
|
|
|
1178
1209
|
):
|
|
1179
1210
|
vm_interface_table.columns.show("pk")
|
|
1180
1211
|
|
|
1212
|
+
paginate = {
|
|
1213
|
+
"paginator_class": EnhancedPaginator,
|
|
1214
|
+
"per_page": get_paginate_count(request),
|
|
1215
|
+
}
|
|
1216
|
+
RequestConfig(request, paginate).configure(vm_interface_table)
|
|
1217
|
+
|
|
1181
1218
|
return {
|
|
1182
1219
|
"vm_interface_table": vm_interface_table,
|
|
1183
1220
|
"active_tab": "vm_interfaces",
|
|
@@ -1316,6 +1353,12 @@ class VLANView(generic.ObjectView):
|
|
|
1316
1353
|
prefix_table = tables.PrefixTable(list(prefixes), hide_hierarchy_ui=True)
|
|
1317
1354
|
prefix_table.exclude = ("vlan",)
|
|
1318
1355
|
|
|
1356
|
+
paginate = {
|
|
1357
|
+
"paginator_class": EnhancedPaginator,
|
|
1358
|
+
"per_page": get_paginate_count(request),
|
|
1359
|
+
}
|
|
1360
|
+
RequestConfig(request, paginate).configure(prefix_table)
|
|
1361
|
+
|
|
1319
1362
|
return {"prefix_table": prefix_table, **super().get_extra_context(request, instance)}
|
|
1320
1363
|
|
|
1321
1364
|
|
|
@@ -8233,6 +8233,30 @@
|
|
|
8233
8233
|
</ul>
|
|
8234
8234
|
</nav>
|
|
8235
8235
|
|
|
8236
|
+
</li>
|
|
8237
|
+
|
|
8238
|
+
<li class="md-nav__item">
|
|
8239
|
+
<a href="#v238-2024-10-18" class="md-nav__link">
|
|
8240
|
+
<span class="md-ellipsis">
|
|
8241
|
+
v2.3.8 (2024-10-18)
|
|
8242
|
+
</span>
|
|
8243
|
+
</a>
|
|
8244
|
+
|
|
8245
|
+
<nav class="md-nav" aria-label="v2.3.8 (2024-10-18)">
|
|
8246
|
+
<ul class="md-nav__list">
|
|
8247
|
+
|
|
8248
|
+
<li class="md-nav__item">
|
|
8249
|
+
<a href="#fixed" class="md-nav__link">
|
|
8250
|
+
<span class="md-ellipsis">
|
|
8251
|
+
Fixed
|
|
8252
|
+
</span>
|
|
8253
|
+
</a>
|
|
8254
|
+
|
|
8255
|
+
</li>
|
|
8256
|
+
|
|
8257
|
+
</ul>
|
|
8258
|
+
</nav>
|
|
8259
|
+
|
|
8236
8260
|
</li>
|
|
8237
8261
|
|
|
8238
8262
|
<li class="md-nav__item">
|
|
@@ -8264,7 +8288,7 @@
|
|
|
8264
8288
|
</li>
|
|
8265
8289
|
|
|
8266
8290
|
<li class="md-nav__item">
|
|
8267
|
-
<a href="#
|
|
8291
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8268
8292
|
<span class="md-ellipsis">
|
|
8269
8293
|
Fixed
|
|
8270
8294
|
</span>
|
|
@@ -8315,7 +8339,7 @@
|
|
|
8315
8339
|
</li>
|
|
8316
8340
|
|
|
8317
8341
|
<li class="md-nav__item">
|
|
8318
|
-
<a href="#
|
|
8342
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8319
8343
|
<span class="md-ellipsis">
|
|
8320
8344
|
Fixed
|
|
8321
8345
|
</span>
|
|
@@ -8375,7 +8399,7 @@
|
|
|
8375
8399
|
</li>
|
|
8376
8400
|
|
|
8377
8401
|
<li class="md-nav__item">
|
|
8378
|
-
<a href="#
|
|
8402
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8379
8403
|
<span class="md-ellipsis">
|
|
8380
8404
|
Fixed
|
|
8381
8405
|
</span>
|
|
@@ -8444,7 +8468,7 @@
|
|
|
8444
8468
|
</li>
|
|
8445
8469
|
|
|
8446
8470
|
<li class="md-nav__item">
|
|
8447
|
-
<a href="#
|
|
8471
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8448
8472
|
<span class="md-ellipsis">
|
|
8449
8473
|
Fixed
|
|
8450
8474
|
</span>
|
|
@@ -8495,7 +8519,7 @@
|
|
|
8495
8519
|
</li>
|
|
8496
8520
|
|
|
8497
8521
|
<li class="md-nav__item">
|
|
8498
|
-
<a href="#
|
|
8522
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8499
8523
|
<span class="md-ellipsis">
|
|
8500
8524
|
Fixed
|
|
8501
8525
|
</span>
|
|
@@ -8555,7 +8579,7 @@
|
|
|
8555
8579
|
</li>
|
|
8556
8580
|
|
|
8557
8581
|
<li class="md-nav__item">
|
|
8558
|
-
<a href="#
|
|
8582
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8559
8583
|
<span class="md-ellipsis">
|
|
8560
8584
|
Fixed
|
|
8561
8585
|
</span>
|
|
@@ -8606,7 +8630,7 @@
|
|
|
8606
8630
|
</li>
|
|
8607
8631
|
|
|
8608
8632
|
<li class="md-nav__item">
|
|
8609
|
-
<a href="#
|
|
8633
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8610
8634
|
<span class="md-ellipsis">
|
|
8611
8635
|
Fixed
|
|
8612
8636
|
</span>
|
|
@@ -8675,7 +8699,7 @@
|
|
|
8675
8699
|
</li>
|
|
8676
8700
|
|
|
8677
8701
|
<li class="md-nav__item">
|
|
8678
|
-
<a href="#
|
|
8702
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8679
8703
|
<span class="md-ellipsis">
|
|
8680
8704
|
Fixed
|
|
8681
8705
|
</span>
|
|
@@ -8762,7 +8786,7 @@
|
|
|
8762
8786
|
</li>
|
|
8763
8787
|
|
|
8764
8788
|
<li class="md-nav__item">
|
|
8765
|
-
<a href="#
|
|
8789
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
8766
8790
|
<span class="md-ellipsis">
|
|
8767
8791
|
Fixed
|
|
8768
8792
|
</span>
|
|
@@ -9600,6 +9624,30 @@
|
|
|
9600
9624
|
</ul>
|
|
9601
9625
|
</nav>
|
|
9602
9626
|
|
|
9627
|
+
</li>
|
|
9628
|
+
|
|
9629
|
+
<li class="md-nav__item">
|
|
9630
|
+
<a href="#v238-2024-10-18" class="md-nav__link">
|
|
9631
|
+
<span class="md-ellipsis">
|
|
9632
|
+
v2.3.8 (2024-10-18)
|
|
9633
|
+
</span>
|
|
9634
|
+
</a>
|
|
9635
|
+
|
|
9636
|
+
<nav class="md-nav" aria-label="v2.3.8 (2024-10-18)">
|
|
9637
|
+
<ul class="md-nav__list">
|
|
9638
|
+
|
|
9639
|
+
<li class="md-nav__item">
|
|
9640
|
+
<a href="#fixed" class="md-nav__link">
|
|
9641
|
+
<span class="md-ellipsis">
|
|
9642
|
+
Fixed
|
|
9643
|
+
</span>
|
|
9644
|
+
</a>
|
|
9645
|
+
|
|
9646
|
+
</li>
|
|
9647
|
+
|
|
9648
|
+
</ul>
|
|
9649
|
+
</nav>
|
|
9650
|
+
|
|
9603
9651
|
</li>
|
|
9604
9652
|
|
|
9605
9653
|
<li class="md-nav__item">
|
|
@@ -9631,7 +9679,7 @@
|
|
|
9631
9679
|
</li>
|
|
9632
9680
|
|
|
9633
9681
|
<li class="md-nav__item">
|
|
9634
|
-
<a href="#
|
|
9682
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9635
9683
|
<span class="md-ellipsis">
|
|
9636
9684
|
Fixed
|
|
9637
9685
|
</span>
|
|
@@ -9682,7 +9730,7 @@
|
|
|
9682
9730
|
</li>
|
|
9683
9731
|
|
|
9684
9732
|
<li class="md-nav__item">
|
|
9685
|
-
<a href="#
|
|
9733
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9686
9734
|
<span class="md-ellipsis">
|
|
9687
9735
|
Fixed
|
|
9688
9736
|
</span>
|
|
@@ -9742,7 +9790,7 @@
|
|
|
9742
9790
|
</li>
|
|
9743
9791
|
|
|
9744
9792
|
<li class="md-nav__item">
|
|
9745
|
-
<a href="#
|
|
9793
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9746
9794
|
<span class="md-ellipsis">
|
|
9747
9795
|
Fixed
|
|
9748
9796
|
</span>
|
|
@@ -9811,7 +9859,7 @@
|
|
|
9811
9859
|
</li>
|
|
9812
9860
|
|
|
9813
9861
|
<li class="md-nav__item">
|
|
9814
|
-
<a href="#
|
|
9862
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9815
9863
|
<span class="md-ellipsis">
|
|
9816
9864
|
Fixed
|
|
9817
9865
|
</span>
|
|
@@ -9862,7 +9910,7 @@
|
|
|
9862
9910
|
</li>
|
|
9863
9911
|
|
|
9864
9912
|
<li class="md-nav__item">
|
|
9865
|
-
<a href="#
|
|
9913
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9866
9914
|
<span class="md-ellipsis">
|
|
9867
9915
|
Fixed
|
|
9868
9916
|
</span>
|
|
@@ -9922,7 +9970,7 @@
|
|
|
9922
9970
|
</li>
|
|
9923
9971
|
|
|
9924
9972
|
<li class="md-nav__item">
|
|
9925
|
-
<a href="#
|
|
9973
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9926
9974
|
<span class="md-ellipsis">
|
|
9927
9975
|
Fixed
|
|
9928
9976
|
</span>
|
|
@@ -9973,7 +10021,7 @@
|
|
|
9973
10021
|
</li>
|
|
9974
10022
|
|
|
9975
10023
|
<li class="md-nav__item">
|
|
9976
|
-
<a href="#
|
|
10024
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9977
10025
|
<span class="md-ellipsis">
|
|
9978
10026
|
Fixed
|
|
9979
10027
|
</span>
|
|
@@ -10042,7 +10090,7 @@
|
|
|
10042
10090
|
</li>
|
|
10043
10091
|
|
|
10044
10092
|
<li class="md-nav__item">
|
|
10045
|
-
<a href="#
|
|
10093
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10046
10094
|
<span class="md-ellipsis">
|
|
10047
10095
|
Fixed
|
|
10048
10096
|
</span>
|
|
@@ -10129,7 +10177,7 @@
|
|
|
10129
10177
|
</li>
|
|
10130
10178
|
|
|
10131
10179
|
<li class="md-nav__item">
|
|
10132
|
-
<a href="#
|
|
10180
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10133
10181
|
<span class="md-ellipsis">
|
|
10134
10182
|
Fixed
|
|
10135
10183
|
</span>
|
|
@@ -10279,6 +10327,15 @@
|
|
|
10279
10327
|
<h4 id="updated-to-django-42-3581">Updated to Django 4.2 (<a href="https://github.com/nautobot/nautobot/issues/3581">#3581</a>)<a class="headerlink" href="#updated-to-django-42-3581" title="Permanent link">¶</a></h4>
|
|
10280
10328
|
<p>As Django 3.2 has reached end-of-life, Nautobot 2.3 requires Django 4.2, the next long-term-support (LTS) version of Django. There are a number of changes in Django itself as a result of this upgrade; Nautobot App maintainers are urged to review the Django release-notes (<a href="https://docs.djangoproject.com/en/4.2/releases/4.0/">4.0</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.1/">4.1</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.2/">4.2</a>), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.</p>
|
|
10281
10329
|
<!-- towncrier release notes start -->
|
|
10330
|
+
<h2 id="v238-2024-10-18">v2.3.8 (2024-10-18)<a class="headerlink" href="#v238-2024-10-18" title="Permanent link">¶</a></h2>
|
|
10331
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10332
|
+
<ul>
|
|
10333
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5050">#5050</a> - Changed logic to permit VLANs assigned to a device's location's parent locations (including parents of parents, etc.) to be assigned to that device's interfaces.</li>
|
|
10334
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed paginator widget to display the current selected <code>per_page</code> value even if it's not one of the <code>PER_PAGE_DEFAULTS</code> options.</li>
|
|
10335
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Added pagination of related-object tables to many IPAM views to avoid errors when very large quantities of related records are present.</li>
|
|
10336
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6380">#6380</a> - Fixed issue with Installed Apps page trying to render invalid links.</li>
|
|
10337
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6385">#6385</a> - Restored <code>Prefix.get_child_ips()</code> API mistakenly removed from v2.3.5 through v2.3.7.</li>
|
|
10338
|
+
</ul>
|
|
10282
10339
|
<h2 id="v237-2024-10-15">v2.3.7 (2024-10-15)<a class="headerlink" href="#v237-2024-10-15" title="Permanent link">¶</a></h2>
|
|
10283
10340
|
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10284
10341
|
<ul>
|
|
@@ -10287,9 +10344,9 @@
|
|
|
10287
10344
|
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10288
10345
|
<ul>
|
|
10289
10346
|
<li><a href="https://github.com/nautobot/nautobot/issues/6205">#6205</a> - Changed initial <code>Nautobot initialized!</code> message logged on startup to include the Nautobot version number.</li>
|
|
10290
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that ensure_git_repository logs hashes to include the name of the repository.</li>
|
|
10347
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that <code>ensure_git_repository</code> logs hashes to include the name of the repository.</li>
|
|
10291
10348
|
</ul>
|
|
10292
|
-
<h3 id="
|
|
10349
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10293
10350
|
<ul>
|
|
10294
10351
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
10295
10352
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added retry logic and error handling for several cases where an intermittent Redis connection error could cause Celery to throw an exception.</li>
|
|
@@ -10307,7 +10364,7 @@
|
|
|
10307
10364
|
<li><a href="https://github.com/nautobot/nautobot/issues/6283">#6283</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.39</code>.</li>
|
|
10308
10365
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed an error when rerunning parallel tests with a cached database and test factories enabled.</li>
|
|
10309
10366
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed a permission-denied error on the <code>MEDIA_ROOT</code> volume when running the local development environment with <code>docker-compose.final.yml</code>.</li>
|
|
10310
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Increased the healthcheck start_period in the local development environment to 10 minutes.</li>
|
|
10367
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Increased the healthcheck <code>start_period</code> in the local development environment to 10 minutes.</li>
|
|
10311
10368
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Added <code>--remove-orphans</code> to the docker compose commands for <code>invoke stop</code> and <code>invoke destroy</code>.</li>
|
|
10312
10369
|
</ul>
|
|
10313
10370
|
<h2 id="v236-2024-10-02">v2.3.6 (2024-10-02)<a class="headerlink" href="#v236-2024-10-02" title="Permanent link">¶</a></h2>
|
|
@@ -10316,7 +10373,7 @@
|
|
|
10316
10373
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
10317
10374
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
10318
10375
|
</ul>
|
|
10319
|
-
<h3 id="
|
|
10376
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
10320
10377
|
<ul>
|
|
10321
10378
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed an error during startup when an App included a REST API serializer inheriting from an unexpected base class.</li>
|
|
10322
10379
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed a warning during startup about the <code>extras.FileAttachment</code> model.</li>
|
|
@@ -10340,7 +10397,7 @@
|
|
|
10340
10397
|
<ul>
|
|
10341
10398
|
<li><a href="https://github.com/nautobot/nautobot/issues/6057">#6057</a> - Enhanced job delete functions to prevent users from deleting system jobs from the UI and the API.</li>
|
|
10342
10399
|
</ul>
|
|
10343
|
-
<h3 id="
|
|
10400
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
10344
10401
|
<ul>
|
|
10345
10402
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
10346
10403
|
<li><a href="https://github.com/nautobot/nautobot/issues/5924">#5924</a> - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.</li>
|
|
@@ -10378,7 +10435,7 @@
|
|
|
10378
10435
|
<ul>
|
|
10379
10436
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Changed default cache timeout for Constance configuration from 1 day to 300 seconds to match other caches.</li>
|
|
10380
10437
|
</ul>
|
|
10381
|
-
<h3 id="
|
|
10438
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
10382
10439
|
<ul>
|
|
10383
10440
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
10384
10441
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
@@ -10404,7 +10461,7 @@
|
|
|
10404
10461
|
<ul>
|
|
10405
10462
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated <code>Django</code> to <code>~4.2.16</code> to address <code>CVE-2024-45230</code> and <code>CVE-2024-45231</code>.</li>
|
|
10406
10463
|
</ul>
|
|
10407
|
-
<h3 id="
|
|
10464
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
10408
10465
|
<ul>
|
|
10409
10466
|
<li><a href="https://github.com/nautobot/nautobot/issues/6184">#6184</a> - Fixed an exception in <code>extras.models.groups._map_filter_fields</code> method when certain App <code>filter_extensions</code> were present.</li>
|
|
10410
10467
|
<li><a href="https://github.com/nautobot/nautobot/issues/6190">#6190</a> - Added <code>display</code> property to Prefix to display its namespace along with the prefix to allow differentiation between prefixes in the UI.</li>
|
|
@@ -10436,7 +10493,7 @@
|
|
|
10436
10493
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
10437
10494
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
10438
10495
|
</ul>
|
|
10439
|
-
<h3 id="
|
|
10496
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
10440
10497
|
<ul>
|
|
10441
10498
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Corrected several bugs around handling of <code>ScheduledJob</code> execution when <code>settings.TIME_ZONE</code> is other than "UTC".</li>
|
|
10442
10499
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added missing <code>Meta.ordering</code> definition to <code>ScheduledJob</code> model.</li>
|
|
@@ -10463,7 +10520,7 @@
|
|
|
10463
10520
|
<ul>
|
|
10464
10521
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
10465
10522
|
</ul>
|
|
10466
|
-
<h3 id="
|
|
10523
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
10467
10524
|
<ul>
|
|
10468
10525
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Fixed <code>Device</code> model <code>clean()</code> validation logic to allow user to specify a software version on a device without specifying any software image files.</li>
|
|
10469
10526
|
<li><a href="https://github.com/nautobot/nautobot/issues/6096">#6096</a> - Updated CloudAccount UI: Set the <code>secrets_group</code> form field to be optional.</li>
|
|
@@ -10503,7 +10560,7 @@
|
|
|
10503
10560
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
10504
10561
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
10505
10562
|
</ul>
|
|
10506
|
-
<h3 id="
|
|
10563
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
10507
10564
|
<ul>
|
|
10508
10565
|
<li><a href="https://github.com/nautobot/nautobot/issues/5967">#5967</a> - Fixed a regression in the display of custom fields in object-edit forms.</li>
|
|
10509
10566
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -10633,7 +10690,7 @@
|
|
|
10633
10690
|
<li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Removed <code>DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> setting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation.</li>
|
|
10634
10691
|
<li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Removed the <code>StaticGroup</code> model added in #5472, replacing it with a subtype of the <code>DynamicGroup</code> model.</li>
|
|
10635
10692
|
</ul>
|
|
10636
|
-
<h3 id="
|
|
10693
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
10637
10694
|
<ul>
|
|
10638
10695
|
<li><a href="https://github.com/nautobot/nautobot/issues/2352">#2352</a> - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.</li>
|
|
10639
10696
|
<li><a href="https://github.com/nautobot/nautobot/issues/5123">#5123</a> - Fixed an unhandled <code>ValueError</code> when filtering on <code>vlans</code> by their UUID rather than their VLAN ID.</li>
|