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
@@ -7319,13 +7319,13 @@
7319
7319
  </li>
7320
7320
 
7321
7321
  <li class="md-nav__item">
7322
- <a href="#v221-2024-04-15" class="md-nav__link">
7322
+ <a href="#v223-2024-04-30" class="md-nav__link">
7323
7323
  <span class="md-ellipsis">
7324
- v2.2.1 (2024-04-15)
7324
+ v2.2.3 (2024-04-30)
7325
7325
  </span>
7326
7326
  </a>
7327
7327
 
7328
- <nav class="md-nav" aria-label="v2.2.1 (2024-04-15)">
7328
+ <nav class="md-nav" aria-label="v2.2.3 (2024-04-30)">
7329
7329
  <ul class="md-nav__list">
7330
7330
 
7331
7331
  <li class="md-nav__item">
@@ -7362,6 +7362,144 @@
7362
7362
  </span>
7363
7363
  </a>
7364
7364
 
7365
+ </li>
7366
+
7367
+ <li class="md-nav__item">
7368
+ <a href="#documentation" class="md-nav__link">
7369
+ <span class="md-ellipsis">
7370
+ Documentation
7371
+ </span>
7372
+ </a>
7373
+
7374
+ </li>
7375
+
7376
+ <li class="md-nav__item">
7377
+ <a href="#housekeeping" class="md-nav__link">
7378
+ <span class="md-ellipsis">
7379
+ Housekeeping
7380
+ </span>
7381
+ </a>
7382
+
7383
+ </li>
7384
+
7385
+ </ul>
7386
+ </nav>
7387
+
7388
+ </li>
7389
+
7390
+ <li class="md-nav__item">
7391
+ <a href="#v222-2024-04-18" class="md-nav__link">
7392
+ <span class="md-ellipsis">
7393
+ v2.2.2 (2024-04-18)
7394
+ </span>
7395
+ </a>
7396
+
7397
+ <nav class="md-nav" aria-label="v2.2.2 (2024-04-18)">
7398
+ <ul class="md-nav__list">
7399
+
7400
+ <li class="md-nav__item">
7401
+ <a href="#security_1" class="md-nav__link">
7402
+ <span class="md-ellipsis">
7403
+ Security
7404
+ </span>
7405
+ </a>
7406
+
7407
+ </li>
7408
+
7409
+ <li class="md-nav__item">
7410
+ <a href="#added_2" class="md-nav__link">
7411
+ <span class="md-ellipsis">
7412
+ Added
7413
+ </span>
7414
+ </a>
7415
+
7416
+ </li>
7417
+
7418
+ <li class="md-nav__item">
7419
+ <a href="#changed_2" class="md-nav__link">
7420
+ <span class="md-ellipsis">
7421
+ Changed
7422
+ </span>
7423
+ </a>
7424
+
7425
+ </li>
7426
+
7427
+ <li class="md-nav__item">
7428
+ <a href="#fixed_1" class="md-nav__link">
7429
+ <span class="md-ellipsis">
7430
+ Fixed
7431
+ </span>
7432
+ </a>
7433
+
7434
+ </li>
7435
+
7436
+ <li class="md-nav__item">
7437
+ <a href="#documentation_1" class="md-nav__link">
7438
+ <span class="md-ellipsis">
7439
+ Documentation
7440
+ </span>
7441
+ </a>
7442
+
7443
+ </li>
7444
+
7445
+ <li class="md-nav__item">
7446
+ <a href="#housekeeping_1" class="md-nav__link">
7447
+ <span class="md-ellipsis">
7448
+ Housekeeping
7449
+ </span>
7450
+ </a>
7451
+
7452
+ </li>
7453
+
7454
+ </ul>
7455
+ </nav>
7456
+
7457
+ </li>
7458
+
7459
+ <li class="md-nav__item">
7460
+ <a href="#v221-2024-04-15" class="md-nav__link">
7461
+ <span class="md-ellipsis">
7462
+ v2.2.1 (2024-04-15)
7463
+ </span>
7464
+ </a>
7465
+
7466
+ <nav class="md-nav" aria-label="v2.2.1 (2024-04-15)">
7467
+ <ul class="md-nav__list">
7468
+
7469
+ <li class="md-nav__item">
7470
+ <a href="#security_2" class="md-nav__link">
7471
+ <span class="md-ellipsis">
7472
+ Security
7473
+ </span>
7474
+ </a>
7475
+
7476
+ </li>
7477
+
7478
+ <li class="md-nav__item">
7479
+ <a href="#added_3" class="md-nav__link">
7480
+ <span class="md-ellipsis">
7481
+ Added
7482
+ </span>
7483
+ </a>
7484
+
7485
+ </li>
7486
+
7487
+ <li class="md-nav__item">
7488
+ <a href="#changed_3" class="md-nav__link">
7489
+ <span class="md-ellipsis">
7490
+ Changed
7491
+ </span>
7492
+ </a>
7493
+
7494
+ </li>
7495
+
7496
+ <li class="md-nav__item">
7497
+ <a href="#fixed_2" class="md-nav__link">
7498
+ <span class="md-ellipsis">
7499
+ Fixed
7500
+ </span>
7501
+ </a>
7502
+
7365
7503
  </li>
