nautobot 2.4.2__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.
Files changed (267) hide show
  1. nautobot/apps/filters.py +2 -0
  2. nautobot/circuits/filters.py +1 -1
  3. nautobot/circuits/templates/circuits/inc/circuit_termination.html +1 -1
  4. nautobot/circuits/tests/integration/test_circuit.py +135 -0
  5. nautobot/circuits/tests/test_models.py +5 -3
  6. nautobot/circuits/views.py +4 -1
  7. nautobot/cloud/api/views.py +3 -3
  8. nautobot/cloud/filters.py +3 -6
  9. nautobot/cloud/tests/test_filters.py +21 -0
  10. nautobot/core/admin.py +2 -0
  11. nautobot/core/constants.py +0 -1
  12. nautobot/core/forms/__init__.py +2 -0
  13. nautobot/core/forms/forms.py +2 -1
  14. nautobot/core/forms/widgets.py +8 -0
  15. nautobot/core/jobs/__init__.py +2 -1
  16. nautobot/core/management/commands/generate_performance_test_endpoints.py +271 -0
  17. nautobot/core/models/utils.py +6 -1
  18. nautobot/core/templates/generic/object_bulk_delete.html +1 -1
  19. nautobot/core/templates/generic/object_bulk_edit.html +1 -1
  20. nautobot/core/templates/generic/object_bulk_import.html +1 -1
  21. nautobot/core/templates/generic/object_create.html +5 -0
  22. nautobot/core/templates/generic/object_delete.html +1 -1
  23. nautobot/core/templates/generic/object_detail.html +1 -1
  24. nautobot/core/templates/generic/object_edit.html +1 -1
  25. nautobot/core/templates/inc/javascript.html +3 -0
  26. nautobot/core/templates/widgets/clearable_file.html +5 -0
  27. nautobot/core/templatetags/helpers.py +3 -3
  28. nautobot/core/templatetags/ui_framework.py +20 -4
  29. nautobot/core/testing/forms.py +1 -1
  30. nautobot/core/testing/integration.py +37 -7
  31. nautobot/core/tests/test_api.py +1 -1
  32. nautobot/core/tests/test_commands.py +31 -0
  33. nautobot/core/tests/test_graphql.py +3 -3
  34. nautobot/core/tests/test_jobs.py +4 -1
  35. nautobot/core/tests/test_utils.py +17 -2
  36. nautobot/core/ui/object_detail.py +1 -1
  37. nautobot/core/utils/lookup.py +12 -1
  38. nautobot/core/views/generic.py +9 -1
  39. nautobot/core/views/mixins.py +9 -1
  40. nautobot/dcim/api/serializers.py +36 -0
  41. nautobot/dcim/api/views.py +12 -11
  42. nautobot/dcim/elevations.py +17 -4
  43. nautobot/dcim/factory.py +9 -1
  44. nautobot/dcim/filters/__init__.py +27 -1
  45. nautobot/dcim/forms.py +16 -7
  46. nautobot/dcim/models/devices.py +12 -7
  47. nautobot/dcim/signals.py +26 -0
  48. nautobot/dcim/templates/dcim/cable_trace.html +4 -4
  49. nautobot/dcim/templates/dcim/consoleport.html +14 -4
  50. nautobot/dcim/templates/dcim/consoleserverport.html +14 -4
  51. nautobot/dcim/templates/dcim/device/lldp_neighbors.html +3 -3
  52. nautobot/dcim/templates/dcim/frontport.html +7 -2
  53. nautobot/dcim/templates/dcim/interface.html +9 -4
  54. nautobot/dcim/templates/dcim/powerfeed.html +8 -3
  55. nautobot/dcim/templates/dcim/poweroutlet.html +14 -4
  56. nautobot/dcim/templates/dcim/powerport.html +14 -4
  57. nautobot/dcim/templates/dcim/rearport.html +7 -2
  58. nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +0 -62
  59. nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +6 -0
  60. nautobot/dcim/tests/integration/test_fileinputpicker.py +87 -0
  61. nautobot/dcim/tests/test_api.py +176 -0
  62. nautobot/dcim/tests/test_filters.py +56 -3
  63. nautobot/dcim/tests/test_models.py +41 -1
  64. nautobot/dcim/views.py +24 -14
  65. nautobot/extras/api/mixins.py +1 -1
  66. nautobot/extras/api/views.py +4 -4
  67. nautobot/extras/filters/__init__.py +4 -0
  68. nautobot/extras/forms/forms.py +4 -0
  69. nautobot/extras/jobs.py +8 -1
  70. nautobot/extras/models/datasources.py +7 -3
  71. nautobot/extras/plugins/__init__.py +26 -1
  72. nautobot/extras/templates/extras/inc/jobresult.html +12 -13
  73. nautobot/extras/templates/extras/job.html +1 -0
  74. nautobot/extras/templates/extras/objectchange.html +28 -12
  75. nautobot/extras/tests/test_api.py +16 -15
  76. nautobot/extras/tests/test_dynamicgroups.py +14 -0
  77. nautobot/extras/tests/test_filters.py +2 -0
  78. nautobot/extras/tests/test_plugins.py +32 -1
  79. nautobot/extras/tests/test_views.py +209 -11
  80. nautobot/extras/utils.py +30 -0
  81. nautobot/extras/views.py +32 -14
  82. nautobot/ipam/api/serializers.py +7 -8
  83. nautobot/ipam/api/views.py +5 -5
  84. nautobot/ipam/factory.py +27 -8
  85. nautobot/ipam/filters.py +67 -29
  86. nautobot/ipam/formfields.py +51 -0
  87. nautobot/ipam/forms.py +15 -7
  88. nautobot/ipam/migrations/0051_added_optional_vrf_relationship_to_vdc.py +41 -0
  89. nautobot/ipam/models.py +63 -5
  90. nautobot/ipam/tables.py +21 -7
  91. nautobot/ipam/tests/test_api.py +107 -66
  92. nautobot/ipam/tests/test_filters.py +145 -5
  93. nautobot/ipam/tests/test_views.py +15 -2
  94. nautobot/project-static/bootstrap-filestyle-1.2.3/bootstrap-filestyle.min.js +11 -0
  95. nautobot/project-static/css/base.css +11 -0
  96. nautobot/project-static/css/dark.css +2 -1
  97. nautobot/project-static/docs/apps/index.html +1 -1
  98. nautobot/project-static/docs/apps/nautobot-apps.html +1 -1
  99. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +62 -0
  100. nautobot/project-static/docs/development/apps/api/configuration-view.html +0 -3
  101. nautobot/project-static/docs/development/apps/api/models/graphql.html +9 -13
  102. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +94 -1
  103. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +2 -5
  104. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +0 -3
  105. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +0 -3
  106. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +0 -3
  107. nautobot/project-static/docs/development/apps/api/prometheus.html +0 -3
  108. nautobot/project-static/docs/development/apps/api/setup.html +1 -1
  109. nautobot/project-static/docs/development/apps/api/testing.html +0 -6
  110. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +0 -3
  111. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +0 -3
  112. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +0 -3
  113. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +0 -3
  114. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +1 -7
  115. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +0 -7
  116. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +0 -4
  117. nautobot/project-static/docs/development/apps/api/views/notes.html +0 -3
  118. nautobot/project-static/docs/development/apps/index.html +2 -35
  119. nautobot/project-static/docs/development/apps/migration/code-updates.html +7 -6
  120. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +2 -2
  121. nautobot/project-static/docs/development/apps/migration/from-v1.html +3 -3
  122. nautobot/project-static/docs/development/core/application-registry.html +0 -6
  123. nautobot/project-static/docs/development/core/best-practices.html +1 -28
  124. nautobot/project-static/docs/development/core/bootstrap-ui.html +1 -1
  125. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +65 -11
  126. nautobot/project-static/docs/development/core/getting-started.html +14 -18
  127. nautobot/project-static/docs/development/core/homepage.html +0 -3
  128. nautobot/project-static/docs/development/core/index.html +1 -1
  129. nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +3 -3
  130. nautobot/project-static/docs/development/core/model-checklist.html +1 -1
  131. nautobot/project-static/docs/development/core/navigation-menu.html +1 -1
  132. nautobot/project-static/docs/development/core/release-checklist.html +1 -1
  133. nautobot/project-static/docs/development/core/settings.html +1 -1
  134. nautobot/project-static/docs/development/core/style-guide.html +4 -9
  135. nautobot/project-static/docs/development/core/templates.html +0 -3
  136. nautobot/project-static/docs/development/core/testing.html +0 -9
  137. nautobot/project-static/docs/development/jobs/index.html +11 -30
  138. nautobot/project-static/docs/development/jobs/migration/from-v1.html +3 -2
  139. nautobot/project-static/docs/index.html +3 -2
  140. nautobot/project-static/docs/objects.inv +0 -0
  141. nautobot/project-static/docs/overview/application_stack.html +2 -20
  142. nautobot/project-static/docs/release-notes/version-1.0.html +2 -2
  143. nautobot/project-static/docs/release-notes/version-1.1.html +2 -2
  144. nautobot/project-static/docs/release-notes/version-1.2.html +3 -3
  145. nautobot/project-static/docs/release-notes/version-1.3.html +1 -1
  146. nautobot/project-static/docs/release-notes/version-1.4.html +17 -17
  147. nautobot/project-static/docs/release-notes/version-1.5.html +8 -8
  148. nautobot/project-static/docs/release-notes/version-1.6.html +4 -4
  149. nautobot/project-static/docs/release-notes/version-2.0.html +10 -10
  150. nautobot/project-static/docs/release-notes/version-2.1.html +7 -7
  151. nautobot/project-static/docs/release-notes/version-2.2.html +1 -1
  152. nautobot/project-static/docs/release-notes/version-2.3.html +4 -4
  153. nautobot/project-static/docs/release-notes/version-2.4.html +379 -0
  154. nautobot/project-static/docs/requirements.txt +1 -1
  155. nautobot/project-static/docs/search/search_index.json +1 -1
  156. nautobot/project-static/docs/sitemap.xml +290 -290
  157. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  158. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +3 -3
  159. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +4 -4
  160. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +1 -1
  161. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +3 -13
  162. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +5 -5
  163. nautobot/project-static/docs/user-guide/administration/guides/docker.html +3 -18
  164. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +1 -1
  165. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +4 -4
  166. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +15 -15
  167. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +2 -2
  168. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +1 -1
  169. nautobot/project-static/docs/user-guide/administration/installation/index.html +0 -16
  170. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +1 -1
  171. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +7 -10
  172. nautobot/project-static/docs/user-guide/administration/installation/services.html +1 -12
  173. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +3 -3
  174. nautobot/project-static/docs/user-guide/administration/security/index.html +1 -1
  175. nautobot/project-static/docs/user-guide/administration/security/notices.html +1 -0
  176. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +5 -35
  177. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +1 -1
  178. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +1 -1
  179. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +12 -9
  180. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +0 -4
  181. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +0 -3
  182. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +0 -4
  183. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +0 -4
  184. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +0 -4
  185. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +0 -4
  186. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +0 -4
  187. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +0 -4
  188. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +0 -3
  189. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +0 -4
  190. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +0 -4
  191. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +0 -4
  192. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +1 -17
  193. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +0 -3
  194. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +0 -4
  195. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +0 -4
  196. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +0 -3
  197. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +1 -7
  198. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +0 -4
  199. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +0 -4
  200. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +0 -4
  201. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +0 -4
  202. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +0 -4
  203. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +0 -4
  204. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +0 -4
  205. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +0 -6
  206. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +0 -3
  207. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +0 -4
  208. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +0 -4
  209. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +0 -8
  210. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +15 -15
  211. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +1 -1
  212. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +0 -6
  213. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +0 -3
  214. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +3 -15
  215. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +1 -27
  216. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +0 -8
  217. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +3 -6
  218. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +0 -8
  219. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +0 -7
  220. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +0 -3
  221. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +0 -3
  222. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +2 -2
  223. nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +6 -6
  224. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +0 -14
  225. nautobot/project-static/docs/user-guide/platform-functionality/note.html +0 -3
  226. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +1 -10
  227. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +0 -3
  228. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +0 -14
  229. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +0 -19
  230. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +3 -9
  231. nautobot/project-static/docs/user-guide/platform-functionality/status.html +0 -8
  232. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +0 -4
  233. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +1 -13
  234. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +0 -5
  235. nautobot/project-static/js/dropdown.js +28 -0
  236. nautobot/project-static/js/editor.js +292 -0
  237. nautobot/project-static/monaco-editor-0.52.2/README.md +81 -0
  238. nautobot/project-static/monaco-editor-0.52.2/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
  239. nautobot/project-static/monaco-editor-0.52.2/vs/base/worker/workerMain.js +31 -0
  240. nautobot/project-static/monaco-editor-0.52.2/vs/basic-languages/xml/xml.js +10 -0
  241. nautobot/project-static/monaco-editor-0.52.2/vs/basic-languages/yaml/yaml.js +10 -0
  242. nautobot/project-static/monaco-editor-0.52.2/vs/editor/editor.main.css +8 -0
  243. nautobot/project-static/monaco-editor-0.52.2/vs/editor/editor.main.js +798 -0
  244. nautobot/project-static/monaco-editor-0.52.2/vs/language/json/jsonMode.js +19 -0
  245. nautobot/project-static/monaco-editor-0.52.2/vs/language/json/jsonWorker.js +42 -0
  246. nautobot/project-static/monaco-editor-0.52.2/vs/loader.js +11 -0
  247. nautobot/tenancy/filters/__init__.py +3 -5
  248. nautobot/tenancy/forms.py +9 -0
  249. nautobot/tenancy/templates/tenancy/tenant_create.html +21 -0
  250. nautobot/tenancy/templates/tenancy/tenant_edit.html +2 -21
  251. nautobot/tenancy/templates/tenancy/tenantgroup.html +2 -44
  252. nautobot/tenancy/templates/tenancy/tenantgroup_retrieve.html +1 -0
  253. nautobot/tenancy/tests/test_filters.py +10 -0
  254. nautobot/tenancy/tests/test_views.py +5 -1
  255. nautobot/tenancy/urls.py +7 -79
  256. nautobot/tenancy/views.py +51 -80
  257. nautobot/virtualization/views.py +0 -1
  258. nautobot/wireless/api/serializers.py +6 -1
  259. nautobot/wireless/api/views.py +3 -3
  260. nautobot/wireless/tables.py +9 -4
  261. nautobot/wireless/tests/test_api.py +5 -9
  262. {nautobot-2.4.2.dist-info → nautobot-2.4.4.dist-info}/METADATA +9 -9
  263. {nautobot-2.4.2.dist-info → nautobot-2.4.4.dist-info}/RECORD +267 -246
  264. {nautobot-2.4.2.dist-info → nautobot-2.4.4.dist-info}/LICENSE.txt +0 -0
  265. {nautobot-2.4.2.dist-info → nautobot-2.4.4.dist-info}/NOTICE +0 -0
  266. {nautobot-2.4.2.dist-info → nautobot-2.4.4.dist-info}/WHEEL +0 -0
  267. {nautobot-2.4.2.dist-info → nautobot-2.4.4.dist-info}/entry_points.txt +0 -0
