nautobot 2.2.2__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.
- nautobot/apps/jobs.py +2 -0
- nautobot/core/api/utils.py +12 -9
- nautobot/core/apps/__init__.py +2 -2
- nautobot/core/celery/__init__.py +79 -68
- nautobot/core/celery/backends.py +9 -1
- nautobot/core/celery/control.py +4 -7
- nautobot/core/celery/schedulers.py +4 -2
- nautobot/core/celery/task.py +78 -5
- nautobot/core/graphql/schema.py +2 -1
- nautobot/core/jobs/__init__.py +2 -1
- nautobot/core/templates/generic/object_list.html +3 -3
- nautobot/core/templatetags/helpers.py +66 -9
- nautobot/core/testing/__init__.py +6 -1
- nautobot/core/testing/api.py +12 -13
- nautobot/core/testing/mixins.py +2 -2
- nautobot/core/testing/views.py +50 -51
- nautobot/core/tests/test_api.py +23 -2
- nautobot/core/tests/test_templatetags_helpers.py +32 -0
- nautobot/core/tests/test_views.py +19 -0
- nautobot/core/tests/test_views_utils.py +22 -1
- nautobot/core/utils/module_loading.py +89 -0
- nautobot/core/views/utils.py +3 -2
- nautobot/dcim/choices.py +14 -0
- nautobot/dcim/forms.py +51 -1
- nautobot/dcim/models/device_components.py +9 -5
- nautobot/dcim/templates/dcim/location.html +32 -13
- nautobot/dcim/templates/dcim/location_migrate_data_to_contact.html +102 -0
- nautobot/dcim/tests/test_views.py +137 -0
- nautobot/dcim/urls.py +5 -0
- nautobot/dcim/views.py +149 -1
- nautobot/extras/api/views.py +21 -10
- nautobot/extras/constants.py +3 -3
- nautobot/extras/datasources/git.py +47 -58
- nautobot/extras/forms/forms.py +3 -1
- nautobot/extras/jobs.py +79 -146
- nautobot/extras/models/datasources.py +0 -2
- nautobot/extras/models/jobs.py +36 -18
- nautobot/extras/plugins/__init__.py +1 -20
- nautobot/extras/signals.py +6 -9
- nautobot/extras/test_jobs/__init__.py +8 -0
- nautobot/extras/test_jobs/dry_run.py +3 -2
- nautobot/extras/test_jobs/fail.py +43 -0
- nautobot/extras/test_jobs/ipaddress_vars.py +40 -1
- nautobot/extras/test_jobs/jobs_module/__init__.py +5 -0
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/__init__.py +1 -0
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +6 -0
- nautobot/extras/test_jobs/pass.py +40 -0
- nautobot/extras/test_jobs/relative_import.py +11 -0
- nautobot/extras/tests/test_api.py +3 -0
- nautobot/extras/tests/test_datasources.py +125 -118
- nautobot/extras/tests/test_job_variables.py +57 -15
- nautobot/extras/tests/test_jobs.py +135 -1
- nautobot/extras/tests/test_models.py +26 -19
- nautobot/extras/tests/test_plugins.py +1 -3
- nautobot/extras/tests/test_views.py +2 -4
- nautobot/extras/views.py +47 -95
- nautobot/ipam/api/views.py +8 -1
- nautobot/ipam/graphql/types.py +11 -0
- nautobot/ipam/mixins.py +32 -0
- nautobot/ipam/models.py +2 -1
- nautobot/ipam/querysets.py +6 -1
- nautobot/ipam/tests/test_models.py +82 -0
- nautobot/project-static/docs/assets/extra.css +4 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +180 -211
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +1 -1
- nautobot/project-static/docs/development/core/application-registry.html +126 -84
- nautobot/project-static/docs/development/core/model-checklist.html +49 -1
- nautobot/project-static/docs/development/core/model-features.html +1 -1
- nautobot/project-static/docs/development/jobs/index.html +334 -58
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +1 -1
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/version-2.2.html +237 -55
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +254 -254
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +7 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +111 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +15 -28
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +4 -4
- nautobot/project-static/js/forms.js +18 -11
- {nautobot-2.2.2.dist-info → nautobot-2.2.3.dist-info}/METADATA +3 -3
- {nautobot-2.2.2.dist-info → nautobot-2.2.3.dist-info}/RECORD +87 -81
- nautobot/extras/test_jobs/job_variables.py +0 -93
- {nautobot-2.2.2.dist-info → nautobot-2.2.3.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.2.dist-info → nautobot-2.2.3.dist-info}/NOTICE +0 -0
- {nautobot-2.2.2.dist-info → nautobot-2.2.3.dist-info}/WHEEL +0 -0
- {nautobot-2.2.2.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="#
|
|
7322
|
+
<a href="#v223-2024-04-30" class="md-nav__link">
|
|
7323
7323
|
<span class="md-ellipsis">
|
|
7324
|
-
v2.2.
|
|
7324
|
+
v2.2.3 (2024-04-30)
|
|
7325
7325
|
</span>
|
|
7326
7326
|
</a>
|
|
7327
7327
|
|
|
7328
|
-
<nav class="md-nav" aria-label="v2.2.
|
|
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">
|
|
@@ -7388,13 +7388,13 @@
|
|
|
7388
7388
|
</li>
|
|
7389
7389
|
|
|
7390
7390
|
<li class="md-nav__item">
|
|
7391
|
-
<a href="#
|
|
7391
|
+
<a href="#v222-2024-04-18" class="md-nav__link">
|
|
7392
7392
|
<span class="md-ellipsis">
|
|
7393
|
-
v2.2.
|
|
7393
|
+
v2.2.2 (2024-04-18)
|
|
7394
7394
|
</span>
|
|
7395
7395
|
</a>
|
|
7396
7396
|
|
|
7397
|
-
<nav class="md-nav" aria-label="v2.2.
|
|
7397
|
+
<nav class="md-nav" aria-label="v2.2.2 (2024-04-18)">
|
|
7398
7398
|
<ul class="md-nav__list">
|
|
7399
7399
|
|
|
7400
7400
|
<li class="md-nav__item">
|
|
@@ -7431,6 +7431,75 @@
|
|
|
7431
7431
|
</span>
|
|
7432
7432
|
</a>
|
|
7433
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
|
+
|
|
7434
7503
|
</li>
|
|
7435
7504
|
|
|
7436
7505
|
<li class="md-nav__item">
|
|
@@ -7443,7 +7512,7 @@
|
|
|
7443
7512
|
</li>
|
|
7444
7513
|
|
|
7445
7514
|
<li class="md-nav__item">
|
|
7446
|
-
<a href="#
|
|
7515
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
7447
7516
|
<span class="md-ellipsis">
|
|
7448
7517
|
Documentation
|
|
7449
7518
|
</span>
|
|
@@ -7452,7 +7521,7 @@
|
|
|
7452
7521
|
</li>
|
|
7453
7522
|
|
|
7454
7523
|
<li class="md-nav__item">
|
|
7455
|
-
<a href="#
|
|
7524
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
7456
7525
|
<span class="md-ellipsis">
|
|
7457
7526
|
Housekeeping
|
|
7458
7527
|
</span>
|
|
@@ -7476,7 +7545,7 @@
|
|
|
7476
7545
|
<ul class="md-nav__list">
|
|
7477
7546
|
|
|
7478
7547
|
<li class="md-nav__item">
|
|
7479
|
-
<a href="#
|
|
7548
|
+
<a href="#added_4" class="md-nav__link">
|
|
7480
7549
|
<span class="md-ellipsis">
|
|
7481
7550
|
Added
|
|
7482
7551
|
</span>
|
|
@@ -7485,7 +7554,7 @@
|
|
|
7485
7554
|
</li>
|
|
7486
7555
|
|
|
7487
7556
|
<li class="md-nav__item">
|
|
7488
|
-
<a href="#
|
|
7557
|
+
<a href="#changed_4" class="md-nav__link">
|
|
7489
7558
|
<span class="md-ellipsis">
|
|
7490
7559
|
Changed
|
|
7491
7560
|
</span>
|
|
@@ -7494,7 +7563,7 @@
|
|
|
7494
7563
|
</li>
|
|
7495
7564
|
|
|
7496
7565
|
<li class="md-nav__item">
|
|
7497
|
-
<a href="#
|
|
7566
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
7498
7567
|
<span class="md-ellipsis">
|
|
7499
7568
|
Fixed
|
|
7500
7569
|
</span>
|
|
@@ -7512,7 +7581,7 @@
|
|
|
7512
7581
|
</li>
|
|
7513
7582
|
|
|
7514
7583
|
<li class="md-nav__item">
|
|
7515
|
-
<a href="#
|
|
7584
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
7516
7585
|
<span class="md-ellipsis">
|
|
7517
7586
|
Housekeeping
|
|
7518
7587
|
</span>
|
|
@@ -7536,7 +7605,7 @@
|
|
|
7536
7605
|
<ul class="md-nav__list">
|
|
7537
7606
|
|
|
7538
7607
|
<li class="md-nav__item">
|
|
7539
|
-
<a href="#
|
|
7608
|
+
<a href="#added_5" class="md-nav__link">
|
|
7540
7609
|
<span class="md-ellipsis">
|
|
7541
7610
|
Added
|
|
7542
7611
|
</span>
|
|
@@ -7545,7 +7614,7 @@
|
|
|
7545
7614
|
</li>
|
|
7546
7615
|
|
|
7547
7616
|
<li class="md-nav__item">
|
|
7548
|
-
<a href="#
|
|
7617
|
+
<a href="#changed_5" class="md-nav__link">
|
|
7549
7618
|
<span class="md-ellipsis">
|
|
7550
7619
|
Changed
|
|
7551
7620
|
</span>
|
|
@@ -7572,7 +7641,7 @@
|
|
|
7572
7641
|
</li>
|
|
7573
7642
|
|
|
7574
7643
|
<li class="md-nav__item">
|
|
7575
|
-
<a href="#
|
|
7644
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
7576
7645
|
<span class="md-ellipsis">
|
|
7577
7646
|
Fixed
|
|
7578
7647
|
</span>
|
|
@@ -7590,7 +7659,7 @@
|
|
|
7590
7659
|
</li>
|
|
7591
7660
|
|
|
7592
7661
|
<li class="md-nav__item">
|
|
7593
|
-
<a href="#
|
|
7662
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
7594
7663
|
<span class="md-ellipsis">
|
|
7595
7664
|
Documentation
|
|
7596
7665
|
</span>
|
|
@@ -7599,7 +7668,7 @@
|
|
|
7599
7668
|
</li>
|
|
7600
7669
|
|
|
7601
7670
|
<li class="md-nav__item">
|
|
7602
|
-
<a href="#
|
|
7671
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
7603
7672
|
<span class="md-ellipsis">
|
|
7604
7673
|
Housekeeping
|
|
7605
7674
|
</span>
|
|
@@ -8308,13 +8377,13 @@
|
|
|
8308
8377
|
</li>
|
|
8309
8378
|
|
|
8310
8379
|
<li class="md-nav__item">
|
|
8311
|
-
<a href="#
|
|
8380
|
+
<a href="#v223-2024-04-30" class="md-nav__link">
|
|
8312
8381
|
<span class="md-ellipsis">
|
|
8313
|
-
v2.2.
|
|
8382
|
+
v2.2.3 (2024-04-30)
|
|
8314
8383
|
</span>
|
|
8315
8384
|
</a>
|
|
8316
8385
|
|
|
8317
|
-
<nav class="md-nav" aria-label="v2.2.
|
|
8386
|
+
<nav class="md-nav" aria-label="v2.2.3 (2024-04-30)">
|
|
8318
8387
|
<ul class="md-nav__list">
|
|
8319
8388
|
|
|
8320
8389
|
<li class="md-nav__item">
|
|
@@ -8377,13 +8446,13 @@
|
|
|
8377
8446
|
</li>
|
|
8378
8447
|
|
|
8379
8448
|
<li class="md-nav__item">
|
|
8380
|
-
<a href="#
|
|
8449
|
+
<a href="#v222-2024-04-18" class="md-nav__link">
|
|
8381
8450
|
<span class="md-ellipsis">
|
|
8382
|
-
v2.2.
|
|
8451
|
+
v2.2.2 (2024-04-18)
|
|
8383
8452
|
</span>
|
|
8384
8453
|
</a>
|
|
8385
8454
|
|
|
8386
|
-
<nav class="md-nav" aria-label="v2.2.
|
|
8455
|
+
<nav class="md-nav" aria-label="v2.2.2 (2024-04-18)">
|
|
8387
8456
|
<ul class="md-nav__list">
|
|
8388
8457
|
|
|
8389
8458
|
<li class="md-nav__item">
|
|
@@ -8420,6 +8489,75 @@
|
|
|
8420
8489
|
</span>
|
|
8421
8490
|
</a>
|
|
8422
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
|
+
|
|
8423
8561
|
</li>
|
|
8424
8562
|
|
|
8425
8563
|
<li class="md-nav__item">
|
|
@@ -8432,7 +8570,7 @@
|
|
|
8432
8570
|
</li>
|
|
8433
8571
|
|
|
8434
8572
|
<li class="md-nav__item">
|
|
8435
|
-
<a href="#
|
|
8573
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8436
8574
|
<span class="md-ellipsis">
|
|
8437
8575
|
Documentation
|
|
8438
8576
|
</span>
|
|
@@ -8441,7 +8579,7 @@
|
|
|
8441
8579
|
</li>
|
|
8442
8580
|
|
|
8443
8581
|
<li class="md-nav__item">
|
|
8444
|
-
<a href="#
|
|
8582
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8445
8583
|
<span class="md-ellipsis">
|
|
8446
8584
|
Housekeeping
|
|
8447
8585
|
</span>
|
|
@@ -8465,7 +8603,7 @@
|
|
|
8465
8603
|
<ul class="md-nav__list">
|
|
8466
8604
|
|
|
8467
8605
|
<li class="md-nav__item">
|
|
8468
|
-
<a href="#
|
|
8606
|
+
<a href="#added_4" class="md-nav__link">
|
|
8469
8607
|
<span class="md-ellipsis">
|
|
8470
8608
|
Added
|
|
8471
8609
|
</span>
|
|
@@ -8474,7 +8612,7 @@
|
|
|
8474
8612
|
</li>
|
|
8475
8613
|
|
|
8476
8614
|
<li class="md-nav__item">
|
|
8477
|
-
<a href="#
|
|
8615
|
+
<a href="#changed_4" class="md-nav__link">
|
|
8478
8616
|
<span class="md-ellipsis">
|
|
8479
8617
|
Changed
|
|
8480
8618
|
</span>
|
|
@@ -8483,7 +8621,7 @@
|
|
|
8483
8621
|
</li>
|
|
8484
8622
|
|
|
8485
8623
|
<li class="md-nav__item">
|
|
8486
|
-
<a href="#
|
|
8624
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8487
8625
|
<span class="md-ellipsis">
|
|
8488
8626
|
Fixed
|
|
8489
8627
|
</span>
|
|
@@ -8501,7 +8639,7 @@
|
|
|
8501
8639
|
</li>
|
|
8502
8640
|
|
|
8503
8641
|
<li class="md-nav__item">
|
|
8504
|
-
<a href="#
|
|
8642
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8505
8643
|
<span class="md-ellipsis">
|
|
8506
8644
|
Housekeeping
|
|
8507
8645
|
</span>
|
|
@@ -8525,7 +8663,7 @@
|
|
|
8525
8663
|
<ul class="md-nav__list">
|
|
8526
8664
|
|
|
8527
8665
|
<li class="md-nav__item">
|
|
8528
|
-
<a href="#
|
|
8666
|
+
<a href="#added_5" class="md-nav__link">
|
|
8529
8667
|
<span class="md-ellipsis">
|
|
8530
8668
|
Added
|
|
8531
8669
|
</span>
|
|
@@ -8534,7 +8672,7 @@
|
|
|
8534
8672
|
</li>
|
|
8535
8673
|
|
|
8536
8674
|
<li class="md-nav__item">
|
|
8537
|
-
<a href="#
|
|
8675
|
+
<a href="#changed_5" class="md-nav__link">
|
|
8538
8676
|
<span class="md-ellipsis">
|
|
8539
8677
|
Changed
|
|
8540
8678
|
</span>
|
|
@@ -8561,7 +8699,7 @@
|
|
|
8561
8699
|
</li>
|
|
8562
8700
|
|
|
8563
8701
|
<li class="md-nav__item">
|
|
8564
|
-
<a href="#
|
|
8702
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8565
8703
|
<span class="md-ellipsis">
|
|
8566
8704
|
Fixed
|
|
8567
8705
|
</span>
|
|
@@ -8579,7 +8717,7 @@
|
|
|
8579
8717
|
</li>
|
|
8580
8718
|
|
|
8581
8719
|
<li class="md-nav__item">
|
|
8582
|
-
<a href="#
|
|
8720
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8583
8721
|
<span class="md-ellipsis">
|
|
8584
8722
|
Documentation
|
|
8585
8723
|
</span>
|
|
@@ -8588,7 +8726,7 @@
|
|
|
8588
8726
|
</li>
|
|
8589
8727
|
|
|
8590
8728
|
<li class="md-nav__item">
|
|
8591
|
-
<a href="#
|
|
8729
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8592
8730
|
<span class="md-ellipsis">
|
|
8593
8731
|
Housekeeping
|
|
8594
8732
|
</span>
|
|
@@ -8657,54 +8795,98 @@
|
|
|
8657
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">¶</a></h4>
|
|
8658
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>
|
|
8659
8797
|
<!-- towncrier release notes start -->
|
|
8660
|
-
<h2 id="
|
|
8798
|
+
<h2 id="v223-2024-04-30">v2.2.3 (2024-04-30)<a class="headerlink" href="#v223-2024-04-30" title="Permanent link">¶</a></h2>
|
|
8661
8799
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
8662
8800
|
<ul>
|
|
8663
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
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>
|
|
8664
8803
|
</ul>
|
|
8665
8804
|
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
8666
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">¶</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">¶</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">¶</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">¶</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">¶</a></h2>
|
|
8843
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</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">¶</a></h3>
|
|
8848
|
+
<ul>
|
|
8667
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>
|
|
8668
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>
|
|
8669
8851
|
</ul>
|
|
8670
|
-
<h3 id="
|
|
8852
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
8671
8853
|
<ul>
|
|
8672
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>
|
|
8673
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>
|
|
8674
8856
|
<li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
|
|
8675
8857
|
</ul>
|
|
8676
|
-
<h3 id="
|
|
8858
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
8677
8859
|
<ul>
|
|
8678
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>
|
|
8679
8861
|
<li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
|
|
8680
8862
|
</ul>
|
|
8681
|
-
<h3 id="
|
|
8863
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
8682
8864
|
<ul>
|
|
8683
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>
|
|
8684
8866
|
</ul>
|
|
8685
|
-
<h3 id="
|
|
8867
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
8686
8868
|
<ul>
|
|
8687
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>
|
|
8688
8870
|
</ul>
|
|
8689
8871
|
<h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">¶</a></h2>
|
|
8690
|
-
<h3 id="
|
|
8872
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
8691
8873
|
<ul>
|
|
8692
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>
|
|
8693
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>
|
|
8694
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>
|
|
8695
8877
|
</ul>
|
|
8696
|
-
<h3 id="
|
|
8878
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
8697
8879
|
<ul>
|
|
8698
8880
|
<li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
|
|
8699
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>
|
|
8700
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>
|
|
8701
8883
|
<li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
|
|
8702
8884
|
</ul>
|
|
8703
|
-
<h3 id="
|
|
8885
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
8704
8886
|
<ul>
|
|
8705
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>
|
|
8706
8888
|
</ul>
|
|
8707
|
-
<h3 id="
|
|
8889
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
8708
8890
|
<ul>
|
|
8709
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>
|
|
8710
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>
|
|
@@ -8721,13 +8903,13 @@
|
|
|
8721
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>
|
|
8722
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>
|
|
8723
8905
|
</ul>
|
|
8724
|
-
<h3 id="
|
|
8906
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
8725
8907
|
<ul>
|
|
8726
8908
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
|
|
8727
8909
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
|
|
8728
8910
|
<li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
|
|
8729
8911
|
</ul>
|
|
8730
|
-
<h3 id="
|
|
8912
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
8731
8913
|
<ul>
|
|
8732
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>
|
|
8733
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>
|
|
@@ -8737,12 +8919,12 @@
|
|
|
8737
8919
|
<p class="admonition-title">Warning</p>
|
|
8738
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>
|
|
8739
8921
|
</div>
|
|
8740
|
-
<h3 id="
|
|
8922
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
8741
8923
|
<ul>
|
|
8742
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>
|
|
8743
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>
|
|
8744
8926
|
</ul>
|
|
8745
|
-
<h3 id="
|
|
8927
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
8746
8928
|
<ul>
|
|
8747
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>
|
|
8748
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>
|
|
@@ -8755,7 +8937,7 @@
|
|
|
8755
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>
|
|
8756
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>
|
|
8757
8939
|
</ul>
|
|
8758
|
-
<h3 id="
|
|
8940
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
8759
8941
|
<ul>
|
|
8760
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>
|
|
8761
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>
|
|
@@ -8766,13 +8948,13 @@
|
|
|
8766
8948
|
<ul>
|
|
8767
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> & it's dependency on <code>ecdsa</code>.</li>
|
|
8768
8950
|
</ul>
|
|
8769
|
-
<h3 id="
|
|
8951
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
8770
8952
|
<ul>
|
|
8771
8953
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
|
|
8772
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>
|
|
8773
8955
|
</ul>
|
|
8774
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">¶</a></h2>
|
|
8775
|
-
<h3 id="
|
|
8957
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
8776
8958
|
<ul>
|
|
8777
8959
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
|
|
8778
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>
|
|
@@ -8811,7 +8993,7 @@
|
|
|
8811
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>
|
|
8812
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>
|
|
8813
8995
|
</ul>
|
|
8814
|
-
<h3 id="
|
|
8996
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
8815
8997
|
<ul>
|
|
8816
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>
|
|
8817
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>
|
|
@@ -8841,7 +9023,7 @@
|
|
|
8841
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>
|
|
8842
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>
|
|
8843
9025
|
</ul>
|
|
8844
|
-
<h3 id="
|
|
9026
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
8845
9027
|
<ul>
|
|
8846
9028
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
|
|
8847
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>
|
|
@@ -8858,14 +9040,14 @@
|
|
|
8858
9040
|
<ul>
|
|
8859
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>
|
|
8860
9042
|
</ul>
|
|
8861
|
-
<h3 id="
|
|
9043
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
8862
9044
|
<ul>
|
|
8863
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>
|
|
8864
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>
|
|
8865
9047
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Removed source code excerpts from the "App Developer Guide > Code Reference" section of the documentation.</li>
|
|
8866
9048
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
|
|
8867
9049
|
</ul>
|
|
8868
|
-
<h3 id="
|
|
9050
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
8869
9051
|
<ul>
|
|
8870
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>
|
|
8871
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>
|