nautobot 2.3.10__py3-none-any.whl → 2.3.11__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.

Files changed (54) hide show
  1. nautobot/apps/utils.py +2 -0
  2. nautobot/cloud/tables.py +1 -0
  3. nautobot/core/forms/forms.py +5 -1
  4. nautobot/core/tables.py +88 -22
  5. nautobot/core/templates/generic/object_bulk_destroy.html +12 -3
  6. nautobot/core/templates/generic/object_bulk_update.html +4 -2
  7. nautobot/core/templates/generic/object_create.html +1 -1
  8. nautobot/core/templates/rest_framework/api.html +3 -0
  9. nautobot/core/testing/api.py +3 -1
  10. nautobot/core/testing/integration.py +64 -0
  11. nautobot/core/testing/views.py +33 -27
  12. nautobot/core/tests/integration/test_app_navbar.py +3 -3
  13. nautobot/core/tests/integration/test_navbar.py +1 -1
  14. nautobot/core/tests/test_csv.py +3 -0
  15. nautobot/core/tests/test_utils.py +25 -5
  16. nautobot/core/utils/lookup.py +35 -0
  17. nautobot/core/views/generic.py +50 -39
  18. nautobot/core/views/mixins.py +97 -43
  19. nautobot/core/views/renderers.py +8 -5
  20. nautobot/dcim/tables/devices.py +3 -0
  21. nautobot/dcim/templates/dcim/device_component_add.html +8 -8
  22. nautobot/dcim/templates/dcim/virtualchassis_add_member.html +2 -2
  23. nautobot/dcim/templates/dcim/virtualchassis_edit.html +2 -2
  24. nautobot/dcim/tests/integration/test_create_device.py +86 -0
  25. nautobot/extras/tests/test_relationships.py +1 -0
  26. nautobot/extras/views.py +1 -0
  27. nautobot/ipam/factory.py +3 -0
  28. nautobot/ipam/filters.py +5 -0
  29. nautobot/ipam/forms.py +17 -0
  30. nautobot/ipam/models.py +2 -1
  31. nautobot/ipam/signals.py +2 -2
  32. nautobot/ipam/tables.py +3 -3
  33. nautobot/ipam/templates/ipam/ipaddress_assign.html +2 -2
  34. nautobot/ipam/tests/test_models.py +113 -1
  35. nautobot/ipam/tests/test_views.py +39 -5
  36. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +131 -6
  37. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +175 -0
  38. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +94 -0
  39. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +4 -4
  40. nautobot/project-static/docs/objects.inv +0 -0
  41. nautobot/project-static/docs/release-notes/version-2.3.html +293 -138
  42. nautobot/project-static/docs/search/search_index.json +1 -1
  43. nautobot/project-static/docs/sitemap.xml +270 -270
  44. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  45. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +39 -0
  46. nautobot/virtualization/forms.py +24 -0
  47. nautobot/virtualization/templates/virtualization/vminterface_edit.html +1 -0
  48. nautobot/virtualization/tests/test_views.py +7 -2
  49. {nautobot-2.3.10.dist-info → nautobot-2.3.11.dist-info}/METADATA +1 -1
  50. {nautobot-2.3.10.dist-info → nautobot-2.3.11.dist-info}/RECORD +54 -53
  51. {nautobot-2.3.10.dist-info → nautobot-2.3.11.dist-info}/LICENSE.txt +0 -0
  52. {nautobot-2.3.10.dist-info → nautobot-2.3.11.dist-info}/NOTICE +0 -0
  53. {nautobot-2.3.10.dist-info → nautobot-2.3.11.dist-info}/WHEEL +0 -0
  54. {nautobot-2.3.10.dist-info → nautobot-2.3.11.dist-info}/entry_points.txt +0 -0
@@ -8257,13 +8257,13 @@
8257
8257
  </li>
8258
8258
 
8259
8259
  <li class="md-nav__item">
8260
- <a href="#v2310-2024-10-29" class="md-nav__link">
8260
+ <a href="#v2311-2024-11-12" class="md-nav__link">
8261
8261
  <span class="md-ellipsis">
8262
- v2.3.10 (2024-10-29)
8262
+ v2.3.11 (2024-11-12)
8263
8263
  </span>
8264
8264
  </a>
8265
8265
 
8266
- <nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
8266
+ <nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
8267
8267
  <ul class="md-nav__list">
8268
8268
 
8269
8269
  <li class="md-nav__item">
@@ -8291,6 +8291,66 @@
8291
8291
  </span>
8292
8292
  </a>
8293
8293
 
8294
+ </li>
8295
+
8296
+ <li class="md-nav__item">
8297
+ <a href="#documentation" class="md-nav__link">
8298
+ <span class="md-ellipsis">
8299
+ Documentation
8300
+ </span>
8301
+ </a>
8302
+
8303
+ </li>
8304
+
8305
+ <li class="md-nav__item">
8306
+ <a href="#housekeeping" class="md-nav__link">
8307
+ <span class="md-ellipsis">
8308
+ Housekeeping
8309
+ </span>
8310
+ </a>
8311
+
8312
+ </li>
8313
+
8314
+ </ul>
8315
+ </nav>
8316
+
8317
+ </li>
8318
+
8319
+ <li class="md-nav__item">
8320
+ <a href="#v2310-2024-10-29" class="md-nav__link">
8321
+ <span class="md-ellipsis">
8322
+ v2.3.10 (2024-10-29)
8323
+ </span>
8324
+ </a>
8325
+
8326
+ <nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
8327
+ <ul class="md-nav__list">
8328
+
8329
+ <li class="md-nav__item">
8330
+ <a href="#added_2" class="md-nav__link">
8331
+ <span class="md-ellipsis">
8332
+ Added
8333
+ </span>
8334
+ </a>
8335
+
8336
+ </li>
8337
+
8338
+ <li class="md-nav__item">
8339
+ <a href="#changed_2" class="md-nav__link">
8340
+ <span class="md-ellipsis">
8341
+ Changed
8342
+ </span>
8343
+ </a>
8344
+
8345
+ </li>
8346
+
8347
+ <li class="md-nav__item">
8348
+ <a href="#fixed_1" class="md-nav__link">
8349
+ <span class="md-ellipsis">
8350
+ Fixed
8351
+ </span>
8352
+ </a>
8353
+
8294
8354
  </li>
8295
8355
 
8296
8356
  <li class="md-nav__item">
@@ -8303,7 +8363,7 @@
8303
8363
  </li>
8304
8364
 
8305
8365
  <li class="md-nav__item">
8306
- <a href="#housekeeping" class="md-nav__link">
8366
+ <a href="#housekeeping_1" class="md-nav__link">
8307
8367
  <span class="md-ellipsis">
8308
8368
  Housekeeping
8309
8369
  </span>
@@ -8327,7 +8387,7 @@
8327
8387
  <ul class="md-nav__list">
8328
8388
 
8329
8389
  <li class="md-nav__item">
8330
- <a href="#added_2" class="md-nav__link">
8390
+ <a href="#added_3" class="md-nav__link">
8331
8391
  <span class="md-ellipsis">
8332
8392
  Added
8333
8393
  </span>
@@ -8336,7 +8396,7 @@
8336
8396
  </li>
8337
8397
 
8338
8398
  <li class="md-nav__item">