@@ -12003,7 +12003,7 @@
12003
12003
  <p>This document describes all new features and changes in Nautobot 2.0.</p>
12004
12004
  <div class="admonition note">
12005
12005
  <p class="admonition-title">Note</p>
12006
- <p>Please thoroughly review the release overview below to see what changes may affect you during upgrade. Our <a href="../user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html">"Upgrading from Nautobot v1.X"</a> guide provides a lot of information around pre- and post-migration helpers we have written that should assist you in a successful 2.0 upgrade. If you have any questions, please reach out to us on the <strong>#nautobot</strong> channel on <a href="https://slack.networktocode.com/">Network to Code's Slack community</a> or <a href="https://github.com/nautobot/nautobot/discussions">GitHub Discussions</a>.</p>
12006
+ <p>Please thoroughly review the release overview below to see what changes may affect you during upgrade. Our <a href="../user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html">"Upgrading from Nautobot v1.X"</a> guide provides a lot of information around pre- and post-migration helpers we have written that should assist you in a successful 2.0 upgrade. If you have any questions, please reach out to us on the <code>#nautobot</code> channel on <a href="https://slack.networktocode.com/">Network to Code's Slack community</a> or <a href="https://github.com/nautobot/nautobot/discussions">GitHub Discussions</a>.</p>
12007
12007
  </div>
