nautobot 2.4.2__py3-none-any.whl → 2.4.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/circuits/templates/circuits/inc/circuit_termination.html +1 -1
- nautobot/circuits/tests/integration/test_circuit.py +135 -0
- nautobot/circuits/views.py +4 -1
- nautobot/cloud/api/views.py +3 -3
- nautobot/core/constants.py +0 -1
- nautobot/core/forms/__init__.py +2 -0
- nautobot/core/forms/forms.py +2 -1
- nautobot/core/forms/widgets.py +8 -0
- nautobot/core/management/commands/generate_performance_test_endpoints.py +268 -0
- nautobot/core/templates/generic/object_bulk_delete.html +1 -1
- nautobot/core/templates/generic/object_bulk_edit.html +1 -1
- nautobot/core/templates/generic/object_bulk_import.html +1 -1
- nautobot/core/templates/generic/object_create.html +5 -0
- nautobot/core/templates/generic/object_delete.html +1 -1
- nautobot/core/templates/generic/object_detail.html +1 -1
- nautobot/core/templates/generic/object_edit.html +1 -1
- nautobot/core/templates/inc/javascript.html +2 -0
- nautobot/core/templates/widgets/clearable_file.html +5 -0
- nautobot/core/templatetags/helpers.py +3 -3
- nautobot/core/testing/integration.py +37 -7
- nautobot/core/tests/test_commands.py +31 -0
- nautobot/core/tests/test_utils.py +17 -2
- nautobot/core/utils/lookup.py +12 -1
- nautobot/core/views/generic.py +9 -1
- nautobot/core/views/mixins.py +9 -1
- nautobot/dcim/api/views.py +11 -10
- nautobot/dcim/forms.py +3 -6
- nautobot/dcim/models/devices.py +1 -2
- nautobot/dcim/templates/dcim/cable_trace.html +4 -4
- nautobot/dcim/templates/dcim/consoleport.html +14 -4
- nautobot/dcim/templates/dcim/consoleserverport.html +14 -4
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +3 -3
- nautobot/dcim/templates/dcim/frontport.html +7 -2
- nautobot/dcim/templates/dcim/interface.html +9 -4
- nautobot/dcim/templates/dcim/powerfeed.html +8 -3
- nautobot/dcim/templates/dcim/poweroutlet.html +14 -4
- nautobot/dcim/templates/dcim/powerport.html +14 -4
- nautobot/dcim/templates/dcim/rearport.html +7 -2
- nautobot/dcim/tests/integration/test_fileinputpicker.py +87 -0
- nautobot/dcim/tests/test_models.py +1 -1
- nautobot/extras/api/views.py +2 -2
- nautobot/extras/forms/forms.py +4 -0
- nautobot/extras/jobs.py +8 -1
- nautobot/extras/templates/extras/job.html +1 -0
- nautobot/extras/tests/test_dynamicgroups.py +14 -0
- nautobot/extras/tests/test_views.py +197 -9
- nautobot/extras/utils.py +30 -0
- nautobot/extras/views.py +29 -14
- nautobot/ipam/api/views.py +3 -3
- nautobot/ipam/forms.py +2 -6
- nautobot/project-static/bootstrap-filestyle-1.2.3/bootstrap-filestyle.min.js +11 -0
- nautobot/project-static/docs/apps/index.html +1 -1
- nautobot/project-static/docs/apps/nautobot-apps.html +1 -1
- nautobot/project-static/docs/development/apps/api/models/graphql.html +9 -9
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +2 -2
- nautobot/project-static/docs/development/apps/api/setup.html +1 -1
- nautobot/project-static/docs/development/apps/migration/code-updates.html +6 -5
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +2 -2
- nautobot/project-static/docs/development/apps/migration/from-v1.html +3 -3
- nautobot/project-static/docs/development/core/best-practices.html +1 -1
- nautobot/project-static/docs/development/core/bootstrap-ui.html +1 -1
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +7 -7
- nautobot/project-static/docs/development/core/getting-started.html +2 -2
- nautobot/project-static/docs/development/core/index.html +1 -1
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +3 -3
- nautobot/project-static/docs/development/core/model-checklist.html +1 -1
- nautobot/project-static/docs/development/core/navigation-menu.html +1 -1
- nautobot/project-static/docs/development/core/release-checklist.html +1 -1
- nautobot/project-static/docs/development/core/settings.html +1 -1
- nautobot/project-static/docs/development/core/style-guide.html +4 -4
- nautobot/project-static/docs/development/jobs/index.html +8 -1
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +3 -2
- nautobot/project-static/docs/index.html +3 -2
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.0.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.1.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +3 -3
- nautobot/project-static/docs/release-notes/version-1.3.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.4.html +17 -17
- nautobot/project-static/docs/release-notes/version-1.5.html +8 -8
- nautobot/project-static/docs/release-notes/version-1.6.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.0.html +10 -10
- nautobot/project-static/docs/release-notes/version-2.1.html +7 -7
- nautobot/project-static/docs/release-notes/version-2.2.html +1 -1
- nautobot/project-static/docs/release-notes/version-2.3.html +4 -4
- nautobot/project-static/docs/release-notes/version-2.4.html +188 -0
- 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/authentication/ldap.html +3 -3
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +4 -4
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +5 -5
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +4 -4
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +15 -15
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +6 -6
- nautobot/project-static/docs/user-guide/administration/installation/services.html +1 -1
- nautobot/project-static/docs/user-guide/administration/security/index.html +1 -1
- nautobot/project-static/docs/user-guide/administration/security/notices.html +1 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +11 -8
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +12 -12
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +6 -6
- nautobot/project-static/js/dropdown.js +28 -0
- nautobot/tenancy/forms.py +9 -0
- nautobot/tenancy/templates/tenancy/tenant_create.html +21 -0
- nautobot/tenancy/templates/tenancy/tenant_edit.html +2 -21
- nautobot/tenancy/templates/tenancy/tenantgroup.html +2 -44
- nautobot/tenancy/templates/tenancy/tenantgroup_retrieve.html +1 -0
- nautobot/tenancy/tests/test_views.py +5 -1
- nautobot/tenancy/urls.py +7 -79
- nautobot/tenancy/views.py +51 -80
- nautobot/wireless/api/serializers.py +6 -1
- nautobot/wireless/api/views.py +3 -3
- nautobot/wireless/tests/test_api.py +5 -0
- {nautobot-2.4.2.dist-info → nautobot-2.4.3.dist-info}/METADATA +8 -8
- {nautobot-2.4.2.dist-info → nautobot-2.4.3.dist-info}/RECORD +132 -123
- {nautobot-2.4.2.dist-info → nautobot-2.4.3.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.2.dist-info → nautobot-2.4.3.dist-info}/NOTICE +0 -0
- {nautobot-2.4.2.dist-info → nautobot-2.4.3.dist-info}/WHEEL +0 -0
- {nautobot-2.4.2.dist-info → nautobot-2.4.3.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="#v243-2025-02-18" class="md-nav__link">
|
|
8768
|
+
<span class="md-ellipsis">
|
|
8769
|
+
v2.4.3 (2025-02-18)
|
|
8770
|
+
</span>
|
|
8771
|
+
</a>
|
|
8772
|
+
|
|
8773
|
+
<nav class="md-nav" aria-label="v2.4.3 (2025-02-18)">
|
|
8774
|
+
<ul class="md-nav__list">
|
|
8775
|
+
|
|
8776
|
+
<li class="md-nav__item">
|
|
8777
|
+
<a href="#added-in-v243" class="md-nav__link">
|
|
8778
|
+
<span class="md-ellipsis">
|
|
8779
|
+
Added in v2.4.3
|
|
8780
|
+
</span>
|
|
8781
|
+
</a>
|
|
8782
|
+
|
|
8783
|
+
</li>
|
|
8784
|
+
|
|
8785
|
+
<li class="md-nav__item">
|
|
8786
|
+
<a href="#changed-in-v243" class="md-nav__link">
|
|
8787
|
+
<span class="md-ellipsis">
|
|
8788
|
+
Changed in v2.4.3
|
|
8789
|
+
</span>
|
|
8790
|
+
</a>
|
|
8791
|
+
|
|
8792
|
+
</li>
|
|
8793
|
+
|
|
8794
|
+
<li class="md-nav__item">
|
|
8795
|
+
<a href="#fixed-in-v243" class="md-nav__link">
|
|
8796
|
+
<span class="md-ellipsis">
|
|
8797
|
+
Fixed in v2.4.3
|
|
8798
|
+
</span>
|
|
8799
|
+
</a>
|
|
8800
|
+
|
|
8801
|
+
</li>
|
|
8802
|
+
|
|
8803
|
+
<li class="md-nav__item">
|
|
8804
|
+
<a href="#dependencies-in-v243" class="md-nav__link">
|
|
8805
|
+
<span class="md-ellipsis">
|
|
8806
|
+
Dependencies in v2.4.3
|
|
8807
|
+
</span>
|
|
8808
|
+
</a>
|
|
8809
|
+
|
|
8810
|
+
</li>
|
|
8811
|
+
|
|
8812
|
+
<li class="md-nav__item">
|
|
8813
|
+
<a href="#documentation-in-v243" class="md-nav__link">
|
|
8814
|
+
<span class="md-ellipsis">
|
|
8815
|
+
Documentation in v2.4.3
|
|
8816
|
+
</span>
|
|
8817
|
+
</a>
|
|
8818
|
+
|
|
8819
|
+
</li>
|
|
8820
|
+
|
|
8821
|
+
<li class="md-nav__item">
|
|
8822
|
+
<a href="#housekeeping-in-v243" class="md-nav__link">
|
|
8823
|
+
<span class="md-ellipsis">
|
|
8824
|
+
Housekeeping in v2.4.3
|
|
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">
|
|
@@ -9858,6 +9927,75 @@
|
|
|
9858
9927
|
</ul>
|
|
9859
9928
|
</nav>
|
|
9860
9929
|
|
|
9930
|
+
</li>
|
|
9931
|
+
|
|
9932
|
+
<li class="md-nav__item">
|
|
9933
|
+
<a href="#v243-2025-02-18" class="md-nav__link">
|
|
9934
|
+
<span class="md-ellipsis">
|
|
9935
|
+
v2.4.3 (2025-02-18)
|
|
9936
|
+
</span>
|
|
9937
|
+
</a>
|
|
9938
|
+
|
|
9939
|
+
<nav class="md-nav" aria-label="v2.4.3 (2025-02-18)">
|
|
9940
|
+
<ul class="md-nav__list">
|
|
9941
|
+
|
|
9942
|
+
<li class="md-nav__item">
|
|
9943
|
+
<a href="#added-in-v243" class="md-nav__link">
|
|
9944
|
+
<span class="md-ellipsis">
|
|
9945
|
+
Added in v2.4.3
|
|
9946
|
+
</span>
|
|
9947
|
+
</a>
|
|
9948
|
+
|
|
9949
|
+
</li>
|
|
9950
|
+
|
|
9951
|
+
<li class="md-nav__item">
|
|
9952
|
+
<a href="#changed-in-v243" class="md-nav__link">
|
|
9953
|
+
<span class="md-ellipsis">
|
|
9954
|
+
Changed in v2.4.3
|
|
9955
|
+
</span>
|
|
9956
|
+
</a>
|
|
9957
|
+
|
|
9958
|
+
</li>
|
|
9959
|
+
|
|
9960
|
+
<li class="md-nav__item">
|
|
9961
|
+
<a href="#fixed-in-v243" class="md-nav__link">
|
|
9962
|
+
<span class="md-ellipsis">
|
|
9963
|
+
Fixed in v2.4.3
|
|
9964
|
+
</span>
|
|
9965
|
+
</a>
|
|
9966
|
+
|
|
9967
|
+
</li>
|
|
9968
|
+
|
|
9969
|
+
<li class="md-nav__item">
|
|
9970
|
+
<a href="#dependencies-in-v243" class="md-nav__link">
|
|
9971
|
+
<span class="md-ellipsis">
|
|
9972
|
+
Dependencies in v2.4.3
|
|
9973
|
+
</span>
|
|
9974
|
+
</a>
|
|
9975
|
+
|
|
9976
|
+
</li>
|
|
9977
|
+
|
|
9978
|
+
<li class="md-nav__item">
|
|
9979
|
+
<a href="#documentation-in-v243" class="md-nav__link">
|
|
9980
|
+
<span class="md-ellipsis">
|
|
9981
|
+
Documentation in v2.4.3
|
|
9982
|
+
</span>
|
|
9983
|
+
</a>
|
|
9984
|
+
|
|
9985
|
+
</li>
|
|
9986
|
+
|
|
9987
|
+
<li class="md-nav__item">
|
|
9988
|
+
<a href="#housekeeping-in-v243" class="md-nav__link">
|
|
9989
|
+
<span class="md-ellipsis">
|
|
9990
|
+
Housekeeping in v2.4.3
|
|
9991
|
+
</span>
|
|
9992
|
+
</a>
|
|
9993
|
+
|
|
9994
|
+
</li>
|
|
9995
|
+
|
|
9996
|
+
</ul>
|
|
9997
|
+
</nav>
|
|
9998
|
+
|
|
9861
9999
|
</li>
|
|
9862
10000
|
|
|
9863
10001
|
<li class="md-nav__item">
|
|
@@ -10243,6 +10381,56 @@
|
|
|
10243
10381
|
|
|
10244
10382
|
<!-- towncrier release notes start -->
|
|
10245
10383
|
|
|
10384
|
+
<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
|
+
<h3 id="added-in-v243">Added in v2.4.3<a class="headerlink" href="#added-in-v243" title="Permanent link">¶</a></h3>
|
|
10386
|
+
<ul>
|
|
10387
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6836">#6836</a> - Added management command <code>generate_performance_test_endpoints</code> to generate performance test endpoints.</li>
|
|
10388
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6865">#6865</a> - Added Bulk Edit functionality for the Tenant Group model.</li>
|
|
10389
|
+
</ul>
|
|
10390
|
+
<h3 id="changed-in-v243">Changed in v2.4.3<a class="headerlink" href="#changed-in-v243" title="Permanent link">¶</a></h3>
|
|
10391
|
+
<ul>
|
|
10392
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
|
|
10393
|
+
</ul>
|
|
10394
|
+
<h3 id="fixed-in-v243">Fixed in v2.4.3<a class="headerlink" href="#fixed-in-v243" title="Permanent link">¶</a></h3>
|
|
10395
|
+
<ul>
|
|
10396
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5539">#5539</a> - Fixed incorrect error message in Controller <code>clean()</code> method.</li>
|
|
10397
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6113">#6113</a> - Menus inside responsive tables are fixed to be visible by dynamically mounting them to the body and positioning them absolutely.</li>
|
|
10398
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6667">#6667</a> - Adds custom clearable file input form widget.</li>
|
|
10399
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6764">#6764</a> - Fixed global and user default saved views incorrectly overriding filtered views.</li>
|
|
10400
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6785">#6785</a> - Fixed Saved Views throwing an unexpected error when they contain boolean filter parameters.</li>
|
|
10401
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6805">#6805</a> - Fixed an exception when saving a Dynamic Group of IP Addresses.</li>
|
|
10402
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6806">#6806</a> - Fixed a bug that prevented users from accessing the detail views of Location related Dynamic Groups.</li>
|
|
10403
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6836">#6836</a> - Fixed various Component Template models incorrectly assume <code>Notes</code> support in the API.</li>
|
|
10404
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6836">#6836</a> - Fixed CloudNetworkPrefixAssignment, CloudServiceNetworkAssignment, InterfaceVDCAssignment, JobQueueAssignment, ObjectMetadata, PrefixLocationAssignment, VLANLocationAssignment, ControllerManagedDeviceGroupWirelessNetworkAssignment, and ControllerManagedDeviceGroupRadioProfileAssignment models incorrectly assume <code>Notes</code> support in the API.</li>
|
|
10405
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6841">#6841</a> - Fixed missing termination side when creating from Circuit detail page.</li>
|
|
10406
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6860">#6860</a> - Fixed incorrect marking of <code>channel_width</code> and <code>allowed_channel_list</code> as required fields in the Wireless Radio Profile REST API.</li>
|
|
10407
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6901">#6901</a> - Fixed incorrect rendering of cable traces in the case where Modules are part of the hardware definition.</li>
|
|
10408
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6901">#6901</a> - Fixed incorrect rendering of device-component (Interface, Front Port, etc.) detail views when Modules are involved.</li>
|
|
10409
|
+
</ul>
|
|
10410
|
+
<h3 id="dependencies-in-v243">Dependencies in v2.4.3<a class="headerlink" href="#dependencies-in-v243" title="Permanent link">¶</a></h3>
|
|
10411
|
+
<ul>
|
|
10412
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6658">#6658</a> - Updated dependency <code>django-constance</code> to <code>~4.3.0</code>.</li>
|
|
10413
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6658">#6658</a> - Updated dependency <code>kubernetes</code> to <code>^32.0.0</code>.</li>
|
|
10414
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6869">#6869</a> - Updated dependency <code>Django</code> to <code>~4.2.19</code>.</li>
|
|
10415
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6869">#6869</a> - Updated dependency <code>django-structlog</code> to <code>^9.0.1</code>.</li>
|
|
10416
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6894">#6894</a> - Updated dependency <code>social-auth-app-django</code> to <code>~5.4.3</code>.</li>
|
|
10417
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6894">#6894</a> - Updated dependency <code>social-auth-core</code> to <code>~4.5.6</code>.</li>
|
|
10418
|
+
</ul>
|
|
10419
|
+
<h3 id="documentation-in-v243">Documentation in v2.4.3<a class="headerlink" href="#documentation-in-v243" title="Permanent link">¶</a></h3>
|
|
10420
|
+
<ul>
|
|
10421
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6894">#6894</a> - Enabled PyMarkdown <code>proper-names</code> checking for some relevant proper nouns and corrected documentation accordingly.</li>
|
|
10422
|
+
</ul>
|
|
10423
|
+
<h3 id="housekeeping-in-v243">Housekeeping in v2.4.3<a class="headerlink" href="#housekeeping-in-v243" title="Permanent link">¶</a></h3>
|
|
10424
|
+
<ul>
|
|
10425
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6618">#6618</a> - Updated GitHub Actions to use ubuntu-24.04 since ubuntu-20.04 is deprecated.</li>
|
|
10426
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6658">#6658</a> - Updated development dependency <code>faker</code> to <code>~36.1.0</code>.</li>
|
|
10427
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6658">#6658</a> - Updated development dependency <code>django-debug-toolbar</code> to <code>~5.0.1</code>.</li>
|
|
10428
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6846">#6846</a> - Fixed integration test task to allow passing in pattern match.</li>
|
|
10429
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6865">#6865</a> - Refactored <code>tenancy</code> app to use <code>NautobotUIViewSet</code> and UI component framework.</li>
|
|
10430
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6869">#6869</a> - Updated development dependency <code>factory-boy</code> to <code>~3.3.3</code>.</li>
|
|
10431
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6894">#6894</a> - Updated development dependency <code>faker</code> to <code>~36.1.1</code>.</li>
|
|
10432
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6894">#6894</a> - Updated linting dependency <code>pymarkdownlnt</code> to <code>~0.9.28</code>.</li>
|
|
10433
|
+
</ul>
|
|
10246
10434
|
<h2 id="v242-2025-02-03">v2.4.2 (2025-02-03)<a class="headerlink" href="#v242-2025-02-03" title="Permanent link">¶</a></h2>
|
|
10247
10435
|
<h3 id="added-in-v242">Added in v2.4.2<a class="headerlink" href="#added-in-v242" title="Permanent link">¶</a></h3>
|
|
10248
10436
|
<ul>
|