8339
- <a href="#changed_2" class="md-nav__link">
8399
+ <a href="#changed_3" class="md-nav__link">
8340
8400
  <span class="md-ellipsis">
8341
8401
  Changed
8342
8402
  </span>
@@ -8345,7 +8405,7 @@
8345
8405
  </li>
8346
8406
 
8347
8407
  <li class="md-nav__item">
8348
- <a href="#fixed_1" class="md-nav__link">
8408
+ <a href="#fixed_2" class="md-nav__link">
8349
8409
  <span class="md-ellipsis">
8350
8410
  Fixed
8351
8411
  </span>
@@ -8363,7 +8423,7 @@
8363
8423
  </li>
8364
8424
 
8365
8425
  <li class="md-nav__item">
8366
- <a href="#housekeeping_1" class="md-nav__link">
8426
+ <a href="#housekeeping_2" class="md-nav__link">
8367
8427
  <span class="md-ellipsis">
8368
8428
  Housekeeping
8369
8429
  </span>
@@ -8387,7 +8447,7 @@
8387
8447
  <ul class="md-nav__list">
8388
8448
 
8389
8449
  <li class="md-nav__item">
8390
- <a href="#fixed_2" class="md-nav__link">
8450
+ <a href="#fixed_3" class="md-nav__link">
8391
8451
  <span class="md-ellipsis">
8392
8452
  Fixed
8393
8453
  </span>
@@ -8411,7 +8471,7 @@
8411
8471
  <ul class="md-nav__list">
8412
8472
 
8413
8473
  <li class="md-nav__item">
8414
- <a href="#added_3" class="md-nav__link">
8474
+ <a href="#added_4" class="md-nav__link">
8415
8475
  <span class="md-ellipsis">
8416
8476
  Added
8417
8477
  </span>
@@ -8420,7 +8480,7 @@
8420
8480
  </li>
8421
8481
 
8422
8482
  <li class="md-nav__item">
8423
- <a href="#changed_3" class="md-nav__link">
8483
+ <a href="#changed_4" class="md-nav__link">
8424
8484
  <span class="md-ellipsis">
8425
8485
  Changed
8426
8486
  </span>
@@ -8429,7 +8489,7 @@
8429
8489
  </li>
8430
8490
 
8431
8491
  <li class="md-nav__item">
8432
- <a href="#fixed_3" class="md-nav__link">
8492
+ <a href="#fixed_4" class="md-nav__link">
8433
8493
  <span class="md-ellipsis">
8434
8494
  Fixed
8435
8495
  </span>
@@ -8447,7 +8507,7 @@
8447
8507
  </li>
8448
8508
 
8449
8509
  <li class="md-nav__item">
8450
- <a href="#housekeeping_2" class="md-nav__link">
8510
+ <a href="#housekeeping_3" class="md-nav__link">
8451
8511
  <span class="md-ellipsis">
8452
8512
  Housekeeping
8453
8513
  </span>
@@ -8471,7 +8531,7 @@
8471
8531
  <ul class="md-nav__list">
8472
8532
 
8473
8533
  <li class="md-nav__item">
8474
- <a href="#added_4" class="md-nav__link">
8534
+ <a href="#added_5" class="md-nav__link">
8475
8535
  <span class="md-ellipsis">
8476
8536
  Added
8477
8537
  </span>
@@ -8480,7 +8540,7 @@
8480
8540
  </li>
8481
8541
 
8482
8542
  <li class="md-nav__item">
8483
- <a href="#fixed_4" class="md-nav__link">
8543
+ <a href="#fixed_5" class="md-nav__link">
8484
8544
  <span class="md-ellipsis">
8485
8545
  Fixed
8486
8546
  </span>
@@ -8489,7 +8549,7 @@
8489
8549
  </li>
8490
8550
 
8491
8551
  <li class="md-nav__item">
8492
- <a href="#documentation" class="md-nav__link">
8552
+ <a href="#documentation_1" class="md-nav__link">
8493
8553
  <span class="md-ellipsis">
8494
8554
  Documentation
8495
8555
  </span>
@@ -8498,7 +8558,7 @@
8498
8558
  </li>
8499
8559
 
8500
8560
  <li class="md-nav__item">
8501
- <a href="#housekeeping_3" class="md-nav__link">
8561
+ <a href="#housekeeping_4" class="md-nav__link">
8502
8562
  <span class="md-ellipsis">
8503
8563
  Housekeeping
8504
8564
  </span>
@@ -8522,7 +8582,7 @@
8522
8582
  <ul class="md-nav__list">
8523
8583
 
8524
8584
  <li class="md-nav__item">
8525
- <a href="#added_5" class="md-nav__link">
8585
+ <a href="#added_6" class="md-nav__link">
8526
8586
  <span class="md-ellipsis">
8527
8587
  Added
8528
8588
  </span>
@@ -8531,7 +8591,7 @@
8531
8591
  </li>
8532
8592
 
8533
8593
  <li class="md-nav__item">
8534
- <a href="#changed_4" class="md-nav__link">
8594
+ <a href="#changed_5" class="md-nav__link">
8535
8595
  <span class="md-ellipsis">
8536
8596
  Changed
8537
8597
  </span>
@@ -8540,7 +8600,7 @@
8540
8600
  </li>
8541
8601
 
8542
8602
  <li class="md-nav__item">
8543
- <a href="#fixed_5" class="md-nav__link">
8603
+ <a href="#fixed_6" class="md-nav__link">
8544
8604
  <span class="md-ellipsis">
8545
8605
  Fixed
8546
8606
  </span>
@@ -8558,7 +8618,7 @@
8558
8618
  </li>
8559
8619
 
8560
8620
  <li class="md-nav__item">
8561
- <a href="#documentation_1" class="md-nav__link">
8621
+ <a href="#documentation_2" class="md-nav__link">
8562
8622
  <span class="md-ellipsis">
8563
8623
  Documentation
8564
8624
  </span>
@@ -8567,7 +8627,7 @@
8567
8627
  </li>
8568
8628
 
8569
8629
  <li class="md-nav__item">
8570
- <a href="#housekeeping_4" class="md-nav__link">
8630
+ <a href="#housekeeping_5" class="md-nav__link">
8571
8631
  <span class="md-ellipsis">
8572
8632
  Housekeeping
8573
8633
  </span>
@@ -8591,7 +8651,7 @@
8591
8651
  <ul class="md-nav__list">
8592
8652
 
8593
8653
  <li class="md-nav__item">
8594
- <a href="#added_6" class="md-nav__link">
8654
+ <a href="#added_7" class="md-nav__link">
8595
8655
  <span class="md-ellipsis">
8596
8656
  Added
8597
8657
  </span>
@@ -8600,7 +8660,7 @@
8600
8660
  </li>
8601
8661
 
8602
8662
  <li class="md-nav__item">
8603
- <a href="#changed_5" class="md-nav__link">
8663
+ <a href="#changed_6" class="md-nav__link">
8604
8664
  <span class="md-ellipsis">
8605
8665
  Changed
8606
8666
  </span>
@@ -8609,7 +8669,7 @@
8609
8669
  </li>
8610
8670
 
8611
8671
  <li class="md-nav__item">
8612
- <a href="#fixed_6" class="md-nav__link">
8672
+ <a href="#fixed_7" class="md-nav__link">
8613
8673
  <span class="md-ellipsis">