12008
12008
  <h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">&para;</a></h2>
12009
12009
  <h3 id="added">Added<a class="headerlink" href="#added" title="Permanent link">&para;</a></h3>
@@ -12224,7 +12224,7 @@
12224
12224
  <p>This change may introduce breaking changes to your existing <code>DynamicGroup</code> filters, <code>ObjectPermission</code> filters, <code>Relationship</code> filters, and any other saved references to these fields. You should review any existing instances of these models before and after upgrading your production environment for any potentially subtle change. Please refer to the <a href="../user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html#renamed-filter-fields">Upgrading from Nautobot v1.X</a> guide for more details.</p>
12225
12225
  </div>
12226
12226
  <p>Some filter fields have been renamed to reflect their functionalities better.</p>
12227
- <p>For example in v1.X, to filter <code>FrontPorts</code> that has a cable attached in the UI or make changes to them via Rest API, you would use the <code>cabled</code> filter:</p>
12227
+ <p>For example in v1.X, to filter <code>FrontPorts</code> that has a cable attached in the UI or make changes to them via REST API, you would use the <code>cabled</code> filter:</p>
12228
12228
  <p><code>/dcim/front-ports/?cabled=True</code></p>
12229
12229
  <p>Now in v2.x, you would instead use the <code>has_cable</code> filter which has a more user-friendly name:</p>
12230
12230
  <p><code>/dcim/front-ports/?has_cable=True</code></p>
@@ -12309,11 +12309,11 @@
12309
12309
  <li><a href="https://github.com/nautobot/nautobot/issues/3488">#3488</a> - Corrected positioning and style of "Collapse All" button in Jobs list view.</li>
12310
12310
  <li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
