nautobot 2.4.3__py3-none-any.whl → 2.4.5__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/__init__.py +19 -3
- nautobot/apps/filters.py +2 -0
- nautobot/circuits/filters.py +1 -1
- nautobot/circuits/tests/test_models.py +5 -3
- nautobot/cloud/filters.py +3 -6
- nautobot/cloud/tests/test_filters.py +21 -0
- nautobot/core/admin.py +2 -0
- nautobot/core/celery/__init__.py +5 -3
- nautobot/core/jobs/__init__.py +5 -3
- nautobot/core/management/commands/generate_performance_test_endpoints.py +9 -6
- nautobot/core/models/utils.py +6 -1
- nautobot/core/templates/inc/javascript.html +1 -0
- nautobot/core/templatetags/ui_framework.py +20 -4
- nautobot/core/testing/__init__.py +2 -0
- nautobot/core/testing/forms.py +1 -1
- nautobot/core/testing/mixins.py +9 -0
- nautobot/core/tests/test_api.py +1 -1
- nautobot/core/tests/test_graphql.py +3 -3
- nautobot/core/tests/test_jobs.py +30 -28
- nautobot/core/ui/object_detail.py +1 -1
- nautobot/dcim/api/serializers.py +36 -0
- nautobot/dcim/api/views.py +1 -1
- nautobot/dcim/elevations.py +17 -4
- nautobot/dcim/factory.py +9 -1
- nautobot/dcim/filters/__init__.py +27 -1
- nautobot/dcim/forms.py +13 -1
- nautobot/dcim/models/devices.py +11 -5
- nautobot/dcim/signals.py +26 -0
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +0 -62
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +6 -0
- nautobot/dcim/tests/test_api.py +176 -0
- nautobot/dcim/tests/test_filters.py +56 -3
- nautobot/dcim/tests/test_jobs.py +4 -6
- nautobot/dcim/tests/test_models.py +40 -0
- nautobot/dcim/views.py +24 -14
- nautobot/extras/api/mixins.py +1 -1
- nautobot/extras/api/views.py +2 -2
- nautobot/extras/choices.py +8 -3
- nautobot/extras/filters/__init__.py +4 -0
- nautobot/extras/jobs.py +181 -103
- nautobot/extras/management/utils.py +13 -2
- nautobot/extras/models/datasources.py +11 -4
- nautobot/extras/models/jobs.py +20 -17
- nautobot/extras/plugins/__init__.py +26 -1
- nautobot/extras/tables.py +25 -29
- nautobot/extras/templates/extras/inc/jobresult.html +12 -13
- nautobot/extras/templates/extras/objectchange.html +28 -12
- nautobot/extras/test_jobs/atomic_transaction.py +6 -6
- nautobot/extras/test_jobs/fail.py +75 -1
- nautobot/extras/tests/test_api.py +17 -16
- nautobot/extras/tests/test_datasources.py +64 -54
- nautobot/extras/tests/test_filters.py +2 -0
- nautobot/extras/tests/test_jobs.py +69 -62
- nautobot/extras/tests/test_models.py +1 -1
- nautobot/extras/tests/test_plugins.py +32 -1
- nautobot/extras/tests/test_relationships.py +5 -5
- nautobot/extras/tests/test_views.py +12 -2
- nautobot/extras/views.py +10 -1
- nautobot/ipam/api/serializers.py +7 -8
- nautobot/ipam/api/views.py +2 -2
- nautobot/ipam/factory.py +27 -8
- nautobot/ipam/filters.py +67 -29
- nautobot/ipam/formfields.py +51 -0
- nautobot/ipam/forms.py +28 -1
- nautobot/ipam/migrations/0051_added_optional_vrf_relationship_to_vdc.py +41 -0
- nautobot/ipam/models.py +63 -5
- nautobot/ipam/querysets.py +6 -0
- nautobot/ipam/tables.py +21 -7
- nautobot/ipam/templates/ipam/rir.html +1 -43
- nautobot/ipam/tests/test_api.py +107 -66
- nautobot/ipam/tests/test_filters.py +145 -5
- nautobot/ipam/tests/test_models.py +16 -0
- nautobot/ipam/tests/test_views.py +15 -2
- nautobot/ipam/urls.py +1 -21
- nautobot/ipam/views.py +24 -41
- nautobot/project-static/css/base.css +11 -0
- nautobot/project-static/css/dark.css +2 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +43 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +35 -0
- nautobot/project-static/docs/development/apps/api/configuration-view.html +0 -3
- nautobot/project-static/docs/development/apps/api/models/graphql.html +0 -4
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +94 -1
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +0 -3
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +0 -3
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +0 -3
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +0 -3
- nautobot/project-static/docs/development/apps/api/prometheus.html +0 -3
- nautobot/project-static/docs/development/apps/api/testing.html +0 -6
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +0 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +0 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +0 -3
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +0 -3
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +1 -7
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +0 -7
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +0 -4
- nautobot/project-static/docs/development/apps/api/views/notes.html +0 -3
- nautobot/project-static/docs/development/apps/index.html +2 -35
- nautobot/project-static/docs/development/apps/migration/code-updates.html +1 -1
- nautobot/project-static/docs/development/core/application-registry.html +0 -6
- nautobot/project-static/docs/development/core/best-practices.html +0 -27
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +58 -4
- nautobot/project-static/docs/development/core/getting-started.html +12 -16
- nautobot/project-static/docs/development/core/homepage.html +0 -3
- nautobot/project-static/docs/development/core/style-guide.html +0 -5
- nautobot/project-static/docs/development/core/templates.html +0 -3
- nautobot/project-static/docs/development/core/testing.html +0 -9
- nautobot/project-static/docs/development/jobs/index.html +30 -43
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +0 -18
- nautobot/project-static/docs/release-notes/version-2.4.html +374 -0
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +290 -290
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +0 -10
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +0 -15
- nautobot/project-static/docs/user-guide/administration/installation/index.html +0 -16
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +1 -4
- nautobot/project-static/docs/user-guide/administration/installation/services.html +0 -11
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +3 -3
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +5 -35
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +0 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +0 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +1 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +0 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +0 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +1 -7
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +0 -6
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +0 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +0 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +0 -8
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +0 -6
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +0 -3
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +3 -15
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +0 -26
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +0 -8
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +0 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +0 -8
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +0 -7
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +0 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +0 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +0 -14
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +0 -3
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +1 -10
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +0 -3
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +0 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +0 -19
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +3 -9
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +0 -8
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +0 -4
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +1 -13
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +0 -5
- nautobot/project-static/js/editor.js +292 -0
- nautobot/project-static/monaco-editor-0.52.2/README.md +81 -0
- nautobot/project-static/monaco-editor-0.52.2/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- nautobot/project-static/monaco-editor-0.52.2/vs/base/worker/workerMain.js +31 -0
- nautobot/project-static/monaco-editor-0.52.2/vs/basic-languages/xml/xml.js +10 -0
- nautobot/project-static/monaco-editor-0.52.2/vs/basic-languages/yaml/yaml.js +10 -0
- nautobot/project-static/monaco-editor-0.52.2/vs/editor/editor.main.css +8 -0
- nautobot/project-static/monaco-editor-0.52.2/vs/editor/editor.main.js +798 -0
- nautobot/project-static/monaco-editor-0.52.2/vs/language/json/jsonMode.js +19 -0
- nautobot/project-static/monaco-editor-0.52.2/vs/language/json/jsonWorker.js +42 -0
- nautobot/project-static/monaco-editor-0.52.2/vs/loader.js +11 -0
- nautobot/tenancy/filters/__init__.py +3 -5
- nautobot/tenancy/tests/test_filters.py +10 -0
- nautobot/virtualization/views.py +0 -1
- nautobot/wireless/tables.py +9 -4
- nautobot/wireless/tests/test_api.py +0 -9
- {nautobot-2.4.3.dist-info → nautobot-2.4.5.dist-info}/METADATA +4 -4
- {nautobot-2.4.3.dist-info → nautobot-2.4.5.dist-info}/RECORD +198 -186
- {nautobot-2.4.3.dist-info → nautobot-2.4.5.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.3.dist-info → nautobot-2.4.5.dist-info}/NOTICE +0 -0
- {nautobot-2.4.3.dist-info → nautobot-2.4.5.dist-info}/WHEEL +0 -0
- {nautobot-2.4.3.dist-info → nautobot-2.4.5.dist-info}/entry_points.txt +0 -0
|
@@ -8761,6 +8761,144 @@
|
|
|
8761
8761
|
</ul>
|
|
8762
8762
|
</nav>
|
|
8763
8763
|
|
|
8764
|
+
</li>
|
|
8765
|
+
|
|
8766
|
+
<li class="md-nav__item">
|
|
8767
|
+
<a href="#v245-2025-03-10" class="md-nav__link">
|
|
8768
|
+
<span class="md-ellipsis">
|
|
8769
|
+
v2.4.5 (2025-03-10)
|
|
8770
|
+
</span>
|
|
8771
|
+
</a>
|
|
8772
|
+
|
|
8773
|
+
<nav class="md-nav" aria-label="v2.4.5 (2025-03-10)">
|
|
8774
|
+
<ul class="md-nav__list">
|
|
8775
|
+
|
|
8776
|
+
<li class="md-nav__item">
|
|
8777
|
+
<a href="#security-in-v245" class="md-nav__link">
|
|
8778
|
+
<span class="md-ellipsis">
|
|
8779
|
+
Security in v2.4.5
|
|
8780
|
+
</span>
|
|
8781
|
+
</a>
|
|
8782
|
+
|
|
8783
|
+
</li>
|
|
8784
|
+
|
|
8785
|
+
<li class="md-nav__item">
|
|
8786
|
+
<a href="#added-in-v245" class="md-nav__link">
|
|
8787
|
+
<span class="md-ellipsis">
|
|
8788
|
+
Added in v2.4.5
|
|
8789
|
+
</span>
|
|
8790
|
+
</a>
|
|
8791
|
+
|
|
8792
|
+
</li>
|
|
8793
|
+
|
|
8794
|
+
<li class="md-nav__item">
|
|
8795
|
+
<a href="#changed-in-v245" class="md-nav__link">
|
|
8796
|
+
<span class="md-ellipsis">
|
|
8797
|
+
Changed in v2.4.5
|
|
8798
|
+
</span>
|
|
8799
|
+
</a>
|
|
8800
|
+
|
|
8801
|
+
</li>
|
|
8802
|
+
|
|
8803
|
+
<li class="md-nav__item">
|
|
8804
|
+
<a href="#removed-in-v245" class="md-nav__link">
|
|
8805
|
+
<span class="md-ellipsis">
|
|
8806
|
+
Removed in v2.4.5
|
|
8807
|
+
</span>
|
|
8808
|
+
</a>
|
|
8809
|
+
|
|
8810
|
+
</li>
|
|
8811
|
+
|
|
8812
|
+
<li class="md-nav__item">
|
|
8813
|
+
<a href="#fixed-in-v245" class="md-nav__link">
|
|
8814
|
+
<span class="md-ellipsis">
|
|
8815
|
+
Fixed in v2.4.5
|
|
8816
|
+
</span>
|
|
8817
|
+
</a>
|
|
8818
|
+
|
|
8819
|
+
</li>
|
|
8820
|
+
|
|
8821
|
+
<li class="md-nav__item">
|
|
8822
|
+
<a href="#housekeeping-in-v245" class="md-nav__link">
|
|
8823
|
+
<span class="md-ellipsis">
|
|
8824
|
+
Housekeeping in v2.4.5
|
|
8825
|
+
</span>
|
|
8826
|
+
</a>
|
|
8827
|
+
|
|
8828
|
+
</li>
|
|
8829
|
+
|
|
8830
|
+
</ul>
|
|
8831
|
+
</nav>
|
|
8832
|
+
|
|
8833
|
+
</li>
|
|
8834
|
+
|
|
8835
|
+
<li class="md-nav__item">
|
|
8836
|
+
<a href="#v244-2025-03-03" class="md-nav__link">
|
|
8837
|
+
<span class="md-ellipsis">
|
|
8838
|
+
v2.4.4 (2025-03-03)
|
|
8839
|
+
</span>
|
|
8840
|
+
</a>
|
|
8841
|
+
|
|
8842
|
+
<nav class="md-nav" aria-label="v2.4.4 (2025-03-03)">
|
|
8843
|
+
<ul class="md-nav__list">
|
|
8844
|
+
|
|
8845
|
+
<li class="md-nav__item">
|
|
8846
|
+
<a href="#added-in-v244" class="md-nav__link">
|
|
8847
|
+
<span class="md-ellipsis">
|
|
8848
|
+
Added in v2.4.4
|
|
8849
|
+
</span>
|
|
8850
|
+
</a>
|
|
8851
|
+
|
|
8852
|
+
</li>
|
|
8853
|
+
|
|
8854
|
+
<li class="md-nav__item">
|
|
8855
|
+
<a href="#changed-in-v244" class="md-nav__link">
|
|
8856
|
+
<span class="md-ellipsis">
|
|
8857
|
+
Changed in v2.4.4
|
|
8858
|
+
</span>
|
|
8859
|
+
</a>
|
|
8860
|
+
|
|
8861
|
+
</li>
|
|
8862
|
+
|
|
8863
|
+
<li class="md-nav__item">
|
|
8864
|
+
<a href="#fixed-in-v244" class="md-nav__link">
|
|
8865
|
+
<span class="md-ellipsis">
|
|
8866
|
+
Fixed in v2.4.4
|
|
8867
|
+
</span>
|
|
8868
|
+
</a>
|
|
8869
|
+
|
|
8870
|
+
</li>
|
|
8871
|
+
|
|
8872
|
+
<li class="md-nav__item">
|
|
8873
|
+
<a href="#dependencies-in-v244" class="md-nav__link">
|
|
8874
|
+
<span class="md-ellipsis">
|
|
8875
|
+
Dependencies in v2.4.4
|
|
8876
|
+
</span>
|
|
8877
|
+
</a>
|
|
8878
|
+
|
|
8879
|
+
</li>
|
|
8880
|
+
|
|
8881
|
+
<li class="md-nav__item">
|
|
8882
|
+
<a href="#documentation-in-v244" class="md-nav__link">
|
|
8883
|
+
<span class="md-ellipsis">
|
|
8884
|
+
Documentation in v2.4.4
|
|
8885
|
+
</span>
|
|
8886
|
+
</a>
|
|
8887
|
+
|
|
8888
|
+
</li>
|
|
8889
|
+
|
|
8890
|
+
<li class="md-nav__item">
|
|
8891
|
+
<a href="#housekeeping-in-v244" class="md-nav__link">
|
|
8892
|
+
<span class="md-ellipsis">
|
|
8893
|
+
Housekeeping in v2.4.4
|
|
8894
|
+
</span>
|
|
8895
|
+
</a>
|
|
8896
|
+
|
|
8897
|
+
</li>
|
|
8898
|
+
|
|
8899
|
+
</ul>
|
|
8900
|
+
</nav>
|
|
8901
|
+
|
|
8764
8902
|
</li>
|
|
8765
8903
|
|
|
8766
8904
|
<li class="md-nav__item">
|
|
@@ -9927,6 +10065,144 @@
|
|
|
9927
10065
|
</ul>
|
|
9928
10066
|
</nav>
|
|
9929
10067
|
|
|
10068
|
+
</li>
|
|
10069
|
+
|
|
10070
|
+
<li class="md-nav__item">
|
|
10071
|
+
<a href="#v245-2025-03-10" class="md-nav__link">
|
|
10072
|
+
<span class="md-ellipsis">
|
|
10073
|
+
v2.4.5 (2025-03-10)
|
|
10074
|
+
</span>
|
|
10075
|
+
</a>
|
|
10076
|
+
|
|
10077
|
+
<nav class="md-nav" aria-label="v2.4.5 (2025-03-10)">
|
|
10078
|
+
<ul class="md-nav__list">
|
|
10079
|
+
|
|
10080
|
+
<li class="md-nav__item">
|
|
10081
|
+
<a href="#security-in-v245" class="md-nav__link">
|
|
10082
|
+
<span class="md-ellipsis">
|
|
10083
|
+
Security in v2.4.5
|
|
10084
|
+
</span>
|
|
10085
|
+
</a>
|
|
10086
|
+
|
|
10087
|
+
</li>
|
|
10088
|
+
|
|
10089
|
+
<li class="md-nav__item">
|
|
10090
|
+
<a href="#added-in-v245" class="md-nav__link">
|
|
10091
|
+
<span class="md-ellipsis">
|
|
10092
|
+
Added in v2.4.5
|
|
10093
|
+
</span>
|
|
10094
|
+
</a>
|
|
10095
|
+
|
|
10096
|
+
</li>
|
|
10097
|
+
|
|
10098
|
+
<li class="md-nav__item">
|
|
10099
|
+
<a href="#changed-in-v245" class="md-nav__link">
|
|
10100
|
+
<span class="md-ellipsis">
|
|
10101
|
+
Changed in v2.4.5
|
|
10102
|
+
</span>
|
|
10103
|
+
</a>
|
|
10104
|
+
|
|
10105
|
+
</li>
|
|
10106
|
+
|
|
10107
|
+
<li class="md-nav__item">
|
|
10108
|
+
<a href="#removed-in-v245" class="md-nav__link">
|
|
10109
|
+
<span class="md-ellipsis">
|
|
10110
|
+
Removed in v2.4.5
|
|
10111
|
+
</span>
|
|
10112
|
+
</a>
|
|
10113
|
+
|
|
10114
|
+
</li>
|
|
10115
|
+
|
|
10116
|
+
<li class="md-nav__item">
|
|
10117
|
+
<a href="#fixed-in-v245" class="md-nav__link">
|
|
10118
|
+
<span class="md-ellipsis">
|
|
10119
|
+
Fixed in v2.4.5
|
|
10120
|
+
</span>
|
|
10121
|
+
</a>
|
|
10122
|
+
|
|
10123
|
+
</li>
|
|
10124
|
+
|
|
10125
|
+
<li class="md-nav__item">
|
|
10126
|
+
<a href="#housekeeping-in-v245" class="md-nav__link">
|
|
10127
|
+
<span class="md-ellipsis">
|
|
10128
|
+
Housekeeping in v2.4.5
|
|
10129
|
+
</span>
|
|
10130
|
+
</a>
|
|
10131
|
+
|
|
10132
|
+
</li>
|
|
10133
|
+
|
|
10134
|
+
</ul>
|
|
10135
|
+
</nav>
|
|
10136
|
+
|
|
10137
|
+
</li>
|
|
10138
|
+
|
|
10139
|
+
<li class="md-nav__item">
|
|
10140
|
+
<a href="#v244-2025-03-03" class="md-nav__link">
|
|
10141
|
+
<span class="md-ellipsis">
|
|
10142
|
+
v2.4.4 (2025-03-03)
|
|
10143
|
+
</span>
|
|
10144
|
+
</a>
|
|
10145
|
+
|
|
10146
|
+
<nav class="md-nav" aria-label="v2.4.4 (2025-03-03)">
|
|
10147
|
+
<ul class="md-nav__list">
|
|
10148
|
+
|
|
10149
|
+
<li class="md-nav__item">
|
|
10150
|
+
<a href="#added-in-v244" class="md-nav__link">
|
|
10151
|
+
<span class="md-ellipsis">
|
|
10152
|
+
Added in v2.4.4
|
|
10153
|
+
</span>
|
|
10154
|
+
</a>
|
|
10155
|
+
|
|
10156
|
+
</li>
|
|
10157
|
+
|
|
10158
|
+
<li class="md-nav__item">
|
|
10159
|
+
<a href="#changed-in-v244" class="md-nav__link">
|
|
10160
|
+
<span class="md-ellipsis">
|
|
10161
|
+
Changed in v2.4.4
|
|
10162
|
+
</span>
|
|
10163
|
+
</a>
|
|
10164
|
+
|
|
10165
|
+
</li>
|
|
10166
|
+
|
|
10167
|
+
<li class="md-nav__item">
|
|
10168
|
+
<a href="#fixed-in-v244" class="md-nav__link">
|
|
10169
|
+
<span class="md-ellipsis">
|
|
10170
|
+
Fixed in v2.4.4
|
|
10171
|
+
</span>
|
|
10172
|
+
</a>
|
|
10173
|
+
|
|
10174
|
+
</li>
|
|
10175
|
+
|
|
10176
|
+
<li class="md-nav__item">
|
|
10177
|
+
<a href="#dependencies-in-v244" class="md-nav__link">
|
|
10178
|
+
<span class="md-ellipsis">
|
|
10179
|
+
Dependencies in v2.4.4
|
|
10180
|
+
</span>
|
|
10181
|
+
</a>
|
|
10182
|
+
|
|
10183
|
+
</li>
|
|
10184
|
+
|
|
10185
|
+
<li class="md-nav__item">
|
|
10186
|
+
<a href="#documentation-in-v244" class="md-nav__link">
|
|
10187
|
+
<span class="md-ellipsis">
|
|
10188
|
+
Documentation in v2.4.4
|
|
10189
|
+
</span>
|
|
10190
|
+
</a>
|
|
10191
|
+
|
|
10192
|
+
</li>
|
|
10193
|
+
|
|
10194
|
+
<li class="md-nav__item">
|
|
10195
|
+
<a href="#housekeeping-in-v244" class="md-nav__link">
|
|
10196
|
+
<span class="md-ellipsis">
|
|
10197
|
+
Housekeeping in v2.4.4
|
|
10198
|
+
</span>
|
|
10199
|
+
</a>
|
|
10200
|
+
|
|
10201
|
+
</li>
|
|
10202
|
+
|
|
10203
|
+
</ul>
|
|
10204
|
+
</nav>
|
|
10205
|
+
|
|
9930
10206
|
</li>
|
|
9931
10207
|
|
|
9932
10208
|
<li class="md-nav__item">
|
|
@@ -10335,6 +10611,16 @@
|
|
|
10335
10611
|
<p>Jobs can now log <code>success</code> messages as a new logging level which will be appropriately labeled and colorized in Job Result views.</p>
|
|
10336
10612
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="bp">self</span><span class="o">.</span><span class="n">logger</span><span class="o">.</span><span class="n">success</span><span class="p">(</span><span class="s2">"All data is valid."</span><span class="p">)</span>
|
|
10337
10613
|
</code></pre></div>
|
|
10614
|
+
<details class="version-added">
|
|
10615
|
+
<summary>Added in version 2.4.5</summary>
|
|
10616
|
+
</details>
|
|
10617
|
+
<p>In Nautobot v2.4.5 and later, Jobs can now log <code>failure</code> messages as well:</p>
|
|
10618
|
+
<div class="highlight"><pre><span></span><code><a id="__codelineno-1-1" name="__codelineno-1-1" href="#__codelineno-1-1"></a><span class="bp">self</span><span class="o">.</span><span class="n">logger</span><span class="o">.</span><span class="n">failure</span><span class="p">(</span><span class="s2">"Something went wrong."</span><span class="p">)</span>
|
|
10619
|
+
</code></pre></div>
|
|
10620
|
+
<p>In Nautobot v2.4.5 and later, Jobs can also mark their result as failed without raising an uncaught exception by calling the new <code>Job.fail(message)</code> API:</p>
|
|
10621
|
+
<div class="highlight"><pre><span></span><code><a id="__codelineno-2-1" name="__codelineno-2-1" href="#__codelineno-2-1"></a><span class="bp">self</span><span class="o">.</span><span class="n">fail</span><span class="p">(</span><span class="s2">"Something went wrong, and we'll fail in the end, but we can continue for now."</span><span class="p">)</span>
|
|
10622
|
+
<a id="__codelineno-2-2" name="__codelineno-2-2" href="#__codelineno-2-2"></a><span class="bp">self</span><span class="o">.</span><span class="n">logger</span><span class="o">.</span><span class="n">info</span><span class="p">(</span><span class="s2">"Continuing..."</span><span class="p">)</span>
|
|
10623
|
+
</code></pre></div>
|
|
10338
10624
|
<h4 id="kubernetes-job-execution-and-job-queue-data-model-experimental">Kubernetes Job Execution and Job Queue Data Model (Experimental)<a class="headerlink" href="#kubernetes-job-execution-and-job-queue-data-model-experimental" title="Permanent link">¶</a></h4>
|
|
10339
10625
|
<p><em>Please note that this functionality is considered Experimental in the v2.4.0 release and is subject to change in the future.</em></p>
|
|
10340
10626
|
<p>When running in a Kubernetes (k8s) deployment, such as with Nautobot's <a href="https://docs.nautobot.com/projects/helm-charts/en/stable/">Helm chart</a>, Nautobot now supports an alternative method of running Nautobot Jobs - instead of (or in addition to) running one or more Celery Workers as long-lived persistent pods, Nautobot can dispatch Nautobot Jobs to be executed as short-lived <a href="https://kubernetes.io/docs/concepts/workloads/controllers/job/">Kubernetes Job</a> pods.</p>
|
|
@@ -10381,6 +10667,94 @@
|
|
|
10381
10667
|
|
|
10382
10668
|
<!-- towncrier release notes start -->
|
|
10383
10669
|
|
|
10670
|
+
<h2 id="v245-2025-03-10">v2.4.5 (2025-03-10)<a class="headerlink" href="#v245-2025-03-10" title="Permanent link">¶</a></h2>
|
|
10671
|
+
<h3 id="security-in-v245">Security in v2.4.5<a class="headerlink" href="#security-in-v245" title="Permanent link">¶</a></h3>
|
|
10672
|
+
<ul>
|
|
10673
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6983">#6983</a> - Updated dependency <code>Jinja2</code> to <code>~3.1.6</code> to address <code>CVE-2025-27516</code>.</li>
|
|
10674
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7000">#7000</a> - Updated dependency <code>Django</code> to <code>~4.2.20</code> to address <code>CVE-2025-26699</code>.</li>
|
|
10675
|
+
</ul>
|
|
10676
|
+
<h3 id="added-in-v245">Added in v2.4.5<a class="headerlink" href="#added-in-v245" title="Permanent link">¶</a></h3>
|
|
10677
|
+
<ul>
|
|
10678
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6384">#6384</a> - Added <code>Job.logger.failure()</code> API for Job logging, using custom <code>FAILURE</code> log level (between <code>WARNING</code> and <code>ERROR</code>).</li>
|
|
10679
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6384">#6384</a> - Added <code>Job.fail()</code> API, which can be used to fail a Job more gracefully than by raising an uncaught exception.</li>
|
|
10680
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6384">#6384</a> - Added <code>NautobotTestCaseMixin.assertJobResultStatus()</code> testing helper API.</li>
|
|
10681
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7001">#7001</a> - Added bulk-edit support for the RIR model.</li>
|
|
10682
|
+
</ul>
|
|
10683
|
+
<h3 id="changed-in-v245">Changed in v2.4.5<a class="headerlink" href="#changed-in-v245" title="Permanent link">¶</a></h3>
|
|
10684
|
+
<ul>
|
|
10685
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6384">#6384</a> - Changed output of <code>nautobot-server runjob</code> command to include the traceback (if any) and count of <code>success</code>/<code>failure</code> log messages.</li>
|
|
10686
|
+
</ul>
|
|
10687
|
+
<h3 id="removed-in-v245">Removed in v2.4.5<a class="headerlink" href="#removed-in-v245" title="Permanent link">¶</a></h3>
|
|
10688
|
+
<ul>
|
|
10689
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6384">#6384</a> - Removed the (undocumented) requirement for Jobs that implement a custom <code>before_start()</code> or <code>after_return()</code> method to call <code>super()</code> for the Job to execute successfully.</li>
|
|
10690
|
+
</ul>
|
|
10691
|
+
<h3 id="fixed-in-v245">Fixed in v2.4.5<a class="headerlink" href="#fixed-in-v245" title="Permanent link">¶</a></h3>
|
|
10692
|
+
<ul>
|
|
10693
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6384">#6384</a> - Fixed rendering of "actions" column in the JobResult table view.</li>
|
|
10694
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6384">#6384</a> - Fixed incorrect <code>stacklevel</code> default value in Job <code>logger.success()</code> API.</li>
|
|
10695
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6906">#6906</a> - <code>GitRepository.clone_to_directory</code> now uses configured Secrets for Repository to prepare correct <code>from_url</code>.</li>
|
|
10696
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6972">#6972</a> - Fixed IPAddress get_or_create not working with the address argument.</li>
|
|
10697
|
+
</ul>
|
|
10698
|
+
<h3 id="housekeeping-in-v245">Housekeeping in v2.4.5<a class="headerlink" href="#housekeeping-in-v245" title="Permanent link">¶</a></h3>
|
|
10699
|
+
<ul>
|
|
10700
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6384">#6384</a> - Added <code>init: true</code> to development <code>docker-compose.yml</code> to avoid failed health-checks from remaining as zombie processes.</li>
|
|
10701
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6384">#6384</a> - Added <code>ExampleFailingJob</code> to example app to demonstrate the two different ways to fail a Job.</li>
|
|
10702
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6971">#6971</a> - Fixed invoke commands requiring pyyaml.</li>
|
|
10703
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/7001">#7001</a> - Refactored RIR model related UI views to use <code>NautobotUIViewSet</code> and <code>UI component framework</code>.</li>
|
|
10704
|
+
</ul>
|
|
10705
|
+
<h2 id="v244-2025-03-03">v2.4.4 (2025-03-03)<a class="headerlink" href="#v244-2025-03-03" title="Permanent link">¶</a></h2>
|
|
10706
|
+
<h3 id="added-in-v244">Added in v2.4.4<a class="headerlink" href="#added-in-v244" title="Permanent link">¶</a></h3>
|
|
10707
|
+
<ul>
|
|
10708
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Added <code>PrefixFilter</code> helper class to <code>nautobot.apps.filters</code>.</li>
|
|
10709
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Enhanced <code>prefixes</code> filter on <code>CloudNetwork</code> and <code>Tenant</code> filtersets to support filtering by literal prefix string (<code>10.0.0.0/8</code>) as an alternative to filtering by primary key.</li>
|
|
10710
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Enhanced <code>prefix</code> filter on <code>CloudNetworkPrefixAssignment</code>, <code>VRF</code>, and <code>VRFPrefixAssignment</code> filtersets to support filtering by literal prefix string (<code>10.0.0.0/8</code>) as an alternative to filtering by primary key.</li>
|
|
10711
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Enhanced <code>parent</code> filter on <code>Prefix</code> filtersets to support filtering by literal prefix string (<code>10.0.0.0/8</code>) as an alternative to filtering by primary key.</li>
|
|
10712
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Enhanced <code>prefix</code> filter on <code>PrefixLocationAssignment</code> filtersets to support filtering by primary key as an alternative to filtering by literal prefix string.</li>
|
|
10713
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Added <code>q</code> search filter to <code>VRFPrefixAssignment</code> filterset.</li>
|
|
10714
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6635">#6635</a> - Added Monaco Editor integration to object change view for improved visualization of structured data differences including JSON, YAML, XML, tags, custom fields, and config contexts.</li>
|
|
10715
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6924">#6924</a> - Added optional VRF relationship to Virtual Device Context.</li>
|
|
10716
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6925">#6925</a> - Added colors next to Devices to indicate Device status in Rack Elevation view.</li>
|
|
10717
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6966">#6966</a> - Added support for accessing the current user within Custom Validators via <code>self.context["user"]</code>.</li>
|
|
10718
|
+
</ul>
|
|
10719
|
+
<h3 id="changed-in-v244">Changed in v2.4.4<a class="headerlink" href="#changed-in-v244" title="Permanent link">¶</a></h3>
|
|
10720
|
+
<ul>
|
|
10721
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6829">#6829</a> - Enabled assignment of a Device to a Rack that belongs to a child Location of the device's location; for example, a Device located in a "Building" can now be assigned to a Rack located in a "Room" within that building.</li>
|
|
10722
|
+
</ul>
|
|
10723
|
+
<h3 id="fixed-in-v244">Fixed in v2.4.4<a class="headerlink" href="#fixed-in-v244" title="Permanent link">¶</a></h3>
|
|
10724
|
+
<ul>
|
|
10725
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3041">#3041</a> - Fixed inability to assign a parent bay when creating a Device via the REST API.</li>
|
|
10726
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5006">#5006</a> - Added a validation check to prevent removing an in-use content type from a LocationType.</li>
|
|
10727
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5193">#5193</a> - Fixed an erroneous <code>ValidationError</code> when attempting to apply Tags to an object via the REST API.</li>
|
|
10728
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Fixed <code>VRFPrefixAssignment</code> REST API endpoint incorrectly advertising support for Notes.</li>
|
|
10729
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Fixed incorrect <code>Meta.model</code> value on <code>ControllerManagedDeviceGroupWirelessNetworkAssignmentTable</code> and <code>ControllerManagedDeviceGroupRadioProfileAssignmentTable</code>.</li>
|
|
10730
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6848">#6848</a> - Fixed a <code>DoesNotExist</code> error in the GUI at <code>/extras/git-repositories/X/result/</code> when a Git repository was created via API and not yet synced.</li>
|
|
10731
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6861">#6861</a> - Fixed the data population of the Rack Group dropdown to include Rack Groups from the Rack's parent locations in Rack Edit View.</li>
|
|
10732
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6910">#6910</a> - Fixed CSV export job to add a UTF-8 BOM (byte order mark) to the created file to ensure Excel will correctly handle any Unicode data.</li>
|
|
10733
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6920">#6920</a> - Added log messages to help troubleshoot failures when rendering UI Component Framework <code>extra_buttons</code>.</li>
|
|
10734
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6920">#6920</a> - Fixed logic in UI Component Framework <code>StatsPanel</code> that incorrectly disallowed use of FilterSet filters implicitly defined through <code>fields = "__all__"</code>.</li>
|
|
10735
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6920">#6920</a> - Fixed logic in generic <code>FormTestCase</code> class that would incorrectly fail if form fields used FilterSet filters implicitly defined through <code>fields = "__all__"</code>.</li>
|
|
10736
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6939">#6939</a> - Fixed an error in testing Jobs in <code>JOBS_ROOT</code> by forcing registration of <code>taggit</code> and <code>social_django</code> models before unregistering them from the admin site.</li>
|
|
10737
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6950">#6950</a> - Added missing <code>job_queues</code> filter field to <code>JobFilterSet</code>.</li>
|
|
10738
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6952">#6952</a> - Fixed an <code>AttributeError</code> exception when upgrading from v1.x to v2.x with certain existing data in the database.</li>
|
|
10739
|
+
</ul>
|
|
10740
|
+
<h3 id="dependencies-in-v244">Dependencies in v2.4.4<a class="headerlink" href="#dependencies-in-v244" title="Permanent link">¶</a></h3>
|
|
10741
|
+
<ul>
|
|
10742
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6927">#6927</a> - Updated dependency <code>django-filter</code> to <code>~25.1</code>.</li>
|
|
10743
|
+
</ul>
|
|
10744
|
+
<h3 id="documentation-in-v244">Documentation in v2.4.4<a class="headerlink" href="#documentation-in-v244" title="Permanent link">¶</a></h3>
|
|
10745
|
+
<ul>
|
|
10746
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6903">#6903</a> - Removed documentation references to Nautobot 1.x behavior and feature changes within the 1.x release series.</li>
|
|
10747
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6951">#6951</a> - Fixed typo in v2 migration documentation.</li>
|
|
10748
|
+
</ul>
|
|
10749
|
+
<h3 id="housekeeping-in-v244">Housekeeping in v2.4.4<a class="headerlink" href="#housekeeping-in-v244" title="Permanent link">¶</a></h3>
|
|
10750
|
+
<ul>
|
|
10751
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Enhanced <code>PrefixFactory</code> and <code>VRFFactory</code> test helpers to automatically create appropriate <code>VRFPrefixAssignment</code> records.</li>
|
|
10752
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6857">#6857</a> - Added <code>.yarn</code> directory to <code>.gitignore</code>.</li>
|
|
10753
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6857">#6857</a> - Changed CI for integration tests to use <code>--no-keepdb</code>.</li>
|
|
10754
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6858">#6858</a> - Fixed generation of performance test endpoints for Nautobot apps.</li>
|
|
10755
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6893">#6893</a> - Added an option for ephemeral ports, and streamlined debug settings for VSCode developers.</li>
|
|
10756
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6943">#6943</a> - Updated <code>debug</code> invoke task to restore previous behavior.</li>
|
|
10757
|
+
</ul>
|
|
10384
10758
|
<h2 id="v243-2025-02-18">v2.4.3 (2025-02-18)<a class="headerlink" href="#v243-2025-02-18" title="Permanent link">¶</a></h2>
|
|
10385
10759
|
<h3 id="added-in-v243">Added in v2.4.3<a class="headerlink" href="#added-in-v243" title="Permanent link">¶</a></h3>
|
|
10386
10760
|
<ul>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Jinja2==3.1.
|
|
1
|
+
Jinja2==3.1.6
|
|
2
2
|
Markdown==3.6
|
|
3
3
|
markdown-data-tables==1.0.0
|
|
4
4
|
markdown-version-annotations==1.0.1
|
|
@@ -9,6 +9,6 @@ mkdocs-macros-plugin==1.0.5
|
|
|
9
9
|
mkdocs-material==9.5.50
|
|
10
10
|
mkdocs-redirects==1.2.2
|
|
11
11
|
mkdocs-section-index==0.3.9
|
|
12
|
-
mkdocstrings==0.
|
|
12
|
+
mkdocstrings==0.26.1
|
|
13
13
|
mkdocstrings-python==1.10.8
|
|
14
14
|
zipp==3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
|