8614
8674
  Fixed
8615
8675
  </span>
@@ -8618,7 +8678,7 @@
8618
8678
  </li>
8619
8679
 
8620
8680
  <li class="md-nav__item">
8621
- <a href="#documentation_2" class="md-nav__link">
8681
+ <a href="#documentation_3" class="md-nav__link">
8622
8682
  <span class="md-ellipsis">
8623
8683
  Documentation
8624
8684
  </span>
@@ -8627,7 +8687,7 @@
8627
8687
  </li>
8628
8688
 
8629
8689
  <li class="md-nav__item">
8630
- <a href="#housekeeping_5" class="md-nav__link">
8690
+ <a href="#housekeeping_6" class="md-nav__link">
8631
8691
  <span class="md-ellipsis">
8632
8692
  Housekeeping
8633
8693
  </span>
@@ -8660,7 +8720,7 @@
8660
8720
  </li>
8661
8721
 
8662
8722
  <li class="md-nav__item">
8663
- <a href="#fixed_7" class="md-nav__link">
8723
+ <a href="#fixed_8" class="md-nav__link">
8664
8724
  <span class="md-ellipsis">
8665
8725
  Fixed
8666
8726
  </span>
@@ -8678,7 +8738,7 @@
8678
8738
  </li>
8679
8739
 
8680
8740
  <li class="md-nav__item">
8681
- <a href="#housekeeping_6" class="md-nav__link">
8741
+ <a href="#housekeeping_7" class="md-nav__link">
8682
8742
  <span class="md-ellipsis">
8683
8743
  Housekeeping
8684
8744
  </span>
@@ -8711,7 +8771,7 @@
8711
8771
  </li>
8712
8772
 
8713
8773
  <li class="md-nav__item">
8714
- <a href="#added_7" class="md-nav__link">
8774
+ <a href="#added_8" class="md-nav__link">
8715
8775
  <span class="md-ellipsis">
8716
8776
  Added
8717
8777
  </span>
@@ -8720,7 +8780,7 @@
8720
8780
  </li>
8721
8781
 
8722
8782
  <li class="md-nav__item">
8723
- <a href="#fixed_8" class="md-nav__link">
8783
+ <a href="#fixed_9" class="md-nav__link">
8724
8784
  <span class="md-ellipsis">
8725
8785
  Fixed
8726
8786
  </span>
@@ -8729,7 +8789,7 @@
8729
8789
  </li>
8730
8790
 
8731
8791
  <li class="md-nav__item">
8732
- <a href="#housekeeping_7" class="md-nav__link">
8792
+ <a href="#housekeeping_8" class="md-nav__link">
8733
8793
  <span class="md-ellipsis">
8734
8794
  Housekeeping
8735
8795
  </span>
@@ -8753,7 +8813,7 @@
8753
8813
  <ul class="md-nav__list">
8754
8814
 
8755
8815
  <li class="md-nav__item">
8756
- <a href="#added_8" class="md-nav__link">
8816
+ <a href="#added_9" class="md-nav__link">
8757
8817
  <span class="md-ellipsis">
8758
8818
  Added
8759
8819
  </span>
@@ -8762,7 +8822,7 @@
8762
8822
  </li>
8763
8823
 
8764
8824
  <li class="md-nav__item">
8765
- <a href="#changed_6" class="md-nav__link">
8825
+ <a href="#changed_7" class="md-nav__link">
8766
8826
  <span class="md-ellipsis">
8767
8827
  Changed
8768
8828
  </span>
@@ -8771,7 +8831,7 @@
8771
8831
  </li>
8772
8832
 
8773
8833
  <li class="md-nav__item">
8774
- <a href="#fixed_9" class="md-nav__link">
8834
+ <a href="#fixed_10" class="md-nav__link">
8775
8835
  <span class="md-ellipsis">
8776
8836
  Fixed
8777
8837
  </span>
@@ -8780,7 +8840,7 @@
8780
8840
  </li>
8781
8841
 
8782
8842
  <li class="md-nav__item">
8783
- <a href="#housekeeping_8" class="md-nav__link">
8843
+ <a href="#housekeeping_9" class="md-nav__link">
8784
8844
  <span class="md-ellipsis">
8785
8845
  Housekeeping
8786
8846
  </span>
@@ -8813,7 +8873,7 @@
8813
8873
  </li>
8814
8874
 
8815
8875
  <li class="md-nav__item">
8816
- <a href="#added_9" class="md-nav__link">
8876
+ <a href="#added_10" class="md-nav__link">
8817
8877
  <span class="md-ellipsis">
8818
8878
  Added
8819
8879
  </span>
@@ -8822,7 +8882,7 @@
8822
8882
  </li>
8823
8883
 
8824
8884
  <li class="md-nav__item">
8825
- <a href="#changed_7" class="md-nav__link">
8885
+ <a href="#changed_8" class="md-nav__link">
8826
8886
  <span class="md-ellipsis">
8827
8887
  Changed
8828
8888
  </span>
@@ -8840,7 +8900,7 @@
8840
8900
  </li>
8841
8901
 
8842
8902
  <li class="md-nav__item">
8843
- <a href="#fixed_10" class="md-nav__link">
8903
+ <a href="#fixed_11" class="md-nav__link">
8844
8904
  <span class="md-ellipsis">
8845
8905
  Fixed
8846
8906
  </span>
@@ -8849,7 +8909,7 @@
8849
8909
  </li>
8850
8910
 
8851
8911
  <li class="md-nav__item">
8852
- <a href="#documentation_3" class="md-nav__link">
8912
+ <a href="#documentation_4" class="md-nav__link">
8853
8913
  <span class="md-ellipsis">
8854
8914
  Documentation
8855
8915
  </span>
@@ -8858,7 +8918,7 @@
8858
8918
  </li>
8859
8919
 
8860
8920
  <li class="md-nav__item">
8861
- <a href="#housekeeping_9" class="md-nav__link">
8921
+ <a href="#housekeeping_10" class="md-nav__link">
8862
8922
  <span class="md-ellipsis">
8863
8923
  Housekeeping
8864
8924
  </span>
@@ -8891,7 +8951,7 @@
8891
8951
  </li>
8892
8952
 
8893
8953
  <li class="md-nav__item">
8894
- <a href="#added_10" class="md-nav__link">
8954
+ <a href="#added_11" class="md-nav__link">
8895
8955
  <span class="md-ellipsis">
8896
8956
  Added
8897
8957
  </span>
@@ -8900,7 +8960,7 @@
8900
8960
  </li>
8901
8961
 
8902
8962
  <li class="md-nav__item">
8903
- <a href="#changed_8" class="md-nav__link">
8963
+ <a href="#changed_9" class="md-nav__link">
8904
8964
  <span class="md-ellipsis">
8905
8965
  Changed
8906
8966
  </span>
@@ -8927,7 +8987,7 @@
8927
8987
  </li>
8928
8988
 
8929
8989
  <li class="md-nav__item">
8930
- <a href="#fixed_11" class="md-nav__link">
8990
+ <a href="#fixed_12" class="md-nav__link">
8931
8991
  <span class="md-ellipsis">
8932
8992
  Fixed
8933
8993
  </span>