12311
12311
  <li><a href="https://github.com/nautobot/nautobot/issues/4179">#4179</a> - Fixed error in creation of storage directories (<code>GIT_ROOT</code>, <code>JOBS_ROOT</code>, <code>MEDIA_ROOT</code>, etc.) when running tests in parallel.</li>
12312
- <li><a href="https://github.com/nautobot/nautobot/issues/4747">#4747</a> - Fixed an issue when appending nautobot version to a static file path with existing query parameters resulted in an invalid URL generation.</li>
12312
+ <li><a href="https://github.com/nautobot/nautobot/issues/4747">#4747</a> - Fixed an issue when appending Nautobot version to a static file path with existing query parameters resulted in an invalid URL generation.</li>
12313
12313
  <li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed incorrect link in TenantGroup template.</li>
12314
12314
  <li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed ConfigContext not applied to nested TenantGroup objects.</li>
12315
12315
  <li><a href="https://github.com/nautobot/nautobot/issues/4819">#4819</a> - Fixed empty assignment field in IPAddress detail view.</li>
12316
- <li><a href="https://github.com/nautobot/nautobot/issues/4845">#4845</a> - Fixed issues with installing an app that is nested inside a python package (e.g. <code>my_apps/app1/</code> + <code>my_apps/app2/</code>), and lookups for UI view testing.</li>
12316
+ <li><a href="https://github.com/nautobot/nautobot/issues/4845">#4845</a> - Fixed issues with installing an app that is nested inside a Python package (e.g. <code>my_apps/app1/</code> + <code>my_apps/app2/</code>), and lookups for UI view testing.</li>
12317
12317
  <li><a href="https://github.com/nautobot/nautobot/issues/4851">#4851</a> - Fixed an exception when trying to access computed fields via GraphQL.</li>
12318
12318
  <li><a href="https://github.com/nautobot/nautobot/issues/4854">#4854</a> - Fixed GraphQL UI unable to load when some ComputedField instances have non-graphql-safe keys.</li>
12319
12319
  <li><a href="https://github.com/nautobot/nautobot/issues/4856">#4856</a> - Fix ConfigContext application logic for Locations and TenantGroups.</li>
@@ -12498,7 +12498,7 @@
12498
12498
  </ul>
12499
12499
  <h3 id="housekeeping-in-v202">Housekeeping in v2.0.2<a class="headerlink" href="#housekeeping-in-v202" title="Permanent link">&para;</a></h3>
12500
12500
  <ul>
12501
- <li><a href="https://github.com/nautobot/nautobot/issues/4611">#4611</a> - Updated pylint to use multiple threads.</li>
12501
+ <li><a href="https://github.com/nautobot/nautobot/issues/4611">#4611</a> - Updated Pylint to use multiple threads.</li>
12502
12502
  </ul>
12503
12503
  <h2 id="v201-2023-10-04">v2.0.1 (2023-10-04)<a class="headerlink" href="#v201-2023-10-04" title="Permanent link">&para;</a></h2>
12504
12504
  <h3 id="fixed-in-v201">Fixed in v2.0.1<a class="headerlink" href="#fixed-in-v201" title="Permanent link">&para;</a></h3>
@@ -12671,7 +12671,7 @@
12671
12671
  <li><a href="https://github.com/nautobot/nautobot/issues/4249">#4249</a> - Added section on many-to-many relationships in the REST API overview docs.</li>
12672
12672
  <li><a href="https://github.com/nautobot/nautobot/issues/4303">#4303</a> - Added documentation on identifying objects after the removal of slug fields.</li>
12673
12673
  <li><a href="https://github.com/nautobot/nautobot/issues/4326">#4326</a> - Update documentation on Nautobot release workflow.</li>
12674
- <li><a href="https://github.com/nautobot/nautobot/issues/4429">#4429</a> - Updated the pylint-nautobot migration steps.</li>
12674
+ <li><a href="https://github.com/nautobot/nautobot/issues/4429">#4429</a> - Updated the <code>pylint-nautobot</code> migration steps.</li>
12675
12675
  </ul>
12676
12676
  <h3 id="housekeeping-in-v200-rc3">Housekeeping in v2.0.0-rc.3<a class="headerlink" href="#housekeeping-in-v200-rc3" title="Permanent link">&para;</a></h3>
12677
12677
  <ul>
@@ -12962,7 +12962,7 @@
12962
12962
  </ul>
12963
12963
  <h3 id="dependencies-in-v200-beta2">Dependencies in v2.0.0-beta.2<a class="headerlink" href="#dependencies-in-v200-beta2" title="Permanent link">&para;</a></h3>
12964
12964
  <ul>
12965
- <li><a href="https://github.com/nautobot/nautobot/issues/3883">#3883</a> - Updated nautobot-ui package in next.</li>
12965
+ <li><a href="https://github.com/nautobot/nautobot/issues/3883">#3883</a> - Updated <code>nautobot-ui</code> package in <code>next</code>.</li>
12966
12966
  </ul>
12967
12967
  <h3 id="documentation-in-v200-beta2">Documentation in v2.0.0-beta.2<a class="headerlink" href="#documentation-in-v200-beta2" title="Permanent link">&para;</a></h3>
12968
12968
  <ul>
@@ -13024,7 +13024,7 @@
13024
13024
  <ul>
13025
13025
  <li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - The base class for all <code>tags</code> fields on <code>PrimaryModel</code> subclasses is now <code>nautobot.core.models.fields.TagsField</code> rather than <code>taggit.managers.TaggableManager</code>. Any apps using <code>PrimaryModel</code> as a base class will likely need to generate and run a schema migration to reflect this change.</li>
13026
13026
  <li><a href="https://github.com/nautobot/nautobot/issues/2331">#2331</a> - Changed <code>JobLogEntry.log_level</code> choices from <code>default</code>, <code>info</code>, <code>success</code>, <code>warning</code>, <code>failure</code> to Python default logging levels <code>debug</code>, <code>info</code>, <code>warning</code>, <code>error</code> and <code>critical</code>.</li>