7366
7504
 
7367
7505
  <li class="md-nav__item">
@@ -7374,7 +7512,7 @@
7374
7512
  </li>
7375
7513
 
7376
7514
  <li class="md-nav__item">
7377
- <a href="#documentation" class="md-nav__link">
7515
+ <a href="#documentation_2" class="md-nav__link">
7378
7516
  <span class="md-ellipsis">
7379
7517
  Documentation
7380
7518
  </span>
@@ -7383,7 +7521,7 @@
7383
7521
  </li>
7384
7522
 
7385
7523
  <li class="md-nav__item">
7386
- <a href="#housekeeping" class="md-nav__link">
7524
+ <a href="#housekeeping_2" class="md-nav__link">
7387
7525
  <span class="md-ellipsis">
7388
7526
  Housekeeping
7389
7527
  </span>
@@ -7407,7 +7545,7 @@
7407
7545
  <ul class="md-nav__list">
7408
7546
 
7409
7547
  <li class="md-nav__item">
7410
- <a href="#added_2" class="md-nav__link">
7548
+ <a href="#added_4" class="md-nav__link">
7411
7549
  <span class="md-ellipsis">
7412
7550
  Added
7413
7551
  </span>
@@ -7416,7 +7554,7 @@
7416
7554
  </li>
7417
7555
 
7418
7556
  <li class="md-nav__item">
7419
- <a href="#changed_2" class="md-nav__link">
7557
+ <a href="#changed_4" class="md-nav__link">
7420
7558
  <span class="md-ellipsis">
7421
7559
  Changed
7422
7560
  </span>
@@ -7425,7 +7563,7 @@
7425
7563
  </li>
7426
7564
 
7427
7565
  <li class="md-nav__item">
7428
- <a href="#fixed_1" class="md-nav__link">
7566
+ <a href="#fixed_3" class="md-nav__link">
7429
7567
  <span class="md-ellipsis">
7430
7568
  Fixed
7431
7569
  </span>
@@ -7443,7 +7581,7 @@
7443
7581
  </li>
7444
7582
 
7445
7583
  <li class="md-nav__item">
7446
- <a href="#housekeeping_1" class="md-nav__link">
7584
+ <a href="#housekeeping_3" class="md-nav__link">
7447
7585
  <span class="md-ellipsis">
7448
7586
  Housekeeping
7449
7587
  </span>
@@ -7467,7 +7605,7 @@
7467
7605
  <ul class="md-nav__list">
7468
7606
 
7469
7607
  <li class="md-nav__item">
7470
- <a href="#added_3" class="md-nav__link">
7608
+ <a href="#added_5" class="md-nav__link">
7471
7609
  <span class="md-ellipsis">
7472
7610
  Added
7473
7611
  </span>
@@ -7476,7 +7614,7 @@
7476
7614
  </li>
7477
7615
 
7478
7616
  <li class="md-nav__item">
7479
- <a href="#changed_3" class="md-nav__link">
7617
+ <a href="#changed_5" class="md-nav__link">
7480
7618
  <span class="md-ellipsis">
7481
7619
  Changed
7482
7620
  </span>
@@ -7503,7 +7641,7 @@
7503
7641
  </li>
7504
7642
 
7505
7643
  <li class="md-nav__item">