@@ -8945,7 +9005,7 @@
8945
9005
  </li>
8946
9006
 
8947
9007
  <li class="md-nav__item">
8948
- <a href="#documentation_4" class="md-nav__link">
9008
+ <a href="#documentation_5" class="md-nav__link">
8949
9009
  <span class="md-ellipsis">
8950
9010
  Documentation
8951
9011
  </span>
@@ -8954,7 +9014,7 @@
8954
9014
  </li>
8955
9015
 
8956
9016
  <li class="md-nav__item">
8957
- <a href="#housekeeping_10" class="md-nav__link">
9017
+ <a href="#housekeeping_11" class="md-nav__link">
8958
9018
  <span class="md-ellipsis">
8959
9019
  Housekeeping
8960
9020
  </span>
@@ -9768,13 +9828,13 @@
9768
9828
  </li>
9769
9829
 
9770
9830
  <li class="md-nav__item">
9771
- <a href="#v2310-2024-10-29" class="md-nav__link">
9831
+ <a href="#v2311-2024-11-12" class="md-nav__link">
9772
9832
  <span class="md-ellipsis">
9773
- v2.3.10 (2024-10-29)
9833
+ v2.3.11 (2024-11-12)
9774
9834
  </span>
9775
9835
  </a>
9776
9836
 
9777
- <nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
9837
+ <nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
9778
9838
  <ul class="md-nav__list">
9779
9839
 
9780
9840
  <li class="md-nav__item">
@@ -9802,6 +9862,66 @@
9802
9862
  </span>
9803
9863
  </a>
9804
9864
 
9865
+ </li>
9866
+
9867
+ <li class="md-nav__item">
9868
+ <a href="#documentation" class="md-nav__link">
9869
+ <span class="md-ellipsis">
9870
+ Documentation
9871
+ </span>
9872
+ </a>
9873
+
9874
+ </li>
9875
+
9876
+ <li class="md-nav__item">
9877
+ <a href="#housekeeping" class="md-nav__link">
9878
+ <span class="md-ellipsis">
9879
+ Housekeeping
9880
+ </span>
9881
+ </a>
9882
+
9883
+ </li>
9884
+
9885
+ </ul>
9886
+ </nav>
9887
+
9888
+ </li>
9889
+
9890
+ <li class="md-nav__item">
9891
+ <a href="#v2310-2024-10-29" class="md-nav__link">
9892
+ <span class="md-ellipsis">
9893
+ v2.3.10 (2024-10-29)
9894
+ </span>
9895
+ </a>
9896
+
9897
+ <nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
9898
+ <ul class="md-nav__list">
9899
+
9900
+ <li class="md-nav__item">
9901
+ <a href="#added_2" class="md-nav__link">
9902
+ <span class="md-ellipsis">
9903
+ Added
9904
+ </span>
9905
+ </a>
9906
+
9907
+ </li>
9908
+
9909
+ <li class="md-nav__item">
9910
+ <a href="#changed_2" class="md-nav__link">
9911
+ <span class="md-ellipsis">
9912
+ Changed
9913
+ </span>
9914
+ </a>
9915
+
9916
+ </li>
9917
+
9918
+ <li class="md-nav__item">
9919
+ <a href="#fixed_1" class="md-nav__link">
9920
+ <span class="md-ellipsis">
9921
+ Fixed
9922
+ </span>
9923
+ </a>
9924
+
9805
9925
  </li>
9806
9926
 
9807
9927
  <li class="md-nav__item">
@@ -9814,7 +9934,7 @@
9814
9934
  </li>
9815
9935
 
9816
9936
  <li class="md-nav__item">
9817
- <a href="#housekeeping" class="md-nav__link">
9937
+ <a href="#housekeeping_1" class="md-nav__link">
9818
9938
  <span class="md-ellipsis">
9819
9939
  Housekeeping
9820
9940
  </span>
@@ -9838,7 +9958,7 @@
9838
9958
  <ul class="md-nav__list">
9839
9959
 
9840
9960
  <li class="md-nav__item">
9841
- <a href="#added_2" class="md-nav__link">
9961
+ <a href="#added_3" class="md-nav__link">
9842
9962
  <span class="md-ellipsis">
9843
9963
  Added
9844
9964
  </span>
@@ -9847,7 +9967,7 @@
9847
9967
  </li>
9848
9968
 
9849
9969
  <li class="md-nav__item">
9850
- <a href="#changed_2" class="md-nav__link">
9970
+ <a href="#changed_3" class="md-nav__link">
9851
9971
  <span class="md-ellipsis">
9852
9972
  Changed
9853
9973
  </span>
@@ -9856,7 +9976,7 @@
9856
9976
  </li>
9857
9977
 
9858
9978
  <li class="md-nav__item">
9859
- <a href="#fixed_1" class="md-nav__link">
9979
+ <a href="#fixed_2" class="md-nav__link">
9860
9980
  <span class="md-ellipsis">
9861
9981
  Fixed
9862
9982
  </span>
@@ -9874,7 +9994,7 @@
9874
9994
  </li>
9875
9995
 
9876
9996
  <li class="md-nav__item">
9877
- <a href="#housekeeping_1" class="md-nav__link">
9997
+ <a href="#housekeeping_2" class="md-nav__link">
9878
9998
  <span class="md-ellipsis">
9879
9999
  Housekeeping
9880
10000
  </span>
@@ -9898,7 +10018,7 @@
9898
10018
  <ul class="md-nav__list">
9899
10019
 
9900
10020
  <li class="md-nav__item">
9901
- <a href="#fixed_2" class="md-nav__link">
10021
+ <a href="#fixed_3" class="md-nav__link">
9902
10022
  <span class="md-ellipsis">
9903
10023
  Fixed
9904
10024
  </span>
@@ -9922,7 +10042,7 @@
9922
10042
  <ul class="md-nav__list">
9923
10043
 
9924
10044
  <li class="md-nav__item">
9925
- <a href="#added_3" class="md-nav__link">
10045
+ <a href="#added_4" class="md-nav__link">
9926
10046
  <span class="md-ellipsis">
9927
10047
  Added
9928
10048
  </span>
@@ -9931,7 +10051,7 @@
9931
10051
  </li>
9932
10052
 
9933
10053
  <li class="md-nav__item">
9934
- <a href="#changed_3" class="md-nav__link">
10054
+ <a href="#changed_4" class="md-nav__link">
9935
10055
  <span class="md-ellipsis">
9936
10056
  Changed
9937
10057
  </span>
@@ -9940,7 +10060,7 @@
9940
10060
  </li>
9941
10061
 
9942
10062
  <li class="md-nav__item">
9943
- <a href="#fixed_3" class="md-nav__link">
10063
+ <a href="#fixed_4" class="md-nav__link">
9944
10064
  <span class="md-ellipsis">
9945
10065
  Fixed
9946
10066
  </span>
@@ -9958,7 +10078,7 @@
9958
10078
  </li>
9959
10079
 
9960
10080
  <li class="md-nav__item">
9961
- <a href="#housekeeping_2" class="md-nav__link">
10081
+ <a href="#housekeeping_3" class="md-nav__link">
9962
10082
  <span class="md-ellipsis">
9963
10083
  Housekeeping
9964
10084
  </span>
@@ -9982,7 +10102,7 @@
9982
10102
  <ul class="md-nav__list">
