nautobot 2.2.1__py3-none-any.whl → 2.2.3__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.
Files changed (99) hide show
  1. nautobot/apps/jobs.py +2 -0
  2. nautobot/core/api/utils.py +12 -9
  3. nautobot/core/apps/__init__.py +2 -2
  4. nautobot/core/celery/__init__.py +79 -68
  5. nautobot/core/celery/backends.py +9 -1
  6. nautobot/core/celery/control.py +4 -7
  7. nautobot/core/celery/schedulers.py +4 -2
  8. nautobot/core/celery/task.py +78 -5
  9. nautobot/core/graphql/schema.py +2 -1
  10. nautobot/core/jobs/__init__.py +2 -1
  11. nautobot/core/templates/generic/object_list.html +3 -3
  12. nautobot/core/templatetags/helpers.py +66 -9
  13. nautobot/core/testing/__init__.py +6 -1
  14. nautobot/core/testing/api.py +12 -13
  15. nautobot/core/testing/mixins.py +2 -2
  16. nautobot/core/testing/views.py +50 -51
  17. nautobot/core/tests/test_api.py +23 -2
  18. nautobot/core/tests/test_templatetags_helpers.py +32 -0
  19. nautobot/core/tests/test_views.py +21 -1
  20. nautobot/core/tests/test_views_utils.py +22 -1
  21. nautobot/core/utils/module_loading.py +89 -0
  22. nautobot/core/views/generic.py +4 -4
  23. nautobot/core/views/mixins.py +4 -3
  24. nautobot/core/views/utils.py +3 -2
  25. nautobot/core/wsgi.py +9 -2
  26. nautobot/dcim/choices.py +14 -0
  27. nautobot/dcim/forms.py +59 -4
  28. nautobot/dcim/models/device_components.py +9 -5
  29. nautobot/dcim/templates/dcim/device/lldp_neighbors.html +2 -2
  30. nautobot/dcim/templates/dcim/devicefamily_retrieve.html +1 -1
  31. nautobot/dcim/templates/dcim/location.html +32 -13
  32. nautobot/dcim/templates/dcim/location_migrate_data_to_contact.html +102 -0
  33. nautobot/dcim/tests/test_forms.py +49 -2
  34. nautobot/dcim/tests/test_views.py +137 -0
  35. nautobot/dcim/urls.py +5 -0
  36. nautobot/dcim/views.py +149 -1
  37. nautobot/extras/api/views.py +21 -10
  38. nautobot/extras/constants.py +3 -3
  39. nautobot/extras/context_managers.py +56 -0
  40. nautobot/extras/datasources/git.py +47 -58
  41. nautobot/extras/forms/forms.py +3 -1
  42. nautobot/extras/jobs.py +79 -146
  43. nautobot/extras/models/datasources.py +0 -2
  44. nautobot/extras/models/jobs.py +36 -18
  45. nautobot/extras/plugins/__init__.py +1 -20
  46. nautobot/extras/signals.py +88 -57
  47. nautobot/extras/test_jobs/__init__.py +8 -0
  48. nautobot/extras/test_jobs/dry_run.py +3 -2
  49. nautobot/extras/test_jobs/fail.py +43 -0
  50. nautobot/extras/test_jobs/ipaddress_vars.py +40 -1
  51. nautobot/extras/test_jobs/jobs_module/__init__.py +5 -0
  52. nautobot/extras/test_jobs/jobs_module/jobs_submodule/__init__.py +1 -0
  53. nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +6 -0
  54. nautobot/extras/test_jobs/pass.py +40 -0
  55. nautobot/extras/test_jobs/relative_import.py +11 -0
  56. nautobot/extras/tests/test_api.py +3 -0
  57. nautobot/extras/tests/test_context_managers.py +98 -1
  58. nautobot/extras/tests/test_datasources.py +125 -118
  59. nautobot/extras/tests/test_job_variables.py +57 -15
  60. nautobot/extras/tests/test_jobs.py +135 -1
  61. nautobot/extras/tests/test_models.py +26 -19
  62. nautobot/extras/tests/test_plugins.py +1 -3
  63. nautobot/extras/tests/test_views.py +2 -4
  64. nautobot/extras/utils.py +37 -0
  65. nautobot/extras/views.py +47 -95
  66. nautobot/ipam/api/views.py +8 -1
  67. nautobot/ipam/graphql/types.py +11 -0
  68. nautobot/ipam/mixins.py +32 -0
  69. nautobot/ipam/models.py +2 -1
  70. nautobot/ipam/querysets.py +6 -1
  71. nautobot/ipam/tables.py +1 -1
  72. nautobot/ipam/tests/test_models.py +82 -0
  73. nautobot/project-static/docs/assets/extra.css +4 -0
  74. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1 -1
  75. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +180 -211
  76. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +1 -1
  77. nautobot/project-static/docs/development/core/application-registry.html +126 -84
  78. nautobot/project-static/docs/development/core/model-checklist.html +49 -1
  79. nautobot/project-static/docs/development/core/model-features.html +1 -1
  80. nautobot/project-static/docs/development/jobs/index.html +334 -58
  81. nautobot/project-static/docs/development/jobs/migration/from-v1.html +1 -1
  82. nautobot/project-static/docs/objects.inv +0 -0
  83. nautobot/project-static/docs/release-notes/version-1.6.html +504 -201
  84. nautobot/project-static/docs/release-notes/version-2.2.html +392 -43
  85. nautobot/project-static/docs/search/search_index.json +1 -1
  86. nautobot/project-static/docs/sitemap.xml +254 -254
  87. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  88. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +7 -4
  89. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +111 -0
  90. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +15 -28
  91. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +4 -4
  92. nautobot/project-static/js/forms.js +18 -11
  93. {nautobot-2.2.1.dist-info → nautobot-2.2.3.dist-info}/METADATA +3 -3
  94. {nautobot-2.2.1.dist-info → nautobot-2.2.3.dist-info}/RECORD +98 -92
  95. nautobot/extras/test_jobs/job_variables.py +0 -93
  96. {nautobot-2.2.1.dist-info → nautobot-2.2.3.dist-info}/LICENSE.txt +0 -0
  97. {nautobot-2.2.1.dist-info → nautobot-2.2.3.dist-info}/NOTICE +0 -0
  98. {nautobot-2.2.1.dist-info → nautobot-2.2.3.dist-info}/WHEEL +0 -0
  99. {nautobot-2.2.1.dist-info → nautobot-2.2.3.dist-info}/entry_points.txt +0 -0
@@ -7397,15 +7397,81 @@
7397
7397
  </li>
7398
7398
 
7399
7399
  <li class="md-nav__item">
7400
- <a href="#v1615-2024-03-18" class="md-nav__link">
7400
+ <a href="#v1618-2024-04-15" class="md-nav__link">
7401
7401
  <span class="md-ellipsis">
7402
- v1.6.15 (2024-03-18)
7402
+ v1.6.18 (2024-04-15)
7403
7403
  </span>
7404
7404
  </a>
7405
7405
 
7406
- <nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
7406
+ <nav class="md-nav" aria-label="v1.6.18 (2024-04-15)">
7407
+ <ul class="md-nav__list">
7408
+
7409
+ <li class="md-nav__item">
7410
+ <a href="#security" class="md-nav__link">
7411
+ <span class="md-ellipsis">
7412
+ Security
7413
+ </span>
7414
+ </a>
7415
+
7416
+ </li>
7417
+
7418
+ <li class="md-nav__item">
7419
+ <a href="#dependencies" class="md-nav__link">
7420
+ <span class="md-ellipsis">
7421
+ Dependencies
7422
+ </span>
7423
+ </a>
7424
+
7425
+ </li>
7426
+
7427
+ </ul>
7428
+ </nav>
7429
+
7430
+ </li>
7431
+
7432
+ <li class="md-nav__item">
7433
+ <a href="#v1617-2024-04-01" class="md-nav__link">
7434
+ <span class="md-ellipsis">
7435
+ v1.6.17 (2024-04-01)
7436
+ </span>
7437
+ </a>
7438
+
7439
+ <nav class="md-nav" aria-label="v1.6.17 (2024-04-01)">
7440
+ <ul class="md-nav__list">
7441
+
7442
+ <li class="md-nav__item">
7443
+ <a href="#dependencies_1" class="md-nav__link">
7444
+ <span class="md-ellipsis">
7445
+ Dependencies
7446
+ </span>
7447
+ </a>
7448
+
7449
+ </li>
7450
+
7451
+ </ul>
7452
+ </nav>
7453
+
7454
+ </li>
7455
+
7456
+ <li class="md-nav__item">
7457
+ <a href="#v1616-2024-03-25" class="md-nav__link">
7458
+ <span class="md-ellipsis">
7459
+ v1.6.16 (2024-03-25)
7460
+ </span>
7461
+ </a>
7462
+
7463
+ <nav class="md-nav" aria-label="v1.6.16 (2024-03-25)">
7407
7464
  <ul class="md-nav__list">
7408
7465
 
7466
+ <li class="md-nav__item">
7467
+ <a href="#security_1" class="md-nav__link">
7468
+ <span class="md-ellipsis">
7469
+ Security
7470
+ </span>
7471
+ </a>
7472
+
7473
+ </li>
7474
+
7409
7475
  <li class="md-nav__item">
7410
7476
  <a href="#added_1" class="md-nav__link">
7411
7477
  <span class="md-ellipsis">
@@ -7413,6 +7479,15 @@
7413
7479
  </span>
7414
7480
  </a>
7415
7481
 
7482
+ </li>
7483
+
7484
+ <li class="md-nav__item">
7485
+ <a href="#changed_1" class="md-nav__link">
7486
+ <span class="md-ellipsis">
7487
+ Changed
7488
+ </span>
7489
+ </a>
7490
+
7416
7491
  </li>
7417
7492
 
7418
7493
  <li class="md-nav__item">
@@ -7422,6 +7497,15 @@
7422
7497
  </span>
7423
7498
  </a>
7424
7499
 
7500
+ </li>
7501
+
7502
+ <li class="md-nav__item">
7503
+ <a href="#documentation" class="md-nav__link">
7504
+ <span class="md-ellipsis">
7505
+ Documentation
7506
+ </span>
7507
+ </a>
7508
+
7425
7509
  </li>
7426
7510
 
7427
7511
  <li class="md-nav__item">
@@ -7436,6 +7520,48 @@
7436
7520
  </ul>
7437
7521
  </nav>
7438
7522
 
7523
+ </li>
7524
+
7525
+ <li class="md-nav__item">
7526
+ <a href="#v1615-2024-03-18" class="md-nav__link">
7527
+ <span class="md-ellipsis">
7528
+ v1.6.15 (2024-03-18)
7529
+ </span>
7530
+ </a>
7531
+
7532
+ <nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
7533
+ <ul class="md-nav__list">
7534
+
7535
+ <li class="md-nav__item">
7536
+ <a href="#added_2" class="md-nav__link">
7537
+ <span class="md-ellipsis">
7538
+ Added
7539
+ </span>
7540
+ </a>
7541
+
7542
+ </li>
7543
+
7544
+ <li class="md-nav__item">
7545
+ <a href="#fixed_1" class="md-nav__link">
7546
+ <span class="md-ellipsis">
7547
+ Fixed
7548
+ </span>
7549
+ </a>
7550
+
7551
+ </li>
7552
+
7553
+ <li class="md-nav__item">
7554
+ <a href="#housekeeping_1" class="md-nav__link">
7555
+ <span class="md-ellipsis">
7556
+ Housekeeping
7557
+ </span>
7558
+ </a>
7559
+
7560
+ </li>
7561
+
7562
+ </ul>
7563
+ </nav>
7564
+
7439
7565
  </li>
