nautobot 2.4.17__py3-none-any.whl → 2.4.18__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/apps/views.py +2 -0
- nautobot/circuits/templates/circuits/circuittermination_retrieve.html +1 -8
- nautobot/circuits/templates/circuits/inc/circuit_termination_speed_fragment.html +9 -0
- nautobot/circuits/tests/integration/test_circuit.py +2 -2
- nautobot/circuits/views.py +32 -15
- nautobot/core/filters.py +2 -2
- nautobot/core/settings.py +1 -0
- nautobot/core/settings.yaml +9 -0
- nautobot/core/tables.py +21 -23
- nautobot/core/templates/components/breadcrumbs.html +19 -0
- nautobot/core/templates/generic/object_changelog.html +0 -2
- nautobot/core/templates/generic/object_list.html +15 -12
- nautobot/core/templates/generic/object_notes.html +0 -2
- nautobot/core/templates/generic/object_retrieve.html +16 -9
- nautobot/core/templatetags/helpers.py +24 -0
- nautobot/core/templatetags/ui_framework.py +40 -5
- nautobot/core/testing/filters.py +37 -21
- nautobot/core/testing/views.py +25 -0
- nautobot/core/tests/test_tables.py +43 -6
- nautobot/core/tests/test_templatetags_ui_framework.py +146 -0
- nautobot/core/tests/test_titles.py +2 -2
- nautobot/core/tests/test_ui.py +14 -1
- nautobot/core/tests/test_views.py +45 -0
- nautobot/core/ui/breadcrumbs.py +13 -8
- nautobot/core/ui/object_detail.py +43 -5
- nautobot/core/ui/titles.py +9 -5
- nautobot/core/views/__init__.py +24 -3
- nautobot/core/views/generic.py +42 -17
- nautobot/core/views/mixins.py +146 -12
- nautobot/core/views/utils.py +117 -0
- nautobot/dcim/models/devices.py +4 -0
- nautobot/dcim/tables/__init__.py +2 -0
- nautobot/dcim/tables/devices.py +24 -0
- nautobot/dcim/tables/power.py +2 -2
- nautobot/dcim/templates/dcim/device/base.html +1 -11
- nautobot/dcim/templates/dcim/device_component.html +0 -19
- nautobot/dcim/templates/dcim/modulebay_retrieve.html +0 -16
- nautobot/dcim/templates/dcim/virtualchassis_retrieve.html +1 -50
- nautobot/dcim/tests/test_views.py +41 -0
- nautobot/dcim/views.py +160 -39
- nautobot/extras/filters/mixins.py +1 -1
- nautobot/extras/forms/forms.py +15 -0
- nautobot/extras/models/groups.py +10 -1
- nautobot/extras/models/jobs.py +2 -2
- nautobot/extras/plugins/views.py +18 -5
- nautobot/extras/tables.py +4 -2
- nautobot/extras/templates/extras/customfield_retrieve.html +1 -128
- nautobot/extras/templates/extras/dynamicgroup.html +2 -99
- nautobot/extras/templates/extras/dynamicgroup_edit.html +2 -199
- nautobot/extras/templates/extras/dynamicgroup_retrieve.html +99 -0
- nautobot/extras/templates/extras/dynamicgroup_update.html +199 -0
- nautobot/extras/templates/extras/gitrepository.html +2 -82
- nautobot/extras/templates/extras/gitrepository_object_edit.html +2 -13
- nautobot/extras/templates/extras/gitrepository_retrieve.html +82 -0
- nautobot/extras/templates/extras/gitrepository_update.html +13 -0
- nautobot/extras/templates/extras/note_retrieve.html +0 -52
- nautobot/extras/templates/extras/plugin_detail.html +3 -7
- nautobot/extras/templates/extras/plugins_list.html +0 -2
- nautobot/extras/tests/test_dynamicgroups.py +73 -18
- nautobot/extras/tests/test_views.py +5 -0
- nautobot/extras/urls.py +2 -94
- nautobot/extras/views.py +424 -430
- nautobot/ipam/querysets.py +3 -3
- nautobot/ipam/signals.py +6 -1
- nautobot/ipam/templates/ipam/prefix.html +0 -8
- nautobot/ipam/tests/test_api.py +5 -0
- nautobot/ipam/tests/test_models.py +387 -0
- nautobot/ipam/tests/test_querysets.py +46 -0
- nautobot/ipam/utils/migrations.py +1 -1
- nautobot/ipam/views.py +17 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +72 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +45 -9
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +393 -15
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +1 -1
- nautobot/project-static/docs/development/core/getting-started.html +0 -15
- nautobot/project-static/docs/development/core/ui-component-framework.html +6 -11
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/version-2.4.html +222 -0
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +300 -300
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +27 -0
- nautobot/project-static/img/nautobot_icon.svg +32 -34
- nautobot/project-static/js/table_sorting_indicator.js +0 -2
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/METADATA +4 -4
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/RECORD +90 -85
- nautobot/core/templates/inc/breadcrumbs.html +0 -14
- nautobot/project-static/docs/requirements.txt +0 -14
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/NOTICE +0 -0
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/WHEEL +0 -0
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/entry_points.txt +0 -0
|
@@ -11664,8 +11664,8 @@
|
|
|
11664
11664
|
- <code>InstanceBreadcrumbItem</code> - Creates detail breadcrumbs for specific object instances, generating URLs to the object's detail page.
|
|
11665
11665
|
- <code>BaseBreadcrumbItem</code> - Can be used to create custom breadcrumb items or to show just empty "label" within the breadcrumbs path.</p>
|
|
11666
11666
|
<p>By default, breadcrumbs class will add to the breadcrumbs path following items:
|
|
11667
|
-
- link to the <code>list_url</code> at the beginning
|
|
11668
|
-
- link to view the <code>object</code> details at the end</p>
|
|
11667
|
+
- link to the <code>list_url</code> at the beginning; label taken from model associated to this path or <code>title</code> (if in the context)
|
|
11668
|
+
- link to view the <code>object</code> details at the end - built-in behavior</p>
|
|
11669
11669
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-4-1" name="__codelineno-4-1" href="#__codelineno-4-1"></a><span class="kn">from</span><span class="w"> </span><span class="nn">nautobot.apps.ui</span><span class="w"> </span><span class="kn">import</span> <span class="n">Breadcrumbs</span><span class="p">,</span> <span class="n">ViewNameBreadcrumbItem</span><span class="p">,</span> <span class="n">ModelBreadcrumbItem</span><span class="p">,</span> <span class="n">InstanceBreadcrumbItem</span>
|
|
11670
11670
|
<a id="__codelineno-4-2" name="__codelineno-4-2" href="#__codelineno-4-2"></a>
|
|
11671
11671
|
<a id="__codelineno-4-3" name="__codelineno-4-3" href="#__codelineno-4-3"></a><span class="c1"># Use default breadcrumbs</span>
|
|
@@ -11685,10 +11685,6 @@
|
|
|
11685
11685
|
<a id="__codelineno-5-3" name="__codelineno-5-3" href="#__codelineno-5-3"></a> <span class="p"><</span><span class="nt">li</span><span class="p">><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"/dcim/devices/<uuid>"</span><span class="p">></span>Device name<span class="p"></</span><span class="nt">a</span><span class="p">></</span><span class="nt">li</span><span class="p">></span>
|
|
11686
11686
|
<a id="__codelineno-5-4" name="__codelineno-5-4" href="#__codelineno-5-4"></a><span class="p"></</span><span class="nt">ol</span><span class="p">></span>
|
|
11687
11687
|
</code></pre></div>
|
|
11688
|
-
<div class="admonition important">
|
|
11689
|
-
<p class="admonition-title">Important</p>
|
|
11690
|
-
<p>By adding custom items you're actually extending the default paths.</p>
|
|
11691
|
-
</div>
|
|
11692
11688
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-6-1" name="__codelineno-6-1" href="#__codelineno-6-1"></a><span class="kn">from</span><span class="w"> </span><span class="nn">nautobot.apps.ui</span><span class="w"> </span><span class="kn">import</span> <span class="n">Breadcrumbs</span><span class="p">,</span> <span class="n">ViewNameBreadcrumbItem</span><span class="p">,</span> <span class="n">ModelBreadcrumbItem</span><span class="p">,</span> <span class="n">InstanceBreadcrumbItem</span>
|
|
11693
11689
|
<a id="__codelineno-6-2" name="__codelineno-6-2" href="#__codelineno-6-2"></a>
|
|
11694
11690
|
<a id="__codelineno-6-3" name="__codelineno-6-3" href="#__codelineno-6-3"></a><span class="c1"># Use default breadcrumbs</span>
|
|
@@ -11708,11 +11704,10 @@
|
|
|
11708
11704
|
</code></pre></div>
|
|
11709
11705
|
<p>It will generate:</p>
|
|
11710
11706
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-7-1" name="__codelineno-7-1" href="#__codelineno-7-1"></a><span class="p"><</span><span class="nt">ol</span> <span class="na">class</span><span class="o">=</span><span class="s">"breadcrumb"</span><span class="p">></span>
|
|
11711
|
-
<a id="__codelineno-7-2" name="__codelineno-7-2" href="#__codelineno-7-2"></a> <span class="p"><</span><span class="nt">li</span><span class="p">><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"
|
|
11712
|
-
<a id="__codelineno-7-3" name="__codelineno-7-3" href="#__codelineno-7-3"></a> <span class="p"><</span><span class="nt">li</span><span class="p">><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"
|
|
11713
|
-
<a id="__codelineno-7-4" name="__codelineno-7-4" href="#__codelineno-7-4"></a> <span class="p"><</span><span class="nt">li</span><span class="p">><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"/dcim/
|
|
11714
|
-
<a id="__codelineno-7-5" name="__codelineno-7-5" href="#__codelineno-7-5"></a
|
|
11715
|
-
<a id="__codelineno-7-6" name="__codelineno-7-6" href="#__codelineno-7-6"></a><span class="p"></</span><span class="nt">ol</span><span class="p">></span>
|
|
11707
|
+
<a id="__codelineno-7-2" name="__codelineno-7-2" href="#__codelineno-7-2"></a> <span class="p"><</span><span class="nt">li</span><span class="p">><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"/"</span><span class="p">></span>Home<span class="p"></</span><span class="nt">a</span><span class="p">></</span><span class="nt">li</span><span class="p">></span>
|
|
11708
|
+
<a id="__codelineno-7-3" name="__codelineno-7-3" href="#__codelineno-7-3"></a> <span class="p"><</span><span class="nt">li</span><span class="p">><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"/dcim/locations"</span><span class="p">></span>Locations<span class="p"></</span><span class="nt">a</span><span class="p">></</span><span class="nt">li</span><span class="p">></span>
|
|
11709
|
+
<a id="__codelineno-7-4" name="__codelineno-7-4" href="#__codelineno-7-4"></a> <span class="p"><</span><span class="nt">li</span><span class="p">><</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">"/dcim/devices/<uuid>"</span><span class="p">></span>Device name<span class="p"></</span><span class="nt">a</span><span class="p">></</span><span class="nt">li</span><span class="p">></span>
|
|
11710
|
+
<a id="__codelineno-7-5" name="__codelineno-7-5" href="#__codelineno-7-5"></a><span class="p"></</span><span class="nt">ol</span><span class="p">></span>
|
|
11716
11711
|
</code></pre></div>
|
|
11717
11712
|
<h2 id="panel-types">Panel Types<a class="headerlink" href="#panel-types" title="Permanent link">¶</a></h2>
|
|
11718
11713
|
<h3 id="base-panel">Base Panel<a class="headerlink" href="#base-panel" title="Permanent link">¶</a></h3>
|
|
Binary file
|
|
@@ -9693,6 +9693,84 @@
|
|
|
9693
9693
|
</ul>
|
|
9694
9694
|
</nav>
|
|
9695
9695
|
|
|
9696
|
+
</li>
|
|
9697
|
+
|
|
9698
|
+
<li class="md-nav__item">
|
|
9699
|
+
<a href="#v2418-2025-09-15" class="md-nav__link">
|
|
9700
|
+
<span class="md-ellipsis">
|
|
9701
|
+
v2.4.18 (2025-09-15)
|
|
9702
|
+
</span>
|
|
9703
|
+
</a>
|
|
9704
|
+
|
|
9705
|
+
<nav class="md-nav" aria-label="v2.4.18 (2025-09-15)">
|
|
9706
|
+
<ul class="md-nav__list">
|
|
9707
|
+
|
|
9708
|
+
<li class="md-nav__item">
|
|
9709
|
+
<a href="#security-in-v2418" class="md-nav__link">
|
|
9710
|
+
<span class="md-ellipsis">
|
|
9711
|
+
Security in v2.4.18
|
|
9712
|
+
</span>
|
|
9713
|
+
</a>
|
|
9714
|
+
|
|
9715
|
+
</li>
|
|
9716
|
+
|
|
9717
|
+
<li class="md-nav__item">
|
|
9718
|
+
<a href="#added-in-v2418" class="md-nav__link">
|
|
9719
|
+
<span class="md-ellipsis">
|
|
9720
|
+
Added in v2.4.18
|
|
9721
|
+
</span>
|
|
9722
|
+
</a>
|
|
9723
|
+
|
|
9724
|
+
</li>
|
|
9725
|
+
|
|
9726
|
+
<li class="md-nav__item">
|
|
9727
|
+
<a href="#changed-in-v2418" class="md-nav__link">
|
|
9728
|
+
<span class="md-ellipsis">
|
|
9729
|
+
Changed in v2.4.18
|
|
9730
|
+
</span>
|
|
9731
|
+
</a>
|
|
9732
|
+
|
|
9733
|
+
</li>
|
|
9734
|
+
|
|
9735
|
+
<li class="md-nav__item">
|
|
9736
|
+
<a href="#fixed-in-v2418" class="md-nav__link">
|
|
9737
|
+
<span class="md-ellipsis">
|
|
9738
|
+
Fixed in v2.4.18
|
|
9739
|
+
</span>
|
|
9740
|
+
</a>
|
|
9741
|
+
|
|
9742
|
+
</li>
|
|
9743
|
+
|
|
9744
|
+
<li class="md-nav__item">
|
|
9745
|
+
<a href="#dependencies-in-v2418" class="md-nav__link">
|
|
9746
|
+
<span class="md-ellipsis">
|
|
9747
|
+
Dependencies in v2.4.18
|
|
9748
|
+
</span>
|
|
9749
|
+
</a>
|
|
9750
|
+
|
|
9751
|
+
</li>
|
|
9752
|
+
|
|
9753
|
+
<li class="md-nav__item">
|
|
9754
|
+
<a href="#documentation-in-v2418" class="md-nav__link">
|
|
9755
|
+
<span class="md-ellipsis">
|
|
9756
|
+
Documentation in v2.4.18
|
|
9757
|
+
</span>
|
|
9758
|
+
</a>
|
|
9759
|
+
|
|
9760
|
+
</li>
|
|
9761
|
+
|
|
9762
|
+
<li class="md-nav__item">
|
|
9763
|
+
<a href="#housekeeping-in-v2418" class="md-nav__link">
|
|
9764
|
+
<span class="md-ellipsis">
|
|
9765
|
+
Housekeeping in v2.4.18
|
|
9766
|
+
</span>
|
|
9767
|
+
</a>
|
|
9768
|
+
|
|
9769
|
+
</li>
|
|
9770
|
+
|
|
9771
|
+
</ul>
|
|
9772
|
+
</nav>
|
|
9773
|
+
|
|
9696
9774
|
</li>
|
|
9697
9775
|
|
|
9698
9776
|
<li class="md-nav__item">
|
|
@@ -11766,6 +11844,84 @@
|
|
|
11766
11844
|
</ul>
|
|
11767
11845
|
</nav>
|
|
11768
11846
|
|
|
11847
|
+
</li>
|
|
11848
|
+
|
|
11849
|
+
<li class="md-nav__item">
|
|
11850
|
+
<a href="#v2418-2025-09-15" class="md-nav__link">
|
|
11851
|
+
<span class="md-ellipsis">
|
|
11852
|
+
v2.4.18 (2025-09-15)
|
|
11853
|
+
</span>
|
|
11854
|
+
</a>
|
|
11855
|
+
|
|
11856
|
+
<nav class="md-nav" aria-label="v2.4.18 (2025-09-15)">
|
|
11857
|
+
<ul class="md-nav__list">
|
|
11858
|
+
|
|
11859
|
+
<li class="md-nav__item">
|
|
11860
|
+
<a href="#security-in-v2418" class="md-nav__link">
|
|
11861
|
+
<span class="md-ellipsis">
|
|
11862
|
+
Security in v2.4.18
|
|
11863
|
+
</span>
|
|
11864
|
+
</a>
|
|
11865
|
+
|
|
11866
|
+
</li>
|
|
11867
|
+
|
|
11868
|
+
<li class="md-nav__item">
|
|
11869
|
+
<a href="#added-in-v2418" class="md-nav__link">
|
|
11870
|
+
<span class="md-ellipsis">
|
|
11871
|
+
Added in v2.4.18
|
|
11872
|
+
</span>
|
|
11873
|
+
</a>
|
|
11874
|
+
|
|
11875
|
+
</li>
|
|
11876
|
+
|
|
11877
|
+
<li class="md-nav__item">
|
|
11878
|
+
<a href="#changed-in-v2418" class="md-nav__link">
|
|
11879
|
+
<span class="md-ellipsis">
|
|
11880
|
+
Changed in v2.4.18
|
|
11881
|
+
</span>
|
|
11882
|
+
</a>
|
|
11883
|
+
|
|
11884
|
+
</li>
|
|
11885
|
+
|
|
11886
|
+
<li class="md-nav__item">
|
|
11887
|
+
<a href="#fixed-in-v2418" class="md-nav__link">
|
|
11888
|
+
<span class="md-ellipsis">
|
|
11889
|
+
Fixed in v2.4.18
|
|
11890
|
+
</span>
|
|
11891
|
+
</a>
|
|
11892
|
+
|
|
11893
|
+
</li>
|
|
11894
|
+
|
|
11895
|
+
<li class="md-nav__item">
|
|
11896
|
+
<a href="#dependencies-in-v2418" class="md-nav__link">
|
|
11897
|
+
<span class="md-ellipsis">
|
|
11898
|
+
Dependencies in v2.4.18
|
|
11899
|
+
</span>
|
|
11900
|
+
</a>
|
|
11901
|
+
|
|
11902
|
+
</li>
|
|
11903
|
+
|
|
11904
|
+
<li class="md-nav__item">
|
|
11905
|
+
<a href="#documentation-in-v2418" class="md-nav__link">
|
|
11906
|
+
<span class="md-ellipsis">
|
|
11907
|
+
Documentation in v2.4.18
|
|
11908
|
+
</span>
|
|
11909
|
+
</a>
|
|
11910
|
+
|
|
11911
|
+
</li>
|
|
11912
|
+
|
|
11913
|
+
<li class="md-nav__item">
|
|
11914
|
+
<a href="#housekeeping-in-v2418" class="md-nav__link">
|
|
11915
|
+
<span class="md-ellipsis">
|
|
11916
|
+
Housekeeping in v2.4.18
|
|
11917
|
+
</span>
|
|
11918
|
+
</a>
|
|
11919
|
+
|
|
11920
|
+
</li>
|
|
11921
|
+
|
|
11922
|
+
</ul>
|
|
11923
|
+
</nav>
|
|
11924
|
+
|
|
11769
11925
|
</li>
|
|
11770
11926
|
|
|
11771
11927
|
<li class="md-nav__item">
|
|
@@ -13089,6 +13245,72 @@
|
|
|
13089
13245
|
|
|
13090
13246
|
<!-- towncrier release notes start -->
|
|
13091
13247
|
|
|
13248
|
+
<h2 id="v2418-2025-09-15">v2.4.18 (2025-09-15)<a class="headerlink" href="#v2418-2025-09-15" title="Permanent link">¶</a></h2>
|
|
13249
|
+
<h3 id="security-in-v2418">Security in v2.4.18<a class="headerlink" href="#security-in-v2418" title="Permanent link">¶</a></h3>
|
|
13250
|
+
<ul>
|
|
13251
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7764">#7764</a> - Updated dependency <code>Django</code> to <code>~4.2.24</code> to mitigate <code>CVE-2025-57833</code>.</li>
|
|
13252
|
+
</ul>
|
|
13253
|
+
<h3 id="added-in-v2418">Added in v2.4.18<a class="headerlink" href="#added-in-v2418" title="Permanent link">¶</a></h3>
|
|
13254
|
+
<ul>
|
|
13255
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7614">#7614</a> - Added Bulk Edit functionality for the DynamicGroup model.</li>
|
|
13256
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7687">#7687</a> - Added usage of <code>{% render_title %}</code> and <code>{% render_breadcrumbs %}</code> in <code>object_list.html</code> and <code>object_retrieve.html</code> templates.</li>
|
|
13257
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7727">#7727</a> - EXPERIMENTAL: Enabled caching of App-generated Prometheus metrics. This is an experimental feature and may be removed or changed in future releases.</li>
|
|
13258
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7758">#7758</a> - Added SavedView capability to JobResults model.</li>
|
|
13259
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7784">#7784</a> - Added support for <code>ObjectFieldsPanel(...fields="__all__", additional_fields=[...])</code> to allow inclusion of properties, reverse relations, nested lookups, and other attributes not normally included in <code>__all__</code>.</li>
|
|
13260
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7784">#7784</a> - Enhanced <code>ObjectFieldsPanel</code> to support nested lookup of object fields, such as <code>fields=["rack__rack_group"]</code>.</li>
|
|
13261
|
+
</ul>
|
|
13262
|
+
<h3 id="changed-in-v2418">Changed in v2.4.18<a class="headerlink" href="#changed-in-v2418" title="Permanent link">¶</a></h3>
|
|
13263
|
+
<ul>
|
|
13264
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7687">#7687</a> - Updated Devices, Prefixes, Plugins, Circuits views to use UI Component Framework Breadcrumbs.</li>
|
|
13265
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7687">#7687</a> - Updated <code>ObjectView</code> to instantiate default <code>Breadcrumbs</code> and <code>Titles</code> and pass it in context.</li>
|
|
13266
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7687">#7687</a> - Updated <code>ObjectListView</code> to instantiate default <code>Breadcrumbs</code> and <code>Titles</code> and pass it in context along with <code>verbose_name_plural</code> and <code>view_action</code>.</li>
|
|
13267
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7784">#7784</a> - Changed <code>ObjectFieldsPanel.__init__</code> behavior to raise an error if <code>exclude_fields</code> is specified in combination with any value of <code>fields</code> other than <code>"__all__"</code>.</li>
|
|
13268
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7795">#7795</a> - Changed CircuitTermination UI <code>Port Speed</code> and <code>Upstream Speed</code> fields back to single field <code>Speed</code> with arrows.</li>
|
|
13269
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7801">#7801</a> - Updated Breadcrumbs docs and <code>UIComponentsMixin</code> order in some classes.</li>
|
|
13270
|
+
</ul>
|
|
13271
|
+
<h3 id="fixed-in-v2418">Fixed in v2.4.18<a class="headerlink" href="#fixed-in-v2418" title="Permanent link">¶</a></h3>
|
|
13272
|
+
<ul>
|
|
13273
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7330">#7330</a> - Fixed a <code>FieldError</code> exception when sorting tree-model (Location, LocationType, RackGroup, etc.) tables by a custom field column.</li>
|
|
13274
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7330">#7330</a> - Fixed removal of list-view filters when reverting the table sorting to default.</li>
|
|
13275
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7631">#7631</a> - Fixed duplicate records returned in some cases by <code>DynamicGroup.update_cached_members()</code>.</li>
|
|
13276
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7723">#7723</a> - Fixed bug in which <code>Device</code> objects could be saved when they didn't have to be.</li>
|
|
13277
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7748">#7748</a> - Updated <code>last_run</code> column in <code>JobTable</code> to avoid referencing settings directly inside TemplateColumn. Since <code>django-tables2</code> does not include context processors when rendering column templates, using <code>settings.SHORT_DATETIME_FORMAT</code> caused lookup errors or pickling issues. Now the required format <code>settings.SHORT_DATETIME_FORMAT</code> is passed explicitly via <code>extra_context</code>, ensuring correct rendering in both views and table contexts.</li>
|
|
13278
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7753">#7753</a> - Fixed a bug in which IPv4 /31 Prefix records might be assigned the wrong <code>parent</code> Prefix.</li>
|
|
13279
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7753">#7753</a> - Fixed a bug in which IPv6 records such as <code>::1/128</code> might be assigned the wrong <code>parent</code> Prefix.</li>
|
|
13280
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7754">#7754</a> - Fixed issue with <code>FilterTestCases.test_tenant_group</code> where the filter query could return the same <code>TenantGroup</code> object multiple times.</li>
|
|
13281
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7765">#7765</a> - Fixed column ordering issue by disabling <code>orderable</code> for <code>PowerFeedTable.occupied_positions</code>, <code>PowerFeedTable.phase_designation</code>, and <code>JobResultTable.duration</code>.</li>
|
|
13282
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7765">#7765</a> - Fixed <code>ObjectMetadataTable.value</code> column ordering issue by adding missing <code>order_by</code> attribute.</li>
|
|
13283
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7774">#7774</a> - Fixed incorrect rendering of Nautobot <code>n</code> icon in some browsers.</li>
|
|
13284
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7783">#7783</a> - Fixed an issue where you could not set the virtual chassis master.</li>
|
|
13285
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7789">#7789</a> - Changed certain filter fields to prevent unnecessary SELECT DISTINCT queries.</li>
|
|
13286
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7803">#7803</a> - Fixed a regression in the handling of <code>ObjectFieldsPanel(ignore_nonexistent_fields=True)</code> introduced by #7784.</li>
|
|
13287
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7808">#7808</a> - Fixed double <code>Notes</code> or <code>Change Log</code> added in title.</li>
|
|
13288
|
+
</ul>
|
|
13289
|
+
<h3 id="dependencies-in-v2418">Dependencies in v2.4.18<a class="headerlink" href="#dependencies-in-v2418" title="Permanent link">¶</a></h3>
|
|
13290
|
+
<ul>
|
|
13291
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7764">#7764</a> - Updated dependency <code>cryptography</code> to <code>~45.0.7</code>.</li>
|
|
13292
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7793">#7793</a> - Updated dependency <code>django-silk</code> to <code>~5.4.3</code>.</li>
|
|
13293
|
+
</ul>
|
|
13294
|
+
<h3 id="documentation-in-v2418">Documentation in v2.4.18<a class="headerlink" href="#documentation-in-v2418" title="Permanent link">¶</a></h3>
|
|
13295
|
+
<ul>
|
|
13296
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7787">#7787</a> - Updated NautobotAppConfig docs to add <code>searchable_models</code> link.</li>
|
|
13297
|
+
</ul>
|
|
13298
|
+
<h3 id="housekeeping-in-v2418">Housekeeping in v2.4.18<a class="headerlink" href="#housekeeping-in-v2418" title="Permanent link">¶</a></h3>
|
|
13299
|
+
<ul>
|
|
13300
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7614">#7614</a> - Refactored DynamicGroup model related UI views to use <code>NautobotUIViewSet</code>.</li>
|
|
13301
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7632">#7632</a> - Refactored GitRepository model related UI views to use <code>NautobotUIViewSet</code>.</li>
|
|
13302
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7669">#7669</a> - Refactored Note model related UI views to use <code>UI component framework</code>.</li>
|
|
13303
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7689">#7689</a> - Refactored CustomField model related UI views to use <code>UI component framework</code>.</li>
|
|
13304
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7700">#7700</a> - Refactored VirtualChassis model related UI views to use <code>UI component framework</code>.</li>
|
|
13305
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7760">#7760</a> - Updated Prefix API test to avoid a potential spurious failure.</li>
|
|
13306
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7764">#7764</a> - Updated development dependency <code>ruff</code> to <code>~0.12.12</code>.</li>
|
|
13307
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7765">#7765</a> - Added a test to ensure model properties are not orderable.</li>
|
|
13308
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7767">#7767</a> - Updated CI workflows and Docker image build to use Poetry 2.1.4.</li>
|
|
13309
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7778">#7778</a> - Fixed unintended carry-over of data changes between subsequent subtests in <code>FilterTestCase.test_q_filter_valid</code>.</li>
|
|
13310
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7786">#7786</a> - Updated ReadTheDocs build to use poetry instead of pip.</li>
|
|
13311
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7804">#7804</a> - Changed development docker-compose environment to not start the <code>selenium</code> container by default.</li>
|
|
13312
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7804">#7804</a> - Changed <code>invoke tests</code> to auto-start the <code>selenium</code> container as needed when running integration tests.</li>
|
|
13313
|
+
</ul>
|
|
13092
13314
|
<h2 id="v2417-2025-09-02">v2.4.17 (2025-09-02)<a class="headerlink" href="#v2417-2025-09-02" title="Permanent link">¶</a></h2>
|
|
13093
13315
|
<h3 id="security-in-v2417">Security in v2.4.17<a class="headerlink" href="#security-in-v2417" title="Permanent link">¶</a></h3>
|
|
13094
13316
|
<ul>
|