9983
10103
 
9984
10104
  <li class="md-nav__item">
9985
- <a href="#added_4" class="md-nav__link">
10105
+ <a href="#added_5" class="md-nav__link">
9986
10106
  <span class="md-ellipsis">
9987
10107
  Added
9988
10108
  </span>
@@ -9991,7 +10111,7 @@
9991
10111
  </li>
9992
10112
 
9993
10113
  <li class="md-nav__item">
9994
- <a href="#fixed_4" class="md-nav__link">
10114
+ <a href="#fixed_5" class="md-nav__link">
9995
10115
  <span class="md-ellipsis">
9996
10116
  Fixed
9997
10117
  </span>
@@ -10000,7 +10120,7 @@
10000
10120
  </li>
10001
10121
 
10002
10122
  <li class="md-nav__item">
10003
- <a href="#documentation" class="md-nav__link">
10123
+ <a href="#documentation_1" class="md-nav__link">
10004
10124
  <span class="md-ellipsis">
10005
10125
  Documentation
10006
10126
  </span>
@@ -10009,7 +10129,7 @@
10009
10129
  </li>
10010
10130
 
10011
10131
  <li class="md-nav__item">
10012
- <a href="#housekeeping_3" class="md-nav__link">
10132
+ <a href="#housekeeping_4" class="md-nav__link">
10013
10133
  <span class="md-ellipsis">
10014
10134
  Housekeeping
10015
10135
  </span>
@@ -10033,7 +10153,7 @@
10033
10153
  <ul class="md-nav__list">
10034
10154
 
10035
10155
  <li class="md-nav__item">
10036
- <a href="#added_5" class="md-nav__link">
10156
+ <a href="#added_6" class="md-nav__link">
10037
10157
  <span class="md-ellipsis">
10038
10158
  Added
10039
10159
  </span>
@@ -10042,7 +10162,7 @@
10042
10162
  </li>
10043
10163
 
10044
10164
  <li class="md-nav__item">
10045
- <a href="#changed_4" class="md-nav__link">
10165
+ <a href="#changed_5" class="md-nav__link">
10046
10166
  <span class="md-ellipsis">
10047
10167
  Changed
10048
10168
  </span>
@@ -10051,7 +10171,7 @@
10051
10171
  </li>
10052
10172
 
10053
10173
  <li class="md-nav__item">
10054
- <a href="#fixed_5" class="md-nav__link">
10174
+ <a href="#fixed_6" class="md-nav__link">
10055
10175
  <span class="md-ellipsis">
10056
10176
  Fixed
10057
10177
  </span>
@@ -10069,7 +10189,7 @@
10069
10189
  </li>
10070
10190
 
10071
10191
  <li class="md-nav__item">
10072
- <a href="#documentation_1" class="md-nav__link">
10192
+ <a href="#documentation_2" class="md-nav__link">
10073
10193
  <span class="md-ellipsis">
10074
10194
  Documentation
10075
10195
  </span>
@@ -10078,7 +10198,7 @@
10078
10198
  </li>
10079
10199
 
10080
10200
  <li class="md-nav__item">
10081
- <a href="#housekeeping_4" class="md-nav__link">
10201
+ <a href="#housekeeping_5" class="md-nav__link">
10082
10202
  <span class="md-ellipsis">
10083
10203
  Housekeeping
10084
10204
  </span>
@@ -10102,7 +10222,7 @@
10102
10222
  <ul class="md-nav__list">
10103
10223
 
10104
10224
  <li class="md-nav__item">
10105
- <a href="#added_6" class="md-nav__link">
10225
+ <a href="#added_7" class="md-nav__link">
10106
10226
  <span class="md-ellipsis">
10107
10227
  Added
10108
10228
  </span>
@@ -10111,7 +10231,7 @@
10111
10231
  </li>
10112
10232
 
10113
10233
  <li class="md-nav__item">
10114
- <a href="#changed_5" class="md-nav__link">
10234
+ <a href="#changed_6" class="md-nav__link">
10115
10235
  <span class="md-ellipsis">
10116
10236
  Changed
10117
10237
  </span>
@@ -10120,7 +10240,7 @@
10120
10240
  </li>
10121
10241
 
10122
10242
  <li class="md-nav__item">
10123
- <a href="#fixed_6" class="md-nav__link">
10243
+ <a href="#fixed_7" class="md-nav__link">
10124
10244
  <span class="md-ellipsis">
10125
10245
  Fixed
10126
10246
  </span>
@@ -10129,7 +10249,7 @@
10129
10249
  </li>
10130
10250
 
10131
10251
  <li class="md-nav__item">
10132
- <a href="#documentation_2" class="md-nav__link">
10252
+ <a href="#documentation_3" class="md-nav__link">
10133
10253
  <span class="md-ellipsis">
10134
10254
  Documentation
10135
10255
  </span>
@@ -10138,7 +10258,7 @@
10138
10258
  </li>
10139
10259
 
10140
10260
  <li class="md-nav__item">
10141
- <a href="#housekeeping_5" class="md-nav__link">
10261
+ <a href="#housekeeping_6" class="md-nav__link">
10142
10262
  <span class="md-ellipsis">
10143
10263
  Housekeeping
10144
10264
  </span>
@@ -10171,7 +10291,7 @@
10171
10291
  </li>
10172
10292
 
10173
10293
  <li class="md-nav__item">
10174
- <a href="#fixed_7" class="md-nav__link">
10294
+ <a href="#fixed_8" class="md-nav__link">
10175
10295
  <span class="md-ellipsis">
10176
10296
  Fixed
10177
10297
  </span>
@@ -10189,7 +10309,7 @@
10189
10309
  </li>
10190
10310
 
10191
10311
  <li class="md-nav__item">
10192
- <a href="#housekeeping_6" class="md-nav__link">
10312
+ <a href="#housekeeping_7" class="md-nav__link">
10193
10313
  <span class="md-ellipsis">
10194
10314
  Housekeeping
10195
10315
  </span>
@@ -10222,7 +10342,7 @@
10222
10342
  </li>
10223
10343
 
10224
10344
  <li class="md-nav__item">
10225
- <a href="#added_7" class="md-nav__link">
10345
+ <a href="#added_8" class="md-nav__link">
10226
10346
  <span class="md-ellipsis">
10227
10347
  Added
10228
10348
  </span>
@@ -10231,7 +10351,7 @@
10231
10351
  </li>
10232
10352
 
10233
10353
  <li class="md-nav__item">
10234
- <a href="#fixed_8" class="md-nav__link">
10354
+ <a href="#fixed_9" class="md-nav__link">
10235
10355
  <span class="md-ellipsis">
10236
10356
  Fixed
10237
10357
  </span>
@@ -10240,7 +10360,7 @@
10240
10360
  </li>
10241
10361
 
10242
10362
  <li class="md-nav__item">
10243
- <a href="#housekeeping_7" class="md-nav__link">
10363
+ <a href="#housekeeping_8" class="md-nav__link">
10244
10364
  <span class="md-ellipsis">
10245
10365
  Housekeeping
10246
10366
  </span>
@@ -10264,7 +10384,7 @@
10264
10384
  <ul class="md-nav__list">
10265
10385
 
10266
10386
  <li class="md-nav__item">