7440
7566
 
7441
7567
  <li class="md-nav__item">
@@ -7449,7 +7575,7 @@
7449
7575
  <ul class="md-nav__list">
7450
7576
 
7451
7577
  <li class="md-nav__item">
7452
- <a href="#fixed_1" class="md-nav__link">
7578
+ <a href="#fixed_2" class="md-nav__link">
7453
7579
  <span class="md-ellipsis">
7454
7580
  Fixed
7455
7581
  </span>
@@ -7473,7 +7599,7 @@
7473
7599
  <ul class="md-nav__list">
7474
7600
 
7475
7601
  <li class="md-nav__item">
7476
- <a href="#added_2" class="md-nav__link">
7602
+ <a href="#added_3" class="md-nav__link">
7477
7603
  <span class="md-ellipsis">
7478
7604
  Added
7479
7605
  </span>
@@ -7482,7 +7608,7 @@
7482
7608
  </li>
7483
7609
 
7484
7610
  <li class="md-nav__item">
7485
- <a href="#added_3" class="md-nav__link">
7611
+ <a href="#added_4" class="md-nav__link">
7486
7612
  <span class="md-ellipsis">
7487
7613
  Added
7488
7614
  </span>
@@ -7491,7 +7617,7 @@
7491
7617
  </li>
7492
7618
 
7493
7619
  <li class="md-nav__item">
7494
- <a href="#fixed_2" class="md-nav__link">
7620
+ <a href="#fixed_3" class="md-nav__link">
7495
7621
  <span class="md-ellipsis">
7496
7622
  Fixed
7497
7623
  </span>
@@ -7500,7 +7626,7 @@
7500
7626
  </li>
7501
7627
 
7502
7628
  <li class="md-nav__item">
7503
- <a href="#documentation" class="md-nav__link">
7629
+ <a href="#documentation_1" class="md-nav__link">
7504
7630
  <span class="md-ellipsis">
7505
7631
  Documentation
7506
7632
  </span>
@@ -7524,7 +7650,7 @@
7524
7650
  <ul class="md-nav__list">
7525
7651
 
7526
7652
  <li class="md-nav__item">
7527
- <a href="#added_4" class="md-nav__link">
7653
+ <a href="#added_5" class="md-nav__link">
7528
7654
  <span class="md-ellipsis">
7529
7655
  Added
7530
7656
  </span>
@@ -7533,7 +7659,7 @@
7533
7659
  </li>
7534
7660
 
7535
7661
  <li class="md-nav__item">
7536
- <a href="#security" class="md-nav__link">
7662
+ <a href="#security_2" class="md-nav__link">
7537
7663
  <span class="md-ellipsis">
7538
7664
  Security
7539
7665
  </span>
@@ -7542,7 +7668,7 @@
7542
7668
  </li>
7543
7669
 
7544
7670
  <li class="md-nav__item">
7545
- <a href="#changed_1" class="md-nav__link">
7671
+ <a href="#changed_2" class="md-nav__link">
7546
7672
  <span class="md-ellipsis">
7547
7673
  Changed
7548
7674
  </span>
@@ -7551,7 +7677,7 @@
7551
7677
  </li>
7552
7678
 
7553
7679
  <li class="md-nav__item">
7554
- <a href="#fixed_3" class="md-nav__link">
7680
+ <a href="#fixed_4" class="md-nav__link">
7555
7681
  <span class="md-ellipsis">
7556
7682
  Fixed
7557
7683
  </span>
@@ -7575,7 +7701,7 @@
7575
7701
  <ul class="md-nav__list">
7576
7702
 
7577
7703
  <li class="md-nav__item">
7578
- <a href="#security_1" class="md-nav__link">
7704
+ <a href="#security_3" class="md-nav__link">
7579
7705
  <span class="md-ellipsis">
7580
7706
  Security
7581
7707
  </span>
@@ -7584,7 +7710,7 @@
7584
7710
  </li>
7585
7711
 
7586
7712
  <li class="md-nav__item">
7587
- <a href="#added_5" class="md-nav__link">
7713
+ <a href="#added_6" class="md-nav__link">
7588
7714
  <span class="md-ellipsis">
7589
7715
  Added
7590
7716
  </span>
@@ -7593,7 +7719,7 @@
7593
7719
  </li>
7594
7720
 
7595
7721
  <li class="md-nav__item">
7596
- <a href="#fixed_4" class="md-nav__link">
7722
+ <a href="#fixed_5" class="md-nav__link">
7597
7723
  <span class="md-ellipsis">
7598
7724
  Fixed
7599
7725
  </span>
@@ -7617,7 +7743,7 @@
7617
7743
  <ul class="md-nav__list">
7618
7744
 
7619
7745
  <li class="md-nav__item">
7620
- <a href="#security_2" class="md-nav__link">
7746
+ <a href="#security_4" class="md-nav__link">
7621
7747
  <span class="md-ellipsis">
7622
7748
  Security
7623
7749
  </span>
@@ -7626,7 +7752,7 @@
7626
7752
  </li>
7627
7753
 
7628
7754
  <li class="md-nav__item">
7629
- <a href="#added_6" class="md-nav__link">
7755
+ <a href="#added_7" class="md-nav__link">
7630
7756
  <span class="md-ellipsis">
7631
7757
  Added
7632
7758
  </span>
@@ -7635,7 +7761,7 @@
7635
7761
  </li>
7636
7762
 
7637
7763
  <li class="md-nav__item">
7638
- <a href="#changed_2" class="md-nav__link">
7764
+ <a href="#changed_3" class="md-nav__link">
7639
7765
  <span class="md-ellipsis">
7640
7766
  Changed
7641
7767
  </span>
@@ -7644,7 +7770,7 @@
7644
7770
  </li>
7645
7771
 
7646
7772
  <li class="md-nav__item">
7647
- <a href="#dependencies" class="md-nav__link">
7773
+ <a href="#dependencies_2" class="md-nav__link">
7648
7774
  <span class="md-ellipsis">
7649
7775
  Dependencies
7650
7776
  </span>
@@ -7668,7 +7794,7 @@
7668
7794
  <ul class="md-nav__list">
7669
7795
 
7670
7796
  <li class="md-nav__item">
7671
- <a href="#fixed_5" class="md-nav__link">
7797
+ <a href="#fixed_6" class="md-nav__link">
7672
7798
  <span class="md-ellipsis">
7673
7799
  Fixed
7674
7800
  </span>
@@ -7692,7 +7818,7 @@
7692
7818
  <ul class="md-nav__list">
7693
7819
 
7694
7820
  <li class="md-nav__item">
7695
- <a href="#security_3" class="md-nav__link">
7821
+ <a href="#security_5" class="md-nav__link">
7696
7822
  <span class="md-ellipsis">
7697
7823
  Security
7698
7824
  </span>
@@ -7701,7 +7827,7 @@
7701
7827
  </li>
7702
7828
 
7703
7829
  <li class="md-nav__item">
7704
- <a href="#added_7" class="md-nav__link">
7830
+ <a href="#added_8" class="md-nav__link">
7705
7831
  <span class="md-ellipsis">
7706
7832
  Added
7707
7833
  </span>
@@ -7719,7 +7845,7 @@
7719
7845
  </li>
7720
7846
 
7721
7847
  <li class="md-nav__item">
7722
- <a href="#fixed_6" class="md-nav__link">
7848
+ <a href="#fixed_7" class="md-nav__link">
7723
7849
  <span class="md-ellipsis">
7724
7850
  Fixed
7725
7851
  </span>
@@ -7728,7 +7854,7 @@
7728
7854
  </li>
7729
7855
 
7730
7856
  <li class="md-nav__item">
7731
- <a href="#housekeeping_1" class="md-nav__link">
7857
+ <a href="#housekeeping_2" class="md-nav__link">
7732
7858
  <span class="md-ellipsis">
7733
7859
  Housekeeping
7734
7860
  </span>
@@ -7752,7 +7878,7 @@
7752
7878
  <ul class="md-nav__list">
7753
7879
 
7754
7880
  <li class="md-nav__item">
7755
- <a href="#security_4" class="md-nav__link">
7881
+ <a href="#security_6" class="md-nav__link">
7756
7882
  <span class="md-ellipsis">
7757
7883
  Security
7758
7884
  </span>
@@ -7761,7 +7887,7 @@
7761
7887
  </li>
7762
7888
 
7763
7889
  <li class="md-nav__item">
7764
- <a href="#added_8" class="md-nav__link">
7890
+ <a href="#added_9" class="md-nav__link">
7765
7891
  <span class="md-ellipsis">
7766
7892
  Added
7767
7893
  </span>
@@ -7779,7 +7905,7 @@
7779
7905
  </li>
7780
7906
 
7781
7907
  <li class="md-nav__item">
7782
- <a href="#fixed_7" class="md-nav__link">
7908
+ <a href="#fixed_8" class="md-nav__link">
7783
7909
  <span class="md-ellipsis">
7784
7910
  Fixed
7785
7911
  </span>
@@ -7803,7 +7929,7 @@
7803
7929
  <ul class="md-nav__list">
7804
7930
 
7805
7931
  <li class="md-nav__item">
7806
- <a href="#security_5" class="md-nav__link">
7932
+ <a href="#security_7" class="md-nav__link">
7807
7933
  <span class="md-ellipsis">
7808
7934
  Security
7809
7935
  </span>
@@ -7812,7 +7938,7 @@
7812
7938
  </li>
7813
7939
 
7814
7940
  <li class="md-nav__item">
7815
- <a href="#changed_3" class="md-nav__link">
7941
+ <a href="#changed_4" class="md-nav__link">
7816
7942
  <span class="md-ellipsis">
7817
7943
  Changed
7818
7944
  </span>
@@ -7821,7 +7947,7 @@
7821
7947
  </li>
7822
7948
 
7823
7949
  <li class="md-nav__item">
7824
- <a href="#fixed_8" class="md-nav__link">
7950
+ <a href="#fixed_9" class="md-nav__link">
7825
7951
  <span class="md-ellipsis">
7826
7952
  Fixed
7827
7953
  </span>
@@ -7830,7 +7956,7 @@
7830
7956
  </li>
7831
7957
 
7832
7958
  <li class="md-nav__item">
7833
- <a href="#dependencies_1" class="md-nav__link">
7959
+ <a href="#dependencies_3" class="md-nav__link">
7834
7960
  <span class="md-ellipsis">
7835
7961
  Dependencies
7836
7962
  </span>
@@ -7839,7 +7965,7 @@
7839
7965
  </li>
7840
7966
 
7841
7967
  <li class="md-nav__item">
7842
- <a href="#housekeeping_2" class="md-nav__link">
7968
+ <a href="#housekeeping_3" class="md-nav__link">
7843
7969
  <span class="md-ellipsis">