7506
- <a href="#fixed_2" class="md-nav__link">
7644
+ <a href="#fixed_4" class="md-nav__link">
7507
7645
  <span class="md-ellipsis">
7508
7646
  Fixed
7509
7647
  </span>
@@ -7521,7 +7659,7 @@
7521
7659
  </li>
7522
7660
 
7523
7661
  <li class="md-nav__item">
7524
- <a href="#documentation_1" class="md-nav__link">
7662
+ <a href="#documentation_3" class="md-nav__link">
7525
7663
  <span class="md-ellipsis">
7526
7664
  Documentation
7527
7665
  </span>
@@ -7530,7 +7668,7 @@
7530
7668
  </li>
7531
7669
 
7532
7670
  <li class="md-nav__item">
7533
- <a href="#housekeeping_2" class="md-nav__link">
7671
+ <a href="#housekeeping_4" class="md-nav__link">
7534
7672
  <span class="md-ellipsis">
7535
7673
  Housekeeping
7536
7674
  </span>
@@ -8239,13 +8377,13 @@
8239
8377
  </li>
8240
8378
 
8241
8379
  <li class="md-nav__item">
8242
- <a href="#v221-2024-04-15" class="md-nav__link">
8380
+ <a href="#v223-2024-04-30" class="md-nav__link">
8243
8381
  <span class="md-ellipsis">
8244
- v2.2.1 (2024-04-15)
8382
+ v2.2.3 (2024-04-30)
8245
8383
  </span>
8246
8384
  </a>
8247
8385
 
8248
- <nav class="md-nav" aria-label="v2.2.1 (2024-04-15)">
8386
+ <nav class="md-nav" aria-label="v2.2.3 (2024-04-30)">
8249
8387
  <ul class="md-nav__list">
8250
8388
 
8251
8389
  <li class="md-nav__item">
@@ -8282,6 +8420,144 @@
8282
8420
  </span>
8283
8421
  </a>
8284
8422
 
8423
+ </li>
8424
+
8425
+ <li class="md-nav__item">
8426
+ <a href="#documentation" class="md-nav__link">
8427
+ <span class="md-ellipsis">
8428
+ Documentation
8429
+ </span>
8430
+ </a>
8431
+
8432
+ </li>
8433
+
8434
+ <li class="md-nav__item">
8435
+ <a href="#housekeeping" class="md-nav__link">
8436
+ <span class="md-ellipsis">
8437
+ Housekeeping
8438
+ </span>
8439
+ </a>
8440
+
8441
+ </li>
8442
+
8443
+ </ul>
8444
+ </nav>
8445
+
8446
+ </li>
8447
+
8448
+ <li class="md-nav__item">
8449
+ <a href="#v222-2024-04-18" class="md-nav__link">
8450
+ <span class="md-ellipsis">
8451
+ v2.2.2 (2024-04-18)
8452
+ </span>
8453
+ </a>
8454
+
8455
+ <nav class="md-nav" aria-label="v2.2.2 (2024-04-18)">
8456
+ <ul class="md-nav__list">
8457
+
8458
+ <li class="md-nav__item">
8459
+ <a href="#security_1" class="md-nav__link">
8460
+ <span class="md-ellipsis">
8461
+ Security
8462
+ </span>
8463
+ </a>
8464
+
8465
+ </li>
8466
+
8467
+ <li class="md-nav__item">
8468
+ <a href="#added_2" class="md-nav__link">
8469
+ <span class="md-ellipsis">
8470
+ Added
8471
+ </span>
8472
+ </a>
8473
+
8474
+ </li>
8475
+
8476
+ <li class="md-nav__item">
8477
+ <a href="#changed_2" class="md-nav__link">
8478
+ <span class="md-ellipsis">
8479
+ Changed
8480
+ </span>
8481
+ </a>
8482
+
8483
+ </li>
8484
+
8485
+ <li class="md-nav__item">
8486
+ <a href="#fixed_1" class="md-nav__link">
8487
+ <span class="md-ellipsis">
8488
+ Fixed
8489
+ </span>
8490
+ </a>
8491
+
8492
+ </li>
8493
+
8494
+ <li class="md-nav__item">
8495
+ <a href="#documentation_1" class="md-nav__link">
8496
+ <span class="md-ellipsis">
8497
+ Documentation
8498
+ </span>
8499
+ </a>
8500
+
8501
+ </li>
8502
+
8503
+ <li class="md-nav__item">
8504
+ <a href="#housekeeping_1" class="md-nav__link">
8505
+ <span class="md-ellipsis">
8506
+ Housekeeping
8507
+ </span>
8508
+ </a>
8509
+
8510
+ </li>
8511
+
8512
+ </ul>
8513
+ </nav>
8514
+
8515
+ </li>
8516
+
8517
+ <li class="md-nav__item">
8518
+ <a href="#v221-2024-04-15" class="md-nav__link">
8519
+ <span class="md-ellipsis">
8520
+ v2.2.1 (2024-04-15)
8521
+ </span>
8522
+ </a>
8523
+
8524
+ <nav class="md-nav" aria-label="v2.2.1 (2024-04-15)">
8525
+ <ul class="md-nav__list">
8526
+
8527
+ <li class="md-nav__item">
8528
+ <a href="#security_2" class="md-nav__link">
8529
+ <span class="md-ellipsis">
8530
+ Security
8531
+ </span>
8532
+ </a>
8533
+
8534
+ </li>
8535
+
8536
+ <li class="md-nav__item">
8537
+ <a href="#added_3" class="md-nav__link">
8538
+ <span class="md-ellipsis">
8539
+ Added
8540
+ </span>
8541
+ </a>
8542
+
8543
+ </li>
8544
+
8545
+ <li class="md-nav__item">
8546
+ <a href="#changed_3" class="md-nav__link">
8547
+ <span class="md-ellipsis">
8548
+ Changed
8549
+ </span>
8550
+ </a>
8551
+
8552
+ </li>
8553
+
8554
+ <li class="md-nav__item">
8555
+ <a href="#fixed_2" class="md-nav__link">
8556
+ <span class="md-ellipsis">
8557
+ Fixed
8558
+ </span>
8559
+ </a>
8560
+
8285
8561
  </li>