13027
- <li><a href="https://github.com/nautobot/nautobot/issues/2331">#2331</a> - Changed job logging from custom log methods on the <code>BaseJob</code> class to celery's <code>get_task_logger</code> logging implementation.</li>
13027
+ <li><a href="https://github.com/nautobot/nautobot/issues/2331">#2331</a> - Changed job logging from custom log methods on the <code>BaseJob</code> class to Celery's <code>get_task_logger</code> logging implementation.</li>
13028
13028
  <li><a href="https://github.com/nautobot/nautobot/issues/2569">#2569</a> - Revamped CSV export functionality to use REST API serializers for more self-consistency and reduced boilerplate.</li>
13029
13029
  <li><a href="https://github.com/nautobot/nautobot/issues/2569">#2569</a> - Revised the natural key for <code>SecretsGroupAssociation</code> through-table model.</li>
13030
13030
  <li><a href="https://github.com/nautobot/nautobot/issues/2569">#2569</a> - Changed behavior of <code>JobLogEntry.display</code> REST API field to match the model behavior.</li>
@@ -13038,7 +13038,7 @@
13038
13038
  <li><a href="https://github.com/nautobot/nautobot/issues/3465">#3465</a> - Renamed IPAddress <code>prefix_length</code> field to <code>mask_length</code>.</li>
13039
13039
  <li><a href="https://github.com/nautobot/nautobot/issues/3465">#3465</a> - Made IPAddress <code>host</code> field non-modifiable.</li>
13040
13040
  <li><a href="https://github.com/nautobot/nautobot/issues/3527">#3527</a> - Restructured navigation menus to context-centered design for 2.0.</li>
13041
- <li><a href="https://github.com/nautobot/nautobot/issues/3552">#3552</a> - Extracted data tables from upgrading-from-nautobot-v1.md into separate YAML files.</li>
13041
+ <li><a href="https://github.com/nautobot/nautobot/issues/3552">#3552</a> - Extracted data tables from <code>upgrading-from-nautobot-v1.md</code> into separate YAML files.</li>
13042
13042
  <li><a href="https://github.com/nautobot/nautobot/issues/3586">#3586</a> - Changed REST API for Device and VirtualMachine to omit <code>config_context</code> by default and only include it when requested by using the <code>?include=config_context</code> query parameter.</li>
13043
13043
  <li><a href="https://github.com/nautobot/nautobot/issues/3607">#3607</a> - Changed the default <code>lookup_field</code> for <code>NautobotUIViewSet</code> to <code>"pk"</code> instead of <code>"slug"</code>.</li>
13044
13044
  <li><a href="https://github.com/nautobot/nautobot/issues/3663">#3663</a> - Modified <code>delete_button</code> and <code>edit_button</code> template tags to lookup <code>pk</code> and <code>slug</code> without the need to specify the lookup key.</li>
@@ -13340,7 +13340,7 @@
13340
13340
  </ul>
13341
13341
  <h3 id="documentation-in-v200-alpha1">Documentation in v2.0.0-alpha.1<a class="headerlink" href="#documentation-in-v200-alpha1" title="Permanent link">&para;</a></h3>
13342
13342
  <ul>
13343
- <li><a href="https://github.com/nautobot/nautobot/issues/204">#204</a> - Added style guide documentation for importing python modules in Nautobot.</li>
13343
+ <li><a href="https://github.com/nautobot/nautobot/issues/204">#204</a> - Added style guide documentation for importing Python modules in Nautobot.</li>
13344
13344
  </ul>
13345
13345
  <h3 id="housekeeping-in-v200-alpha1">Housekeeping in v2.0.0-alpha.1<a class="headerlink" href="#housekeeping-in-v200-alpha1" title="Permanent link">&para;</a></h3>
13346
13346
  <ul>
@@ -11006,7 +11006,7 @@
11006
11006
  </ul>
11007
11007
  <h3 id="dependencies-in-v219">Dependencies in v2.1.9<a class="headerlink" href="#dependencies-in-v219" title="Permanent link">&para;</a></h3>
11008
11008
  <ul>
11009
- <li><a href="https://github.com/nautobot/nautobot/issues/5296">#5296</a> - Fixed bug in pyproject.toml that added <code>coverage</code> as a nautobot dependency instead of a development dependency.</li>
11009
+ <li><a href="https://github.com/nautobot/nautobot/issues/5296">#5296</a> - Fixed bug in <code>pyproject.toml</code> that added <code>coverage</code> as a Nautobot dependency instead of a development dependency.</li>
11010
11010
  </ul>
11011
11011
  <h3 id="documentation-in-v219">Documentation in v2.1.9<a class="headerlink" href="#documentation-in-v219" title="Permanent link">&para;</a></h3>
11012
11012
  <ul>
@@ -11034,8 +11034,8 @@
11034
11034
  </ul>
11035
11035
  <h3 id="changed-in-v218">Changed in v2.1.8<a class="headerlink" href="#changed-in-v218" title="Permanent link">&para;</a></h3>
11036
11036
  <ul>
11037
- <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Changed uses of <code>functools.lru_cache</code> to use django-redis cache instead.</li>
11038
- <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the django-redis cache.</li>
11037
+ <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Changed uses of <code>functools.lru_cache</code> to use <code>django-redis</code> cache instead.</li>
11038
+ <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the <code>django-redis</code> cache.</li>
11039
11039
  </ul>
11040
11040
  <h3 id="removed-in-v218">Removed in v2.1.8<a class="headerlink" href="#removed-in-v218" title="Permanent link">&para;</a></h3>
11041
11041
  <ul>
@@ -11175,7 +11175,7 @@
11175
11175
  <ul>
11176
11176
  <li><a href="https://github.com/nautobot/nautobot/issues/4981">#4981</a> - Add serial types to InterfaceTypeChoices.</li>
11177
11177
  <li><a href="https://github.com/nautobot/nautobot/issues/5012">#5012</a> - Added database indexes to the ObjectChange model to improve performance when filtering by <code>user_name</code>, <code>changed_object</code>, or <code>related_object</code>, and also by <code>changed_object</code> in combination with <code>user</code> or <code>user_name</code>.</li>
11178
- <li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
11178
+ <li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via <code>django-silk</code>.</li>
11179
11179
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added Navbar dropdown arrow rotation on open/close.</li>
11180
11180
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added behavior of resetting navbar state when the "home" link is clicked.</li>
11181
11181
  </ul>