7844
7970
  Housekeeping
7845
7971
  </span>
@@ -7863,7 +7989,7 @@
7863
7989
  <ul class="md-nav__list">
7864
7990
 
7865
7991
  <li class="md-nav__item">
7866
- <a href="#security_6" class="md-nav__link">
7992
+ <a href="#security_8" class="md-nav__link">
7867
7993
  <span class="md-ellipsis">
7868
7994
  Security
7869
7995
  </span>
@@ -7872,7 +7998,7 @@
7872
7998
  </li>
7873
7999
 
7874
8000
  <li class="md-nav__item">
7875
- <a href="#added_9" class="md-nav__link">
8001
+ <a href="#added_10" class="md-nav__link">
7876
8002
  <span class="md-ellipsis">
7877
8003
  Added
7878
8004
  </span>
@@ -7881,7 +8007,7 @@
7881
8007
  </li>
7882
8008
 
7883
8009
  <li class="md-nav__item">
7884
- <a href="#fixed_9" class="md-nav__link">
8010
+ <a href="#fixed_10" class="md-nav__link">
7885
8011
  <span class="md-ellipsis">
7886
8012
  Fixed
7887
8013
  </span>
@@ -7890,7 +8016,7 @@
7890
8016
  </li>
7891
8017
 
7892
8018
  <li class="md-nav__item">
7893
- <a href="#documentation_1" class="md-nav__link">
8019
+ <a href="#documentation_2" class="md-nav__link">
7894
8020
  <span class="md-ellipsis">
7895
8021
  Documentation
7896
8022
  </span>
@@ -7899,7 +8025,7 @@
7899
8025
  </li>
7900
8026
 
7901
8027
  <li class="md-nav__item">
7902
- <a href="#housekeeping_3" class="md-nav__link">
8028
+ <a href="#housekeeping_4" class="md-nav__link">
7903
8029
  <span class="md-ellipsis">
7904
8030
  Housekeeping
7905
8031
  </span>
@@ -7923,7 +8049,7 @@
7923
8049
  <ul class="md-nav__list">
7924
8050
 
7925
8051
  <li class="md-nav__item">
7926
- <a href="#added_10" class="md-nav__link">
8052
+ <a href="#added_11" class="md-nav__link">
7927
8053
  <span class="md-ellipsis">
7928
8054
  Added
7929
8055
  </span>
@@ -7932,7 +8058,7 @@
7932
8058
  </li>
7933
8059
 
7934
8060
  <li class="md-nav__item">
7935
- <a href="#changed_4" class="md-nav__link">
8061
+ <a href="#changed_5" class="md-nav__link">
7936
8062
  <span class="md-ellipsis">
7937
8063
  Changed
7938
8064
  </span>
@@ -7950,7 +8076,7 @@
7950
8076
  </li>
7951
8077
 
7952
8078
  <li class="md-nav__item">
7953
- <a href="#housekeeping_4" class="md-nav__link">
8079
+ <a href="#housekeeping_5" class="md-nav__link">
7954
8080
  <span class="md-ellipsis">
7955
8081
  Housekeeping
7956
8082
  </span>
@@ -7974,7 +8100,7 @@
7974
8100
  <ul class="md-nav__list">
7975
8101
 
7976
8102
  <li class="md-nav__item">
7977
- <a href="#security_7" class="md-nav__link">
8103
+ <a href="#security_9" class="md-nav__link">
7978
8104
  <span class="md-ellipsis">
7979
8105
  Security
7980
8106
  </span>
@@ -7983,7 +8109,7 @@
7983
8109
  </li>
7984
8110
 
7985
8111
  <li class="md-nav__item">
7986
- <a href="#added_11" class="md-nav__link">
8112
+ <a href="#added_12" class="md-nav__link">
7987
8113
  <span class="md-ellipsis">
7988
8114
  Added
7989
8115
  </span>
@@ -7992,7 +8118,7 @@
7992
8118
  </li>
7993
8119
 
7994
8120
  <li class="md-nav__item">
7995
- <a href="#fixed_10" class="md-nav__link">
8121
+ <a href="#fixed_11" class="md-nav__link">
7996
8122
  <span class="md-ellipsis">
7997
8123
  Fixed
7998
8124
  </span>
@@ -8001,7 +8127,7 @@
8001
8127
  </li>
8002
8128
 
8003
8129
  <li class="md-nav__item">
8004
- <a href="#housekeeping_5" class="md-nav__link">
8130
+ <a href="#housekeeping_6" class="md-nav__link">
8005
8131
  <span class="md-ellipsis">
8006
8132
  Housekeeping
8007
8133
  </span>
@@ -8025,7 +8151,7 @@
8025
8151
  <ul class="md-nav__list">
8026
8152
 
8027
8153
  <li class="md-nav__item">
8028
- <a href="#added_12" class="md-nav__link">
8154
+ <a href="#added_13" class="md-nav__link">
8029
8155
  <span class="md-ellipsis">
8030
8156
  Added
8031
8157
  </span>
@@ -8034,7 +8160,7 @@
8034
8160
  </li>
8035
8161
 
8036
8162
  <li class="md-nav__item">
8037
- <a href="#changed_5" class="md-nav__link">
8163
+ <a href="#changed_6" class="md-nav__link">
8038
8164
  <span class="md-ellipsis">
8039
8165
  Changed
8040
8166
  </span>
@@ -8043,7 +8169,7 @@
8043
8169
  </li>
8044
8170
 
8045
8171
  <li class="md-nav__item">
8046
- <a href="#fixed_11" class="md-nav__link">
8172
+ <a href="#fixed_12" class="md-nav__link">
8047
8173
  <span class="md-ellipsis">
8048
8174
  Fixed
8049
8175
  </span>
@@ -8052,7 +8178,7 @@
8052
8178
  </li>
8053
8179
 
8054
8180
  <li class="md-nav__item">
8055
- <a href="#documentation_2" class="md-nav__link">
8181
+ <a href="#documentation_3" class="md-nav__link">
8056
8182
  <span class="md-ellipsis">
8057
8183
  Documentation
8058
8184
  </span>
@@ -8061,7 +8187,7 @@
8061
8187
  </li>
8062
8188
 
8063
8189
  <li class="md-nav__item">
8064
- <a href="#housekeeping_6" class="md-nav__link">
8190
+ <a href="#housekeeping_7" class="md-nav__link">
8065
8191
  <span class="md-ellipsis">
8066
8192
  Housekeeping
8067
8193
  </span>
@@ -8085,7 +8211,7 @@
8085
8211
  <ul class="md-nav__list">
8086
8212
 
8087
8213
  <li class="md-nav__item">
8088
- <a href="#changed_6" class="md-nav__link">
8214
+ <a href="#changed_7" class="md-nav__link">
8089
8215
  <span class="md-ellipsis">
8090
8216
  Changed
8091
8217
  </span>
@@ -8094,7 +8220,7 @@
8094
8220
  </li>
8095
8221
 
8096
8222
  <li class="md-nav__item">
8097
- <a href="#fixed_12" class="md-nav__link">
8223
+ <a href="#fixed_13" class="md-nav__link">
8098
8224
  <span class="md-ellipsis">
8099
8225
  Fixed
8100
8226
  </span>
@@ -8103,7 +8229,7 @@
8103
8229
  </li>
8104
8230
 
8105
8231
  <li class="md-nav__item">
8106
- <a href="#documentation_3" class="md-nav__link">
8232
+ <a href="#documentation_4" class="md-nav__link">
8107
8233
  <span class="md-ellipsis">
8108
8234
  Documentation
8109
8235
  </span>
@@ -8112,7 +8238,7 @@
8112
8238
  </li>
8113
8239
 
8114
8240
  <li class="md-nav__item">
8115
- <a href="#housekeeping_7" class="md-nav__link">
8241
+ <a href="#housekeeping_8" class="md-nav__link">
8116
8242
  <span class="md-ellipsis">
8117
8243
  Housekeeping
8118
8244
  </span>
@@ -8136,7 +8262,7 @@
8136
8262
  <ul class="md-nav__list">
8137
8263
 
8138
8264
  <li class="md-nav__item">
8139
- <a href="#added_13" class="md-nav__link">
8265
+ <a href="#added_14" class="md-nav__link">
8140
8266
  <span class="md-ellipsis">
8141
8267
  Added
8142
8268
  </span>
@@ -8145,7 +8271,7 @@
8145
8271
  </li>
8146
8272
 
8147
8273
  <li class="md-nav__item">
8148
- <a href="#fixed_13" class="md-nav__link">
8274
+ <a href="#fixed_14" class="md-nav__link">
8149
8275
  <span class="md-ellipsis">
8150
8276
  Fixed
8151
8277
  </span>
@@ -8154,7 +8280,7 @@
8154
8280
  </li>
8155
8281
 
8156
8282
  <li class="md-nav__item">
8157
- <a href="#dependencies_2" class="md-nav__link">
8283
+ <a href="#dependencies_4" class="md-nav__link">
8158
8284
  <span class="md-ellipsis">
8159
8285
  Dependencies
8160
8286
  </span>
@@ -8163,7 +8289,7 @@
8163
8289
  </li>
8164
8290
 
8165
8291
  <li class="md-nav__item">
8166
- <a href="#documentation_4" class="md-nav__link">
8292
+ <a href="#documentation_5" class="md-nav__link">
8167
8293
  <span class="md-ellipsis">
8168
8294
  Documentation
8169
8295
  </span>
@@ -8187,7 +8313,7 @@
8187
8313
  <ul class="md-nav__list">
8188
8314
 
8189
8315
  <li class="md-nav__item">
8190
- <a href="#added_14" class="md-nav__link">
8316
+ <a href="#added_15" class="md-nav__link">
8191
8317
  <span class="md-ellipsis">
8192
8318
  Added
8193
8319
  </span>
@@ -8196,7 +8322,7 @@
8196
8322
  </li>
8197
8323
 
8198
8324
  <li class="md-nav__item">
8199
- <a href="#changed_7" class="md-nav__link">
8325
+ <a href="#changed_8" class="md-nav__link">
8200
8326
  <span class="md-ellipsis">
8201
8327
  Changed
8202
8328
  </span>
@@ -8214,7 +8340,7 @@
8214
8340
  </li>
8215
8341
 
8216
8342
  <li class="md-nav__item">
8217
- <a href="#fixed_14" class="md-nav__link">
8343
+ <a href="#fixed_15" class="md-nav__link">
8218
8344
  <span class="md-ellipsis">
8219
8345
  Fixed
8220
8346
  </span>
@@ -8223,7 +8349,7 @@
8223
8349
  </li>
8224
8350
 
8225
8351
  <li class="md-nav__item">
8226
- <a href="#dependencies_3" class="md-nav__link">
8352
+ <a href="#dependencies_5" class="md-nav__link">
8227
8353
  <span class="md-ellipsis">
8228
8354
  Dependencies
8229
8355
  </span>
@@ -8232,7 +8358,7 @@
8232
8358
  </li>
8233
8359
 
8234
8360
  <li class="md-nav__item">
8235
- <a href="#documentation_5" class="md-nav__link">
8361
+ <a href="#documentation_6" class="md-nav__link">
8236
8362
  <span class="md-ellipsis">
8237
8363
  Documentation