10267
- <a href="#added_8" class="md-nav__link">
10387
+ <a href="#added_9" class="md-nav__link">
10268
10388
  <span class="md-ellipsis">
10269
10389
  Added
10270
10390
  </span>
@@ -10273,7 +10393,7 @@
10273
10393
  </li>
10274
10394
 
10275
10395
  <li class="md-nav__item">
10276
- <a href="#changed_6" class="md-nav__link">
10396
+ <a href="#changed_7" class="md-nav__link">
10277
10397
  <span class="md-ellipsis">
10278
10398
  Changed
10279
10399
  </span>
@@ -10282,7 +10402,7 @@
10282
10402
  </li>
10283
10403
 
10284
10404
  <li class="md-nav__item">
10285
- <a href="#fixed_9" class="md-nav__link">
10405
+ <a href="#fixed_10" class="md-nav__link">
10286
10406
  <span class="md-ellipsis">
10287
10407
  Fixed
10288
10408
  </span>
@@ -10291,7 +10411,7 @@
10291
10411
  </li>
10292
10412
 
10293
10413
  <li class="md-nav__item">
10294
- <a href="#housekeeping_8" class="md-nav__link">
10414
+ <a href="#housekeeping_9" class="md-nav__link">
10295
10415
  <span class="md-ellipsis">
10296
10416
  Housekeeping
10297
10417
  </span>
@@ -10324,7 +10444,7 @@
10324
10444
  </li>
10325
10445
 
10326
10446
  <li class="md-nav__item">
10327
- <a href="#added_9" class="md-nav__link">
10447
+ <a href="#added_10" class="md-nav__link">
10328
10448
  <span class="md-ellipsis">
10329
10449
  Added
10330
10450
  </span>
@@ -10333,7 +10453,7 @@
10333
10453
  </li>
10334
10454
 
10335
10455
  <li class="md-nav__item">
10336
- <a href="#changed_7" class="md-nav__link">
10456
+ <a href="#changed_8" class="md-nav__link">
10337
10457
  <span class="md-ellipsis">
10338
10458
  Changed
10339
10459
  </span>
@@ -10351,7 +10471,7 @@
10351
10471
  </li>
10352
10472
 
10353
10473
  <li class="md-nav__item">
10354
- <a href="#fixed_10" class="md-nav__link">
10474
+ <a href="#fixed_11" class="md-nav__link">
10355
10475
  <span class="md-ellipsis">
10356
10476
  Fixed
10357
10477
  </span>
@@ -10360,7 +10480,7 @@
10360
10480
  </li>
10361
10481
 
10362
10482
  <li class="md-nav__item">
10363
- <a href="#documentation_3" class="md-nav__link">
10483
+ <a href="#documentation_4" class="md-nav__link">
10364
10484
  <span class="md-ellipsis">
10365
10485
  Documentation
10366
10486
  </span>
@@ -10369,7 +10489,7 @@
10369
10489
  </li>
10370
10490
 
10371
10491
  <li class="md-nav__item">
10372
- <a href="#housekeeping_9" class="md-nav__link">
10492
+ <a href="#housekeeping_10" class="md-nav__link">
10373
10493
  <span class="md-ellipsis">
10374
10494
  Housekeeping
10375
10495
  </span>
@@ -10402,7 +10522,7 @@
10402
10522
  </li>
10403
10523
 
10404
10524
  <li class="md-nav__item">
10405
- <a href="#added_10" class="md-nav__link">
10525
+ <a href="#added_11" class="md-nav__link">
10406
10526
  <span class="md-ellipsis">
10407
10527
  Added
10408
10528
  </span>
@@ -10411,7 +10531,7 @@
10411
10531
  </li>
10412
10532
 
10413
10533
  <li class="md-nav__item">
10414
- <a href="#changed_8" class="md-nav__link">
10534
+ <a href="#changed_9" class="md-nav__link">
10415
10535
  <span class="md-ellipsis">
10416
10536
  Changed
10417
10537
  </span>
@@ -10438,7 +10558,7 @@
10438
10558
  </li>
10439
10559
 
10440
10560
  <li class="md-nav__item">
10441
- <a href="#fixed_11" class="md-nav__link">
10561
+ <a href="#fixed_12" class="md-nav__link">
10442
10562
  <span class="md-ellipsis">
10443
10563
  Fixed
10444
10564
  </span>
@@ -10456,7 +10576,7 @@
10456
10576
  </li>
10457
10577
 
10458
10578
  <li class="md-nav__item">
10459
- <a href="#documentation_4" class="md-nav__link">
10579
+ <a href="#documentation_5" class="md-nav__link">
10460
10580
  <span class="md-ellipsis">
10461
10581
  Documentation
10462
10582
  </span>
@@ -10465,7 +10585,7 @@
10465
10585
  </li>
10466
10586
 
10467
10587
  <li class="md-nav__item">
10468
- <a href="#housekeeping_10" class="md-nav__link">
10588
+ <a href="#housekeeping_11" class="md-nav__link">
10469
10589
  <span class="md-ellipsis">
10470
10590
  Housekeeping
10471
10591
  </span>
@@ -10588,19 +10708,54 @@
10588
10708
  <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">&para;</a></h4>
10589
10709
  <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>
10590
10710
  <!-- towncrier release notes start -->
10591
- <h2 id="v2310-2024-10-29">v2.3.10 (2024-10-29)<a class="headerlink" href="#v2310-2024-10-29" title="Permanent link">&para;</a></h2>
10711
+ <h2 id="v2311-2024-11-12">v2.3.11 (2024-11-12)<a class="headerlink" href="#v2311-2024-11-12" title="Permanent link">&para;</a></h2>
10592
10712
  <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
10593
10713
  <ul>
10714
+ <li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added <code>nautobot.apps.utils.get_related_field_for_models()</code> helper function.</li>
10715
+ <li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
10716
+ </ul>
10717
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10718
+ <ul>
10719
+ <li><a href="https://github.com/nautobot/nautobot/issues/5321">#5321</a> - For bulk delete all objects view, only show the confirmation dialog without the table that shows the objects that would be deleted.</li>
10720
+ <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>
10721
+ <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>
10722
+ </ul>
10723
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10724
+ <ul>
10725
+ <li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
10726
+ <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>
10727
+ <li><a href="https://github.com/nautobot/nautobot/issues/6453">#6453</a> - Fixed issue where interfaces cannot be removed/deleted from an Interface for Modules.</li>
10728
+ <li><a href="https://github.com/nautobot/nautobot/issues/6472">#6472</a> - Fixed incorrect placement of buttons in create and edit views.</li>
10729
+ <li><a href="https://github.com/nautobot/nautobot/issues/6472">#6472</a> - Fixed the panel width in multiple create and edit views.</li>
10730
+ <li><a href="https://github.com/nautobot/nautobot/issues/6490">#6490</a> - Added missing <code>vrf_count</code> column to Prefix table in PrefixListView.</li>
10731
+ <li><a href="https://github.com/nautobot/nautobot/issues/6491">#6491</a> - Added missing <code>vrf</code> field to <code>VMInterfaceForm</code> and <code>VMInterfaceCreateForm</code>.</li>
10732
+ <li><a href="https://github.com/nautobot/nautobot/issues/6492">#6492</a> - Fixed <code>vlan_group</code> field is not filtered by <code>locations</code> field input on VLANForm.</li>
10733
+ </ul>
10734
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
10735
+ <ul>
10736
+ <li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
10737
+ </ul>
10738
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10739
+ <ul>
10740
+ <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>
10741
+ <li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
10742
+ <li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Added helper functions to SeleniumTestCase to perform some common UI actions.</li>
10743
+ <li><a href="https://github.com/nautobot/nautobot/issues/6455">#6455</a> - Fixed two tests which always passed due to errors in their implementation. Ensured they provide value by checking against the correct results.</li>
10744
+ <li><a href="https://github.com/nautobot/nautobot/issues/6497">#6497</a> - Added support for <code>--no-reusedb</code> option to <code>invoke integration-test</code> task.</li>
10745
+ </ul>
10746
+ <h2 id="v2310-2024-10-29">v2.3.10 (2024-10-29)<a class="headerlink" href="#v2310-2024-10-29" title="Permanent link">&para;</a></h2>
10747
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10748
+ <ul>
10594
10749
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
10595
10750
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added queryset caching in <code>web_request_context</code> for more efficient JobHook and Webhook dispatching on bulk requests.</li>
10596
10751
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
10597
10752
  <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added more efficient database calls for most cases of bulk-provisioning CustomField data on model objects.</li>