@@ -11260,7 +11260,7 @@
11260
11260
  <li><a href="https://github.com/nautobot/nautobot/issues/5024">#5024</a> - Fixed a bug that caused IPAddress objects to query their parent Prefix and Namespace every time they were instantiated.</li>
11261
11261
  <li><a href="https://github.com/nautobot/nautobot/issues/5024">#5024</a> - Improved performance of the IPAddress list view by including the namespace in the table queryset.</li>
11262
11262
  <li><a href="https://github.com/nautobot/nautobot/issues/5024">#5024</a> - Updated bulk-edit and bulk-delete views to auto-hide any "actions" column in the table of objects being edited or deleted.</li>
11263
- <li><a href="https://github.com/nautobot/nautobot/issues/5031">#5031</a> - Updated the default sanitizer pattern to include secret(s) and to be flexible with python dictionaries.</li>
11263
+ <li><a href="https://github.com/nautobot/nautobot/issues/5031">#5031</a> - Updated the default sanitizer pattern to include secret(s) and to be flexible with Python dictionaries.</li>
11264
11264
  <li><a href="https://github.com/nautobot/nautobot/issues/5043">#5043</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
11265
11265
  <li><a href="https://github.com/nautobot/nautobot/issues/5045">#5045</a> - Adjusted Bootstrap grid breakpoints to account for the space occupied by the sidebar, fixing various page rendering.</li>
11266
11266
  <li><a href="https://github.com/nautobot/nautobot/issues/5054">#5054</a> - Fixed missing search logic on the "Assign an IP Address" view.</li>
@@ -11377,7 +11377,7 @@
11377
11377
  </ul>
11378
11378
  <h3 id="fixed-in-v210">Fixed in v2.1.0<a class="headerlink" href="#fixed-in-v210" title="Permanent link">&para;</a></h3>
11379
11379
  <ul>
11380
- <li><a href="https://github.com/nautobot/nautobot/issues/4620">#4620</a> - Ensure UI build directory is created on init of nautobot-server.</li>
11380
+ <li><a href="https://github.com/nautobot/nautobot/issues/4620">#4620</a> - Ensure UI build directory is created on init of <code>nautobot-server</code>.</li>
11381
11381
  <li><a href="https://github.com/nautobot/nautobot/issues/4627">#4627</a> - Fixed JSON custom field being returned as a <code>repr()</code> string when using GraphQL.</li>
11382
11382
  <li><a href="https://github.com/nautobot/nautobot/issues/4834">#4834</a> - Fixed display of custom field choices when editing a CustomField.</li>
11383
11383
  <li><a href="https://github.com/nautobot/nautobot/issues/4834">#4834</a> - Fixed display of child groups when editing a DynamicGroup.</li>
@@ -11425,7 +11425,7 @@
11425
11425
  </ul>
11426
11426
  <h3 id="changed-in-v210-beta1">Changed in v2.1.0-beta.1<a class="headerlink" href="#changed-in-v210-beta1" title="Permanent link">&para;</a></h3>
11427
11427
  <ul>
11428
- <li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized nautobot UI bootstrap theme with LESS variables.</li>
11428
+ <li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized Nautobot UI bootstrap theme with LESS variables.</li>
11429
11429
  <li><a href="https://github.com/nautobot/nautobot/issues/4745">#4745</a> - Changed object export (CSV, YAML, export-template) to run as a background task, avoiding HTTP timeouts when exporting thousands of objects in a single operation.</li>
11430
11430
  <li><a href="https://github.com/nautobot/nautobot/issues/4750">#4750</a> - Refined CSS to Nautobot Bootstrap UI.</li>
11431
11431
  <li><a href="https://github.com/nautobot/nautobot/issues/4765">#4765</a> - Moved navbar to the left.</li>
@@ -11211,7 +11211,7 @@
11211
11211
  </ul>
11212
11212
  <h3 id="housekeeping-in-v221">Housekeeping in v2.2.1<a class="headerlink" href="#housekeeping-in-v221" title="Permanent link">&para;</a></h3>
11213
11213
  <ul>
11214
- <li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
11214
+ <li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as Pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
11215
11215
  <li><a href="https://github.com/nautobot/nautobot/issues/5547">#5547</a> - Fixed TransactionTestCase inheritance order so that <code>test.client</code> works in test cases using this class.</li>
11216
11216
  </ul>
11217
11217
  <h2 id="v220-2024-03-29">v2.2.0 (2024-03-29)<a class="headerlink" href="#v220-2024-03-29" title="Permanent link">&para;</a></h2>
@@ -11839,8 +11839,8 @@
11839
11839
  </ul>
11840
11840
  <h3 id="housekeeping-in-v2316">Housekeeping in v2.3.16<a class="headerlink" href="#housekeeping-in-v2316" title="Permanent link">&para;</a></h3>
11841
11841
  <ul>
11842
- <li><a href="https://github.com/nautobot/nautobot/issues/6714">#6714</a> - Enabled and addressed pylint checkers <code>arguments-differ</code>, <code>arguments-renamed</code>, <code>exec-used</code>, <code>hard-coded-auth-user</code>, <code>super-init-not-called</code>.</li>
11843
- <li><a href="https://github.com/nautobot/nautobot/issues/6722">#6722</a> - Enabled pylint <code>not-callable</code> and <code>no-member</code> checkers and addressed issues reported thereby.</li>
11842
+ <li><a href="https://github.com/nautobot/nautobot/issues/6714">#6714</a> - Enabled and addressed Pylint checkers <code>arguments-differ</code>, <code>arguments-renamed</code>, <code>exec-used</code>, <code>hard-coded-auth-user</code>, <code>super-init-not-called</code>.</li>
11843
+ <li><a href="https://github.com/nautobot/nautobot/issues/6722">#6722</a> - Enabled Pylint <code>not-callable</code> and <code>no-member</code> checkers and addressed issues reported thereby.</li>
11844
11844
  </ul>
11845
11845
  <h2 id="v2315-2025-01-02">v2.3.15 (2025-01-02)<a class="headerlink" href="#v2315-2025-01-02" title="Permanent link">&para;</a></h2>
