nautobot 2.4.3__py3-none-any.whl → 2.4.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nautobot/apps/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/jobs/__init__.py +2 -1
- 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/forms.py +1 -1
- nautobot/core/tests/test_api.py +1 -1
- nautobot/core/tests/test_graphql.py +3 -3
- nautobot/core/tests/test_jobs.py +4 -1
- 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_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/filters/__init__.py +4 -0
- nautobot/extras/models/datasources.py +7 -3
- nautobot/extras/plugins/__init__.py +26 -1
- nautobot/extras/templates/extras/inc/jobresult.html +12 -13
- nautobot/extras/templates/extras/objectchange.html +28 -12
- nautobot/extras/tests/test_api.py +16 -15
- nautobot/extras/tests/test_filters.py +2 -0
- nautobot/extras/tests/test_plugins.py +32 -1
- nautobot/extras/tests/test_views.py +12 -2
- nautobot/extras/views.py +3 -0
- 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 +13 -1
- nautobot/ipam/migrations/0051_added_optional_vrf_relationship_to_vdc.py +41 -0
- nautobot/ipam/models.py +63 -5
- nautobot/ipam/tables.py +21 -7
- nautobot/ipam/tests/test_api.py +107 -66
- nautobot/ipam/tests/test_filters.py +145 -5
- nautobot/ipam/tests/test_views.py +15 -2
- 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/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 +3 -29
- 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 +191 -0
- nautobot/project-static/docs/requirements.txt +1 -1
- 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.4.dist-info}/METADATA +2 -2
- {nautobot-2.4.3.dist-info → nautobot-2.4.4.dist-info}/RECORD +175 -163
- {nautobot-2.4.3.dist-info → nautobot-2.4.4.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.3.dist-info → nautobot-2.4.4.dist-info}/NOTICE +0 -0
- {nautobot-2.4.3.dist-info → nautobot-2.4.4.dist-info}/WHEEL +0 -0
- {nautobot-2.4.3.dist-info → nautobot-2.4.4.dist-info}/entry_points.txt +0 -0
|
@@ -8761,6 +8761,75 @@
|
|
|
8761
8761
|
</ul>
|
|
8762
8762
|
</nav>
|
|
8763
8763
|
|
|
8764
|
+
</li>
|
|
8765
|
+
|
|
8766
|
+
<li class="md-nav__item">
|
|
8767
|
+
<a href="#v244-2025-03-03" class="md-nav__link">
|
|
8768
|
+
<span class="md-ellipsis">
|
|
8769
|
+
v2.4.4 (2025-03-03)
|
|
8770
|
+
</span>
|
|
8771
|
+
</a>
|
|
8772
|
+
|
|
8773
|
+
<nav class="md-nav" aria-label="v2.4.4 (2025-03-03)">
|
|
8774
|
+
<ul class="md-nav__list">
|
|
8775
|
+
|
|
8776
|
+
<li class="md-nav__item">
|
|
8777
|
+
<a href="#added-in-v244" class="md-nav__link">
|
|
8778
|
+
<span class="md-ellipsis">
|
|
8779
|
+
Added in v2.4.4
|
|
8780
|
+
</span>
|
|
8781
|
+
</a>
|
|
8782
|
+
|
|
8783
|
+
</li>
|
|
8784
|
+
|
|
8785
|
+
<li class="md-nav__item">
|
|
8786
|
+
<a href="#changed-in-v244" class="md-nav__link">
|
|
8787
|
+
<span class="md-ellipsis">
|
|
8788
|
+
Changed in v2.4.4
|
|
8789
|
+
</span>
|
|
8790
|
+
</a>
|
|
8791
|
+
|
|
8792
|
+
</li>
|
|
8793
|
+
|
|
8794
|
+
<li class="md-nav__item">
|
|
8795
|
+
<a href="#fixed-in-v244" class="md-nav__link">
|
|
8796
|
+
<span class="md-ellipsis">
|
|
8797
|
+
Fixed in v2.4.4
|
|
8798
|
+
</span>
|
|
8799
|
+
</a>
|
|
8800
|
+
|
|
8801
|
+
</li>
|
|
8802
|
+
|
|
8803
|
+
<li class="md-nav__item">
|
|
8804
|
+
<a href="#dependencies-in-v244" class="md-nav__link">
|
|
8805
|
+
<span class="md-ellipsis">
|
|
8806
|
+
Dependencies in v2.4.4
|
|
8807
|
+
</span>
|
|
8808
|
+
</a>
|
|
8809
|
+
|
|
8810
|
+
</li>
|
|
8811
|
+
|
|
8812
|
+
<li class="md-nav__item">
|
|
8813
|
+
<a href="#documentation-in-v244" class="md-nav__link">
|
|
8814
|
+
<span class="md-ellipsis">
|
|
8815
|
+
Documentation in v2.4.4
|
|
8816
|
+
</span>
|
|
8817
|
+
</a>
|
|
8818
|
+
|
|
8819
|
+
</li>
|
|
8820
|
+
|
|
8821
|
+
<li class="md-nav__item">
|
|
8822
|
+
<a href="#housekeeping-in-v244" class="md-nav__link">
|
|
8823
|
+
<span class="md-ellipsis">
|
|
8824
|
+
Housekeeping in v2.4.4
|
|
8825
|
+
</span>
|
|
8826
|
+
</a>
|
|
8827
|
+
|
|
8828
|
+
</li>
|
|
8829
|
+
|
|
8830
|
+
</ul>
|
|
8831
|
+
</nav>
|
|
8832
|
+
|
|
8764
8833
|
</li>
|
|
8765
8834
|
|
|
8766
8835
|
<li class="md-nav__item">
|
|
@@ -9927,6 +9996,75 @@
|
|
|
9927
9996
|
</ul>
|
|
9928
9997
|
</nav>
|
|
9929
9998
|
|
|
9999
|
+
</li>
|
|
10000
|
+
|
|
10001
|
+
<li class="md-nav__item">
|
|
10002
|
+
<a href="#v244-2025-03-03" class="md-nav__link">
|
|
10003
|
+
<span class="md-ellipsis">
|
|
10004
|
+
v2.4.4 (2025-03-03)
|
|
10005
|
+
</span>
|
|
10006
|
+
</a>
|
|
10007
|
+
|
|
10008
|
+
<nav class="md-nav" aria-label="v2.4.4 (2025-03-03)">
|
|
10009
|
+
<ul class="md-nav__list">
|
|
10010
|
+
|
|
10011
|
+
<li class="md-nav__item">
|
|
10012
|
+
<a href="#added-in-v244" class="md-nav__link">
|
|
10013
|
+
<span class="md-ellipsis">
|
|
10014
|
+
Added in v2.4.4
|
|
10015
|
+
</span>
|
|
10016
|
+
</a>
|
|
10017
|
+
|
|
10018
|
+
</li>
|
|
10019
|
+
|
|
10020
|
+
<li class="md-nav__item">
|
|
10021
|
+
<a href="#changed-in-v244" class="md-nav__link">
|
|
10022
|
+
<span class="md-ellipsis">
|
|
10023
|
+
Changed in v2.4.4
|
|
10024
|
+
</span>
|
|
10025
|
+
</a>
|
|
10026
|
+
|
|
10027
|
+
</li>
|
|
10028
|
+
|
|
10029
|
+
<li class="md-nav__item">
|
|
10030
|
+
<a href="#fixed-in-v244" class="md-nav__link">
|
|
10031
|
+
<span class="md-ellipsis">
|
|
10032
|
+
Fixed in v2.4.4
|
|
10033
|
+
</span>
|
|
10034
|
+
</a>
|
|
10035
|
+
|
|
10036
|
+
</li>
|
|
10037
|
+
|
|
10038
|
+
<li class="md-nav__item">
|
|
10039
|
+
<a href="#dependencies-in-v244" class="md-nav__link">
|
|
10040
|
+
<span class="md-ellipsis">
|
|
10041
|
+
Dependencies in v2.4.4
|
|
10042
|
+
</span>
|
|
10043
|
+
</a>
|
|
10044
|
+
|
|
10045
|
+
</li>
|
|
10046
|
+
|
|
10047
|
+
<li class="md-nav__item">
|
|
10048
|
+
<a href="#documentation-in-v244" class="md-nav__link">
|
|
10049
|
+
<span class="md-ellipsis">
|
|
10050
|
+
Documentation in v2.4.4
|
|
10051
|
+
</span>
|
|
10052
|
+
</a>
|
|
10053
|
+
|
|
10054
|
+
</li>
|
|
10055
|
+
|
|
10056
|
+
<li class="md-nav__item">
|
|
10057
|
+
<a href="#housekeeping-in-v244" class="md-nav__link">
|
|
10058
|
+
<span class="md-ellipsis">
|
|
10059
|
+
Housekeeping in v2.4.4
|
|
10060
|
+
</span>
|
|
10061
|
+
</a>
|
|
10062
|
+
|
|
10063
|
+
</li>
|
|
10064
|
+
|
|
10065
|
+
</ul>
|
|
10066
|
+
</nav>
|
|
10067
|
+
|
|
9930
10068
|
</li>
|
|
9931
10069
|
|
|
9932
10070
|
<li class="md-nav__item">
|
|
@@ -10381,6 +10519,59 @@
|
|
|
10381
10519
|
|
|
10382
10520
|
<!-- towncrier release notes start -->
|
|
10383
10521
|
|
|
10522
|
+
<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>
|
|
10523
|
+
<h3 id="added-in-v244">Added in v2.4.4<a class="headerlink" href="#added-in-v244" title="Permanent link">¶</a></h3>
|
|
10524
|
+
<ul>
|
|
10525
|
+
<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>
|
|
10526
|
+
<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>
|
|
10527
|
+
<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>
|
|
10528
|
+
<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>
|
|
10529
|
+
<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>
|
|
10530
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5851">#5851</a> - Added <code>q</code> search filter to <code>VRFPrefixAssignment</code> filterset.</li>
|
|
10531
|
+
<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>
|
|
10532
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6924">#6924</a> - Added optional VRF relationship to Virtual Device Context.</li>
|
|
10533
|
+
<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>
|
|
10534
|
+
<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>
|
|
10535
|
+
</ul>
|
|
10536
|
+
<h3 id="changed-in-v244">Changed in v2.4.4<a class="headerlink" href="#changed-in-v244" title="Permanent link">¶</a></h3>
|
|
10537
|
+
<ul>
|
|
10538
|
+
<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>
|
|
10539
|
+
</ul>
|
|
10540
|
+
<h3 id="fixed-in-v244">Fixed in v2.4.4<a class="headerlink" href="#fixed-in-v244" title="Permanent link">¶</a></h3>
|
|
10541
|
+
<ul>
|
|
10542
|
+
<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>
|
|
10543
|
+
<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>
|
|
10544
|
+
<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>
|
|
10545
|
+
<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>
|
|
10546
|
+
<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>
|
|
10547
|
+
<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>
|
|
10548
|
+
<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>
|
|
10549
|
+
<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>
|
|
10550
|
+
<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>
|
|
10551
|
+
<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>
|
|
10552
|
+
<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>
|
|
10553
|
+
<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>
|
|
10554
|
+
<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>
|
|
10555
|
+
<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>
|
|
10556
|
+
</ul>
|
|
10557
|
+
<h3 id="dependencies-in-v244">Dependencies in v2.4.4<a class="headerlink" href="#dependencies-in-v244" title="Permanent link">¶</a></h3>
|
|
10558
|
+
<ul>
|
|
10559
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6927">#6927</a> - Updated dependency <code>django-filter</code> to <code>~25.1</code>.</li>
|
|
10560
|
+
</ul>
|
|
10561
|
+
<h3 id="documentation-in-v244">Documentation in v2.4.4<a class="headerlink" href="#documentation-in-v244" title="Permanent link">¶</a></h3>
|
|
10562
|
+
<ul>
|
|
10563
|
+
<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>
|
|
10564
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6951">#6951</a> - Fixed typo in v2 migration documentation.</li>
|
|
10565
|
+
</ul>
|
|
10566
|
+
<h3 id="housekeeping-in-v244">Housekeeping in v2.4.4<a class="headerlink" href="#housekeeping-in-v244" title="Permanent link">¶</a></h3>
|
|
10567
|
+
<ul>
|
|
10568
|
+
<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>
|
|
10569
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6857">#6857</a> - Added <code>.yarn</code> directory to <code>.gitignore</code>.</li>
|
|
10570
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6857">#6857</a> - Changed CI for integration tests to use <code>--no-keepdb</code>.</li>
|
|
10571
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6858">#6858</a> - Fixed generation of performance test endpoints for Nautobot apps.</li>
|
|
10572
|
+
<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>
|
|
10573
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6943">#6943</a> - Updated <code>debug</code> invoke task to restore previous behavior.</li>
|
|
10574
|
+
</ul>
|
|
10384
10575
|
<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
10576
|
<h3 id="added-in-v243">Added in v2.4.3<a class="headerlink" href="#added-in-v243" title="Permanent link">¶</a></h3>
|
|
10386
10577
|
<ul>
|
|
@@ -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
|