8286
8562
 
8287
8563
  <li class="md-nav__item">
@@ -8294,7 +8570,7 @@
8294
8570
  </li>
8295
8571
 
8296
8572
  <li class="md-nav__item">
8297
- <a href="#documentation" class="md-nav__link">
8573
+ <a href="#documentation_2" class="md-nav__link">
8298
8574
  <span class="md-ellipsis">
8299
8575
  Documentation
8300
8576
  </span>
@@ -8303,7 +8579,7 @@
8303
8579
  </li>
8304
8580
 
8305
8581
  <li class="md-nav__item">
8306
- <a href="#housekeeping" class="md-nav__link">
8582
+ <a href="#housekeeping_2" class="md-nav__link">
8307
8583
  <span class="md-ellipsis">
8308
8584
  Housekeeping
8309
8585
  </span>
@@ -8327,7 +8603,7 @@
8327
8603
  <ul class="md-nav__list">
8328
8604
 
8329
8605
  <li class="md-nav__item">
8330
- <a href="#added_2" class="md-nav__link">
8606
+ <a href="#added_4" class="md-nav__link">
8331
8607
  <span class="md-ellipsis">
8332
8608
  Added
8333
8609
  </span>
@@ -8336,7 +8612,7 @@
8336
8612
  </li>
8337
8613
 
8338
8614
  <li class="md-nav__item">
8339
- <a href="#changed_2" class="md-nav__link">
8615
+ <a href="#changed_4" class="md-nav__link">
8340
8616
  <span class="md-ellipsis">
8341
8617
  Changed
8342
8618
  </span>
@@ -8345,7 +8621,7 @@
8345
8621
  </li>
8346
8622
 
8347
8623
  <li class="md-nav__item">
8348
- <a href="#fixed_1" class="md-nav__link">
8624
+ <a href="#fixed_3" class="md-nav__link">
8349
8625
  <span class="md-ellipsis">
8350
8626
  Fixed
8351
8627
  </span>
@@ -8363,7 +8639,7 @@
8363
8639
  </li>
8364
8640
 
8365
8641
  <li class="md-nav__item">
8366
- <a href="#housekeeping_1" class="md-nav__link">
8642
+ <a href="#housekeeping_3" class="md-nav__link">
8367
8643
  <span class="md-ellipsis">