10598
10753
  </ul>
10599
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10754
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10600
10755
  <ul>
10601
10756
  <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>
10602
10757
  </ul>
10603
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10758
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10604
10759
  <ul>
10605
10760
  <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>
10606
10761
  <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>
@@ -10609,24 +10764,24 @@
10609
10764
  <ul>
10610
10765
  <li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
10611
10766
  </ul>
10612
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10767
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10613
10768
  <ul>
10614
10769
  <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>
10615
10770
  </ul>
10616
10771
  <h2 id="v239-2024-10-28">v2.3.9 (2024-10-28)<a class="headerlink" href="#v239-2024-10-28" title="Permanent link">&para;</a></h2>
10617
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10772
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10618
10773
  <ul>
10619
10774
  <li><a href="https://github.com/nautobot/nautobot/issues/4899">#4899</a> - Added TableExtension class to allow app developers to add columns to core tables.</li>
10620
10775
  <li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Added logic to ModuleBay model to ensure that if the <code>position</code> field is empty, its value will be automatically populated from the <code>name</code> of the Module Bay instance.</li>
10621
10776
  <li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
10622
10777
  </ul>
10623
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10778
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10624
10779
  <ul>
10625
10780
  <li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Enhanced <code>position</code> fields on ModuleBayCreate/UpdateForms to auto-populate their values from <code>name</code> fields.</li>
10626
10781
  <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>
10627
10782
  <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>
10628
10783
  </ul>
10629
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10784
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10630
10785
  <ul>
10631
10786
  <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>
10632
10787
  <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>
@@ -10639,12 +10794,12 @@
10639
10794
  <ul>
10640
10795
  <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>
10641
10796
  </ul>
10642
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10797
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10643
10798
  <ul>
10644
10799
  <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>
10645
10800
  </ul>
10646
10801
  <h2 id="v238-2024-10-18">v2.3.8 (2024-10-18)<a class="headerlink" href="#v238-2024-10-18" title="Permanent link">&para;</a></h2>
10647
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10802
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10648
10803
  <ul>
10649
10804
  <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>
10650
10805
  <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>
@@ -10653,16 +10808,16 @@
10653
10808
  <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>
10654
10809
  </ul>
10655
10810
  <h2 id="v237-2024-10-15">v2.3.7 (2024-10-15)<a class="headerlink" href="#v237-2024-10-15" title="Permanent link">&para;</a></h2>
10656
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10811
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10657
10812
  <ul>
10658
10813
  <li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
10659
10814
  </ul>
10660
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10815
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10661
10816
  <ul>
10662
10817
  <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>
10663
10818
  <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>
10664
10819
  </ul>
10665
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10820
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10666
10821
  <ul>
10667
10822
  <li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
10668
10823
  <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>
@@ -10673,7 +10828,7 @@
10673
10828
  <ul>
10674
10829
  <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>
10675
10830
  </ul>
10676
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10831
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10677
10832
  <ul>
10678
10833
  <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>
10679
10834
  <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>
@@ -10684,36 +10839,36 @@
10684
10839
  <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>
10685
10840
  </ul>
10686
10841
  <h2 id="v236-2024-10-02">v2.3.6 (2024-10-02)<a class="headerlink" href="#v236-2024-10-02" title="Permanent link">&para;</a></h2>
10687
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10842
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10688
10843
  <ul>
10689
10844
  <li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
10690
10845
  <li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
10691
10846
  </ul>
10692
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10847
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10693
10848
  <ul>
10694
10849
  <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>
10695
10850
  <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>
10696
10851
  </ul>
10697
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
10852
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
10698
10853
  <ul>
10699
10854
  <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>
10700
10855
  <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>
10701
10856
  </ul>
10702
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10857
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10703
10858
  <ul>
10704
10859
  <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>
10705
10860
  </ul>
10706
10861
  <h2 id="v235-2024-09-30">v2.3.5 (2024-09-30)<a class="headerlink" href="#v235-2024-09-30" title="Permanent link">&para;</a></h2>
10707
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10862
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10708
10863
  <ul>
10709
10864
  <li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Added <code>is_occupied</code> boolean filter to the Rack elevation API endpoint to allow filtering by occupied or unoccupied units.</li>
10710
10865
  <li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
10711
10866
  </ul>
10712
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10867
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10713
10868
  <ul>
10714
10869
  <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>
10715
10870
  </ul>
10716
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10871
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10717
10872
  <ul>
10718
10873
  <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>
10719
10874
  <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>
@@ -10729,11 +10884,11 @@
10729
10884
  <li><a href="https://github.com/nautobot/nautobot/issues/6247">#6247</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.35</code>.</li>
10730
10885
  <li><a href="https://github.com/nautobot/nautobot/issues/6287">#6287</a> - Replaced incorrect <code>django-structlog[all]</code> dependency with <code>django-structlog[celery]</code>.</li>
10731
10886
  </ul>
10732
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
10887
+ <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
10733
10888
  <ul>
10734
10889
  <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>
10735
10890
  </ul>
10736
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10891
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10737
10892
  <ul>
10738
10893
  <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>
10739
10894
  <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>
@@ -10742,22 +10897,22 @@
10742
10897
  <li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
10743
10898
  </ul>
10744
10899
  <h2 id="v234-2024-09-18">v2.3.4 (2024-09-18)<a class="headerlink" href="#v234-2024-09-18" title="Permanent link">&para;</a></h2>
10745
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10900
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10746
10901
  <ul>
10747
10902
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
10748
10903
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Added the ability to filter virtual machines by their <code>cluster</code> names or IDs.</li>
10749
10904
  </ul>
10750
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10905
+ <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
10751
10906
  <ul>
10752
10907
  <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>
10753
10908
  </ul>
10754
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10909
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10755
10910
  <ul>
10756
10911
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
10757
10912
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
10758
10913
  <li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
10759
10914
  </ul>
10760
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
10915
+ <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
10761
10916
  <ul>
10762
10917
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Required Settings" and "Optional Settings" docs into a single unified "Settings" document.</li>
10763
10918
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
@@ -10765,7 +10920,7 @@
10765
10920
  <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>