8238
8364
  </span>
@@ -8893,37 +9019,28 @@
8893
9019
  </li>
8894
9020
 
8895
9021
  <li class="md-nav__item">
8896
- <a href="#v1615-2024-03-18" class="md-nav__link">
9022
+ <a href="#v1618-2024-04-15" class="md-nav__link">
8897
9023
  <span class="md-ellipsis">
8898
- v1.6.15 (2024-03-18)
9024
+ v1.6.18 (2024-04-15)
8899
9025
  </span>
8900
9026
  </a>
8901
9027
 
8902
- <nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
9028
+ <nav class="md-nav" aria-label="v1.6.18 (2024-04-15)">
8903
9029
  <ul class="md-nav__list">
8904
9030
 
8905
9031
  <li class="md-nav__item">
8906
- <a href="#added_1" class="md-nav__link">
8907
- <span class="md-ellipsis">
8908
- Added
8909
- </span>
8910
- </a>
8911
-
8912
- </li>
8913
-
8914
- <li class="md-nav__item">
8915
- <a href="#fixed" class="md-nav__link">
9032
+ <a href="#security" class="md-nav__link">
8916
9033
  <span class="md-ellipsis">
8917
- Fixed
9034
+ Security
8918
9035
  </span>
8919
9036
  </a>
8920
9037
 
8921
9038
  </li>
8922
9039
 
8923
9040
  <li class="md-nav__item">
8924
- <a href="#housekeeping" class="md-nav__link">
9041
+ <a href="#dependencies" class="md-nav__link">
8925
9042
  <span class="md-ellipsis">
8926
- Housekeeping
9043
+ Dependencies
8927
9044
  </span>
8928
9045
  </a>
8929
9046
 
@@ -8935,17 +9052,152 @@
8935
9052
  </li>
8936
9053
 
8937
9054
  <li class="md-nav__item">
8938
- <a href="#v1614-2024-03-05" class="md-nav__link">
9055
+ <a href="#v1617-2024-04-01" class="md-nav__link">
8939
9056
  <span class="md-ellipsis">
8940
- v1.6.14 (2024-03-05)
9057
+ v1.6.17 (2024-04-01)
8941
9058
  </span>
8942
9059
  </a>
8943
9060
 
8944
- <nav class="md-nav" aria-label="v1.6.14 (2024-03-05)">
9061
+ <nav class="md-nav" aria-label="v1.6.17 (2024-04-01)">
8945
9062
  <ul class="md-nav__list">
8946
9063
 
8947
9064
  <li class="md-nav__item">
8948
- <a href="#fixed_1" class="md-nav__link">
9065
+ <a href="#dependencies_1" class="md-nav__link">
9066
+ <span class="md-ellipsis">
9067
+ Dependencies
9068
+ </span>
9069
+ </a>
9070
+
9071
+ </li>
9072
+
9073
+ </ul>
9074
+ </nav>
9075
+
9076
+ </li>
9077
+
9078
+ <li class="md-nav__item">
9079
+ <a href="#v1616-2024-03-25" class="md-nav__link">
9080
+ <span class="md-ellipsis">
9081
+ v1.6.16 (2024-03-25)
9082
+ </span>
9083
+ </a>
9084
+
9085
+ <nav class="md-nav" aria-label="v1.6.16 (2024-03-25)">
9086
+ <ul class="md-nav__list">
9087
+
9088
+ <li class="md-nav__item">
9089
+ <a href="#security_1" class="md-nav__link">
9090
+ <span class="md-ellipsis">
9091
+ Security
9092
+ </span>
9093
+ </a>
9094
+
9095
+ </li>
9096
+
9097
+ <li class="md-nav__item">
9098
+ <a href="#added_1" class="md-nav__link">
9099
+ <span class="md-ellipsis">
9100
+ Added
9101
+ </span>
9102
+ </a>
9103
+
9104
+ </li>
9105
+
9106
+ <li class="md-nav__item">
9107
+ <a href="#changed_1" class="md-nav__link">
9108
+ <span class="md-ellipsis">
9109
+ Changed
9110
+ </span>
9111
+ </a>
9112
+
9113
+ </li>
9114
+
9115
+ <li class="md-nav__item">
9116
+ <a href="#fixed" class="md-nav__link">
9117
+ <span class="md-ellipsis">
9118
+ Fixed
9119
+ </span>
9120
+ </a>
9121
+
9122
+ </li>
9123
+
9124
+ <li class="md-nav__item">
9125
+ <a href="#documentation" class="md-nav__link">
9126
+ <span class="md-ellipsis">
9127
+ Documentation
9128
+ </span>
9129
+ </a>
9130
+
9131
+ </li>
9132
+
9133
+ <li class="md-nav__item">
9134
+ <a href="#housekeeping" class="md-nav__link">
9135
+ <span class="md-ellipsis">
9136
+ Housekeeping
9137
+ </span>
9138
+ </a>
9139
+
9140
+ </li>
9141
+
9142
+ </ul>
9143
+ </nav>
9144
+
9145
+ </li>
9146
+
9147
+ <li class="md-nav__item">
9148
+ <a href="#v1615-2024-03-18" class="md-nav__link">
9149
+ <span class="md-ellipsis">
9150
+ v1.6.15 (2024-03-18)
9151
+ </span>
9152
+ </a>
9153
+
9154
+ <nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
9155
+ <ul class="md-nav__list">
9156
+
9157
+ <li class="md-nav__item">
9158
+ <a href="#added_2" class="md-nav__link">
9159
+ <span class="md-ellipsis">
9160
+ Added
9161
+ </span>
9162
+ </a>
9163
+
9164
+ </li>
9165
+
9166
+ <li class="md-nav__item">
9167
+ <a href="#fixed_1" class="md-nav__link">
9168
+ <span class="md-ellipsis">
9169
+ Fixed
9170
+ </span>
9171
+ </a>
9172
+
9173
+ </li>
9174
+
9175
+ <li class="md-nav__item">
9176
+ <a href="#housekeeping_1" class="md-nav__link">
9177
+ <span class="md-ellipsis">
9178
+ Housekeeping
9179
+ </span>
9180
+ </a>
9181
+
9182
+ </li>
9183
+
9184
+ </ul>
9185
+ </nav>
9186
+
9187
+ </li>
9188
+
9189
+ <li class="md-nav__item">
9190
+ <a href="#v1614-2024-03-05" class="md-nav__link">
9191
+ <span class="md-ellipsis">
9192
+ v1.6.14 (2024-03-05)
9193
+ </span>
9194
+ </a>
9195
+
9196
+ <nav class="md-nav" aria-label="v1.6.14 (2024-03-05)">
9197
+ <ul class="md-nav__list">
9198
+
9199
+ <li class="md-nav__item">
9200
+ <a href="#fixed_2" class="md-nav__link">
8949
9201
  <span class="md-ellipsis">
8950
9202
  Fixed
8951
9203
  </span>
@@ -8969,7 +9221,7 @@
8969
9221
  <ul class="md-nav__list">
8970
9222
 
8971
9223
  <li class="md-nav__item">
8972
- <a href="#added_2" class="md-nav__link">
9224
+ <a href="#added_3" class="md-nav__link">
8973
9225
  <span class="md-ellipsis">
8974
9226
  Added
8975
9227
  </span>
@@ -8978,7 +9230,7 @@
8978
9230
  </li>
8979
9231
 
8980
9232
  <li class="md-nav__item">
8981
- <a href="#added_3" class="md-nav__link">
9233
+ <a href="#added_4" class="md-nav__link">
8982
9234
  <span class="md-ellipsis">
8983
9235
  Added
8984
9236
  </span>
@@ -8987,7 +9239,7 @@
8987
9239
  </li>
8988
9240
 
8989
9241
  <li class="md-nav__item">
8990
- <a href="#fixed_2" class="md-nav__link">
9242
+ <a href="#fixed_3" class="md-nav__link">
8991
9243
  <span class="md-ellipsis">
8992
9244
  Fixed
8993
9245
  </span>
@@ -8996,7 +9248,7 @@
8996
9248
  </li>
8997
9249
 
8998
9250
  <li class="md-nav__item">
8999
- <a href="#documentation" class="md-nav__link">
9251
+ <a href="#documentation_1" class="md-nav__link">
9000
9252
  <span class="md-ellipsis">
9001
9253
  Documentation
9002
9254
  </span>
@@ -9020,7 +9272,7 @@
9020
9272
  <ul class="md-nav__list">
9021
9273
 
9022
9274
  <li class="md-nav__item">
9023
- <a href="#added_4" class="md-nav__link">
9275
+ <a href="#added_5" class="md-nav__link">
9024
9276
  <span class="md-ellipsis">
9025
9277
  Added
9026
9278
  </span>
@@ -9029,7 +9281,7 @@
9029
9281
  </li>
9030
9282
 
9031
9283
  <li class="md-nav__item">
9032
- <a href="#security" class="md-nav__link">
9284
+ <a href="#security_2" class="md-nav__link">
9033
9285
  <span class="md-ellipsis">
9034
9286
  Security
9035
9287
  </span>
@@ -9038,7 +9290,7 @@
9038
9290
  </li>
9039
9291
 
9040
9292
  <li class="md-nav__item">
9041
- <a href="#changed_1" class="md-nav__link">
9293
+ <a href="#changed_2" class="md-nav__link">
9042
9294
  <span class="md-ellipsis">
9043
9295
  Changed
9044
9296
  </span>
@@ -9047,7 +9299,7 @@
9047
9299
  </li>
9048
9300
 
9049
9301
  <li class="md-nav__item">
9050
- <a href="#fixed_3" class="md-nav__link">
9302
+ <a href="#fixed_4" class="md-nav__link">
9051
9303
  <span class="md-ellipsis">
9052
9304
  Fixed
9053
9305
  </span>
@@ -9071,7 +9323,7 @@
9071
9323
  <ul class="md-nav__list">
9072
9324
 
9073
9325
  <li class="md-nav__item">
9074
- <a href="#security_1" class="md-nav__link">
9326
+ <a href="#security_3" class="md-nav__link">
9075
9327
  <span class="md-ellipsis">
9076
9328
  Security
9077
9329
  </span>
@@ -9080,7 +9332,7 @@
9080
9332
  </li>
9081
9333
 
9082
9334
  <li class="md-nav__item">
9083
- <a href="#added_5" class="md-nav__link">
9335
+ <a href="#added_6" class="md-nav__link">
9084
9336
  <span class="md-ellipsis">
9085
9337
  Added
9086
9338
  </span>
@@ -9089,7 +9341,7 @@
9089
9341
  </li>
9090
9342
 
9091
9343
  <li class="md-nav__item">
9092
- <a href="#fixed_4" class="md-nav__link">
9344
+ <a href="#fixed_5" class="md-nav__link">
9093
9345
  <span class="md-ellipsis">
9094
9346
  Fixed
9095
9347
  </span>
@@ -9113,7 +9365,7 @@
9113
9365
  <ul class="md-nav__list">
9114
9366
 
9115
9367
  <li class="md-nav__item">
9116
- <a href="#security_2" class="md-nav__link">
9368
+ <a href="#security_4" class="md-nav__link">
9117
9369
  <span class="md-ellipsis">
9118
9370
  Security