11846
11846
  <h3 id="security-in-v2315">Security in v2.3.15<a class="headerlink" href="#security-in-v2315" title="Permanent link">&para;</a></h3>
@@ -12447,7 +12447,7 @@
12447
12447
  <li><a href="https://github.com/nautobot/nautobot/issues/5774">#5774</a> - Fixed the bug that required users and administrators to manage additional permission to be able to use saved views.</li>
12448
12448
  <li><a href="https://github.com/nautobot/nautobot/issues/5814">#5814</a> - Fixed style issues with Saved Views and other language code blocks.</li>
12449
12449
  <li><a href="https://github.com/nautobot/nautobot/issues/5818">#5818</a> - Fixed broken table configure buttons in device and module component tabs.</li>
12450
- <li><a href="https://github.com/nautobot/nautobot/issues/5842">#5842</a> - Fixed missing classes when importing <code>*</code> from nautobot.ipam.models.</li>
12450
+ <li><a href="https://github.com/nautobot/nautobot/issues/5842">#5842</a> - Fixed missing classes when importing <code>*</code> from <code>nautobot.ipam.models</code>.</li>
12451
12451
  <li><a href="https://github.com/nautobot/nautobot/issues/5877">#5877</a> - Resolved issue with tags not saving on Dynamic Groups.</li>
12452
12452
  <li><a href="https://github.com/nautobot/nautobot/issues/5880">#5880</a> - Fixed overflowing device component tables in device and module component tabs.</li>
12453
12453
  <li><a href="https://github.com/nautobot/nautobot/issues/5880">#5880</a> - Fixed an exception when trying to edit an IPAddress that had a NAT Inside IPAddress that was related to a component attached to a module.</li>
@@ -12472,7 +12472,7 @@
12472
12472
  <li><a href="https://github.com/nautobot/nautobot/issues/5429">#5429</a> - Updated Docker build and CI to use <code>poetry</code> <code>1.8.2</code>.</li>
12473
12473
  <li><a href="https://github.com/nautobot/nautobot/issues/5429">#5429</a> - Removed development dependency on <code>mkdocs-include-markdown-plugin</code> as it's no longer used in Nautobot's documentation.</li>
12474
12474
  <li><a href="https://github.com/nautobot/nautobot/issues/5518">#5518</a> - Updated <code>drf-spectacular</code> to version <code>0.27.2</code>.</li>
12475
- <li><a href="https://github.com/nautobot/nautobot/issues/5687">#5687</a> - Added <a href="https://django-structlog.readthedocs.io/en/latest/">django-structlog</a> dependency.</li>
12475
+ <li><a href="https://github.com/nautobot/nautobot/issues/5687">#5687</a> - Added <a href="https://django-structlog.readthedocs.io/en/latest/"><code>django-structlog</code></a> dependency.</li>
12476
12476
  <li><a href="https://github.com/nautobot/nautobot/issues/5734">#5734</a> - Updated <code>django-auth-ldap</code> dependency to <code>~4.8</code>.</li>
12477
12477
  <li><a href="https://github.com/nautobot/nautobot/issues/5734">#5734</a> - Updated <code>django-tree-queries</code> dependency to <code>~0.19</code>.</li>
12478
12478
  <li><a href="https://github.com/nautobot/nautobot/issues/5734">#5734</a> - Updated <code>Markdown</code> dependency to <code>~3.6</code>.</li>
@@ -8761,6 +8761,144 @@
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
+
8833
+ </li>
8834
+
8835
+ <li class="md-nav__item">
8836
+ <a href="#v243-2025-02-18" class="md-nav__link">
8837
+ <span class="md-ellipsis">
8838
+ v2.4.3 (2025-02-18)
8839
+ </span>
8840
+ </a>
8841
+
8842
+ <nav class="md-nav" aria-label="v2.4.3 (2025-02-18)">
8843
+ <ul class="md-nav__list">
8844
+
8845
+ <li class="md-nav__item">
8846
+ <a href="#added-in-v243" class="md-nav__link">
8847
+ <span class="md-ellipsis">
8848
+ Added in v2.4.3
8849
+ </span>
8850
+ </a>
8851
+
8852
+ </li>
8853
+
8854
+ <li class="md-nav__item">
8855
+ <a href="#changed-in-v243" class="md-nav__link">
8856
+ <span class="md-ellipsis">
8857
+ Changed in v2.4.3
8858
+ </span>
8859
+ </a>
8860
+
8861
+ </li>
8862
+
8863
+ <li class="md-nav__item">
8864
+ <a href="#fixed-in-v243" class="md-nav__link">
8865
+ <span class="md-ellipsis">
8866
+ Fixed in v2.4.3
8867
+ </span>
8868
+ </a>
8869
+
8870
+ </li>
8871
+
8872
+ <li class="md-nav__item">
8873
+ <a href="#dependencies-in-v243" class="md-nav__link">
8874
+ <span class="md-ellipsis">
8875
+ Dependencies in v2.4.3
8876
+ </span>
8877
+ </a>
8878
+
8879
+ </li>
8880
+
8881
+ <li class="md-nav__item">
8882
+ <a href="#documentation-in-v243" class="md-nav__link">
8883
+ <span class="md-ellipsis">
8884
+ Documentation in v2.4.3
8885
+ </span>
8886
+ </a>
8887
+
8888
+ </li>
8889
+
8890
+ <li class="md-nav__item">
8891
+ <a href="#housekeeping-in-v243" class="md-nav__link">
8892
+ <span class="md-ellipsis">
8893
+ Housekeeping in v2.4.3
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">
@@ -9858,6 +9996,144 @@
9858
9996
  </ul>
9859
9997
  </nav>