8368
8644
  Housekeeping
8369
8645
  </span>
@@ -8387,7 +8663,7 @@
8387
8663
  <ul class="md-nav__list">
8388
8664
 
8389
8665
  <li class="md-nav__item">
8390
- <a href="#added_3" class="md-nav__link">
8666
+ <a href="#added_5" class="md-nav__link">
8391
8667
  <span class="md-ellipsis">
8392
8668
  Added
8393
8669
  </span>
@@ -8396,7 +8672,7 @@
8396
8672
  </li>
8397
8673
 
8398
8674
  <li class="md-nav__item">
8399
- <a href="#changed_3" class="md-nav__link">
8675
+ <a href="#changed_5" class="md-nav__link">
8400
8676
  <span class="md-ellipsis">
8401
8677
  Changed
8402
8678
  </span>
@@ -8423,7 +8699,7 @@
8423
8699
  </li>
8424
8700
 
8425
8701
  <li class="md-nav__item">
8426
- <a href="#fixed_2" class="md-nav__link">
8702
+ <a href="#fixed_4" class="md-nav__link">
8427
8703
  <span class="md-ellipsis">
8428
8704
  Fixed
8429
8705
  </span>
@@ -8441,7 +8717,7 @@
8441
8717
  </li>
8442
8718
 
8443
8719
  <li class="md-nav__item">
8444
- <a href="#documentation_1" class="md-nav__link">
8720
+ <a href="#documentation_3" class="md-nav__link">
8445
8721
  <span class="md-ellipsis">
8446
8722
  Documentation
8447
8723
  </span>
@@ -8450,7 +8726,7 @@
8450
8726
  </li>
8451
8727
 
8452
8728
  <li class="md-nav__item">
8453
- <a href="#housekeeping_2" class="md-nav__link">
8729
+ <a href="#housekeeping_4" class="md-nav__link">
8454
8730
  <span class="md-ellipsis">
8455
8731
  Housekeeping
8456
8732
  </span>
@@ -8519,25 +8795,98 @@
8519
8795
  <h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">&para;</a></h4>
8520
8796
  <p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
8521
8797
  <!-- towncrier release notes start -->
8522
- <h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">&para;</a></h2>
8798
+ <h2 id="v223-2024-04-30">v2.2.3 (2024-04-30)<a class="headerlink" href="#v223-2024-04-30" title="Permanent link">&para;</a></h2>
8523
8799
  <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
8524
8800
  <ul>