9119
9371
  </span>
@@ -9122,7 +9374,7 @@
9122
9374
  </li>
9123
9375
 
9124
9376
  <li class="md-nav__item">
9125
- <a href="#added_6" class="md-nav__link">
9377
+ <a href="#added_7" class="md-nav__link">
9126
9378
  <span class="md-ellipsis">
9127
9379
  Added
9128
9380
  </span>
@@ -9131,7 +9383,7 @@
9131
9383
  </li>
9132
9384
 
9133
9385
  <li class="md-nav__item">
9134
- <a href="#changed_2" class="md-nav__link">
9386
+ <a href="#changed_3" class="md-nav__link">
9135
9387
  <span class="md-ellipsis">
9136
9388
  Changed
9137
9389
  </span>
@@ -9140,7 +9392,7 @@
9140
9392
  </li>
9141
9393
 
9142
9394
  <li class="md-nav__item">
9143
- <a href="#dependencies" class="md-nav__link">
9395
+ <a href="#dependencies_2" class="md-nav__link">
9144
9396
  <span class="md-ellipsis">
9145
9397
  Dependencies
9146
9398
  </span>
@@ -9164,7 +9416,7 @@
9164
9416
  <ul class="md-nav__list">
9165
9417
 
9166
9418
  <li class="md-nav__item">
9167
- <a href="#fixed_5" class="md-nav__link">
9419
+ <a href="#fixed_6" class="md-nav__link">
9168
9420
  <span class="md-ellipsis">
9169
9421
  Fixed
9170
9422
  </span>
@@ -9188,7 +9440,7 @@
9188
9440
  <ul class="md-nav__list">
9189
9441
 
9190
9442
  <li class="md-nav__item">
9191
- <a href="#security_3" class="md-nav__link">
9443
+ <a href="#security_5" class="md-nav__link">
9192
9444
  <span class="md-ellipsis">
9193
9445
  Security
9194
9446
  </span>
@@ -9197,7 +9449,7 @@
9197
9449
  </li>
9198
9450
 
9199
9451
  <li class="md-nav__item">
9200
- <a href="#added_7" class="md-nav__link">
9452
+ <a href="#added_8" class="md-nav__link">
9201
9453
  <span class="md-ellipsis">
9202
9454
  Added
9203
9455
  </span>
@@ -9215,7 +9467,7 @@
9215
9467
  </li>
9216
9468
 
9217
9469
  <li class="md-nav__item">
9218
- <a href="#fixed_6" class="md-nav__link">
9470
+ <a href="#fixed_7" class="md-nav__link">
9219
9471
  <span class="md-ellipsis">
9220
9472
  Fixed
9221
9473
  </span>
@@ -9224,7 +9476,7 @@
9224
9476
  </li>
9225
9477
 
9226
9478
  <li class="md-nav__item">
9227
- <a href="#housekeeping_1" class="md-nav__link">
9479
+ <a href="#housekeeping_2" class="md-nav__link">
9228
9480
  <span class="md-ellipsis">
9229
9481
  Housekeeping
9230
9482
  </span>
@@ -9248,7 +9500,7 @@
9248
9500
  <ul class="md-nav__list">
9249
9501
 
9250
9502
  <li class="md-nav__item">
9251
- <a href="#security_4" class="md-nav__link">
9503
+ <a href="#security_6" class="md-nav__link">
9252
9504
  <span class="md-ellipsis">
9253
9505
  Security
9254
9506
  </span>
@@ -9257,7 +9509,7 @@
9257
9509
  </li>
9258
9510
 
9259
9511
  <li class="md-nav__item">
9260
- <a href="#added_8" class="md-nav__link">
9512
+ <a href="#added_9" class="md-nav__link">
9261
9513
  <span class="md-ellipsis">
9262
9514
  Added
9263
9515
  </span>
@@ -9275,7 +9527,7 @@
9275
9527
  </li>
9276
9528
 
9277
9529
  <li class="md-nav__item">
9278
- <a href="#fixed_7" class="md-nav__link">
9530
+ <a href="#fixed_8" class="md-nav__link">
9279
9531
  <span class="md-ellipsis">
9280
9532
  Fixed
9281
9533
  </span>
@@ -9299,7 +9551,7 @@
9299
9551
  <ul class="md-nav__list">
9300
9552
 
9301
9553
  <li class="md-nav__item">
9302
- <a href="#security_5" class="md-nav__link">
9554
+ <a href="#security_7" class="md-nav__link">
9303
9555
  <span class="md-ellipsis">
9304
9556
  Security
9305
9557
  </span>
@@ -9308,7 +9560,7 @@
9308
9560
  </li>
9309
9561
 
9310
9562
  <li class="md-nav__item">
9311
- <a href="#changed_3" class="md-nav__link">
9563
+ <a href="#changed_4" class="md-nav__link">
9312
9564
  <span class="md-ellipsis">
9313
9565
  Changed
9314
9566
  </span>
@@ -9317,7 +9569,7 @@
9317
9569
  </li>
9318
9570
 
9319
9571
  <li class="md-nav__item">
9320
- <a href="#fixed_8" class="md-nav__link">
9572
+ <a href="#fixed_9" class="md-nav__link">
9321
9573
  <span class="md-ellipsis">
9322
9574
  Fixed
9323
9575
  </span>
@@ -9326,7 +9578,7 @@
9326
9578
  </li>
9327
9579
 
9328
9580
  <li class="md-nav__item">
9329
- <a href="#dependencies_1" class="md-nav__link">
9581
+ <a href="#dependencies_3" class="md-nav__link">
9330
9582
  <span class="md-ellipsis">
9331
9583
  Dependencies
9332
9584
  </span>
@@ -9335,7 +9587,7 @@
9335
9587
  </li>
9336
9588
 
9337
9589
  <li class="md-nav__item">
9338
- <a href="#housekeeping_2" class="md-nav__link">
9590
+ <a href="#housekeeping_3" class="md-nav__link">
9339
9591
  <span class="md-ellipsis">
9340
9592
  Housekeeping
9341
9593
  </span>
@@ -9359,7 +9611,7 @@
9359
9611
  <ul class="md-nav__list">
9360
9612
 
9361
9613
  <li class="md-nav__item">
9362
- <a href="#security_6" class="md-nav__link">
9614
+ <a href="#security_8" class="md-nav__link">
9363
9615
  <span class="md-ellipsis">
9364
9616
  Security
9365
9617
  </span>
@@ -9368,7 +9620,7 @@
9368
9620
  </li>
9369
9621
 
9370
9622
  <li class="md-nav__item">
9371
- <a href="#added_9" class="md-nav__link">
9623
+ <a href="#added_10" class="md-nav__link">
9372
9624
  <span class="md-ellipsis">
9373
9625
  Added
9374
9626
  </span>
@@ -9377,7 +9629,7 @@
9377
9629
  </li>
9378
9630
 
9379
9631
  <li class="md-nav__item">
9380
- <a href="#fixed_9" class="md-nav__link">
9632
+ <a href="#fixed_10" class="md-nav__link">
9381
9633
  <span class="md-ellipsis">
9382
9634
  Fixed
9383
9635
  </span>
@@ -9386,7 +9638,7 @@
9386
9638
  </li>
9387
9639
 
9388
9640
  <li class="md-nav__item">
9389
- <a href="#documentation_1" class="md-nav__link">
9641
+ <a href="#documentation_2" class="md-nav__link">
9390
9642
  <span class="md-ellipsis">
9391
9643
  Documentation
9392
9644
  </span>
@@ -9395,7 +9647,7 @@
9395
9647
  </li>
9396
9648
 
9397
9649
  <li class="md-nav__item">
9398
- <a href="#housekeeping_3" class="md-nav__link">
9650
+ <a href="#housekeeping_4" class="md-nav__link">
9399
9651
  <span class="md-ellipsis">
9400
9652
  Housekeeping
9401
9653
  </span>
@@ -9419,7 +9671,7 @@
9419
9671
  <ul class="md-nav__list">
9420
9672
 
9421
9673
  <li class="md-nav__item">
9422
- <a href="#added_10" class="md-nav__link">
9674
+ <a href="#added_11" class="md-nav__link">
9423
9675
  <span class="md-ellipsis">
9424
9676
  Added
9425
9677
  </span>
@@ -9428,7 +9680,7 @@
9428
9680
  </li>
9429
9681
 
9430
9682
  <li class="md-nav__item">
9431
- <a href="#changed_4" class="md-nav__link">
9683
+ <a href="#changed_5" class="md-nav__link">
9432
9684
  <span class="md-ellipsis">
9433
9685
  Changed
9434
9686
  </span>
@@ -9446,7 +9698,7 @@
9446
9698
  </li>
9447
9699
 
9448
9700
  <li class="md-nav__item">
9449
- <a href="#housekeeping_4" class="md-nav__link">
9701
+ <a href="#housekeeping_5" class="md-nav__link">
9450
9702
  <span class="md-ellipsis">
9451
9703
  Housekeeping
9452
9704
  </span>
@@ -9470,7 +9722,7 @@
9470
9722
  <ul class="md-nav__list">
9471
9723
 
9472
9724
  <li class="md-nav__item">
9473
- <a href="#security_7" class="md-nav__link">
9725
+ <a href="#security_9" class="md-nav__link">
9474
9726
  <span class="md-ellipsis">
9475
9727
  Security
9476
9728
  </span>
@@ -9479,7 +9731,7 @@
9479
9731
  </li>
9480
9732
 
9481
9733
  <li class="md-nav__item">
9482
- <a href="#added_11" class="md-nav__link">
9734
+ <a href="#added_12" class="md-nav__link">
9483
9735
  <span class="md-ellipsis">
9484
9736
  Added
9485
9737
  </span>
@@ -9488,7 +9740,7 @@
9488
9740
  </li>
9489
9741
 
9490
9742
  <li class="md-nav__item">
9491
- <a href="#fixed_10" class="md-nav__link">
9743
+ <a href="#fixed_11" class="md-nav__link">
9492
9744
  <span class="md-ellipsis">
9493
9745
  Fixed
9494
9746
  </span>
@@ -9497,7 +9749,7 @@
9497
9749
  </li>
9498
9750
 
9499
9751
  <li class="md-nav__item">
9500
- <a href="#housekeeping_5" class="md-nav__link">
9752
+ <a href="#housekeeping_6" class="md-nav__link">
9501
9753
  <span class="md-ellipsis">
9502
9754
  Housekeeping
9503
9755
  </span>
@@ -9521,7 +9773,7 @@
9521
9773
  <ul class="md-nav__list">
9522
9774
 
9523
9775
  <li class="md-nav__item">
9524
- <a href="#added_12" class="md-nav__link">
9776
+ <a href="#added_13" class="md-nav__link">
9525
9777
  <span class="md-ellipsis">
9526
9778
  Added
9527
9779
  </span>
@@ -9530,7 +9782,7 @@
9530
9782
  </li>
9531
9783
 
9532
9784
  <li class="md-nav__item">
9533
- <a href="#changed_5" class="md-nav__link">
9785
+ <a href="#changed_6" class="md-nav__link">
9534
9786
  <span class="md-ellipsis">
9535
9787
  Changed
9536
9788
  </span>
