nautobot 2.3.15__py3-none-any.whl → 2.3.16__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/circuits/views.py +3 -3
- nautobot/cloud/models.py +1 -1
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/serializers.py +9 -9
- nautobot/core/api/views.py +3 -2
- nautobot/core/apps/__init__.py +5 -2
- nautobot/core/celery/schedulers.py +1 -1
- nautobot/core/filters.py +19 -16
- nautobot/core/forms/fields.py +5 -5
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +4 -4
- nautobot/core/jobs/cleanup.py +1 -1
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +1 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +2 -2
- nautobot/core/tables.py +5 -5
- nautobot/core/testing/filters.py +7 -3
- nautobot/core/testing/views.py +5 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/views/generic.py +51 -43
- nautobot/core/views/mixins.py +21 -11
- nautobot/dcim/api/serializers.py +48 -48
- nautobot/dcim/forms.py +2 -0
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +1 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tests/test_filters.py +1 -0
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_models.py +4 -1
- nautobot/dcim/views.py +1 -1
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +72 -69
- nautobot/extras/api/views.py +4 -4
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +5 -5
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/models/groups.py +13 -9
- nautobot/extras/models/jobs.py +4 -4
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/plugins/views.py +1 -1
- nautobot/extras/tables.py +5 -5
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/test_api.py +13 -13
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_datasources.py +2 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_jobs.py +11 -11
- nautobot/extras/tests/test_models.py +10 -10
- nautobot/extras/tests/test_relationships.py +1 -1
- nautobot/extras/tests/test_views.py +16 -16
- nautobot/extras/views.py +20 -16
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +33 -33
- nautobot/ipam/api/views.py +37 -61
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tests/test_api.py +12 -1
- nautobot/ipam/tests/test_forms.py +51 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_querysets.py +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +2 -2
- nautobot/project-static/docs/release-notes/version-2.3.html +181 -99
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +270 -270
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +4 -4
- nautobot/users/api/views.py +1 -1
- nautobot/virtualization/api/serializers.py +4 -4
- {nautobot-2.3.15.dist-info → nautobot-2.3.16.dist-info}/METADATA +1 -1
- {nautobot-2.3.15.dist-info → nautobot-2.3.16.dist-info}/RECORD +106 -106
- {nautobot-2.3.15.dist-info → nautobot-2.3.16.dist-info}/WHEEL +1 -1
- {nautobot-2.3.15.dist-info → nautobot-2.3.16.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.15.dist-info → nautobot-2.3.16.dist-info}/NOTICE +0 -0
- {nautobot-2.3.15.dist-info → nautobot-2.3.16.dist-info}/entry_points.txt +0 -0
|
@@ -8254,6 +8254,39 @@
|
|
|
8254
8254
|
</ul>
|
|
8255
8255
|
</nav>
|
|
8256
8256
|
|
|
8257
|
+
</li>
|
|
8258
|
+
|
|
8259
|
+
<li class="md-nav__item">
|
|
8260
|
+
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
8261
|
+
<span class="md-ellipsis">
|
|
8262
|
+
v2.3.16 (2025-01-06)
|
|
8263
|
+
</span>
|
|
8264
|
+
</a>
|
|
8265
|
+
|
|
8266
|
+
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
8267
|
+
<ul class="md-nav__list">
|
|
8268
|
+
|
|
8269
|
+
<li class="md-nav__item">
|
|
8270
|
+
<a href="#fixed" class="md-nav__link">
|
|
8271
|
+
<span class="md-ellipsis">
|
|
8272
|
+
Fixed
|
|
8273
|
+
</span>
|
|
8274
|
+
</a>
|
|
8275
|
+
|
|
8276
|
+
</li>
|
|
8277
|
+
|
|
8278
|
+
<li class="md-nav__item">
|
|
8279
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8280
|
+
<span class="md-ellipsis">
|
|
8281
|
+
Housekeeping
|
|
8282
|
+
</span>
|
|
8283
|
+
</a>
|
|
8284
|
+
|
|
8285
|
+
</li>
|
|
8286
|
+
|
|
8287
|
+
</ul>
|
|
8288
|
+
</nav>
|
|
8289
|
+
|
|
8257
8290
|
</li>
|
|
8258
8291
|
|
|
8259
8292
|
<li class="md-nav__item">
|
|
@@ -8294,7 +8327,7 @@
|
|
|
8294
8327
|
</li>
|
|
8295
8328
|
|
|
8296
8329
|
<li class="md-nav__item">
|
|
8297
|
-
<a href="#
|
|
8330
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8298
8331
|
<span class="md-ellipsis">
|
|
8299
8332
|
Fixed
|
|
8300
8333
|
</span>
|
|
@@ -8312,7 +8345,7 @@
|
|
|
8312
8345
|
</li>
|
|
8313
8346
|
|
|
8314
8347
|
<li class="md-nav__item">
|
|
8315
|
-
<a href="#
|
|
8348
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8316
8349
|
<span class="md-ellipsis">
|
|
8317
8350
|
Housekeeping
|
|
8318
8351
|
</span>
|
|
@@ -8354,7 +8387,7 @@
|
|
|
8354
8387
|
</li>
|
|
8355
8388
|
|
|
8356
8389
|
<li class="md-nav__item">
|
|
8357
|
-
<a href="#
|
|
8390
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8358
8391
|
<span class="md-ellipsis">
|
|
8359
8392
|
Fixed
|
|
8360
8393
|
</span>
|
|
@@ -8372,7 +8405,7 @@
|
|
|
8372
8405
|
</li>
|
|
8373
8406
|
|
|
8374
8407
|
<li class="md-nav__item">
|
|
8375
|
-
<a href="#
|
|
8408
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8376
8409
|
<span class="md-ellipsis">
|
|
8377
8410
|
Housekeeping
|
|
8378
8411
|
</span>
|
|
@@ -8423,7 +8456,7 @@
|
|
|
8423
8456
|
</li>
|
|
8424
8457
|
|
|
8425
8458
|
<li class="md-nav__item">
|
|
8426
|
-
<a href="#
|
|
8459
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8427
8460
|
<span class="md-ellipsis">
|
|
8428
8461
|
Fixed
|
|
8429
8462
|
</span>
|
|
@@ -8450,7 +8483,7 @@
|
|
|
8450
8483
|
</li>
|
|
8451
8484
|
|
|
8452
8485
|
<li class="md-nav__item">
|
|
8453
|
-
<a href="#
|
|
8486
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8454
8487
|
<span class="md-ellipsis">
|
|
8455
8488
|
Housekeeping
|
|
8456
8489
|
</span>
|
|
@@ -8483,7 +8516,7 @@
|
|
|
8483
8516
|
</li>
|
|
8484
8517
|
|
|
8485
8518
|
<li class="md-nav__item">
|
|
8486
|
-
<a href="#
|
|
8519
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8487
8520
|
<span class="md-ellipsis">
|
|
8488
8521
|
Fixed
|
|
8489
8522
|
</span>
|
|
@@ -8510,7 +8543,7 @@
|
|
|
8510
8543
|
</li>
|
|
8511
8544
|
|
|
8512
8545
|
<li class="md-nav__item">
|
|
8513
|
-
<a href="#
|
|
8546
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8514
8547
|
<span class="md-ellipsis">
|
|
8515
8548
|
Housekeeping
|
|
8516
8549
|
</span>
|
|
@@ -8552,7 +8585,7 @@
|
|
|
8552
8585
|
</li>
|
|
8553
8586
|
|
|
8554
8587
|
<li class="md-nav__item">
|
|
8555
|
-
<a href="#
|
|
8588
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8556
8589
|
<span class="md-ellipsis">
|
|
8557
8590
|
Fixed
|
|
8558
8591
|
</span>
|
|
@@ -8570,7 +8603,7 @@
|
|
|
8570
8603
|
</li>
|
|
8571
8604
|
|
|
8572
8605
|
<li class="md-nav__item">
|
|
8573
|
-
<a href="#
|
|
8606
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
8574
8607
|
<span class="md-ellipsis">
|
|
8575
8608
|
Housekeeping
|
|
8576
8609
|
</span>
|
|
@@ -8612,7 +8645,7 @@
|
|
|
8612
8645
|
</li>
|
|
8613
8646
|
|
|
8614
8647
|
<li class="md-nav__item">
|
|
8615
|
-
<a href="#
|
|
8648
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8616
8649
|
<span class="md-ellipsis">
|
|
8617
8650
|
Fixed
|
|
8618
8651
|
</span>
|
|
@@ -8630,7 +8663,7 @@
|
|
|
8630
8663
|
</li>
|
|
8631
8664
|
|
|
8632
8665
|
<li class="md-nav__item">
|
|
8633
|
-
<a href="#
|
|
8666
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
8634
8667
|
<span class="md-ellipsis">
|
|
8635
8668
|
Housekeeping
|
|
8636
8669
|
</span>
|
|
@@ -8672,7 +8705,7 @@
|
|
|
8672
8705
|
</li>
|
|
8673
8706
|
|
|
8674
8707
|
<li class="md-nav__item">
|
|
8675
|
-
<a href="#
|
|
8708
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8676
8709
|
<span class="md-ellipsis">
|
|
8677
8710
|
Fixed
|
|
8678
8711
|
</span>
|
|
@@ -8690,7 +8723,7 @@
|
|
|
8690
8723
|
</li>
|
|
8691
8724
|
|
|
8692
8725
|
<li class="md-nav__item">
|
|
8693
|
-
<a href="#
|
|
8726
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
8694
8727
|
<span class="md-ellipsis">
|
|
8695
8728
|
Housekeeping
|
|
8696
8729
|
</span>
|
|
@@ -8714,7 +8747,7 @@
|
|
|
8714
8747
|
<ul class="md-nav__list">
|
|
8715
8748
|
|
|
8716
8749
|
<li class="md-nav__item">
|
|
8717
|
-
<a href="#
|
|
8750
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8718
8751
|
<span class="md-ellipsis">
|
|
8719
8752
|
Fixed
|
|
8720
8753
|
</span>
|
|
@@ -8756,7 +8789,7 @@
|
|
|
8756
8789
|
</li>
|
|
8757
8790
|
|
|
8758
8791
|
<li class="md-nav__item">
|
|
8759
|
-
<a href="#
|
|
8792
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
8760
8793
|
<span class="md-ellipsis">
|
|
8761
8794
|
Fixed
|
|
8762
8795
|
</span>
|
|
@@ -8774,7 +8807,7 @@
|
|
|
8774
8807
|
</li>
|
|
8775
8808
|
|
|
8776
8809
|
<li class="md-nav__item">
|
|
8777
|
-
<a href="#
|
|
8810
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
8778
8811
|
<span class="md-ellipsis">
|
|
8779
8812
|
Housekeeping
|
|
8780
8813
|
</span>
|
|
@@ -8807,7 +8840,7 @@
|
|
|
8807
8840
|
</li>
|
|
8808
8841
|
|
|
8809
8842
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
8843
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
8811
8844
|
<span class="md-ellipsis">
|
|
8812
8845
|
Fixed
|
|
8813
8846
|
</span>
|
|
@@ -8825,7 +8858,7 @@
|
|
|
8825
8858
|
</li>
|
|
8826
8859
|
|
|
8827
8860
|
<li class="md-nav__item">
|
|
8828
|
-
<a href="#
|
|
8861
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
8829
8862
|
<span class="md-ellipsis">
|
|
8830
8863
|
Housekeeping
|
|
8831
8864
|
</span>
|
|
@@ -8867,7 +8900,7 @@
|
|
|
8867
8900
|
</li>
|
|
8868
8901
|
|
|
8869
8902
|
<li class="md-nav__item">
|
|
8870
|
-
<a href="#
|
|
8903
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
8871
8904
|
<span class="md-ellipsis">
|
|
8872
8905
|
Fixed
|
|
8873
8906
|
</span>
|
|
@@ -8894,7 +8927,7 @@
|
|
|
8894
8927
|
</li>
|
|
8895
8928
|
|
|
8896
8929
|
<li class="md-nav__item">
|
|
8897
|
-
<a href="#
|
|
8930
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
8898
8931
|
<span class="md-ellipsis">
|
|
8899
8932
|
Housekeeping
|
|
8900
8933
|
</span>
|
|
@@ -8936,7 +8969,7 @@
|
|
|
8936
8969
|
</li>
|
|
8937
8970
|
|
|
8938
8971
|
<li class="md-nav__item">
|
|
8939
|
-
<a href="#
|
|
8972
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
8940
8973
|
<span class="md-ellipsis">
|
|
8941
8974
|
Fixed
|
|
8942
8975
|
</span>
|
|
@@ -8954,7 +8987,7 @@
|
|
|
8954
8987
|
</li>
|
|
8955
8988
|
|
|
8956
8989
|
<li class="md-nav__item">
|
|
8957
|
-
<a href="#
|
|
8990
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
8958
8991
|
<span class="md-ellipsis">
|
|
8959
8992
|
Housekeeping
|
|
8960
8993
|
</span>
|
|
@@ -8987,7 +9020,7 @@
|
|
|
8987
9020
|
</li>
|
|
8988
9021
|
|
|
8989
9022
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#
|
|
9023
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
8991
9024
|
<span class="md-ellipsis">
|
|
8992
9025
|
Fixed
|
|
8993
9026
|
</span>
|
|
@@ -9005,7 +9038,7 @@
|
|
|
9005
9038
|
</li>
|
|
9006
9039
|
|
|
9007
9040
|
<li class="md-nav__item">
|
|
9008
|
-
<a href="#
|
|
9041
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
9009
9042
|
<span class="md-ellipsis">
|
|
9010
9043
|
Housekeeping
|
|
9011
9044
|
</span>
|
|
@@ -9047,7 +9080,7 @@
|
|
|
9047
9080
|
</li>
|
|
9048
9081
|
|
|
9049
9082
|
<li class="md-nav__item">
|
|
9050
|
-
<a href="#
|
|
9083
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
9051
9084
|
<span class="md-ellipsis">
|
|
9052
9085
|
Fixed
|
|
9053
9086
|
</span>
|
|
@@ -9056,7 +9089,7 @@
|
|
|
9056
9089
|
</li>
|
|
9057
9090
|
|
|
9058
9091
|
<li class="md-nav__item">
|
|
9059
|
-
<a href="#
|
|
9092
|
+
<a href="#housekeeping_13" class="md-nav__link">
|
|
9060
9093
|
<span class="md-ellipsis">
|
|
9061
9094
|
Housekeeping
|
|
9062
9095
|
</span>
|
|
@@ -9098,7 +9131,7 @@
|
|
|
9098
9131
|
</li>
|
|
9099
9132
|
|
|
9100
9133
|
<li class="md-nav__item">
|
|
9101
|
-
<a href="#
|
|
9134
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
9102
9135
|
<span class="md-ellipsis">
|
|
9103
9136
|
Fixed
|
|
9104
9137
|
</span>
|
|
@@ -9107,7 +9140,7 @@
|
|
|
9107
9140
|
</li>
|
|
9108
9141
|
|
|
9109
9142
|
<li class="md-nav__item">
|
|
9110
|
-
<a href="#
|
|
9143
|
+
<a href="#housekeeping_14" class="md-nav__link">
|
|
9111
9144
|
<span class="md-ellipsis">
|
|
9112
9145
|
Housekeeping
|
|
9113
9146
|
</span>
|
|
@@ -9167,7 +9200,7 @@
|
|
|
9167
9200
|
</li>
|
|
9168
9201
|
|
|
9169
9202
|
<li class="md-nav__item">
|
|
9170
|
-
<a href="#
|
|
9203
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
9171
9204
|
<span class="md-ellipsis">
|
|
9172
9205
|
Fixed
|
|
9173
9206
|
</span>
|
|
@@ -9185,7 +9218,7 @@
|
|
|
9185
9218
|
</li>
|
|
9186
9219
|
|
|
9187
9220
|
<li class="md-nav__item">
|
|
9188
|
-
<a href="#
|
|
9221
|
+
<a href="#housekeeping_15" class="md-nav__link">
|
|
9189
9222
|
<span class="md-ellipsis">
|
|
9190
9223
|
Housekeeping
|
|
9191
9224
|
</span>
|
|
@@ -9254,7 +9287,7 @@
|
|
|
9254
9287
|
</li>
|
|
9255
9288
|
|
|
9256
9289
|
<li class="md-nav__item">
|
|
9257
|
-
<a href="#
|
|
9290
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
9258
9291
|
<span class="md-ellipsis">
|
|
9259
9292
|
Fixed
|
|
9260
9293
|
</span>
|
|
@@ -9281,7 +9314,7 @@
|
|
|
9281
9314
|
</li>
|
|
9282
9315
|
|
|
9283
9316
|
<li class="md-nav__item">
|
|
9284
|
-
<a href="#
|
|
9317
|
+
<a href="#housekeeping_16" class="md-nav__link">
|
|
9285
9318
|
<span class="md-ellipsis">
|
|
9286
9319
|
Housekeeping
|
|
9287
9320
|
</span>
|
|
@@ -10092,6 +10125,39 @@
|
|
|
10092
10125
|
</ul>
|
|
10093
10126
|
</nav>
|
|
10094
10127
|
|
|
10128
|
+
</li>
|
|
10129
|
+
|
|
10130
|
+
<li class="md-nav__item">
|
|
10131
|
+
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
10132
|
+
<span class="md-ellipsis">
|
|
10133
|
+
v2.3.16 (2025-01-06)
|
|
10134
|
+
</span>
|
|
10135
|
+
</a>
|
|
10136
|
+
|
|
10137
|
+
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
10138
|
+
<ul class="md-nav__list">
|
|
10139
|
+
|
|
10140
|
+
<li class="md-nav__item">
|
|
10141
|
+
<a href="#fixed" class="md-nav__link">
|
|
10142
|
+
<span class="md-ellipsis">
|
|
10143
|
+
Fixed
|
|
10144
|
+
</span>
|
|
10145
|
+
</a>
|
|
10146
|
+
|
|
10147
|
+
</li>
|
|
10148
|
+
|
|
10149
|
+
<li class="md-nav__item">
|
|
10150
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10151
|
+
<span class="md-ellipsis">
|
|
10152
|
+
Housekeeping
|
|
10153
|
+
</span>
|
|
10154
|
+
</a>
|
|
10155
|
+
|
|
10156
|
+
</li>
|
|
10157
|
+
|
|
10158
|
+
</ul>
|
|
10159
|
+
</nav>
|
|
10160
|
+
|
|
10095
10161
|
</li>
|
|
10096
10162
|
|
|
10097
10163
|
<li class="md-nav__item">
|
|
@@ -10132,7 +10198,7 @@
|
|
|
10132
10198
|
</li>
|
|
10133
10199
|
|
|
10134
10200
|
<li class="md-nav__item">
|
|
10135
|
-
<a href="#
|
|
10201
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10136
10202
|
<span class="md-ellipsis">
|
|
10137
10203
|
Fixed
|
|
10138
10204
|
</span>
|
|
@@ -10150,7 +10216,7 @@
|
|
|
10150
10216
|
</li>
|
|
10151
10217
|
|
|
10152
10218
|
<li class="md-nav__item">
|
|
10153
|
-
<a href="#
|
|
10219
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10154
10220
|
<span class="md-ellipsis">
|
|
10155
10221
|
Housekeeping
|
|
10156
10222
|
</span>
|
|
@@ -10192,7 +10258,7 @@
|
|
|
10192
10258
|
</li>
|
|
10193
10259
|
|
|
10194
10260
|
<li class="md-nav__item">
|
|
10195
|
-
<a href="#
|
|
10261
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10196
10262
|
<span class="md-ellipsis">
|
|
10197
10263
|
Fixed
|
|
10198
10264
|
</span>
|
|
@@ -10210,7 +10276,7 @@
|
|
|
10210
10276
|
</li>
|
|
10211
10277
|
|
|
10212
10278
|
<li class="md-nav__item">
|
|
10213
|
-
<a href="#
|
|
10279
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10214
10280
|
<span class="md-ellipsis">
|
|
10215
10281
|
Housekeeping
|
|
10216
10282
|
</span>
|
|
@@ -10261,7 +10327,7 @@
|
|
|
10261
10327
|
</li>
|
|
10262
10328
|
|
|
10263
10329
|
<li class="md-nav__item">
|
|
10264
|
-
<a href="#
|
|
10330
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10265
10331
|
<span class="md-ellipsis">
|
|
10266
10332
|
Fixed
|
|
10267
10333
|
</span>
|
|
@@ -10288,7 +10354,7 @@
|
|
|
10288
10354
|
</li>
|
|
10289
10355
|
|
|
10290
10356
|
<li class="md-nav__item">
|
|
10291
|
-
<a href="#
|
|
10357
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10292
10358
|
<span class="md-ellipsis">
|
|
10293
10359
|
Housekeeping
|
|
10294
10360
|
</span>
|
|
@@ -10321,7 +10387,7 @@
|
|
|
10321
10387
|
</li>
|
|
10322
10388
|
|
|
10323
10389
|
<li class="md-nav__item">
|
|
10324
|
-
<a href="#
|
|
10390
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10325
10391
|
<span class="md-ellipsis">
|
|
10326
10392
|
Fixed
|
|
10327
10393
|
</span>
|
|
@@ -10348,7 +10414,7 @@
|
|
|
10348
10414
|
</li>
|
|
10349
10415
|
|
|
10350
10416
|
<li class="md-nav__item">
|
|
10351
|
-
<a href="#
|
|
10417
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10352
10418
|
<span class="md-ellipsis">
|
|
10353
10419
|
Housekeeping
|
|
10354
10420
|
</span>
|
|
@@ -10390,7 +10456,7 @@
|
|
|
10390
10456
|
</li>
|
|
10391
10457
|
|
|
10392
10458
|
<li class="md-nav__item">
|
|
10393
|
-
<a href="#
|
|
10459
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10394
10460
|
<span class="md-ellipsis">
|
|
10395
10461
|
Fixed
|
|
10396
10462
|
</span>
|
|
@@ -10408,7 +10474,7 @@
|
|
|
10408
10474
|
</li>
|
|
10409
10475
|
|
|
10410
10476
|
<li class="md-nav__item">
|
|
10411
|
-
<a href="#
|
|
10477
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10412
10478
|
<span class="md-ellipsis">
|
|
10413
10479
|
Housekeeping
|
|
10414
10480
|
</span>
|
|
@@ -10450,7 +10516,7 @@
|
|
|
10450
10516
|
</li>
|
|
10451
10517
|
|
|
10452
10518
|
<li class="md-nav__item">
|
|
10453
|
-
<a href="#
|
|
10519
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10454
10520
|
<span class="md-ellipsis">
|
|
10455
10521
|
Fixed
|
|
10456
10522
|
</span>
|
|
@@ -10468,7 +10534,7 @@
|
|
|
10468
10534
|
</li>
|
|
10469
10535
|
|
|
10470
10536
|
<li class="md-nav__item">
|
|
10471
|
-
<a href="#
|
|
10537
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
10472
10538
|
<span class="md-ellipsis">
|
|
10473
10539
|
Housekeeping
|
|
10474
10540
|
</span>
|
|
@@ -10510,7 +10576,7 @@
|
|
|
10510
10576
|
</li>
|
|
10511
10577
|
|
|
10512
10578
|
<li class="md-nav__item">
|
|
10513
|
-
<a href="#
|
|
10579
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10514
10580
|
<span class="md-ellipsis">
|
|
10515
10581
|
Fixed
|
|
10516
10582
|
</span>
|
|
@@ -10528,7 +10594,7 @@
|
|
|
10528
10594
|
</li>
|
|
10529
10595
|
|
|
10530
10596
|
<li class="md-nav__item">
|
|
10531
|
-
<a href="#
|
|
10597
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10532
10598
|
<span class="md-ellipsis">
|
|
10533
10599
|
Housekeeping
|
|
10534
10600
|
</span>
|
|
@@ -10552,7 +10618,7 @@
|
|
|
10552
10618
|
<ul class="md-nav__list">
|
|
10553
10619
|
|
|
10554
10620
|
<li class="md-nav__item">
|
|
10555
|
-
<a href="#
|
|
10621
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10556
10622
|
<span class="md-ellipsis">
|
|
10557
10623
|
Fixed
|
|
10558
10624
|
</span>
|
|
@@ -10594,7 +10660,7 @@
|
|
|
10594
10660
|
</li>
|
|
10595
10661
|
|
|
10596
10662
|
<li class="md-nav__item">
|
|
10597
|
-
<a href="#
|
|
10663
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10598
10664
|
<span class="md-ellipsis">
|
|
10599
10665
|
Fixed
|
|
10600
10666
|
</span>
|
|
@@ -10612,7 +10678,7 @@
|
|
|
10612
10678
|
</li>
|
|
10613
10679
|
|
|
10614
10680
|
<li class="md-nav__item">
|
|
10615
|
-
<a href="#
|
|
10681
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
10616
10682
|
<span class="md-ellipsis">
|
|
10617
10683
|
Housekeeping
|
|
10618
10684
|
</span>
|
|
@@ -10645,7 +10711,7 @@
|
|
|
10645
10711
|
</li>
|
|
10646
10712
|
|
|
10647
10713
|
<li class="md-nav__item">
|
|
10648
|
-
<a href="#
|
|
10714
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10649
10715
|
<span class="md-ellipsis">
|
|
10650
10716
|
Fixed
|
|
10651
10717
|
</span>
|
|
@@ -10663,7 +10729,7 @@
|
|
|
10663
10729
|
</li>
|
|
10664
10730
|
|
|
10665
10731
|
<li class="md-nav__item">
|
|
10666
|
-
<a href="#
|
|
10732
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
10667
10733
|
<span class="md-ellipsis">
|
|
10668
10734
|
Housekeeping
|
|
10669
10735
|
</span>
|
|
@@ -10705,7 +10771,7 @@
|
|
|
10705
10771
|
</li>
|
|
10706
10772
|
|
|
10707
10773
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#
|
|
10774
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
10709
10775
|
<span class="md-ellipsis">
|
|
10710
10776
|
Fixed
|
|
10711
10777
|
</span>
|
|
@@ -10732,7 +10798,7 @@
|
|
|
10732
10798
|
</li>
|
|
10733
10799
|
|
|
10734
10800
|
<li class="md-nav__item">
|
|
10735
|
-
<a href="#
|
|
10801
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
10736
10802
|
<span class="md-ellipsis">
|
|
10737
10803
|
Housekeeping
|
|
10738
10804
|
</span>
|
|
@@ -10774,7 +10840,7 @@
|
|
|
10774
10840
|
</li>
|
|
10775
10841
|
|
|
10776
10842
|
<li class="md-nav__item">
|
|
10777
|
-
<a href="#
|
|
10843
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
10778
10844
|
<span class="md-ellipsis">
|
|
10779
10845
|
Fixed
|
|
10780
10846
|
</span>
|
|
@@ -10792,7 +10858,7 @@
|
|
|
10792
10858
|
</li>
|
|
10793
10859
|
|
|
10794
10860
|
<li class="md-nav__item">
|
|
10795
|
-
<a href="#
|
|
10861
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
10796
10862
|
<span class="md-ellipsis">
|
|
10797
10863
|
Housekeeping
|
|
10798
10864
|
</span>
|
|
@@ -10825,7 +10891,7 @@
|
|
|
10825
10891
|
</li>
|
|
10826
10892
|
|
|
10827
10893
|
<li class="md-nav__item">
|
|
10828
|
-
<a href="#
|
|
10894
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
10829
10895
|
<span class="md-ellipsis">
|
|
10830
10896
|
Fixed
|
|
10831
10897
|
</span>
|
|
@@ -10843,7 +10909,7 @@
|
|
|
10843
10909
|
</li>
|
|
10844
10910
|
|
|
10845
10911
|
<li class="md-nav__item">
|
|
10846
|
-
<a href="#
|
|
10912
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
10847
10913
|
<span class="md-ellipsis">
|
|
10848
10914
|
Housekeeping
|
|
10849
10915
|
</span>
|
|
@@ -10885,7 +10951,7 @@
|
|
|
10885
10951
|
</li>
|
|
10886
10952
|
|
|
10887
10953
|
<li class="md-nav__item">
|
|
10888
|
-
<a href="#
|
|
10954
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
10889
10955
|
<span class="md-ellipsis">
|
|
10890
10956
|
Fixed
|
|
10891
10957
|
</span>
|
|
@@ -10894,7 +10960,7 @@
|
|
|
10894
10960
|
</li>
|
|
10895
10961
|
|
|
10896
10962
|
<li class="md-nav__item">
|
|
10897
|
-
<a href="#
|
|
10963
|
+
<a href="#housekeeping_13" class="md-nav__link">
|
|
10898
10964
|
<span class="md-ellipsis">
|
|
10899
10965
|
Housekeeping
|
|
10900
10966
|
</span>
|
|
@@ -10936,7 +11002,7 @@
|
|
|
10936
11002
|
</li>
|
|
10937
11003
|
|
|
10938
11004
|
<li class="md-nav__item">
|
|
10939
|
-
<a href="#
|
|
11005
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
10940
11006
|
<span class="md-ellipsis">
|
|
10941
11007
|
Fixed
|
|
10942
11008
|
</span>
|
|
@@ -10945,7 +11011,7 @@
|
|
|
10945
11011
|
</li>
|
|
10946
11012
|
|
|
10947
11013
|
<li class="md-nav__item">
|
|
10948
|
-
<a href="#
|
|
11014
|
+
<a href="#housekeeping_14" class="md-nav__link">
|
|
10949
11015
|
<span class="md-ellipsis">
|
|
10950
11016
|
Housekeeping
|
|
10951
11017
|
</span>
|
|
@@ -11005,7 +11071,7 @@
|
|
|
11005
11071
|
</li>
|
|
11006
11072
|
|
|
11007
11073
|
<li class="md-nav__item">
|
|
11008
|
-
<a href="#
|
|
11074
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
11009
11075
|
<span class="md-ellipsis">
|
|
11010
11076
|
Fixed
|
|
11011
11077
|
</span>
|
|
@@ -11023,7 +11089,7 @@
|
|
|
11023
11089
|
</li>
|
|
11024
11090
|
|
|
11025
11091
|
<li class="md-nav__item">
|
|
11026
|
-
<a href="#
|
|
11092
|
+
<a href="#housekeeping_15" class="md-nav__link">
|
|
11027
11093
|
<span class="md-ellipsis">
|
|
11028
11094
|
Housekeeping
|
|
11029
11095
|
</span>
|
|
@@ -11092,7 +11158,7 @@
|
|
|
11092
11158
|
</li>
|
|
11093
11159
|
|
|
11094
11160
|
<li class="md-nav__item">
|
|
11095
|
-
<a href="#
|
|
11161
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
11096
11162
|
<span class="md-ellipsis">
|
|
11097
11163
|
Fixed
|
|
11098
11164
|
</span>
|
|
@@ -11119,7 +11185,7 @@
|
|
|
11119
11185
|
</li>
|
|
11120
11186
|
|
|
11121
11187
|
<li class="md-nav__item">
|
|
11122
|
-
<a href="#
|
|
11188
|
+
<a href="#housekeeping_16" class="md-nav__link">
|
|
11123
11189
|
<span class="md-ellipsis">
|
|
11124
11190
|
Housekeeping
|
|
11125
11191
|
</span>
|
|
@@ -11242,6 +11308,22 @@
|
|
|
11242
11308
|
<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>
|
|
11243
11309
|
<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>
|
|
11244
11310
|
<!-- towncrier release notes start -->
|
|
11311
|
+
<h2 id="v2316-2025-01-06">v2.3.16 (2025-01-06)<a class="headerlink" href="#v2316-2025-01-06" title="Permanent link">¶</a></h2>
|
|
11312
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11313
|
+
<ul>
|
|
11314
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5805">#5805</a> - Enabled extended filter lookup expressions of the <code>serial</code> filter for Device, Rack, and InventoryItem.</li>
|
|
11315
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5831">#5831</a> - Fixed an issue where the error message for missing custom job templates incorrectly reported "extras/job.html" instead of the actual missing template name.</li>
|
|
11316
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5882">#5882</a> - Fixed <code>PowerOutletTemplateTable</code> to use <code>power_port_template</code> instead of the incorrect field <code>power_port</code>.</li>
|
|
11317
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5882">#5882</a> - Fixed <code>FrontPortTemplateTable</code> to use <code>rear_port_template</code> instead of the incorrect field <code>rear_port</code>.</li>
|
|
11318
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6527">#6527</a> - Disabled (unsupported) sorting by the <code>Device</code> column in Console Connections, Power Connections, and Interface Connections list views.</li>
|
|
11319
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6669">#6669</a> - Removed the need for <code>available-prefixes</code>, <code>available-ips</code>, and <code>available-vlans</code> API endpoints to run validation multiple times.</li>
|
|
11320
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6676">#6676</a> - Resolved issue with IPAddressQuerySet get_or_create method signature not matching the base method signature.</li>
|
|
11321
|
+
</ul>
|
|
11322
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11323
|
+
<ul>
|
|
11324
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6714">#6714</a> - Enabled and addressed pylint checkers <code>arguments-differ</code>, <code>arguments-renamed</code>, <code>exec-used</code>, <code>hard-coded-auth-user</code>, <code>super-init-not-called</code>.</li>
|
|
11325
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6722">#6722</a> - Enabled pylint <code>not-callable</code> and <code>no-member</code> checkers and addressed issues reported thereby.</li>
|
|
11326
|
+
</ul>
|
|
11245
11327
|
<h2 id="v2315-2025-01-02">v2.3.15 (2025-01-02)<a class="headerlink" href="#v2315-2025-01-02" title="Permanent link">¶</a></h2>
|
|
11246
11328
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11247
11329
|
<ul>
|
|
@@ -11255,7 +11337,7 @@
|
|
|
11255
11337
|
<ul>
|
|
11256
11338
|
<li><a href="https://github.com/nautobot/nautobot/issues/6583">#6583</a> - Changed <code>available-vlans</code> API endpoint to additionally require <code>ipam.view_vlan</code> permission to view available VLANs under VLAN Group.</li>
|
|
11257
11339
|
</ul>
|
|
11258
|
-
<h3 id="
|
|
11340
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11259
11341
|
<ul>
|
|
11260
11342
|
<li><a href="https://github.com/nautobot/nautobot/issues/5545">#5545</a> - Fixed an issue in Dynamic Group Edit View where saving a valid choice in a Select-type CustomField triggered an error.</li>
|
|
11261
11343
|
<li><a href="https://github.com/nautobot/nautobot/issues/6583">#6583</a> - Fixed <code>available-vlans</code>, <code>available-ips</code>, <code>available-prefixes</code> API endpoints to check object-level constrained permissions.</li>
|
|
@@ -11266,7 +11348,7 @@
|
|
|
11266
11348
|
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>nh3</code> dependency to <code>~0.2.20</code>.</li>
|
|
11267
11349
|
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>django-tables2</code> dependency to <code>~2.7.4</code> in Python 3.9 and later, and pinned it to <code>==2.7.0</code> under Python 3.8.</li>
|
|
11268
11350
|
</ul>
|
|
11269
|
-
<h3 id="
|
|
11351
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11270
11352
|
<ul>
|
|
11271
11353
|
<li><a href="https://github.com/nautobot/nautobot/issues/6688">#6688</a> - Cleaned-up documentation, misc fixes for VSCode DevContainer workflow.</li>
|
|
11272
11354
|
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.49</code>.</li>
|
|
@@ -11284,7 +11366,7 @@
|
|
|
11284
11366
|
<li><a href="https://github.com/nautobot/nautobot/issues/6531">#6531</a> - Restrict the <code>id</code> filter field to use to only the <code>__n</code> (negation) lookup filter.</li>
|
|
11285
11367
|
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Changed the save method of the <code>Prefix</code> model to reparent subnets and IPs only when the <code>network</code>, <code>namespace</code>, or <code>prefix_length</code> fields are updated.</li>
|
|
11286
11368
|
</ul>
|
|
11287
|
-
<h3 id="
|
|
11369
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11288
11370
|
<ul>
|
|
11289
11371
|
<li><a href="https://github.com/nautobot/nautobot/issues/4056">#4056</a> - Fixed filter of add_tags and remove_tags of bulkedit based on content type</li>
|
|
11290
11372
|
<li><a href="https://github.com/nautobot/nautobot/issues/6204">#6204</a> - Fixed out-of-memory errors when <code>LogsCleanup</code> system job resulted in cascade deletion of many related objects (such as <code>JobLogEntry</code> or <code>nautobot_ssot.SyncLogEntry</code> records).</li>
|
|
@@ -11298,7 +11380,7 @@
|
|
|
11298
11380
|
<ul>
|
|
11299
11381
|
<li><a href="https://github.com/nautobot/nautobot/issues/6590">#6590</a> - Added an <code>ExampleEverythingJob</code> to the Example App and updated Job developer documentation to reference it as an example.</li>
|
|
11300
11382
|
</ul>
|
|
11301
|
-
<h3 id="
|
|
11383
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11302
11384
|
<ul>
|
|
11303
11385
|
<li><a href="https://github.com/nautobot/nautobot/issues/6657">#6657</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.48</code>.</li>
|
|
11304
11386
|
<li><a href="https://github.com/nautobot/nautobot/issues/6659">#6659</a> - Enhanced development environment and associated <code>invoke</code> tasks to be Nautobot major/minor version aware, such that a different Docker compose <code>project-name</code> (and different local Docker image label) will be used for containers in a <code>develop</code>-based branch versus a <code>next</code>-based branch.</li>
|
|
@@ -11325,7 +11407,7 @@
|
|
|
11325
11407
|
<ul>
|
|
11326
11408
|
<li><a href="https://github.com/nautobot/nautobot/issues/6166">#6166</a> - Enhanced the REST API to generally make it possible to create objects with known ids on request.</li>
|
|
11327
11409
|
</ul>
|
|
11328
|
-
<h3 id="
|
|
11410
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11329
11411
|
<ul>
|
|
11330
11412
|
<li><a href="https://github.com/nautobot/nautobot/issues/3124">#3124</a> - Fixed inability of ImageAttachment and DeviceType API endpoints to accept <code>multipart/form-data</code> file uploads.</li>
|
|
11331
11413
|
<li><a href="https://github.com/nautobot/nautobot/issues/5166">#5166</a> - Fixed a <code>ProgrammingError</code> when applying permissions containing network-address-based constraints.</li>
|
|
@@ -11346,7 +11428,7 @@
|
|
|
11346
11428
|
<li><a href="https://github.com/nautobot/nautobot/issues/6622">#6622</a> - Fixed AzureAD documentation for custom_module logging example.</li>
|
|
11347
11429
|
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed group_sync path in the SSO documentation.</li>
|
|
11348
11430
|
</ul>
|
|
11349
|
-
<h3 id="
|
|
11431
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11350
11432
|
<ul>
|
|
11351
11433
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.47</code>.</li>
|
|
11352
11434
|
</ul>
|
|
@@ -11357,7 +11439,7 @@
|
|
|
11357
11439
|
<li><a href="https://github.com/nautobot/nautobot/issues/6543">#6543</a> - Defined a generic SSO group authentication module that can be shared by any OAuth2/OIDC backend.</li>
|
|
11358
11440
|
<li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
|
|
11359
11441
|
</ul>
|
|
11360
|
-
<h3 id="
|
|
11442
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11361
11443
|
<ul>
|
|
11362
11444
|
<li><a href="https://github.com/nautobot/nautobot/issues/6242">#6242</a> - Fixed "copy" button on Device tabbed views to now only copy the device name.</li>
|
|
11363
11445
|
<li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
|
|
@@ -11379,7 +11461,7 @@
|
|
|
11379
11461
|
<li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
|
|
11380
11462
|
<li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
|
|
11381
11463
|
</ul>
|
|
11382
|
-
<h3 id="
|
|
11464
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11383
11465
|
<ul>
|
|
11384
11466
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated documentation dependencies <code>mkdocs-redirects</code> to <code>1.2.2</code> and <code>mkdocs-material</code> to <code>9.5.46</code>.</li>
|
|
11385
11467
|
<li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
|
|
@@ -11396,7 +11478,7 @@
|
|
|
11396
11478
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Changed most related-object-count table columns (e.g. the "Locations" column in a Prefix table) to, if only a single related record is present (e.g. a single Location is associated with a given Prefix), display that related record directly instead of just displaying <code>1</code>.</li>
|
|
11397
11479
|
<li><a href="https://github.com/nautobot/nautobot/issues/6465">#6465</a> - For bulk edit all objects view, skip rendering the table of related objects in the confirmation page.</li>
|
|
11398
11480
|
</ul>
|
|
11399
|
-
<h3 id="
|
|
11481
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11400
11482
|
<ul>
|
|
11401
11483
|
<li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
|
|
11402
11484
|
<li><a href="https://github.com/nautobot/nautobot/issues/6442">#6442</a> - Fixed an issue where GitLab CI pipelines fail using all versions of official Docker images.</li>
|
|
@@ -11411,7 +11493,7 @@
|
|
|
11411
11493
|
<ul>
|
|
11412
11494
|
<li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
|
|
11413
11495
|
</ul>
|
|
11414
|
-
<h3 id="
|
|
11496
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11415
11497
|
<ul>
|
|
11416
11498
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Added an integration test to create a Manufacturer, DeviceType, LocationType, Location, Role and Device to test the create forms and select2 api form fields are working correctly.</li>
|
|
11417
11499
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
|
|
@@ -11431,7 +11513,7 @@
|
|
|
11431
11513
|
<ul>
|
|
11432
11514
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Increased soft/hard time limits on CustomField provisioning background tasks to 1800 and 2000 seconds respectively.</li>
|
|
11433
11515
|
</ul>
|
|
11434
|
-
<h3 id="
|
|
11516
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11435
11517
|
<ul>
|
|
11436
11518
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Fixed long-running-at-scale transaction lock on records while adding/removing a CustomField definition.</li>
|
|
11437
11519
|
<li><a href="https://github.com/nautobot/nautobot/issues/6441">#6441</a> - Fixed a regression in 2.3.9 that broke the rendering of the Device create/edit form.</li>
|
|
@@ -11440,7 +11522,7 @@
|
|
|
11440
11522
|
<ul>
|
|
11441
11523
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
11442
11524
|
</ul>
|
|
11443
|
-
<h3 id="
|
|
11525
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11444
11526
|
<ul>
|
|
11445
11527
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.42</code>.</li>
|
|
11446
11528
|
</ul>
|
|
@@ -11457,7 +11539,7 @@
|
|
|
11457
11539
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed <code>GitRepositorySync</code> system Job to run atomically (all-or-nothing), such that any failure in the resync will cause all associated database updates to be reverted.</li>
|
|
11458
11540
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed behavior of change logging <code>web_request_context()</code> to only reload Job code when a relevant JobHook is found to apply to the change in question.</li>
|
|
11459
11541
|
</ul>
|
|
11460
|
-
<h3 id="
|
|
11542
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11461
11543
|
<ul>
|
|
11462
11544
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed overly broad scope of the TreeModel <code>invalidate_max_depth_cache</code> signal so that it now correctly only fires for TreeModel instances rather than all models.</li>
|
|
11463
11545
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Improved performance of DynamicGroup membership updates/recalculations when dealing with large numbers of member objects.</li>
|
|
@@ -11470,12 +11552,12 @@
|
|
|
11470
11552
|
<ul>
|
|
11471
11553
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.10</code>.</li>
|
|
11472
11554
|
</ul>
|
|
11473
|
-
<h3 id="
|
|
11555
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11474
11556
|
<ul>
|
|
11475
11557
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.41</code>.</li>
|
|
11476
11558
|
</ul>
|
|
11477
11559
|
<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>
|
|
11478
|
-
<h3 id="
|
|
11560
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11479
11561
|
<ul>
|
|
11480
11562
|
<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>
|
|
11481
11563
|
<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>
|
|
@@ -11493,7 +11575,7 @@
|
|
|
11493
11575
|
<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>
|
|
11494
11576
|
<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>
|
|
11495
11577
|
</ul>
|
|
11496
|
-
<h3 id="
|
|
11578
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11497
11579
|
<ul>
|
|
11498
11580
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
11499
11581
|
<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>
|
|
@@ -11504,7 +11586,7 @@
|
|
|
11504
11586
|
<ul>
|
|
11505
11587
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added a direct dependency on <code>kombu</code> to guarantee the presence of some essential fixes for this Celery dependency.</li>
|
|
11506
11588
|
</ul>
|
|
11507
|
-
<h3 id="
|
|
11589
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
11508
11590
|
<ul>
|
|
11509
11591
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added usage of <code>extract_page_body()</code> to many view-related test cases in order to make their failure output more readable.</li>
|
|
11510
11592
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Modified many view-related test cases to use new <code>assertBodyContains()</code> test helper method for brevity.</li>
|
|
@@ -11520,7 +11602,7 @@
|
|
|
11520
11602
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
11521
11603
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
11522
11604
|
</ul>
|
|
11523
|
-
<h3 id="
|
|
11605
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11524
11606
|
<ul>
|
|
11525
11607
|
<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>
|
|
11526
11608
|
<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>
|
|
@@ -11530,7 +11612,7 @@
|
|
|
11530
11612
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Added a note to the release overview section for app developers regarding opt-in/opt-out of model features.</li>
|
|
11531
11613
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Updated app model developer documentation with more details about feature opt-out.</li>
|
|
11532
11614
|
</ul>
|
|
11533
|
-
<h3 id="
|
|
11615
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
11534
11616
|
<ul>
|
|
11535
11617
|
<li><a href="https://github.com/nautobot/nautobot/issues/6308">#6308</a> - Increase the minimum number of content-types to three and capped the maximum to five for MetadataType instances created by MetadataTypeFactory.</li>
|
|
11536
11618
|
</ul>
|
|
@@ -11544,7 +11626,7 @@
|
|
|
11544
11626
|
<ul>
|
|
11545
11627
|
<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>
|
|
11546
11628
|
</ul>
|
|
11547
|
-
<h3 id="
|
|
11629
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
11548
11630
|
<ul>
|
|
11549
11631
|
<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>
|
|
11550
11632
|
<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>
|
|
@@ -11564,7 +11646,7 @@
|
|
|
11564
11646
|
<ul>
|
|
11565
11647
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added to the core developer documentation a warning against the use of data factories within test case code.</li>
|
|
11566
11648
|
</ul>
|
|
11567
|
-
<h3 id="
|
|
11649
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
11568
11650
|
<ul>
|
|
11569
11651
|
<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>
|
|
11570
11652
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Changed <code>invoke unittest</code> to default to <code>--parallel</code> even when a <code>--label</code> value is specified.</li>
|
|
@@ -11582,7 +11664,7 @@
|
|
|
11582
11664
|
<ul>
|
|
11583
11665
|
<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>
|
|
11584
11666
|
</ul>
|
|
11585
|
-
<h3 id="
|
|
11667
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
11586
11668
|
<ul>
|
|
11587
11669
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
11588
11670
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
@@ -11596,7 +11678,7 @@
|
|
|
11596
11678
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added <code>environment_variables</code> keys to <code>settings.yaml</code> to more accurately document settings that are influenced by multiple environment variables together.</li>
|
|
11597
11679
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Removed <code>is_required_setting</code> keys from <code>settings.yaml</code> as no longer relevant.</li>
|
|
11598
11680
|
</ul>
|
|
11599
|
-
<h3 id="
|
|
11681
|
+
<h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">¶</a></h3>
|
|
11600
11682
|
<ul>
|
|
11601
11683
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>--cache-test-fixtures</code> and <code>--keepdb</code> flags from opt-in to opt-out for <code>invoke unittest</code> and <code>invoke integration-test</code> commands.</li>
|
|
11602
11684
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>invoke unittest</code> to automatically include <code>--parallel</code> flag when running the entire unit test suite.</li>
|
|
@@ -11608,7 +11690,7 @@
|
|
|
11608
11690
|
<ul>
|
|
11609
11691
|
<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>
|
|
11610
11692
|
</ul>
|
|
11611
|
-
<h3 id="
|
|
11693
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
11612
11694
|
<ul>
|
|
11613
11695
|
<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>
|
|
11614
11696
|
<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>
|
|
@@ -11619,7 +11701,7 @@
|
|
|
11619
11701
|
<ul>
|
|
11620
11702
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated <code>pyuwsgi</code> to <code>~2.0.26</code> and <code>PyYAML</code> to <code>~6.0.2</code>.</li>
|
|
11621
11703
|
</ul>
|
|
11622
|
-
<h3 id="
|
|
11704
|
+
<h3 id="housekeeping_12">Housekeeping<a class="headerlink" href="#housekeeping_12" title="Permanent link">¶</a></h3>
|
|
11623
11705
|
<ul>
|
|
11624
11706
|
<li><a href="https://github.com/nautobot/nautobot/issues/5376">#5376</a> - Disabled <code>coverage</code> during initial test database setup to improve test performance.</li>
|
|
11625
11707
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated development dependencies <code>factory-boy</code> to <code>~3.3.1</code>, <code>ruff</code> to <code>~0.5.7</code>, and <code>watchdog</code> to <code>~4.0.2</code>.</li>
|
|
@@ -11640,7 +11722,7 @@
|
|
|
11640
11722
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
11641
11723
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
11642
11724
|
</ul>
|
|
11643
|
-
<h3 id="
|
|
11725
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
11644
11726
|
<ul>
|
|
11645
11727
|
<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>
|
|
11646
11728
|
<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>
|
|
@@ -11649,7 +11731,7 @@
|
|
|
11649
11731
|
<li><a href="https://github.com/nautobot/nautobot/issues/6146">#6146</a> - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.</li>
|
|
11650
11732
|
<li><a href="https://github.com/nautobot/nautobot/issues/6175">#6175</a> - Prevented some <code>AttributeError</code> exceptions from being raised when an App contains a model that doesn't inherit from <code>BaseModel</code>.</li>
|
|
11651
11733
|
</ul>
|
|
11652
|
-
<h3 id="
|
|
11734
|
+
<h3 id="housekeeping_13">Housekeeping<a class="headerlink" href="#housekeeping_13" title="Permanent link">¶</a></h3>
|
|
11653
11735
|
<ul>
|
|
11654
11736
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
11655
11737
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time-machine</code> as a development environment (test execution) dependency.</li>
|
|
@@ -11667,14 +11749,14 @@
|
|
|
11667
11749
|
<ul>
|
|
11668
11750
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
11669
11751
|
</ul>
|
|
11670
|
-
<h3 id="
|
|
11752
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
11671
11753
|
<ul>
|
|
11672
11754
|
<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>
|
|
11673
11755
|
<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>
|
|
11674
11756
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
11675
11757
|
<li><a href="https://github.com/nautobot/nautobot/issues/6116">#6116</a> - Added handling for an <code>OperationalError</code> that might be raised when running <code>pylint-nautobot</code> or similar linters that depend on successfully running <code>nautobot.setup()</code>.</li>
|
|
11676
11758
|
</ul>
|
|
11677
|
-
<h3 id="
|
|
11759
|
+
<h3 id="housekeeping_14">Housekeeping<a class="headerlink" href="#housekeeping_14" title="Permanent link">¶</a></h3>
|
|
11678
11760
|
<ul>
|
|
11679
11761
|
<li><a href="https://github.com/nautobot/nautobot/issues/6107">#6107</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.10.8</code>.</li>
|
|
11680
11762
|
</ul>
|
|
@@ -11707,7 +11789,7 @@
|
|
|
11707
11789
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
11708
11790
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
11709
11791
|
</ul>
|
|
11710
|
-
<h3 id="
|
|
11792
|
+
<h3 id="fixed_16">Fixed<a class="headerlink" href="#fixed_16" title="Permanent link">¶</a></h3>
|
|
11711
11793
|
<ul>
|
|
11712
11794
|
<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>
|
|
11713
11795
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -11731,7 +11813,7 @@
|
|
|
11731
11813
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
11732
11814
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
11733
11815
|
</ul>
|
|
11734
|
-
<h3 id="
|
|
11816
|
+
<h3 id="housekeeping_15">Housekeeping<a class="headerlink" href="#housekeeping_15" title="Permanent link">¶</a></h3>
|
|
11735
11817
|
<ul>
|
|
11736
11818
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated development dependency <code>ruff</code> to <code>~0.5.6</code>.</li>
|
|
11737
11819
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated documentation dependencies: <code>mkdocs-material</code> to <code>~9.5.31</code>, <code>mkdocstrings</code> to <code>~0.25.2</code>, and <code>mkdocstrings-python</code> to <code>~1.10.7</code>.</li>
|
|
@@ -11837,7 +11919,7 @@
|
|
|
11837
11919
|
<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>
|
|
11838
11920
|
<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>
|
|
11839
11921
|
</ul>
|
|
11840
|
-
<h3 id="
|
|
11922
|
+
<h3 id="fixed_17">Fixed<a class="headerlink" href="#fixed_17" title="Permanent link">¶</a></h3>
|
|
11841
11923
|
<ul>
|
|
11842
11924
|
<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>
|
|
11843
11925
|
<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>
|
|
@@ -11893,7 +11975,7 @@
|
|
|
11893
11975
|
<li><a href="https://github.com/nautobot/nautobot/issues/5895">#5895</a> - Added missing model documentation for <code>CloudNetwork</code>, <code>CloudNetworkPrefixAssignment</code>, <code>CloudService</code> and <del><code>CloudType</code></del> <code>CloudResourceType</code>.</li>
|
|
11894
11976
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
11895
11977
|
</ul>
|
|
11896
|
-
<h3 id="
|
|
11978
|
+
<h3 id="housekeeping_16">Housekeeping<a class="headerlink" href="#housekeeping_16" title="Permanent link">¶</a></h3>
|
|
11897
11979
|
<ul>
|
|
11898
11980
|
<li><a href="https://github.com/nautobot/nautobot/issues/5160">#5160</a> - Replaced references to <code>pytz</code> with <code>zoneinfo</code> in keeping with Django 4.</li>
|
|
11899
11981
|
<li><a href="https://github.com/nautobot/nautobot/issues/5212">#5212</a> - Enhanced <code>nautobot.core.testing.filters.FilterTestCases.BaseFilterTestCase.test_filters_generic()</code> test case to test for the presence and proper functioning of the <code>contacts</code> and <code>teams</code> filters on any appropriate model FilterSet.</li>
|