8801
+ <li><a href="https://github.com/nautobot/nautobot/issues/5624">#5624</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.4.1</code> to address <code>CVE-2024-32879</code>.</li>
8802
+ <li><a href="https://github.com/nautobot/nautobot/issues/5646">#5646</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
8803
+ </ul>
8804
+ <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
8805
+ <ul>
8806
+ <li><a href="https://github.com/nautobot/nautobot/issues/2946">#2946</a> - Added custom link support for interfaces, console ports, console server ports, power ports, power outlets, front ports, rear ports, device bays, and inventory items.</li>
8807
+ <li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a view to convert location contact information to contacts or teams.</li>
8808
+ <li><a href="https://github.com/nautobot/nautobot/issues/5537">#5537</a> - Re-added <code>run_job</code> generic Celery task as a wrapper for execution of all Nautobot Jobs.</li>
8809
+ <li><a href="https://github.com/nautobot/nautobot/issues/5560">#5560</a> - Added a template tag which creates a hyperlink that opens in a new tab.</li>
8810
+ <li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Added <code>nautobot.apps.jobs.get_jobs()</code> API.</li>
8811
+ </ul>
8812
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
8813
+ <ul>
8814
+ <li><a href="https://github.com/nautobot/nautobot/issues/5498">#5498</a> - Changed the <code>nautobot.extras.jobs.Job</code> class to no longer be a subclass of <code>celery.tasks.Task</code>.</li>
8815
+ </ul>
8816
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
8817
+ <ul>
8818
+ <li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Fixed missing <code>location</code> field in <code>Prefix</code> and <code>VLAN</code> GraphQL schema.</li>
8819
+ <li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Restored ability to filter Prefix and VLAN objects at the ORM level by <code>location</code>.</li>
8820
+ <li><a href="https://github.com/nautobot/nautobot/issues/5565">#5565</a> - Fixed optional dependency on <code>social-auth-core</code> by removing an extras related to <code>openidconnect</code> that no longer exists.</li>
8821
+ <li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Fixed incorrect rendering of Job variables in the ScheduledJob detail view.</li>
8822
+ <li><a href="https://github.com/nautobot/nautobot/issues/5594">#5594</a> - Fixed Job tiles view not understanding the <code>per_page</code> and <code>page</code> query parameters.</li>
8823
+ <li><a href="https://github.com/nautobot/nautobot/issues/5595">#5595</a> - Fixed bug where API Extra Actions weren't displaying the proper name.</li>
8824
+ <li><a href="https://github.com/nautobot/nautobot/issues/5603">#5603</a> - Fixed config contexts loaded from Git repositories not populating Device Redundancy Group information.</li>
8825
+ <li><a href="https://github.com/nautobot/nautobot/issues/5640">#5640</a> - Fixed bug in generating the URL parameters for cloning objects.</li>
8826
+ <li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed some cases where stale Job code might be present when Jobs are sourced from <code>JOBS_ROOT</code> or a Git repository.</li>
8827
+ <li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed incorrect handling of Job <code>kwargs</code> when dry-running a job approval request via the REST API.</li>
8828
+ </ul>
8829
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
8830
+ <ul>
8831
+ <li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
8832
+ <li><a href="https://github.com/nautobot/nautobot/issues/5608">#5608</a> - Updated VLAN documentation with a recommendation for modeling of VLANs with respect to Locations.</li>
8833
+ <li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Added extras features docs to core developer new model checklist.</li>
8834
+ <li><a href="https://github.com/nautobot/nautobot/issues/5635">#5635</a> - Added borders to tabbed sections of mkdocs.</li>
8835
+ </ul>
8836
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
8837
+ <ul>
8838
+ <li><a href="https://github.com/nautobot/nautobot/issues/4498">#4498</a> - Removed redundant <code>nautobot.extras.plugins.register_jobs</code> function.</li>
8839
+ <li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Fixed an intermittent ImportError when running tests with certain options.</li>
8840
+ <li><a href="https://github.com/nautobot/nautobot/issues/5605">#5605</a> - Added prerelease and release workflow to deploy sandbox environments automatically.</li>
8841
+ </ul>
8842
+ <h2 id="v222-2024-04-18">v2.2.2 (2024-04-18)<a class="headerlink" href="#v222-2024-04-18" title="Permanent link">&para;</a></h2>
8843
+ <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
8844
+ <ul>
8845
+ <li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
8846
+ </ul>
8847
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
8848
+ <ul>
8849
+ <li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.utils.bulk_delete_with_bulk_change_logging</code> helper function for improving performance on bulk delete.</li>
8850
+ <li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.context_managers.deferred_change_logging_for_bulk_operation</code> context manager for improving performance on bulk update.</li>
8851
+ </ul>
8852
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
8853
+ <ul>
8854
+ <li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Improved performance of bulk-edit and bulk-delete UI operations by refactoring change logging logic.</li>
8855
+ <li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
8856
+ <li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
8857
+ </ul>
8858
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
8859
+ <ul>
8860
+ <li><a href="https://github.com/nautobot/nautobot/issues/5580">#5580</a> - Fixed bugs when assigning a VLAN to an Interface related to the recently introduced many-to-many relationship between VLANs and Locations.</li>
8861
+ <li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
8862
+ </ul>
8863
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
8864
+ <ul>
8865
+ <li><a href="https://github.com/nautobot/nautobot/issues/5583">#5583</a> - Re-added release note content for v1.6.16 through v1.6.18.</li>
8866
+ </ul>
8867
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
8868
+ <ul>
8869
+ <li><a href="https://github.com/nautobot/nautobot/issues/5590">#5590</a> - Fixed upstream testing workflows showing successful when one of the steps fail.</li>
8870
+ </ul>
8871
+ <h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">&para;</a></h2>
8872
+ <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
8873
+ <ul>
8525
8874
  <li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
8526
8875
  <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>
8527
8876
  <li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
8528
8877
  </ul>
8529
- <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
8878
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
8530
8879
  <ul>
8531
8880
  <li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
8532
8881
  <li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