@@ -9539,7 +9791,7 @@
9539
9791
  </li>
9540
9792
 
9541
9793
  <li class="md-nav__item">
9542
- <a href="#fixed_11" class="md-nav__link">
9794
+ <a href="#fixed_12" class="md-nav__link">
9543
9795
  <span class="md-ellipsis">
9544
9796
  Fixed
9545
9797
  </span>
@@ -9548,7 +9800,7 @@
9548
9800
  </li>
9549
9801
 
9550
9802
  <li class="md-nav__item">
9551
- <a href="#documentation_2" class="md-nav__link">
9803
+ <a href="#documentation_3" class="md-nav__link">
9552
9804
  <span class="md-ellipsis">
9553
9805
  Documentation
9554
9806
  </span>
@@ -9557,7 +9809,7 @@
9557
9809
  </li>
9558
9810
 
9559
9811
  <li class="md-nav__item">
9560
- <a href="#housekeeping_6" class="md-nav__link">
9812
+ <a href="#housekeeping_7" class="md-nav__link">
9561
9813
  <span class="md-ellipsis">
9562
9814
  Housekeeping
9563
9815
  </span>
@@ -9581,7 +9833,7 @@
9581
9833
  <ul class="md-nav__list">
9582
9834
 
9583
9835
  <li class="md-nav__item">
9584
- <a href="#changed_6" class="md-nav__link">
9836
+ <a href="#changed_7" class="md-nav__link">
9585
9837
  <span class="md-ellipsis">
9586
9838
  Changed
9587
9839
  </span>
@@ -9590,7 +9842,7 @@
9590
9842
  </li>
9591
9843
 
9592
9844
  <li class="md-nav__item">
9593
- <a href="#fixed_12" class="md-nav__link">
9845
+ <a href="#fixed_13" class="md-nav__link">
9594
9846
  <span class="md-ellipsis">
9595
9847
  Fixed
9596
9848
  </span>
@@ -9599,7 +9851,7 @@
9599
9851
  </li>
9600
9852
 
9601
9853
  <li class="md-nav__item">
9602
- <a href="#documentation_3" class="md-nav__link">
9854
+ <a href="#documentation_4" class="md-nav__link">
9603
9855
  <span class="md-ellipsis">
9604
9856
  Documentation
9605
9857
  </span>
@@ -9608,7 +9860,7 @@
9608
9860
  </li>
9609
9861
 
9610
9862
  <li class="md-nav__item">
9611
- <a href="#housekeeping_7" class="md-nav__link">
9863
+ <a href="#housekeeping_8" class="md-nav__link">
9612
9864
  <span class="md-ellipsis">
9613
9865
  Housekeeping
9614
9866
  </span>
@@ -9632,7 +9884,7 @@
9632
9884
  <ul class="md-nav__list">
9633
9885
 
9634
9886
  <li class="md-nav__item">
9635
- <a href="#added_13" class="md-nav__link">
9887
+ <a href="#added_14" class="md-nav__link">
9636
9888
  <span class="md-ellipsis">
9637
9889
  Added
9638
9890
  </span>
@@ -9641,7 +9893,7 @@
9641
9893
  </li>
9642
9894
 
9643
9895
  <li class="md-nav__item">
9644
- <a href="#fixed_13" class="md-nav__link">
9896
+ <a href="#fixed_14" class="md-nav__link">
9645
9897
  <span class="md-ellipsis">
9646
9898
  Fixed
9647
9899
  </span>
@@ -9650,7 +9902,7 @@
9650
9902
  </li>
9651
9903
 
9652
9904
  <li class="md-nav__item">
9653
- <a href="#dependencies_2" class="md-nav__link">
9905
+ <a href="#dependencies_4" class="md-nav__link">
9654
9906
  <span class="md-ellipsis">
9655
9907
  Dependencies
9656
9908
  </span>
@@ -9659,7 +9911,7 @@
9659
9911
  </li>
9660
9912
 
9661
9913
  <li class="md-nav__item">
9662
- <a href="#documentation_4" class="md-nav__link">
9914
+ <a href="#documentation_5" class="md-nav__link">
9663
9915
  <span class="md-ellipsis">
9664
9916
  Documentation
9665
9917
  </span>
@@ -9683,7 +9935,7 @@
9683
9935
  <ul class="md-nav__list">
9684
9936
 
9685
9937
  <li class="md-nav__item">
9686
- <a href="#added_14" class="md-nav__link">
9938
+ <a href="#added_15" class="md-nav__link">
9687
9939
  <span class="md-ellipsis">
9688
9940
  Added
9689
9941
  </span>
@@ -9692,7 +9944,7 @@
9692
9944
  </li>
9693
9945
 
9694
9946
  <li class="md-nav__item">
9695
- <a href="#changed_7" class="md-nav__link">
9947
+ <a href="#changed_8" class="md-nav__link">
9696
9948
  <span class="md-ellipsis">
9697
9949
  Changed
9698
9950
  </span>
@@ -9710,7 +9962,7 @@
9710
9962
  </li>
9711
9963
 
9712
9964
  <li class="md-nav__item">
9713
- <a href="#fixed_14" class="md-nav__link">
9965
+ <a href="#fixed_15" class="md-nav__link">
9714
9966
  <span class="md-ellipsis">
9715
9967
  Fixed
9716
9968
  </span>
@@ -9719,7 +9971,7 @@
9719
9971
  </li>
9720
9972
 
9721
9973
  <li class="md-nav__item">
9722
- <a href="#dependencies_3" class="md-nav__link">
9974
+ <a href="#dependencies_5" class="md-nav__link">
9723
9975
  <span class="md-ellipsis">
9724
9976
  Dependencies
9725
9977
  </span>
@@ -9728,7 +9980,7 @@
9728
9980
  </li>
9729
9981
 
9730
9982
  <li class="md-nav__item">
9731
- <a href="#documentation_5" class="md-nav__link">
9983
+ <a href="#documentation_6" class="md-nav__link">
9732
9984
  <span class="md-ellipsis">
9733
9985
  Documentation
9734
9986
  </span>
@@ -9802,111 +10054,162 @@
9802
10054
  <h4 id="removed-python-37-support-3561">Removed Python 3.7 Support (<a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a>)<a class="headerlink" href="#removed-python-37-support-3561" title="Permanent link">&para;</a></h4>
9803
10055
  <p>As Python 3.7 has reached end-of-life, Nautobot 1.6 and later do not support installation or operation under Python 3.7.</p>
9804
10056
  <!-- towncrier release notes start -->
9805
- <h2 id="v1615-2024-03-18">v1.6.15 (2024-03-18)<a class="headerlink" href="#v1615-2024-03-18" title="Permanent link">&para;</a></h2>
10057
+ <h2 id="v1618-2024-04-15">v1.6.18 (2024-04-15)<a class="headerlink" href="#v1618-2024-04-15" title="Permanent link">&para;</a></h2>
10058
+ <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
10059
+ <ul>
10060
+ <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
10061
+ </ul>
10062
+ <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
10063
+ <ul>
10064
+ <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
10065
+ </ul>
10066
+ <h2 id="v1617-2024-04-01">v1.6.17 (2024-04-01)<a class="headerlink" href="#v1617-2024-04-01" title="Permanent link">&para;</a></h2>
10067
+ <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
10068
+ <ul>
10069
+ <li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> &amp; its dependency on <code>ecdsa</code>.</li>
10070
+ <li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed <code>jsonschema</code> version constraint from <code>&gt;=4.7.0,&lt;4.18.0</code> to <code>^4.7.0</code>.</li>
10071
+ </ul>
10072
+ <h2 id="v1616-2024-03-25">v1.6.16 (2024-03-25)<a class="headerlink" href="#v1616-2024-03-25" title="Permanent link">&para;</a></h2>
10073
+ <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
10074
+ <ul>
10075
+ <li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
10076
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/&lt;uuid:pk&gt;/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10077
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added narrower permissions enforcement on the endpoints <code>/extras/git-repositories/&lt;str:slug&gt;/sync/</code> and <code>/extras/git-repositories/&lt;str:slug&gt;/dry-run/</code>; a user who has <code>change</code> permissions for a subset of Git repositories is no longer permitted to sync or dry-run other repositories for which they lack the appropriate permissions. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10078
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added narrower permissions enforcement on the <code>/api/dcim/connected-device/?peer_device=...&amp;?peer_interface=...</code> REST API endpoint; a user who has <code>view</code> permissions for a subset of interfaces is no longer permitted to query other interfaces for which they lack permissions. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10079
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added narrower permissions enforcement on all <code>&lt;app&gt;/&lt;model&gt;/&lt;lookup&gt;/notes/</code> UI endpoints; a user must now have the appropriate <code>extras.view_note</code> permissions to view existing notes. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10080
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the REST API endpoints <code>/api/redoc/</code>, <code>/api/swagger/</code>, <code>/api/swagger.json</code>, and <code>/api/swagger.yaml</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10081
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the <code>/api/graphql</code> REST API endpoint, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10082
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/&lt;uuid&gt;/dynamic-groups/</code>, <code>/dcim/devices/&lt;uuid&gt;/dynamic-groups/</code>, <code>/ipam/prefixes/&lt;uuid&gt;/dynamic-groups/</code>, <code>/ipam/ip-addresses/&lt;uuid&gt;/dynamic-groups/</code>, <code>/virtualization/clusters/&lt;uuid&gt;/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/&lt;uuid&gt;/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10083
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/&lt;str:provider_slug&gt;/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10084
+ </ul>
9806
10085
  <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
9807
10086
  <ul>
10087
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
10088
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
10089
+ </ul>
10090
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10091
+ <ul>
10092
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added support for <code>view_name</code> and <code>view_description</code> optional parameters when instantiating a <code>nautobot.apps.api.OrderedDefaultRouter</code>. Specifying these parameters is to be preferred over defining a custom <code>APIRootView</code> subclass when defining App API URLs.</li>
10093
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication by default on the <code>nautobot.core.api.AuthenticatedAPIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
10094
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access <code>/api/docs/</code> and <code>/graphql/</code> even when <code>HIDE_RESTRICTED_UI</code> is False.</li>
10095
+ </ul>
10096
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10097
+ <ul>
10098
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Fixed a 500 error when accessing any of the <code>/dcim/&lt;port-type&gt;/&lt;uuid&gt;/connect/&lt;termination_b_type&gt;/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
10099
+ </ul>
10100
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
10101
+ <ul>
10102
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
10103
+ </ul>
10104
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10105
+ <ul>
10106
+ <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
10107
+ </ul>
10108
+ <h2 id="v1615-2024-03-18">v1.6.15 (2024-03-18)<a class="headerlink" href="#v1615-2024-03-18" title="Permanent link">&para;</a></h2>
10109
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10110
+ <ul>
9808
10111
  <li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
9809
10112
  <li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
9810
10113
  </ul>
9811
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10114
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9812
10115
  <ul>
9813
10116
  <li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
9814
10117
  <li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
9815
10118
  </ul>
9816
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10119
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
9817
10120
  <ul>
9818
10121
  <li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
9819
10122
  <li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
9820
10123
  </ul>
9821
10124
  <h2 id="v1614-2024-03-05">v1.6.14 (2024-03-05)<a class="headerlink" href="#v1614-2024-03-05" title="Permanent link">&para;</a></h2>