10766
10921
  <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>
10767
10922
  </ul>
10768
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10923
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10769
10924
  <ul>
10770
10925
  <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>
10771
10926
  <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>
@@ -10777,7 +10932,7 @@
10777
10932
  <ul>
10778
10933
  <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>
10779
10934
  </ul>
10780
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10935
+ <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10781
10936
  <ul>
10782
10937
  <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>
10783
10938
  <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>
@@ -10788,7 +10943,7 @@
10788
10943
  <ul>
10789
10944
  <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>
10790
10945
  </ul>
10791
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10946
+ <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10792
10947
  <ul>
10793
10948
  <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>
10794
10949
  <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>
@@ -10802,14 +10957,14 @@
10802
10957
  <ul>
10803
10958
  <li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
10804
10959
  </ul>
10805
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10960
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10806
10961
  <ul>
10807
10962
  <li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
10808
10963
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
10809
10964
  <li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
10810
10965
  <li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
10811
10966
  </ul>
10812
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10967
+ <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10813
10968
  <ul>
10814
10969
  <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>
10815
10970
  <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>
@@ -10818,7 +10973,7 @@
10818
10973
  <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>
10819
10974
  <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>
10820
10975
  </ul>
10821
- <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10976
+ <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
10822
10977
  <ul>
10823
10978
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
10824
10979
  <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>
@@ -10826,24 +10981,24 @@
10826
10981
  <li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Added <code>development/cleanup_factory_dump.py</code> helper script to aid in identifying other issues with test data.</li>
10827
10982
  </ul>
10828
10983
  <h2 id="v231-2024-08-19">v2.3.1 (2024-08-19)<a class="headerlink" href="#v231-2024-08-19" title="Permanent link">&para;</a></h2>
10829
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10984
+ <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
10830
10985
  <ul>
10831
10986
  <li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
10832
10987
  <li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Added validation logic to <code>DeviceForm</code> <code>clean()</code> method to raise a validation error if there is any invalid software image file specified.</li>
10833
10988
  <li><a href="https://github.com/nautobot/nautobot/issues/5915">#5915</a> - Enhanced <code>IPAddress.objects.get_or_create</code> method to permit specifying a namespace as an alternative to a parent prefix.</li>
10834
10989
  </ul>
10835
- <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
10990
+ <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
10836
10991
  <ul>
10837
10992
  <li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
10838
10993
  </ul>
10839
- <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10994
+ <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
10840
10995
  <ul>
10841
10996
  <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>
10842
10997
  <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>
10843
10998
  <li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
10844
10999
  <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>
10845
11000
  </ul>
10846
- <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
11001
+ <h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">&para;</a></h3>
10847
11002
  <ul>
10848
11003
  <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>
10849
11004
  </ul>
@@ -10852,7 +11007,7 @@
10852
11007
  <ul>
10853
11008
  <li><a href="https://github.com/nautobot/nautobot/issues/6073">#6073</a> - Updated <code>Django</code> to <code>~4.2.15</code> due to <code>CVE-2024-41989</code>, <code>CVE-2024-41990</code>, <code>CVE-2024-41991</code>, and <code>CVE-2024-42005</code>.</li>
10854
11009
  </ul>
10855
- <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
11010
+ <h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">&para;</a></h3>
10856
11011
  <ul>
10857
11012
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
10858
11013
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
@@ -10862,7 +11017,7 @@
10862
11017
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for querying <code>GenericRelation</code> relationships (reverse of <code>GenericForeignKey</code>) in GraphQL.</li>
10863
11018
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for filtering an object's <code>associated_contacts</code> in GraphQL.</li>
10864
11019
  </ul>
10865
- <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
11020
+ <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
10866
11021
  <ul>
10867
11022
  <li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed rendering of <code>scoped_fields</code> column in <code>ObjectMetadataTable</code>.</li>
10868
11023
  <li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
@@ -10876,7 +11031,7 @@
10876
11031
  <li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
10877
11032
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
10878
11033
  </ul>
10879
- <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
11034
+ <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
10880
11035
  <ul>
10881
11036
  <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>
10882
11037
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
@@ -10892,7 +11047,7 @@
10892
11047
  <li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
10893
11048
  <li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>ServiceForm.ip_addresses</code> valid addresses.</li>
10894
11049
  </ul>
10895
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
11050
+ <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
10896
11051
  <ul>
10897
11052
  <li><a href="https://github.com/nautobot/nautobot/issues/5920">#5920</a> - Updated documentation for installation under Ubuntu 24.04 LTS, Fedora 40, AlmaLinux 9, and similar distros.</li>
10898
11053
  <li><a href="https://github.com/nautobot/nautobot/issues/6019">#6019</a> - Updated the installation documentation to recommend a more secure set of filesystem permissions.</li>
@@ -10900,7 +11055,7 @@
10900
11055
  <li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
10901
11056
  <li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
10902
11057
  </ul>
10903
- <h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">&para;</a></h3>
11058
+ <h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">&para;</a></h3>
10904
11059
  <ul>
10905
11060
  <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>
10906
11061
  <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>
@@ -10915,7 +11070,7 @@
10915
11070
  <ul>
10916
11071
  <li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>Django</code> to <code>~4.2.14</code> due to <code>CVE-2024-38875</code>, <code>CVE-2024-39329</code>, <code>CVE-2024-39330</code>, and <code>CVE-2024-39614</code>.</li>
10917
11072
  </ul>
10918
- <h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">&para;</a></h3>
11073
+ <h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">&para;</a></h3>
10919
11074
  <ul>
10920
11075
  <li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
10921
11076
  <li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.</li>
@@ -10962,7 +11117,7 @@
10962
11117
  <li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added tables of related <code>CloudService</code> and/or <code>CloudNetwork</code> instances to the <code>CloudResourceType</code> detail view.</li>
10963
11118
  <li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
10964
11119
  </ul>
10965
- <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
11120
+ <h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">&para;</a></h3>
10966
11121
  <ul>
10967
11122
  <li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Updated device interfaces filter to support filtering by interface name as well as by ID.</li>
10968
11123
  <li><a href="https://github.com/nautobot/nautobot/issues/3749">#3749</a> - Changed behavior of the <code>CHANGELOG_RETENTION</code> setting; it no longer applies automatically to force cleanup of ObjectChange records over a certain age cutoff, but instead serves as the default cutoff age whenever running the new "Logs Cleanup" system Job.</li>
@@ -11006,7 +11161,7 @@
11006
11161
  <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>
11007
11162
  <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>
11008
11163
  </ul>
11009
- <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
11164
+ <h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">&para;</a></h3>
11010
11165
  <ul>
11011
11166
  <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>
11012
11167
  <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>
@@ -11056,13 +11211,13 @@
11056
11211
  <li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
11057
11212
  <li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-timezone-field</code> to version <code>~7.0</code>.</li>
11058
11213
  </ul>
11059
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
11214
+ <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
11060
11215
  <ul>
11061
11216
  <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
11062
11217
  <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>
11063
11218
  <li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
11064
11219
  </ul>
11065
- <h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">&para;</a></h3>
11220
+ <h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">&para;</a></h3>
11066
11221
  <ul>
11067
11222
  <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>
11068
11223
  <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>