8533
8882
  <li><a href="https://github.com/nautobot/nautobot/issues/5493">#5493</a> - Added a configuration setting <code>METRICS_DISABLED_APPS</code> to disable app metrics for specific apps.</li>
8534
8883
  <li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
8535
8884
  </ul>
8536
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
8885
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
8537
8886
  <ul>
8538
8887
  <li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
8539
8888
  </ul>
8540
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
8889
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
8541
8890
  <ul>
8542
8891
  <li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
8543
8892
  <li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
@@ -8554,13 +8903,13 @@
8554
8903
  <li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
8555
8904
  <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
8556
8905
  </ul>
8557
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
8906
+ <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
8558
8907
  <ul>
8559
8908
  <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
8560
8909
  <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
8561
8910
  <li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
8562
8911
  </ul>
8563
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
8912
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
8564
8913
  <ul>
8565
8914
  <li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
8566
8915
  <li><a href="https://github.com/nautobot/nautobot/issues/5547">#5547</a> - Fixed TransactionTestCase inheritance order so that <code>test.client</code> works in test cases using this class.</li>
@@ -8570,12 +8919,12 @@
8570
8919
  <p class="admonition-title">Warning</p>
8571
8920
  <p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
8572
8921
  </div>
8573
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
8922
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
8574
8923
  <ul>
8575
8924
  <li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
8576
8925
  <li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
8577
8926
  </ul>
8578
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
8927
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
8579
8928
  <ul>
8580
8929
  <li><a href="https://github.com/nautobot/nautobot/issues/5452">#5452</a> - Changed the behavior of Prefix table: now they are sortable, and after sorting is applied, all hierarchy indentations are removed.</li>
8581
8930
  <li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Changed one-to-many links from Controller to <code>PROTECT</code> against deleting.</li>
@@ -8588,7 +8937,7 @@
8588
8937
  <li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
8589
8938
  <li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
8590
8939
  </ul>
8591
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
8940
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
8592
8941
  <ul>
8593
8942
  <li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
8594
8943
  <li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
@@ -8599,13 +8948,13 @@
8599
8948
  <ul>
8600
8949
  <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; it's dependency on <code>ecdsa</code>.</li>
8601
8950
  </ul>
8602
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
8951
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
8603
8952
  <ul>
8604
8953
  <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
8605
8954
  <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
8606
8955
  </ul>
8607
8956
  <h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">&para;</a></h2>
8608
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
8957
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
8609
8958
  <ul>
8610
8959
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
8611
8960
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
@@ -8644,7 +8993,7 @@
8644
8993
  <li><a href="https://github.com/nautobot/nautobot/issues/5347">#5347</a> - Added an option to the Job-based CSV import to make atomic transactions optional.</li>
8645
8994
  <li><a href="https://github.com/nautobot/nautobot/issues/5349">#5349</a> - Added REST API for vlan-to-location and prefix-to-location M2M.</li>
8646
8995
  </ul>
8647
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
8996
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
8648
8997
  <ul>
8649
8998
  <li><a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a> - Increased <code>max_length</code> on all CharFields to at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</li>
8650
8999
  <li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Changed <code>Prefix.location</code> to <code>Prefix.locations</code> allowing multiple Locations to be associated with a given Prefix.</li>
@@ -8674,7 +9023,7 @@
8674
9023
  <li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
8675
9024
  <li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
8676
9025
  </ul>
8677
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9026
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
8678
9027
  <ul>
8679
9028
  <li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
8680
9029
  <li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
@@ -8691,14 +9040,14 @@
8691
9040
  <ul>
8692
9041
  <li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
8693
9042
  </ul>
8694
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9043
+ <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
8695
9044
  <ul>
8696
9045
  <li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
8697
9046
  <li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>
8698
9047
  <li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Removed source code excerpts from the "App Developer Guide &gt; Code Reference" section of the documentation.</li>
8699
9048
  <li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
8700
9049
  </ul>
8701
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
9050
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
8702
9051
  <ul>
8703
9052
  <li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Added <code>mkdocs-macros-plugin</code> as a development/documentation-rendering dependency.</li>
8704
9053
  <li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Refactored documentation in <code>optional-settings</code> and <code>required-settings</code> to be generated automatically from <code>settings.yaml</code> schema.</li>