9822
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10125
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9823
10126
  <ul>
9824
10127
  <li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
9825
10128
  </ul>
9826
10129
  <h2 id="v1613-2024-03-04">v1.6.13 (2024-03-04)<a class="headerlink" href="#v1613-2024-03-04" title="Permanent link">&para;</a></h2>
9827
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
9828
10130
  <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10131
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9829
10132
  <ul>
9830
10133
  <li><a href="https://github.com/nautobot/nautobot/issues/4247">#4247</a> - Added a check to the <code>nautobot-server pre_migrate</code> command to identify Interfaces and VMInterfaces with multiple VRFs through IPAddress relationships.</li>
9831
10134
  </ul>
9832
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10135
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9833
10136
  <ul>
9834
10137
  <li><a href="https://github.com/nautobot/nautobot/issues/5307">#5307</a> - Fixed Custom Field form field(s) missing from git repository edit form.</li>
9835
10138
  <li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
9836
10139
  <li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Fixed intermittent 405 errors when using the Docker image with SAML authentication.</li>
9837
10140
  </ul>
9838
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
10141
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9839
10142
  <ul>
9840
10143
  <li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the Nautobot installation documentation about the need to do <code>pip3 install --no-binary=pyuwsgi</code> in order to have SSL support in <code>pyuwsgi</code>.</li>
9841
10144
  <li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
9842
10145
  </ul>
9843
10146
  <h2 id="v1612-2024-02-20">v1.6.12 (2024-02-20)<a class="headerlink" href="#v1612-2024-02-20" title="Permanent link">&para;</a></h2>
9844
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10147
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
9845
10148
  <ul>
9846
10149
  <li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
9847
10150
  </ul>
9848
- <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
10151
+ <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
9849
10152
  <ul>
9850
10153
  <li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
9851
10154
  </ul>
9852
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10155
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
9853
10156
  <ul>
9854
10157
  <li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
9855
10158
  <li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
9856
10159
  </ul>
9857
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10160
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9858
10161
  <ul>
9859
10162
  <li><a href="https://github.com/nautobot/nautobot/issues/5253">#5253</a> - Fixed issue with Job Button Groups displaying when Conditional Rendering should remove the button.</li>
9860
10163
  <li><a href="https://github.com/nautobot/nautobot/issues/5261">#5261</a> - Fixed a regression introduced in v1.6.8 where Job Buttons would always run with <code>commit=False</code>.</li>
9861
10164
  </ul>
9862
10165
  <h2 id="v1611-2024-02-05">v1.6.11 (2024-02-05)<a class="headerlink" href="#v1611-2024-02-05" title="Permanent link">&para;</a></h2>
9863
- <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
10166
+ <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
9864
10167
  <ul>
9865
10168
  <li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
9866
10169
  </ul>
9867
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10170
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
9868
10171
  <ul>
9869
10172
  <li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
9870
10173
  </ul>
9871
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10174
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
9872
10175
  <ul>
9873
10176
  <li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
9874
10177
  <li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
9875
10178
  </ul>
9876
10179
  <h2 id="v1610-2024-01-22">v1.6.10 (2024-01-22)<a class="headerlink" href="#v1610-2024-01-22" title="Permanent link">&para;</a></h2>
9877
- <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
10180
+ <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
9878
10181
  <ul>
9879
10182
  <li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
9880
10183
  <li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
9881
10184
  </ul>
9882
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10185
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
9883
10186
  <ul>
9884
10187
  <li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
9885
10188
  </ul>
9886
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10189
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
9887
10190
  <ul>
9888
10191
  <li><a href="https://github.com/nautobot/nautobot/issues/5132">#5132</a> - Updated poetry version for development Docker image to match 2.0.</li>
9889
10192
  </ul>
9890
- <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
10193
+ <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
9891
10194
  <ul>
9892
10195
  <li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
9893
10196
  <li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
9894
10197
  <li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
9895
10198
  </ul>
9896
10199
  <h2 id="v169-2024-01-08">v1.6.9 (2024-01-08)<a class="headerlink" href="#v169-2024-01-08" title="Permanent link">&para;</a></h2>
9897
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10200
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
9898
10201
  <ul>
9899
10202
  <li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
9900
10203
  </ul>
9901
10204
  <h2 id="v168-2023-12-21">v1.6.8 (2023-12-21)<a class="headerlink" href="#v168-2023-12-21" title="Permanent link">&para;</a></h2>
9902
- <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
10205
+ <h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">&para;</a></h3>
9903
10206
  <ul>
9904
10207
  <li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>41.0.7</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9905
10208
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
9906
10209
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
9907
10210
  <li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9908
10211
  </ul>
9909
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10212
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
9910
10213
  <ul>
9911
10214
  <li><a href="https://github.com/nautobot/nautobot/issues/4965">#4965</a> - Added MMF OM5 cable type to cable type choices.</li>
9912
10215
  </ul>
@@ -9914,20 +10217,20 @@
9914
10217
  <ul>
9915
10218
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/&lt;uuid&gt;/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/&lt;uuid&gt;/run/</code> endpoint like any other job.</li>
9916
10219
  </ul>
9917
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10220
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
9918
10221
  <ul>
9919
10222
  <li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
9920
10223
  </ul>
9921
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10224
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
9922
10225
  <ul>
9923
10226
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
9924
10227
  </ul>
9925
10228
  <h2 id="v167-2023-12-12">v1.6.7 (2023-12-12)<a class="headerlink" href="#v167-2023-12-12" title="Permanent link">&para;</a></h2>
9926
- <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
10229
+ <h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">&para;</a></h3>
9927
10230
  <ul>
9928
10231
  <li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
9929
10232
  </ul>
9930
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10233
+ <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
9931
10234
  <ul>
9932
10235
  <li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
9933
10236
  </ul>
@@ -9936,46 +10239,46 @@
9936
10239
  <li><a href="https://github.com/nautobot/nautobot/issues/4797">#4797</a> - Removed erroneous <code>custom_fields</code> decorator from InterfaceRedundancyGroupAssociation as it's not a supported feature for this model.</li>
9937
10240
  <li><a href="https://github.com/nautobot/nautobot/issues/4857">#4857</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
9938
10241
  </ul>
9939
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10242
+ <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
9940
10243
  <ul>
9941
10244
  <li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
9942
10245
  <li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
9943
10246
  <li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
9944
10247
  </ul>
9945
10248
  <h2 id="v166-2023-11-21">v1.6.6 (2023-11-21)<a class="headerlink" href="#v166-2023-11-21" title="Permanent link">&para;</a></h2>
9946
- <h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">&para;</a></h3>
10249
+ <h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">&para;</a></h3>
9947
10250
  <ul>
9948
10251
  <li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
9949
10252
  </ul>
9950
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10253
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
9951
10254
  <ul>
9952
10255
  <li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
9953
10256
  </ul>
9954
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10257
+ <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
9955
10258
  <ul>
9956
10259
  <li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Fixed the error that occurred when fetching the API response for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort.</li>
9957
10260
  <li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 69 MB to 29 MB.</li>
9958
10261
  </ul>
9959
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
10262
+ <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
9960
10263
  <ul>
9961
10264
  <li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
9962
10265
  </ul>
9963
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10266
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
9964
10267
  <ul>
9965
10268
  <li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
9966
10269
  <li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
9967
10270
  </ul>
9968
10271
  <h2 id="v165-2023-11-13">v1.6.5 (2023-11-13)<a class="headerlink" href="#v165-2023-11-13" title="Permanent link">&para;</a></h2>
9969
- <h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">&para;</a></h3>
10272
+ <h3 id="security_8">Security<a class="headerlink" href="#security_8" title="Permanent link">&para;</a></h3>
9970
10273
  <ul>
9971
10274
  <li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9972
10275
  <li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
9973
10276
  </ul>
9974
- <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
10277
+ <h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">&para;</a></h3>
9975
10278
  <ul>
9976
10279
  <li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
9977
10280
  </ul>
9978
- <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10281
+ <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
9979
10282
  <ul>
9980
10283
  <li><a href="https://github.com/nautobot/nautobot/issues/4645">#4645</a> - Fixed a bug where the <code>failover-strategy</code> field was required for the device redundancy group API.</li>
9981
10284
  <li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
@@ -9983,21 +10286,21 @@
9983
10286
  <li><a href="https://github.com/nautobot/nautobot/issues/4728">#4728</a> - Fixed bug with JobResultFilterSet and ScheduledJobFilterSet using <code>django_filters.DateTimeFilter</code> for only exact date matches.</li>
9984
10287
  <li><a href="https://github.com/nautobot/nautobot/issues/4733">#4733</a> - Fixed the bug that prevents retrieval of IPAddress using its address args if it was created using <code>host</code> and <code>prefix_length</code>.</li>
9985
10288
  </ul>
9986
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
10289
+ <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
9987
10290
  <ul>
9988
10291
  <li><a href="https://github.com/nautobot/nautobot/issues/4700">#4700</a> - Removed incorrect <code>NAUTOBOT_DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> environment variable reference from settings documentation.</li>
9989
10292
  </ul>
9990
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10293
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
9991
10294
  <ul>
9992
10295
  <li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Renamed <code>ltm/1.6</code> branch to <code>ltm-1.6</code>.</li>
9993
10296
  </ul>
9994
10297
  <h2 id="v164-2023-10-17">v1.6.4 (2023-10-17)<a class="headerlink" href="#v164-2023-10-17" title="Permanent link">&para;</a></h2>
9995
- <h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">&para;</a></h3>
10298
+ <h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">&para;</a></h3>
9996
10299
  <ul>
9997
10300
  <li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
9998
10301
  <li><a href="https://github.com/nautobot/nautobot/issues/4573">#4573</a> - Added caching for <code>display</code> property of <code>Location</code> and <code>LocationType</code>, mitigating duplicated SQL queries in the related API views.</li>
9999
10302
  </ul>
10000
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10303
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10001
10304
  <ul>
10002
10305
  <li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
10003
10306
  </ul>
@@ -10005,86 +10308,86 @@
10005
10308
  <ul>
10006
10309
  <li><a href="https://github.com/nautobot/nautobot/issues/4595">#4595</a> - Removed <code>stable</code> tagging for container builds in LTM release workflow.</li>
10007
10310
  </ul>
10008
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10311
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10009
10312
  <ul>
10010
10313
  <li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
10011
10314
  </ul>
10012
10315
  <h2 id="v163-2023-10-03">v1.6.3 (2023-10-03)<a class="headerlink" href="#v163-2023-10-03" title="Permanent link">&para;</a></h2>
10013
- <h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">&para;</a></h3>
10316
+ <h3 id="security_9">Security<a class="headerlink" href="#security_9" title="Permanent link">&para;</a></h3>
10014
10317
  <ul>
10015
10318
  <li><a href="https://github.com/nautobot/nautobot/issues/4446">#4446</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
10016
10319
  </ul>
10017
- <h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">&para;</a></h3>
10320
+ <h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">&para;</a></h3>
10018
10321
  <ul>
10019
10322
  <li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to <code>pre_migrate</code> management command.</li>
10020
10323
  </ul>
10021
- <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
10324
+ <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
10022
10325
  <ul>
10023
10326
  <li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