9860
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
+
10068
+ </li>
10069
+
10070
+ <li class="md-nav__item">
10071
+ <a href="#v243-2025-02-18" class="md-nav__link">
10072
+ <span class="md-ellipsis">
10073
+ v2.4.3 (2025-02-18)
10074
+ </span>
10075
+ </a>
10076
+
10077
+ <nav class="md-nav" aria-label="v2.4.3 (2025-02-18)">
10078
+ <ul class="md-nav__list">
10079
+
10080
+ <li class="md-nav__item">
10081
+ <a href="#added-in-v243" class="md-nav__link">
10082
+ <span class="md-ellipsis">
10083
+ Added in v2.4.3
10084
+ </span>
10085
+ </a>
10086
+
10087
+ </li>
10088
+
10089
+ <li class="md-nav__item">
10090
+ <a href="#changed-in-v243" class="md-nav__link">
10091
+ <span class="md-ellipsis">
10092
+ Changed in v2.4.3
10093
+ </span>
10094
+ </a>
10095
+
10096
+ </li>
10097
+
10098
+ <li class="md-nav__item">
10099
+ <a href="#fixed-in-v243" class="md-nav__link">
10100
+ <span class="md-ellipsis">
10101
+ Fixed in v2.4.3
10102
+ </span>
10103
+ </a>
10104
+
10105
+ </li>
10106
+
10107
+ <li class="md-nav__item">
10108
+ <a href="#dependencies-in-v243" class="md-nav__link">
10109
+ <span class="md-ellipsis">
10110
+ Dependencies in v2.4.3
10111
+ </span>
10112
+ </a>
10113
+
10114
+ </li>
10115
+
10116
+ <li class="md-nav__item">
10117
+ <a href="#documentation-in-v243" class="md-nav__link">
10118
+ <span class="md-ellipsis">
10119
+ Documentation in v2.4.3
10120
+ </span>
10121
+ </a>
10122
+
10123
+ </li>
10124
+
10125
+ <li class="md-nav__item">
10126
+ <a href="#housekeeping-in-v243" class="md-nav__link">
10127
+ <span class="md-ellipsis">
10128
+ Housekeeping in v2.4.3
10129
+ </span>
10130
+ </a>
10131
+
10132
+ </li>
10133
+
10134
+ </ul>
10135
+ </nav>
10136
+
9861
10137
  </li>
9862
10138
 
9863
10139
  <li class="md-nav__item">
@@ -10243,6 +10519,109 @@
10243
10519
 
10244
10520
  <!-- towncrier release notes start -->
10245
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">&para;</a></h2>
10523
+ <h3 id="added-in-v244">Added in v2.4.4<a class="headerlink" href="#added-in-v244" title="Permanent link">&para;</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">&para;</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">&para;</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">&para;</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">&para;</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">&para;</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>
10575
+ <h2 id="v243-2025-02-18">v2.4.3 (2025-02-18)<a class="headerlink" href="#v243-2025-02-18" title="Permanent link">&para;</a></h2>
10576
+ <h3 id="added-in-v243">Added in v2.4.3<a class="headerlink" href="#added-in-v243" title="Permanent link">&para;</a></h3>
10577
+ <ul>
10578
+ <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>
10579
+ <li><a href="https://github.com/nautobot/nautobot/issues/6865">#6865</a> - Added Bulk Edit functionality for the Tenant Group model.</li>
10580
+ </ul>
10581
+ <h3 id="changed-in-v243">Changed in v2.4.3<a class="headerlink" href="#changed-in-v243" title="Permanent link">&para;</a></h3>
10582
+ <ul>
10583
+ <li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
10584
+ </ul>
10585
+ <h3 id="fixed-in-v243">Fixed in v2.4.3<a class="headerlink" href="#fixed-in-v243" title="Permanent link">&para;</a></h3>
10586
+ <ul>
10587
+ <li><a href="https://github.com/nautobot/nautobot/issues/5539">#5539</a> - Fixed incorrect error message in Controller <code>clean()</code> method.</li>
10588
+ <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>
10589
+ <li><a href="https://github.com/nautobot/nautobot/issues/6667">#6667</a> - Adds custom clearable file input form widget.</li>
10590
+ <li><a href="https://github.com/nautobot/nautobot/issues/6764">#6764</a> - Fixed global and user default saved views incorrectly overriding filtered views.</li>
10591
+ <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>
10592
+ <li><a href="https://github.com/nautobot/nautobot/issues/6805">#6805</a> - Fixed an exception when saving a Dynamic Group of IP Addresses.</li>
10593
+ <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>
10594
+ <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>
10595
+ <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>
10596
+ <li><a href="https://github.com/nautobot/nautobot/issues/6841">#6841</a> - Fixed missing termination side when creating from Circuit detail page.</li>
10597
+ <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>
10598
+ <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>
10599
+ <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>
10600
+ </ul>
10601
+ <h3 id="dependencies-in-v243">Dependencies in v2.4.3<a class="headerlink" href="#dependencies-in-v243" title="Permanent link">&para;</a></h3>
10602
+ <ul>
10603
+ <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>
10604
+ <li><a href="https://github.com/nautobot/nautobot/issues/6658">#6658</a> - Updated dependency <code>kubernetes</code> to <code>^32.0.0</code>.</li>
10605
+ <li><a href="https://github.com/nautobot/nautobot/issues/6869">#6869</a> - Updated dependency <code>Django</code> to <code>~4.2.19</code>.</li>
10606
+ <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>
10607
+ <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>
10608
+ <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>
10609
+ </ul>
10610
+ <h3 id="documentation-in-v243">Documentation in v2.4.3<a class="headerlink" href="#documentation-in-v243" title="Permanent link">&para;</a></h3>
10611
+ <ul>
10612
+ <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>
10613
+ </ul>
10614
+ <h3 id="housekeeping-in-v243">Housekeeping in v2.4.3<a class="headerlink" href="#housekeeping-in-v243" title="Permanent link">&para;</a></h3>
10615
+ <ul>
10616
+ <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>
10617
+ <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>
10618
+ <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>
10619
+ <li><a href="https://github.com/nautobot/nautobot/issues/6846">#6846</a> - Fixed integration test task to allow passing in pattern match.</li>
10620
+ <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>
10621
+ <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>
10622
+ <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>
10623
+ <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>
10624
+ </ul>
10246
10625
  <h2 id="v242-2025-02-03">v2.4.2 (2025-02-03)<a class="headerlink" href="#v242-2025-02-03" title="Permanent link">&para;</a></h2>
10247
10626
  <h3 id="added-in-v242">Added in v2.4.2<a class="headerlink" href="#added-in-v242" title="Permanent link">&para;</a></h3>
10248
10627
  <ul>