nautobot 2.3.1__py3-none-any.whl → 2.3.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/core/celery/schedulers.py +18 -0
- nautobot/core/settings.yaml +3 -3
- nautobot/core/tables.py +1 -1
- nautobot/core/templates/home.html +4 -3
- nautobot/core/templatetags/buttons.py +1 -1
- nautobot/core/views/utils.py +3 -3
- nautobot/dcim/factory.py +3 -3
- nautobot/dcim/tables/devices.py +7 -7
- nautobot/dcim/templates/dcim/device.html +12 -0
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +12 -0
- nautobot/dcim/utils.py +9 -6
- nautobot/extras/api/serializers.py +2 -0
- nautobot/extras/filters/__init__.py +14 -2
- nautobot/extras/forms/forms.py +6 -0
- nautobot/extras/forms/mixins.py +2 -2
- nautobot/extras/management/__init__.py +3 -0
- nautobot/extras/migrations/0115_scheduledjob_time_zone.py +23 -0
- nautobot/extras/models/jobs.py +24 -11
- nautobot/extras/tables.py +34 -4
- nautobot/extras/templates/extras/scheduledjob.html +13 -2
- nautobot/extras/tests/test_api.py +17 -18
- nautobot/extras/tests/test_filters.py +57 -1
- nautobot/extras/tests/test_models.py +299 -1
- nautobot/extras/tests/test_views.py +3 -2
- nautobot/extras/views.py +7 -0
- nautobot/ipam/api/views.py +9 -2
- nautobot/ipam/choices.py +17 -0
- nautobot/ipam/factory.py +6 -0
- nautobot/ipam/filters.py +1 -1
- nautobot/ipam/forms.py +5 -3
- nautobot/ipam/migrations/0048_vrf_status.py +23 -0
- nautobot/ipam/migrations/0049_vrf_data_migration.py +25 -0
- nautobot/ipam/models.py +2 -0
- nautobot/ipam/tables.py +3 -2
- nautobot/ipam/templates/ipam/vrf.html +4 -0
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -0
- nautobot/ipam/tests/test_api.py +33 -3
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/project-static/css/base.css +6 -0
- nautobot/project-static/docs/release-notes/version-2.3.html +163 -33
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +271 -271
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +3 -3
- nautobot/project-static/js/homepage_layout.js +3 -0
- {nautobot-2.3.1.dist-info → nautobot-2.3.2.dist-info}/METADATA +1 -1
- {nautobot-2.3.1.dist-info → nautobot-2.3.2.dist-info}/RECORD +51 -48
- {nautobot-2.3.1.dist-info → nautobot-2.3.2.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.1.dist-info → nautobot-2.3.2.dist-info}/NOTICE +0 -0
- {nautobot-2.3.1.dist-info → nautobot-2.3.2.dist-info}/WHEEL +0 -0
- {nautobot-2.3.1.dist-info → nautobot-2.3.2.dist-info}/entry_points.txt +0 -0
|
@@ -8312,6 +8312,57 @@
|
|
|
8312
8312
|
</ul>
|
|
8313
8313
|
</nav>
|
|
8314
8314
|
|
|
8315
|
+
</li>
|
|
8316
|
+
|
|
8317
|
+
<li class="md-nav__item">
|
|
8318
|
+
<a href="#v232-2024-09-03" class="md-nav__link">
|
|
8319
|
+
<span class="md-ellipsis">
|
|
8320
|
+
v2.3.2 (2024-09-03)
|
|
8321
|
+
</span>
|
|
8322
|
+
</a>
|
|
8323
|
+
|
|
8324
|
+
<nav class="md-nav" aria-label="v2.3.2 (2024-09-03)">
|
|
8325
|
+
<ul class="md-nav__list">
|
|
8326
|
+
|
|
8327
|
+
<li class="md-nav__item">
|
|
8328
|
+
<a href="#security" class="md-nav__link">
|
|
8329
|
+
<span class="md-ellipsis">
|
|
8330
|
+
Security
|
|
8331
|
+
</span>
|
|
8332
|
+
</a>
|
|
8333
|
+
|
|
8334
|
+
</li>
|
|
8335
|
+
|
|
8336
|
+
<li class="md-nav__item">
|
|
8337
|
+
<a href="#added_1" class="md-nav__link">
|
|
8338
|
+
<span class="md-ellipsis">
|
|
8339
|
+
Added
|
|
8340
|
+
</span>
|
|
8341
|
+
</a>
|
|
8342
|
+
|
|
8343
|
+
</li>
|
|
8344
|
+
|
|
8345
|
+
<li class="md-nav__item">
|
|
8346
|
+
<a href="#fixed" class="md-nav__link">
|
|
8347
|
+
<span class="md-ellipsis">
|
|
8348
|
+
Fixed
|
|
8349
|
+
</span>
|
|
8350
|
+
</a>
|
|
8351
|
+
|
|
8352
|
+
</li>
|
|
8353
|
+
|
|
8354
|
+
<li class="md-nav__item">
|
|
8355
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8356
|
+
<span class="md-ellipsis">
|
|
8357
|
+
Housekeeping
|
|
8358
|
+
</span>
|
|
8359
|
+
</a>
|
|
8360
|
+
|
|
8361
|
+
</li>
|
|
8362
|
+
|
|
8363
|
+
</ul>
|
|
8364
|
+
</nav>
|
|
8365
|
+
|
|
8315
8366
|
</li>
|
|
8316
8367
|
|
|
8317
8368
|
<li class="md-nav__item">
|
|
@@ -8325,7 +8376,7 @@
|
|
|
8325
8376
|
<ul class="md-nav__list">
|
|
8326
8377
|
|
|
8327
8378
|
<li class="md-nav__item">
|
|
8328
|
-
<a href="#
|
|
8379
|
+
<a href="#added_2" class="md-nav__link">
|
|
8329
8380
|
<span class="md-ellipsis">
|
|
8330
8381
|
Added
|
|
8331
8382
|
</span>
|
|
@@ -8343,7 +8394,7 @@
|
|
|
8343
8394
|
</li>
|
|
8344
8395
|
|
|
8345
8396
|
<li class="md-nav__item">
|
|
8346
|
-
<a href="#
|
|
8397
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8347
8398
|
<span class="md-ellipsis">
|
|
8348
8399
|
Fixed
|
|
8349
8400
|
</span>
|
|
@@ -8352,7 +8403,7 @@
|
|
|
8352
8403
|
</li>
|
|
8353
8404
|
|
|
8354
8405
|
<li class="md-nav__item">
|
|
8355
|
-
<a href="#
|
|
8406
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8356
8407
|
<span class="md-ellipsis">
|
|
8357
8408
|
Housekeeping
|
|
8358
8409
|
</span>
|
|
@@ -8376,7 +8427,7 @@
|
|
|
8376
8427
|
<ul class="md-nav__list">
|
|
8377
8428
|
|
|
8378
8429
|
<li class="md-nav__item">
|
|
8379
|
-
<a href="#
|
|
8430
|
+
<a href="#security_1" class="md-nav__link">
|
|
8380
8431
|
<span class="md-ellipsis">
|
|
8381
8432
|
Security
|
|
8382
8433
|
</span>
|
|
@@ -8385,7 +8436,7 @@
|
|
|
8385
8436
|
</li>
|
|
8386
8437
|
|
|
8387
8438
|
<li class="md-nav__item">
|
|
8388
|
-
<a href="#
|
|
8439
|
+
<a href="#added_3" class="md-nav__link">
|
|
8389
8440
|
<span class="md-ellipsis">
|
|
8390
8441
|
Added
|
|
8391
8442
|
</span>
|
|
@@ -8412,7 +8463,7 @@
|
|
|
8412
8463
|
</li>
|
|
8413
8464
|
|
|
8414
8465
|
<li class="md-nav__item">
|
|
8415
|
-
<a href="#
|
|
8466
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8416
8467
|
<span class="md-ellipsis">
|
|
8417
8468
|
Fixed
|
|
8418
8469
|
</span>
|
|
@@ -8430,7 +8481,7 @@
|
|
|
8430
8481
|
</li>
|
|
8431
8482
|
|
|
8432
8483
|
<li class="md-nav__item">
|
|
8433
|
-
<a href="#
|
|
8484
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8434
8485
|
<span class="md-ellipsis">
|
|
8435
8486
|
Housekeeping
|
|
8436
8487
|
</span>
|
|
@@ -8454,7 +8505,7 @@
|
|
|
8454
8505
|
<ul class="md-nav__list">
|
|
8455
8506
|
|
|
8456
8507
|
<li class="md-nav__item">
|
|
8457
|
-
<a href="#
|
|
8508
|
+
<a href="#security_2" class="md-nav__link">
|
|
8458
8509
|
<span class="md-ellipsis">
|
|
8459
8510
|
Security
|
|
8460
8511
|
</span>
|
|
@@ -8463,7 +8514,7 @@
|
|
|
8463
8514
|
</li>
|
|
8464
8515
|
|
|
8465
8516
|
<li class="md-nav__item">
|
|
8466
|
-
<a href="#
|
|
8517
|
+
<a href="#added_4" class="md-nav__link">
|
|
8467
8518
|
<span class="md-ellipsis">
|
|
8468
8519
|
Added
|
|
8469
8520
|
</span>
|
|
@@ -8499,7 +8550,7 @@
|
|
|
8499
8550
|
</li>
|
|
8500
8551
|
|
|
8501
8552
|
<li class="md-nav__item">
|
|
8502
|
-
<a href="#
|
|
8553
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8503
8554
|
<span class="md-ellipsis">
|
|
8504
8555
|
Fixed
|
|
8505
8556
|
</span>
|
|
@@ -8526,7 +8577,7 @@
|
|
|
8526
8577
|
</li>
|
|
8527
8578
|
|
|
8528
8579
|
<li class="md-nav__item">
|
|
8529
|
-
<a href="#
|
|
8580
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8530
8581
|
<span class="md-ellipsis">
|
|
8531
8582
|
Housekeeping
|
|
8532
8583
|
</span>
|
|
@@ -9328,6 +9379,57 @@
|
|
|
9328
9379
|
</ul>
|
|
9329
9380
|
</nav>
|
|
9330
9381
|
|
|
9382
|
+
</li>
|
|
9383
|
+
|
|
9384
|
+
<li class="md-nav__item">
|
|
9385
|
+
<a href="#v232-2024-09-03" class="md-nav__link">
|
|
9386
|
+
<span class="md-ellipsis">
|
|
9387
|
+
v2.3.2 (2024-09-03)
|
|
9388
|
+
</span>
|
|
9389
|
+
</a>
|
|
9390
|
+
|
|
9391
|
+
<nav class="md-nav" aria-label="v2.3.2 (2024-09-03)">
|
|
9392
|
+
<ul class="md-nav__list">
|
|
9393
|
+
|
|
9394
|
+
<li class="md-nav__item">
|
|
9395
|
+
<a href="#security" class="md-nav__link">
|
|
9396
|
+
<span class="md-ellipsis">
|
|
9397
|
+
Security
|
|
9398
|
+
</span>
|
|
9399
|
+
</a>
|
|
9400
|
+
|
|
9401
|
+
</li>
|
|
9402
|
+
|
|
9403
|
+
<li class="md-nav__item">
|
|
9404
|
+
<a href="#added_1" class="md-nav__link">
|
|
9405
|
+
<span class="md-ellipsis">
|
|
9406
|
+
Added
|
|
9407
|
+
</span>
|
|
9408
|
+
</a>
|
|
9409
|
+
|
|
9410
|
+
</li>
|
|
9411
|
+
|
|
9412
|
+
<li class="md-nav__item">
|
|
9413
|
+
<a href="#fixed" class="md-nav__link">
|
|
9414
|
+
<span class="md-ellipsis">
|
|
9415
|
+
Fixed
|
|
9416
|
+
</span>
|
|
9417
|
+
</a>
|
|
9418
|
+
|
|
9419
|
+
</li>
|
|
9420
|
+
|
|
9421
|
+
<li class="md-nav__item">
|
|
9422
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
9423
|
+
<span class="md-ellipsis">
|
|
9424
|
+
Housekeeping
|
|
9425
|
+
</span>
|
|
9426
|
+
</a>
|
|
9427
|
+
|
|
9428
|
+
</li>
|
|
9429
|
+
|
|
9430
|
+
</ul>
|
|
9431
|
+
</nav>
|
|
9432
|
+
|
|
9331
9433
|
</li>
|
|
9332
9434
|
|
|
9333
9435
|
<li class="md-nav__item">
|
|
@@ -9341,7 +9443,7 @@
|
|
|
9341
9443
|
<ul class="md-nav__list">
|
|
9342
9444
|
|
|
9343
9445
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9446
|
+
<a href="#added_2" class="md-nav__link">
|
|
9345
9447
|
<span class="md-ellipsis">
|
|
9346
9448
|
Added
|
|
9347
9449
|
</span>
|
|
@@ -9359,7 +9461,7 @@
|
|
|
9359
9461
|
</li>
|
|
9360
9462
|
|
|
9361
9463
|
<li class="md-nav__item">
|
|
9362
|
-
<a href="#
|
|
9464
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9363
9465
|
<span class="md-ellipsis">
|
|
9364
9466
|
Fixed
|
|
9365
9467
|
</span>
|
|
@@ -9368,7 +9470,7 @@
|
|
|
9368
9470
|
</li>
|
|
9369
9471
|
|
|
9370
9472
|
<li class="md-nav__item">
|
|
9371
|
-
<a href="#
|
|
9473
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9372
9474
|
<span class="md-ellipsis">
|
|
9373
9475
|
Housekeeping
|
|
9374
9476
|
</span>
|
|
@@ -9392,7 +9494,7 @@
|
|
|
9392
9494
|
<ul class="md-nav__list">
|
|
9393
9495
|
|
|
9394
9496
|
<li class="md-nav__item">
|
|
9395
|
-
<a href="#
|
|
9497
|
+
<a href="#security_1" class="md-nav__link">
|
|
9396
9498
|
<span class="md-ellipsis">
|
|
9397
9499
|
Security
|
|
9398
9500
|
</span>
|
|
@@ -9401,7 +9503,7 @@
|
|
|
9401
9503
|
</li>
|
|
9402
9504
|
|
|
9403
9505
|
<li class="md-nav__item">
|
|
9404
|
-
<a href="#
|
|
9506
|
+
<a href="#added_3" class="md-nav__link">
|
|
9405
9507
|
<span class="md-ellipsis">
|
|
9406
9508
|
Added
|
|
9407
9509
|
</span>
|
|
@@ -9428,7 +9530,7 @@
|
|
|
9428
9530
|
</li>
|
|
9429
9531
|
|
|
9430
9532
|
<li class="md-nav__item">
|
|
9431
|
-
<a href="#
|
|
9533
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9432
9534
|
<span class="md-ellipsis">
|
|
9433
9535
|
Fixed
|
|
9434
9536
|
</span>
|
|
@@ -9446,7 +9548,7 @@
|
|
|
9446
9548
|
</li>
|
|
9447
9549
|
|
|
9448
9550
|
<li class="md-nav__item">
|
|
9449
|
-
<a href="#
|
|
9551
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9450
9552
|
<span class="md-ellipsis">
|
|
9451
9553
|
Housekeeping
|
|
9452
9554
|
</span>
|
|
@@ -9470,7 +9572,7 @@
|
|
|
9470
9572
|
<ul class="md-nav__list">
|
|
9471
9573
|
|
|
9472
9574
|
<li class="md-nav__item">
|
|
9473
|
-
<a href="#
|
|
9575
|
+
<a href="#security_2" class="md-nav__link">
|
|
9474
9576
|
<span class="md-ellipsis">
|
|
9475
9577
|
Security
|
|
9476
9578
|
</span>
|
|
@@ -9479,7 +9581,7 @@
|
|
|
9479
9581
|
</li>
|
|
9480
9582
|
|
|
9481
9583
|
<li class="md-nav__item">
|
|
9482
|
-
<a href="#
|
|
9584
|
+
<a href="#added_4" class="md-nav__link">
|
|
9483
9585
|
<span class="md-ellipsis">
|
|
9484
9586
|
Added
|
|
9485
9587
|
</span>
|
|
@@ -9515,7 +9617,7 @@
|
|
|
9515
9617
|
</li>
|
|
9516
9618
|
|
|
9517
9619
|
<li class="md-nav__item">
|
|
9518
|
-
<a href="#
|
|
9620
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9519
9621
|
<span class="md-ellipsis">
|
|
9520
9622
|
Fixed
|
|
9521
9623
|
</span>
|
|
@@ -9542,7 +9644,7 @@
|
|
|
9542
9644
|
</li>
|
|
9543
9645
|
|
|
9544
9646
|
<li class="md-nav__item">
|
|
9545
|
-
<a href="#
|
|
9647
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9546
9648
|
<span class="md-ellipsis">
|
|
9547
9649
|
Housekeeping
|
|
9548
9650
|
</span>
|
|
@@ -9659,9 +9761,37 @@
|
|
|
9659
9761
|
<h4 id="updated-to-django-42-3581">Updated to Django 4.2 (<a href="https://github.com/nautobot/nautobot/issues/3581">#3581</a>)<a class="headerlink" href="#updated-to-django-42-3581" title="Permanent link">¶</a></h4>
|
|
9660
9762
|
<p>As Django 3.2 has reached end-of-life, Nautobot 2.3 requires Django 4.2, the next long-term-support (LTS) version of Django. There are a number of changes in Django itself as a result of this upgrade; Nautobot App maintainers are urged to review the Django release-notes (<a href="https://docs.djangoproject.com/en/4.2/releases/4.0/">4.0</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.1/">4.1</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.2/">4.2</a>), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.</p>
|
|
9661
9763
|
<!-- towncrier release notes start -->
|
|
9662
|
-
<h2 id="
|
|
9764
|
+
<h2 id="v232-2024-09-03">v2.3.2 (2024-09-03)<a class="headerlink" href="#v232-2024-09-03" title="Permanent link">¶</a></h2>
|
|
9765
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
9766
|
+
<ul>
|
|
9767
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
9768
|
+
</ul>
|
|
9663
9769
|
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
9664
9770
|
<ul>
|
|
9771
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
9772
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
9773
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
9774
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
9775
|
+
</ul>
|
|
9776
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
9777
|
+
<ul>
|
|
9778
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Corrected several bugs around handling of <code>ScheduledJob</code> execution when <code>settings.TIME_ZONE</code> is other than "UTC".</li>
|
|
9779
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added missing <code>Meta.ordering</code> definition to <code>ScheduledJob</code> model.</li>
|
|
9780
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6123">#6123</a> - Fixed cable status coloring for <code>DeviceModule*Table</code> rows in dark mode.</li>
|
|
9781
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6131">#6131</a> - Fixed a regression in which IP addresses and prefixes created through the <code>/api/ipam/prefixes/<uuid>/available-ips/</code> and <code>/api/ipam/prefixes/<uuid>/available-prefixes/</code> REST API endpoints could not be assigned custom field data during their creation.</li>
|
|
9782
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6146">#6146</a> - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.</li>
|
|
9783
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6175">#6175</a> - Prevented some <code>AttributeError</code> exceptions from being raised when an App contains a model that doesn't inherit from <code>BaseModel</code>.</li>
|
|
9784
|
+
</ul>
|
|
9785
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
9786
|
+
<ul>
|
|
9787
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
9788
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time-machine</code> as a development environment (test execution) dependency.</li>
|
|
9789
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Fixed some points of non-determinism in the data generated by <code>nautobot-server generate_test_data</code>.</li>
|
|
9790
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Added <code>development/cleanup_factory_dump.py</code> helper script to aid in identifying other issues with test data.</li>
|
|
9791
|
+
</ul>
|
|
9792
|
+
<h2 id="v231-2024-08-19">v2.3.1 (2024-08-19)<a class="headerlink" href="#v231-2024-08-19" title="Permanent link">¶</a></h2>
|
|
9793
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
9794
|
+
<ul>
|
|
9665
9795
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
9666
9796
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Added validation logic to <code>DeviceForm</code> <code>clean()</code> method to raise a validation error if there is any invalid software image file specified.</li>
|
|
9667
9797
|
<li><a href="https://github.com/nautobot/nautobot/issues/5915">#5915</a> - Enhanced <code>IPAddress.objects.get_or_create</code> method to permit specifying a namespace as an alternative to a parent prefix.</li>
|
|
@@ -9670,23 +9800,23 @@
|
|
|
9670
9800
|
<ul>
|
|
9671
9801
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
9672
9802
|
</ul>
|
|
9673
|
-
<h3 id="
|
|
9803
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
9674
9804
|
<ul>
|
|
9675
9805
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Fixed <code>Device</code> model <code>clean()</code> validation logic to allow user to specify a software version on a device without specifying any software image files.</li>
|
|
9676
9806
|
<li><a href="https://github.com/nautobot/nautobot/issues/6096">#6096</a> - Updated CloudAccount UI: Set the <code>secrets_group</code> form field to be optional.</li>
|
|
9677
9807
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
9678
9808
|
<li><a href="https://github.com/nautobot/nautobot/issues/6116">#6116</a> - Added handling for an <code>OperationalError</code> that might be raised when running <code>pylint-nautobot</code> or similar linters that depend on successfully running <code>nautobot.setup()</code>.</li>
|
|
9679
9809
|
</ul>
|
|
9680
|
-
<h3 id="
|
|
9810
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
9681
9811
|
<ul>
|
|
9682
9812
|
<li><a href="https://github.com/nautobot/nautobot/issues/6107">#6107</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.10.8</code>.</li>
|
|
9683
9813
|
</ul>
|
|
9684
9814
|
<h2 id="v230-2024-08-08">v2.3.0 (2024-08-08)<a class="headerlink" href="#v230-2024-08-08" title="Permanent link">¶</a></h2>
|
|
9685
|
-
<h3 id="
|
|
9815
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
9686
9816
|
<ul>
|
|
9687
9817
|
<li><a href="https://github.com/nautobot/nautobot/issues/6073">#6073</a> - Updated <code>Django</code> to <code>~4.2.15</code> due to <code>CVE-2024-41989</code>, <code>CVE-2024-41990</code>, <code>CVE-2024-41991</code>, and <code>CVE-2024-42005</code>.</li>
|
|
9688
9818
|
</ul>
|
|
9689
|
-
<h3 id="
|
|
9819
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
9690
9820
|
<ul>
|
|
9691
9821
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
9692
9822
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -9710,7 +9840,7 @@
|
|
|
9710
9840
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
9711
9841
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
9712
9842
|
</ul>
|
|
9713
|
-
<h3 id="
|
|
9843
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
9714
9844
|
<ul>
|
|
9715
9845
|
<li><a href="https://github.com/nautobot/nautobot/issues/5967">#5967</a> - Fixed a regression in the display of custom fields in object-edit forms.</li>
|
|
9716
9846
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -9734,7 +9864,7 @@
|
|
|
9734
9864
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
9735
9865
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
9736
9866
|
</ul>
|
|
9737
|
-
<h3 id="
|
|
9867
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
9738
9868
|
<ul>
|
|
9739
9869
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated development dependency <code>ruff</code> to <code>~0.5.6</code>.</li>
|
|
9740
9870
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated documentation dependencies: <code>mkdocs-material</code> to <code>~9.5.31</code>, <code>mkdocstrings</code> to <code>~0.25.2</code>, and <code>mkdocstrings-python</code> to <code>~1.10.7</code>.</li>
|
|
@@ -9745,11 +9875,11 @@
|
|
|
9745
9875
|
<li><a href="https://github.com/nautobot/nautobot/issues/6071">#6071</a> - Fixed incorrect generic-test logic in <code>FilterTestCase.test_q_filter_valid</code> for <code>q</code> filters containing <code>iexact</code> lookups.</li>
|
|
9746
9876
|
</ul>
|
|
9747
9877
|
<h2 id="v230-beta1-2024-07-25">v2.3.0-beta.1 (2024-07-25)<a class="headerlink" href="#v230-beta1-2024-07-25" title="Permanent link">¶</a></h2>
|
|
9748
|
-
<h3 id="
|
|
9878
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
9749
9879
|
<ul>
|
|
9750
9880
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>Django</code> to <code>~4.2.14</code> due to <code>CVE-2024-38875</code>, <code>CVE-2024-39329</code>, <code>CVE-2024-39330</code>, and <code>CVE-2024-39614</code>.</li>
|
|
9751
9881
|
</ul>
|
|
9752
|
-
<h3 id="
|
|
9882
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
9753
9883
|
<ul>
|
|
9754
9884
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
9755
9885
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.</li>
|
|
@@ -9840,7 +9970,7 @@
|
|
|
9840
9970
|
<li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Removed <code>DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> setting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation.</li>
|
|
9841
9971
|
<li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Removed the <code>StaticGroup</code> model added in #5472, replacing it with a subtype of the <code>DynamicGroup</code> model.</li>
|
|
9842
9972
|
</ul>
|
|
9843
|
-
<h3 id="
|
|
9973
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
9844
9974
|
<ul>
|
|
9845
9975
|
<li><a href="https://github.com/nautobot/nautobot/issues/2352">#2352</a> - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.</li>
|
|
9846
9976
|
<li><a href="https://github.com/nautobot/nautobot/issues/5123">#5123</a> - Fixed an unhandled <code>ValueError</code> when filtering on <code>vlans</code> by their UUID rather than their VLAN ID.</li>
|
|
@@ -9896,7 +10026,7 @@
|
|
|
9896
10026
|
<li><a href="https://github.com/nautobot/nautobot/issues/5895">#5895</a> - Added missing model documentation for <code>CloudNetwork</code>, <code>CloudNetworkPrefixAssignment</code>, <code>CloudService</code> and <del><code>CloudType</code></del> <code>CloudResourceType</code>.</li>
|
|
9897
10027
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
9898
10028
|
</ul>
|
|
9899
|
-
<h3 id="
|
|
10029
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
9900
10030
|
<ul>
|
|
9901
10031
|
<li><a href="https://github.com/nautobot/nautobot/issues/5160">#5160</a> - Replaced references to <code>pytz</code> with <code>zoneinfo</code> in keeping with Django 4.</li>
|
|
9902
10032
|
<li><a href="https://github.com/nautobot/nautobot/issues/5212">#5212</a> - Enhanced <code>nautobot.core.testing.filters.FilterTestCases.BaseFilterTestCase.test_filters_generic()</code> test case to test for the presence and proper functioning of the <code>contacts</code> and <code>teams</code> filters on any appropriate model FilterSet.</li>
|