10024
10327
  </ul>
10025
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10328
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10026
10329
  <ul>
10027
10330
  <li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Fixed <code>release.yml</code> and <code>pre-release.yml</code> workflow files to target <code>ci_integration.yml</code> in its own branch.</li>
10028
10331
  <li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Enforced changelog requirement in <code>ci_pullrequest.yml</code> for <code>ltm/1.6</code>.</li>
10029
10332
  </ul>
10030
10333
  <h2 id="v162-2023-09-01">v1.6.2 (2023-09-01)<a class="headerlink" href="#v162-2023-09-01" title="Permanent link">&para;</a></h2>
10031
- <h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">&para;</a></h3>
10334
+ <h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">&para;</a></h3>
10032
10335
  <ul>
10033
10336
  <li><a href="https://github.com/nautobot/nautobot/issues/3913">#3913</a> - Added <code>url</code> field to GraphQL objects.</li>
10034
10337
  <li><a href="https://github.com/nautobot/nautobot/issues/4316">#4316</a> - Added management command <code>nautobot-server populate_platform_network_driver</code> to help update the <code>Platform.network_driver</code> field in bulk.</li>
10035
10338
  </ul>
10036
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10339
+ <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
10037
10340
  <ul>
10038
10341
  <li><a href="https://github.com/nautobot/nautobot/issues/3212">#3212</a> - Updated Dynamic Group field filter/child group exclusivity error to be more noticeable.</li>
10039
10342
  <li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Moved DynamicGroup <code>clean_filter()</code> call from <code>clean()</code> to <code>clean_fields()</code>, which has the impact that it will still be called by <code>full_clean()</code> and <code>validated_save()</code> but no longer called on a simple <code>clean()</code>.</li>
10040
10343
  <li><a href="https://github.com/nautobot/nautobot/issues/4216">#4216</a> - Changed the rendering of <code>TagFilterField</code> to prevent very slow rendering of pages when large numbers of tags are defined.</li>
10041
10344
  <li><a href="https://github.com/nautobot/nautobot/issues/4217">#4217</a> - Added a restriction that two Git repositories with the same <code>remote_url</code> cannot overlap in their <code>provided_contents</code>, as such cases are highly likely to introduce data conflicts.</li>
10042
10345
  </ul>
10043
- <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
10346
+ <h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">&para;</a></h3>
10044
10347
  <ul>
10045
10348
  <li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed a ValueError when editing an existing DynamicGroup that has invalid <code>filter</code> data.</li>
10046
10349
  <li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed <code>DynamicGroup.clean_fields()</code> so that it will respect an <code>exclude=["filter"]</code> kwarg by not validating the <code>filter</code> field.</li>
10047
10350
  <li><a href="https://github.com/nautobot/nautobot/issues/4262">#4262</a> - Fixed warning message when trying to use bulk edit with no items selected.</li>
10048
10351
  </ul>
10049
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
10352
+ <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
10050
10353
  <ul>
10051
10354
  <li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
10052
10355
  <li><a href="https://github.com/nautobot/nautobot/issues/4201">#4201</a> - Added docs for <code>InterfaceRedundancyGroup</code>.</li>
10053
10356
  </ul>
10054
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10357
+ <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10055
10358
  <ul>
10056
10359
  <li><a href="https://github.com/nautobot/nautobot/issues/4317">#4317</a> - Added tests for GraphQL url field.</li>
10057
10360
  <li><a href="https://github.com/nautobot/nautobot/issues/4331">#4331</a> - Added a "housekeeping" subsection to the release-notes via <code>towncrier</code>.</li>
10058
10361
  </ul>
10059
10362
  <h2 id="v161-2023-08-21">v1.6.1 (2023-08-21)<a class="headerlink" href="#v161-2023-08-21" title="Permanent link">&para;</a></h2>
10060
- <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
10363
+ <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
10061
10364
  <ul>
10062
10365
  <li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
10063
10366
  </ul>
10064
- <h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">&para;</a></h3>
10367
+ <h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">&para;</a></h3>
10065
10368
  <ul>
10066
10369
  <li><a href="https://github.com/nautobot/nautobot/issues/4093">#4093</a> - Fixed dependencies required for saml support missing in final docker image.</li>
10067
10370
  <li><a href="https://github.com/nautobot/nautobot/issues/4149">#4149</a> - Fixed a bug that prevented renaming a <code>Rack</code> if it contained any devices whose names were not globally unique.</li>
10068
10371
  <li><a href="https://github.com/nautobot/nautobot/issues/4241">#4241</a> - Added a timeout and exception handling to the <code>nautobot-server send_installation_metrics</code> command.</li>
10069
10372
  </ul>
10070
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
10373
+ <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
10071
10374
  <ul>
10072
10375
  <li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Introduced new <code>mkdocs</code> setting of <code>tabbed</code>.</li>
10073
10376
  <li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Updated docs at <code>nautobot/docs/installation/nautobot.md</code> and <code>nautobot/docs/installation/http-server.md</code> to adopt tabbed interfaces.</li>
10074
10377
  <li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
10075
10378
  </ul>
10076
- <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10379
+ <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
10077
10380
  <ul>
10078
10381
  <li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
10079
10382
  <li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
10080
10383
  <li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed <code>development/nautobot_config.py</code> to disable installation metrics for developer environments by default.</li>
10081
10384
  </ul>
10082
10385
  <h2 id="v160-2023-08-08">v1.6.0 (2023-08-08)<a class="headerlink" href="#v160-2023-08-08" title="Permanent link">&para;</a></h2>
10083
- <h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">&para;</a></h3>
10386
+ <h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">&para;</a></h3>
10084
10387
  <ul>
10085
10388
  <li><a href="https://github.com/nautobot/nautobot/issues/4169">#4169</a> - Added environment variable <code>NAUTOBOT_SESSION_EXPIRE_AT_BROWSER_CLOSE</code> to set the <code>SESSION_EXPIRE_AT_BROWSER_CLOSE</code> Django setting which expires session cookies when the user closes their browser.</li>
10086
10389
  </ul>
10087
- <h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">&para;</a></h3>
10390
+ <h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">&para;</a></h3>
10088
10391
  <ul>
10089
10392
  <li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added error handling in <code>JobResult.log()</code> for the case where an object's <code>get_absolute_url()</code> raises an exception.</li>
10090
10393
  <li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added missing <code>get_absolute_url()</code> implementation on <code>CustomFieldChoice</code> model.</li>
@@ -10093,7 +10396,7 @@
10093
10396
  <li><a href="https://github.com/nautobot/nautobot/issues/4205">#4205</a> - Fixed failing Apps CI due to missing dependency of <code>toml</code>.</li>
10094
10397
  <li><a href="https://github.com/nautobot/nautobot/issues/4222">#4222</a> - Fixed a bug in which <code>Job</code> <code>ChoiceVars</code> could sometimes get rendered incorrectly in the UI as multiple-choice fields.</li>
10095
10398
  </ul>
10096
- <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
10399
+ <h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">&para;</a></h3>
10097
10400
  <ul>
10098
10401
  <li><a href="https://github.com/nautobot/nautobot/issues/4208">#4208</a> - Updated django-rq to 2.8.1.</li>
10099
10402
  <li><a href="https://github.com/nautobot/nautobot/issues/4209">#4209</a> - Relaxed constraint on prometheus-client minimum version to <code>0.14.1</code>.</li>
@@ -10101,12 +10404,12 @@
10101
10404
  <li><a href="https://github.com/nautobot/nautobot/issues/4199">#4199</a> - Updated <code>cryptography</code> to <code>~41.0.3</code>. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
10102
10405
  <li><a href="https://github.com/nautobot/nautobot/issues/4215">#4215</a> - Broadened the range of acceptable <code>packaging</code> dependency versions.</li>
10103
10406
  </ul>
10104
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
10407
+ <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
10105
10408
  <ul>
10106
10409
  <li><a href="https://github.com/nautobot/nautobot/issues/4184">#4184</a> - Added documentation detailing rack power utilization calculation.</li>
10107
10410
  </ul>
10108
10411
  <h2 id="v160-rc1-2023-08-02">v1.6.0-rc.1 (2023-08-02)<a class="headerlink" href="#v160-rc1-2023-08-02" title="Permanent link">&para;</a></h2>
10109
- <h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">&para;</a></h3>
10412
+ <h3 id="added_15">Added<a class="headerlink" href="#added_15" title="Permanent link">&para;</a></h3>
10110
10413
  <ul>
10111
10414
  <li><a href="https://github.com/nautobot/nautobot/issues/2825">#2825</a> - Added InterfaceRedundancyGroup and related views, forms, filtersets and table.</li>
10112
10415
  <li><a href="https://github.com/nautobot/nautobot/issues/3269">#3269</a> - Added ability to cache <code>DynamicGroup</code> memberships in Redis to improve reverse lookup performance.</li>
@@ -10121,7 +10424,7 @@
10121
10424
  <li><a href="https://github.com/nautobot/nautobot/issues/4136">#4136</a> - Added support for <code>NETWORK_DRIVERS</code> config setting to override or extend default network driver mappings from <code>netutils</code> library.</li>
10122
10425
  <li><a href="https://github.com/nautobot/nautobot/issues/4161">#4161</a> - Enhanced <code>NautobotUIViewSet</code> to allow Create and Update methods to have their own form classes.</li>
10123
10426
  </ul>
10124
- <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
10427
+ <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
10125
10428
  <ul>
10126
10429
  <li><a href="https://github.com/nautobot/nautobot/issues/3646">#3646</a> - Redirect unauthenticated users on all views to login page if <code>HIDE_RESTRICTED_UI</code> is True.</li>
10127
10430
  <li><a href="https://github.com/nautobot/nautobot/issues/3646">#3646</a> - Only time is shown on the footer if a user is unauthenticated and <code>HIDE_RESTRICTED_UI</code> is True.</li>
@@ -10134,11 +10437,11 @@
10134
10437
  <li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>importlib-metadata</code>.</li>
10135
10438
  <li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>pycryptodome</code> as Nautobot does not currently use this library and hasn't for some time.</li>
10136
10439
  </ul>
10137
- <h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">&para;</a></h3>
10440
+ <h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">&para;</a></h3>
10138
10441
  <ul>
10139
10442
  <li><a href="https://github.com/nautobot/nautobot/issues/4178">#4178</a> - Fixed JSON serialization of overloaded/non-default FilterForm fields on Dynamic Groups.</li>
10140
10443
  </ul>
10141
- <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
10444
+ <h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">&para;</a></h3>
10142
10445
  <ul>
10143
10446
  <li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>celery</code> dependency to <code>~5.3.1</code>.</li>
10144
10447
  <li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>django-auth-ldap</code> optional dependency to <code>~4.3.0</code>.</li>
@@ -10171,7 +10474,7 @@
10171
10474
  <li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.2.0</code>.</li>
10172
10475
  <li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated various development-only dependencies to the latest available versions.</li>
10173
10476
  </ul>
10174
- <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
10477
+ <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
10175
10478
  <ul>
10176
10479
  <li><a href="https://github.com/nautobot/nautobot/issues/4118">#4118</a> - Added documentation for troubleshooting integration test failures via VNC.</li>
10177
10480
  </ul>