nautobot 3.0.4__py3-none-any.whl → 3.0.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (363) hide show
  1. nautobot/core/tables.py +28 -17
  2. nautobot/core/templates/graphene/graphiql.html +3 -5
  3. nautobot/core/templates/inc/javascript.html +5 -10
  4. nautobot/core/templates/inc/media.html +5 -4
  5. nautobot/core/templates/inc/media_failure.html +73 -0
  6. nautobot/core/templates/media_failure.html +1 -0
  7. nautobot/core/tests/test_templatetags_helpers.py +9 -9
  8. nautobot/core/ui/object_detail.py +1 -0
  9. nautobot/dcim/tables/devices.py +4 -4
  10. nautobot/dcim/tables/template_code.py +8 -4
  11. nautobot/dcim/tests/test_tables.py +5 -6
  12. nautobot/dcim/views.py +6 -7
  13. nautobot/extras/tables.py +3 -3
  14. nautobot/extras/templates/extras/inc/jobresult_js.html +1 -2
  15. nautobot/extras/templates/extras/scheduledjob.html +3 -1
  16. nautobot/extras/tests/test_customfields.py +75 -9
  17. nautobot/ipam/filters.py +58 -3
  18. nautobot/ipam/tables.py +8 -4
  19. nautobot/ipam/tests/test_filters.py +55 -0
  20. nautobot/project-static/dist/css/nautobot.css +1 -1
  21. nautobot/project-static/dist/css/nautobot.css.map +1 -1
  22. nautobot/project-static/docs/404.html +64 -8
  23. nautobot/project-static/docs/apps/index.html +64 -8
  24. nautobot/project-static/docs/apps/nautobot-apps.html +64 -8
  25. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +64 -8
  26. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +64 -8
  27. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +64 -8
  28. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +64 -8
  29. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +64 -8
  30. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +64 -8
  31. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +64 -8
  32. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +64 -8
  33. nautobot/project-static/docs/code-reference/nautobot/apps/events.html +64 -8
  34. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +64 -8
  35. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +64 -8
  36. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +64 -8
  37. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +64 -8
  38. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +64 -8
  39. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +64 -8
  40. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +64 -8
  41. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +64 -8
  42. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +64 -8
  43. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +64 -8
  44. nautobot/project-static/docs/code-reference/nautobot/apps/templatetags.html +64 -8
  45. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +64 -8
  46. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +64 -8
  47. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +64 -8
  48. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +64 -8
  49. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +64 -8
  50. nautobot/project-static/docs/development/apps/api/configuration-view.html +64 -8
  51. nautobot/project-static/docs/development/apps/api/database-backend-config.html +64 -8
  52. nautobot/project-static/docs/development/apps/api/models/django-admin.html +67 -11
  53. nautobot/project-static/docs/development/apps/api/models/global-search.html +64 -8
  54. nautobot/project-static/docs/development/apps/api/models/graphql.html +64 -8
  55. nautobot/project-static/docs/development/apps/api/models/index.html +64 -8
  56. nautobot/project-static/docs/development/apps/api/models/queryset.html +13440 -0
  57. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +64 -8
  58. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +64 -8
  59. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +64 -8
  60. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +64 -8
  61. nautobot/project-static/docs/development/apps/api/platform-features/index.html +64 -8
  62. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +64 -8
  63. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +64 -8
  64. nautobot/project-static/docs/development/apps/api/platform-features/prepopulating-data.html +64 -8
  65. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +64 -8
  66. nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +64 -8
  67. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +64 -8
  68. nautobot/project-static/docs/development/apps/api/prometheus.html +64 -8
  69. nautobot/project-static/docs/development/apps/api/setup.html +64 -8
  70. nautobot/project-static/docs/development/apps/api/testing.html +64 -8
  71. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +64 -8
  72. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +64 -8
  73. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +64 -8
  74. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +64 -8
  75. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +64 -8
  76. nautobot/project-static/docs/development/apps/api/views/base-template.html +64 -8
  77. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +64 -8
  78. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +64 -8
  79. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +64 -8
  80. nautobot/project-static/docs/development/apps/api/views/index.html +67 -11
  81. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +64 -8
  82. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +64 -8
  83. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +64 -8
  84. nautobot/project-static/docs/development/apps/api/views/notes.html +64 -8
  85. nautobot/project-static/docs/development/apps/api/views/rest-api.html +64 -8
  86. nautobot/project-static/docs/development/apps/api/views/urls.html +64 -8
  87. nautobot/project-static/docs/development/apps/index.html +64 -8
  88. nautobot/project-static/docs/development/apps/migration/code-updates.html +64 -8
  89. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +64 -8
  90. nautobot/project-static/docs/development/apps/migration/from-v1.html +64 -8
  91. nautobot/project-static/docs/development/apps/migration/from-v2/migrating-v2-to-v3.html +64 -8
  92. nautobot/project-static/docs/development/apps/migration/from-v2/new-nautobot-custom-ui-apis.html +64 -8
  93. nautobot/project-static/docs/development/apps/migration/from-v2/overview.html +68 -8
  94. nautobot/project-static/docs/development/apps/migration/from-v2/upgrading-from-bootstrap-v3-to-v5.html +64 -8
  95. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +64 -8
  96. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +64 -8
  97. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +64 -8
  98. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +64 -8
  99. nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +64 -8
  100. nautobot/project-static/docs/development/apps/migration/ui-component-framework/breadcrumbs-titles.html +64 -8
  101. nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +64 -8
  102. nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +64 -8
  103. nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +64 -8
  104. nautobot/project-static/docs/development/apps/porting-from-netbox.html +64 -8
  105. nautobot/project-static/docs/development/core/application-registry.html +64 -8
  106. nautobot/project-static/docs/development/core/best-practices.html +64 -8
  107. nautobot/project-static/docs/development/core/caching.html +64 -8
  108. nautobot/project-static/docs/development/core/controllers.html +64 -8
  109. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +64 -8
  110. nautobot/project-static/docs/development/core/docs-media-standards.html +64 -8
  111. nautobot/project-static/docs/development/core/generic-views.html +64 -8
  112. nautobot/project-static/docs/development/core/getting-started.html +64 -8
  113. nautobot/project-static/docs/development/core/homepage.html +64 -8
  114. nautobot/project-static/docs/development/core/index.html +64 -8
  115. nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +64 -8
  116. nautobot/project-static/docs/development/core/model-checklist.html +64 -8
  117. nautobot/project-static/docs/development/core/model-features.html +64 -8
  118. nautobot/project-static/docs/development/core/natural-keys.html +64 -8
  119. nautobot/project-static/docs/development/core/navigation-menu.html +64 -8
  120. nautobot/project-static/docs/development/core/release-checklist.html +64 -8
  121. nautobot/project-static/docs/development/core/role-internals.html +64 -8
  122. nautobot/project-static/docs/development/core/settings.html +64 -8
  123. nautobot/project-static/docs/development/core/style-guide.html +64 -8
  124. nautobot/project-static/docs/development/core/templates.html +64 -8
  125. nautobot/project-static/docs/development/core/testing.html +64 -8
  126. nautobot/project-static/docs/development/core/ui-best-practices.html +64 -8
  127. nautobot/project-static/docs/development/core/ui-component-framework.html +64 -8
  128. nautobot/project-static/docs/development/core/user-preferences.html +64 -8
  129. nautobot/project-static/docs/development/index.html +64 -8
  130. nautobot/project-static/docs/development/jobs/getting-started.html +64 -8
  131. nautobot/project-static/docs/development/jobs/index.html +64 -8
  132. nautobot/project-static/docs/development/jobs/installation.html +64 -8
  133. nautobot/project-static/docs/development/jobs/job-extensions.html +64 -8
  134. nautobot/project-static/docs/development/jobs/job-logging.html +64 -8
  135. nautobot/project-static/docs/development/jobs/job-patterns.html +64 -8
  136. nautobot/project-static/docs/development/jobs/job-structure.html +64 -8
  137. nautobot/project-static/docs/development/jobs/migration/from-v1.html +64 -8
  138. nautobot/project-static/docs/development/jobs/testing.html +64 -8
  139. nautobot/project-static/docs/index.html +64 -8
  140. nautobot/project-static/docs/overview/application_stack.html +64 -8
  141. nautobot/project-static/docs/overview/design_philosophy.html +64 -8
  142. nautobot/project-static/docs/release-notes/index.html +64 -8
  143. nautobot/project-static/docs/release-notes/version-1.0.html +64 -8
  144. nautobot/project-static/docs/release-notes/version-1.1.html +64 -8
  145. nautobot/project-static/docs/release-notes/version-1.2.html +65 -9
  146. nautobot/project-static/docs/release-notes/version-1.3.html +64 -8
  147. nautobot/project-static/docs/release-notes/version-1.4.html +64 -8
  148. nautobot/project-static/docs/release-notes/version-1.5.html +64 -8
  149. nautobot/project-static/docs/release-notes/version-1.6.html +64 -8
  150. nautobot/project-static/docs/release-notes/version-2.0.html +64 -8
  151. nautobot/project-static/docs/release-notes/version-2.1.html +64 -8
  152. nautobot/project-static/docs/release-notes/version-2.2.html +64 -8
  153. nautobot/project-static/docs/release-notes/version-2.3.html +64 -8
  154. nautobot/project-static/docs/release-notes/version-2.4.html +584 -8
  155. nautobot/project-static/docs/release-notes/version-3.0.html +232 -8
  156. nautobot/project-static/docs/search/search_index.json +1 -1
  157. nautobot/project-static/docs/sitemap.xml +337 -329
  158. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  159. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +64 -8
  160. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +64 -8
  161. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +64 -8
  162. nautobot/project-static/docs/user-guide/administration/configuration/index.html +64 -8
  163. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +64 -8
  164. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +64 -8
  165. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +64 -8
  166. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +64 -8
  167. nautobot/project-static/docs/user-guide/administration/guides/docker.html +64 -8
  168. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +64 -8
  169. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +64 -8
  170. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +64 -8
  171. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +64 -8
  172. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +64 -8
  173. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +64 -8
  174. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +64 -8
  175. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +64 -8
  176. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +64 -8
  177. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +72 -9
  178. nautobot/project-static/docs/user-guide/administration/installation/index.html +64 -8
  179. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +64 -8
  180. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +64 -8
  181. nautobot/project-static/docs/user-guide/administration/installation/services.html +64 -8
  182. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +65 -9
  183. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +64 -8
  184. nautobot/project-static/docs/user-guide/administration/security/index.html +64 -8
  185. nautobot/project-static/docs/user-guide/administration/security/notices.html +64 -8
  186. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +64 -8
  187. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +64 -8
  188. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +67 -11
  189. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +64 -8
  190. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +64 -8
  191. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +64 -8
  192. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +64 -8
  193. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +64 -8
  194. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +64 -8
  195. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +64 -8
  196. nautobot/project-static/docs/user-guide/administration/upgrading/from-v2/index.html +68 -8
  197. nautobot/project-static/docs/user-guide/administration/upgrading/postgresql.html +13391 -0
  198. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +125 -15
  199. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +64 -8
  200. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +64 -8
  201. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +64 -8
  202. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +64 -8
  203. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +64 -8
  204. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +64 -8
  205. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +64 -8
  206. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +64 -8
  207. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +64 -8
  208. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +64 -8
  209. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +64 -8
  210. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +64 -8
  211. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +64 -8
  212. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +64 -8
  213. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +64 -8
  214. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +64 -8
  215. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +64 -8
  216. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +64 -8
  217. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +64 -8
  218. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +64 -8
  219. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +64 -8
  220. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +64 -8
  221. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +64 -8
  222. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +64 -8
  223. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +64 -8
  224. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +64 -8
  225. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +64 -8
  226. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +64 -8
  227. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +64 -8
  228. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +64 -8
  229. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +64 -8
  230. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +64 -8
  231. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +64 -8
  232. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +64 -8
  233. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +64 -8
  234. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +64 -8
  235. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +64 -8
  236. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulefamily.html +64 -8
  237. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +64 -8
  238. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +64 -8
  239. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +64 -8
  240. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +64 -8
  241. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +64 -8
  242. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +64 -8
  243. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +64 -8
  244. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +64 -8
  245. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +64 -8
  246. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +64 -8
  247. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +64 -8
  248. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +64 -8
  249. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +64 -8
  250. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +64 -8
  251. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +64 -8
  252. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +64 -8
  253. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +64 -8
  254. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +64 -8
  255. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +64 -8
  256. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +64 -8
  257. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +64 -8
  258. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +64 -8
  259. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +64 -8
  260. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +64 -8
  261. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +64 -8
  262. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +64 -8
  263. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +64 -8
  264. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +64 -8
  265. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +64 -8
  266. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +64 -8
  267. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/certificateprofile.html +64 -8
  268. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/healthcheckmonitor.html +64 -8
  269. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/index.html +64 -8
  270. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/loadbalancerpool.html +64 -8
  271. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/loadbalancerpoolmember.html +64 -8
  272. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/virtualserver.html +64 -8
  273. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +64 -8
  274. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +64 -8
  275. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +64 -8
  276. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +64 -8
  277. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +64 -8
  278. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +64 -8
  279. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +64 -8
  280. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +64 -8
  281. nautobot/project-static/docs/user-guide/core-data-model/vpn/index.html +64 -8
  282. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpn.html +64 -8
  283. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpnphase1policy.html +64 -8
  284. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpnphase2policy.html +64 -8
  285. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpnprofile.html +64 -8
  286. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpntunnel.html +64 -8
  287. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpntunnelendpoint.html +64 -8
  288. nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +64 -8
  289. nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +64 -8
  290. nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +64 -8
  291. nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +64 -8
  292. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +64 -8
  293. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +64 -8
  294. nautobot/project-static/docs/user-guide/feature-guides/data-compliance.html +64 -8
  295. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +64 -8
  296. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +64 -8
  297. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +64 -8
  298. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +64 -8
  299. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +64 -8
  300. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +64 -8
  301. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +64 -8
  302. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +64 -8
  303. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +64 -8
  304. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +64 -8
  305. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +64 -8
  306. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +64 -8
  307. nautobot/project-static/docs/user-guide/feature-guides/load-balancers.html +64 -8
  308. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +64 -8
  309. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +64 -8
  310. nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +64 -8
  311. nautobot/project-static/docs/user-guide/index.html +64 -8
  312. nautobot/project-static/docs/user-guide/platform-functionality/approval-workflow.html +64 -8
  313. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +64 -8
  314. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +64 -8
  315. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +64 -8
  316. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +64 -8
  317. nautobot/project-static/docs/user-guide/platform-functionality/data-validation.html +64 -8
  318. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +64 -8
  319. nautobot/project-static/docs/user-guide/platform-functionality/echarts.html +64 -8
  320. nautobot/project-static/docs/user-guide/platform-functionality/events.html +64 -8
  321. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +64 -8
  322. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +64 -8
  323. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +64 -8
  324. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +64 -8
  325. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +64 -8
  326. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +64 -8
  327. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +64 -8
  328. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +64 -8
  329. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +64 -8
  330. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +64 -8
  331. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +64 -8
  332. nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +64 -8
  333. nautobot/project-static/docs/user-guide/platform-functionality/jobs/managing-jobs.html +64 -8
  334. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +64 -8
  335. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +64 -8
  336. nautobot/project-static/docs/user-guide/platform-functionality/note.html +64 -8
  337. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +64 -8
  338. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +64 -8
  339. nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +64 -8
  340. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +64 -8
  341. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +116 -34
  342. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +64 -8
  343. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +64 -8
  344. nautobot/project-static/docs/user-guide/platform-functionality/role.html +64 -8
  345. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +64 -8
  346. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +64 -8
  347. nautobot/project-static/docs/user-guide/platform-functionality/status.html +64 -8
  348. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +64 -8
  349. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +64 -8
  350. nautobot/project-static/docs/user-guide/platform-functionality/user-interface/configurablecolumns.html +64 -8
  351. nautobot/project-static/docs/user-guide/platform-functionality/user-interface/savedview.html +64 -8
  352. nautobot/project-static/docs/user-guide/platform-functionality/user-interface/search.html +64 -8
  353. nautobot/project-static/docs/user-guide/platform-functionality/users/groups.html +64 -8
  354. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +64 -8
  355. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +64 -8
  356. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +64 -8
  357. nautobot/ui/src/scss/nautobot.scss +2 -1
  358. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/METADATA +1 -1
  359. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/RECORD +363 -360
  360. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/LICENSE.txt +0 -0
  361. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/NOTICE +0 -0
  362. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/WHEEL +0 -0
  363. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/entry_points.txt +0 -0
@@ -969,6 +969,34 @@
969
969
 
970
970
 
971
971
 
972
+ <li class="md-nav__item">
973
+ <a href="../user-guide/administration/upgrading/postgresql.html" class="md-nav__link">
974
+
975
+
976
+
977
+ <span class="md-ellipsis">
978
+
979
+
980
+ Upgrading PostgreSQL
981
+
982
+
983
+
984
+ </span>
985
+
986
+
987
+
988
+ </a>
989
+ </li>
990
+
991
+
992
+
993
+
994
+
995
+
996
+
997
+
998
+
999
+
972
1000
  <li class="md-nav__item">
973
1001
  <a href="../user-guide/administration/upgrading/upgrading.html" class="md-nav__link">
974
1002
 
@@ -1009,7 +1037,7 @@
1009
1037
 
1010
1038
 
1011
1039
 
1012
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3">
1040
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
1013
1041
 
1014
1042
 
1015
1043
  <div class="md-nav__link md-nav__container">
@@ -1031,14 +1059,14 @@
1031
1059
  </a>
1032
1060
 
1033
1061
 
1034
- <label class="md-nav__link " for="__nav_2_1_2_3" id="__nav_2_1_2_3_label" tabindex="0">
1062
+ <label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
1035
1063
  <span class="md-nav__icon md-icon"></span>
1036
1064
  </label>
1037
1065
 
1038
1066
  </div>
1039
1067
 
1040
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_3_label" aria-expanded="false">
1041
- <label class="md-nav__title" for="__nav_2_1_2_3">
1068
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
1069
+ <label class="md-nav__title" for="__nav_2_1_2_4">
1042
1070
  <span class="md-nav__icon md-icon"></span>
1043
1071
 
1044
1072
 
@@ -1094,7 +1122,7 @@
1094
1122
 
1095
1123
 
1096
1124
 
1097
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2">
1125
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
1098
1126
 
1099
1127
 
1100
1128
  <div class="md-nav__link md-nav__container">
@@ -1116,14 +1144,14 @@
1116
1144
  </a>
1117
1145
 
1118
1146
 
1119
- <label class="md-nav__link " for="__nav_2_1_2_3_2" id="__nav_2_1_2_3_2_label" tabindex="0">
1147
+ <label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
1120
1148
  <span class="md-nav__icon md-icon"></span>
1121
1149
  </label>
1122
1150
 
1123
1151
  </div>
1124
1152
 
1125
- <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_3_2_label" aria-expanded="false">
1126
- <label class="md-nav__title" for="__nav_2_1_2_3_2">
1153
+ <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
1154
+ <label class="md-nav__title" for="__nav_2_1_2_4_2">
1127
1155
  <span class="md-nav__icon md-icon"></span>
1128
1156
 
1129
1157
 
@@ -8913,6 +8941,34 @@
8913
8941
 
8914
8942
 
8915
8943
 
8944
+
8945
+
8946
+
8947
+
8948
+
8949
+
8950
+ <li class="md-nav__item">
8951
+ <a href="../development/apps/api/models/queryset.html" class="md-nav__link">
8952
+
8953
+
8954
+
8955
+ <span class="md-ellipsis">
8956
+
8957
+
8958
+ QuerySet
8959
+
8960
+
8961
+
8962
+ </span>
8963
+
8964
+
8965
+
8966
+ </a>
8967
+ </li>
8968
+
8969
+
8970
+
8971
+
8916
8972
  </ul>
8917
8973
  </nav>
8918
8974
 
@@ -12583,6 +12639,222 @@
12583
12639
  </ul>
12584
12640
  </nav>
12585
12641
 
12642
+ </li>
12643
+
12644
+ <li class="md-nav__item">
12645
+ <a href="#v2425-2026-01-09" class="md-nav__link">
12646
+ <span class="md-ellipsis">
12647
+
12648
+ v2.4.25 (2026-01-09)
12649
+
12650
+ </span>
12651
+ </a>
12652
+
12653
+ <nav class="md-nav" aria-label="v2.4.25 (2026-01-09)">
12654
+ <ul class="md-nav__list">
12655
+
12656
+ <li class="md-nav__item">
12657
+ <a href="#security-in-v2425" class="md-nav__link">
12658
+ <span class="md-ellipsis">
12659
+
12660
+ Security in v2.4.25
12661
+
12662
+ </span>
12663
+ </a>
12664
+
12665
+ </li>
12666
+
12667
+ <li class="md-nav__item">
12668
+ <a href="#added-in-v2425" class="md-nav__link">
12669
+ <span class="md-ellipsis">
12670
+
12671
+ Added in v2.4.25
12672
+
12673
+ </span>
12674
+ </a>
12675
+
12676
+ </li>
12677
+
12678
+ <li class="md-nav__item">
12679
+ <a href="#changed-in-v2425" class="md-nav__link">
12680
+ <span class="md-ellipsis">
12681
+
12682
+ Changed in v2.4.25
12683
+
12684
+ </span>
12685
+ </a>
12686
+
12687
+ </li>
12688
+
12689
+ <li class="md-nav__item">
12690
+ <a href="#fixed-in-v2425" class="md-nav__link">
12691
+ <span class="md-ellipsis">
12692
+
12693
+ Fixed in v2.4.25
12694
+
12695
+ </span>
12696
+ </a>
12697
+
12698
+ </li>
12699
+
12700
+ <li class="md-nav__item">
12701
+ <a href="#documentation-in-v2425" class="md-nav__link">
12702
+ <span class="md-ellipsis">
12703
+
12704
+ Documentation in v2.4.25
12705
+
12706
+ </span>
12707
+ </a>
12708
+
12709
+ </li>
12710
+
12711
+ </ul>
12712
+ </nav>
12713
+
12714
+ </li>
12715
+
12716
+ <li class="md-nav__item">
12717
+ <a href="#v2424-2025-12-15" class="md-nav__link">
12718
+ <span class="md-ellipsis">
12719
+
12720
+ v2.4.24 (2025-12-15)
12721
+
12722
+ </span>
12723
+ </a>
12724
+
12725
+ <nav class="md-nav" aria-label="v2.4.24 (2025-12-15)">
12726
+ <ul class="md-nav__list">
12727
+
12728
+ <li class="md-nav__item">
12729
+ <a href="#security-in-v2424" class="md-nav__link">
12730
+ <span class="md-ellipsis">
12731
+
12732
+ Security in v2.4.24
12733
+
12734
+ </span>
12735
+ </a>
12736
+
12737
+ </li>
12738
+
12739
+ <li class="md-nav__item">
12740
+ <a href="#added-in-v2424" class="md-nav__link">
12741
+ <span class="md-ellipsis">
12742
+
12743
+ Added in v2.4.24
12744
+
12745
+ </span>
12746
+ </a>
12747
+
12748
+ </li>
12749
+
12750
+ <li class="md-nav__item">
12751
+ <a href="#deprecated-in-v2424" class="md-nav__link">
12752
+ <span class="md-ellipsis">
12753
+
12754
+ Deprecated in v2.4.24
12755
+
12756
+ </span>
12757
+ </a>
12758
+
12759
+ </li>
12760
+
12761
+ <li class="md-nav__item">
12762
+ <a href="#fixed-in-v2424" class="md-nav__link">
12763
+ <span class="md-ellipsis">
12764
+
12765
+ Fixed in v2.4.24
12766
+
12767
+ </span>
12768
+ </a>
12769
+
12770
+ </li>
12771
+
12772
+ <li class="md-nav__item">
12773
+ <a href="#dependencies-in-v2424" class="md-nav__link">
12774
+ <span class="md-ellipsis">
12775
+
12776
+ Dependencies in v2.4.24
12777
+
12778
+ </span>
12779
+ </a>
12780
+
12781
+ </li>
12782
+
12783
+ <li class="md-nav__item">
12784
+ <a href="#housekeeping-in-v2424" class="md-nav__link">
12785
+ <span class="md-ellipsis">
12786
+
12787
+ Housekeeping in v2.4.24
12788
+
12789
+ </span>
12790
+ </a>
12791
+
12792
+ </li>
12793
+
12794
+ </ul>
12795
+ </nav>
12796
+
12797
+ </li>
12798
+
12799
+ <li class="md-nav__item">
12800
+ <a href="#v2423-2025-11-24" class="md-nav__link">
12801
+ <span class="md-ellipsis">
12802
+
12803
+ v2.4.23 (2025-11-24)
12804
+
12805
+ </span>
12806
+ </a>
12807
+
12808
+ <nav class="md-nav" aria-label="v2.4.23 (2025-11-24)">
12809
+ <ul class="md-nav__list">
12810
+
12811
+ <li class="md-nav__item">
12812
+ <a href="#added-in-v2423" class="md-nav__link">
12813
+ <span class="md-ellipsis">
12814
+
12815
+ Added in v2.4.23
12816
+
12817
+ </span>
12818
+ </a>
12819
+
12820
+ </li>
12821
+
12822
+ <li class="md-nav__item">
12823
+ <a href="#fixed-in-v2423" class="md-nav__link">
12824
+ <span class="md-ellipsis">
12825
+
12826
+ Fixed in v2.4.23
12827
+
12828
+ </span>
12829
+ </a>
12830
+
12831
+ </li>
12832
+
12833
+ <li class="md-nav__item">
12834
+ <a href="#documentation-in-v2423" class="md-nav__link">
12835
+ <span class="md-ellipsis">
12836
+
12837
+ Documentation in v2.4.23
12838
+
12839
+ </span>
12840
+ </a>
12841
+
12842
+ </li>
12843
+
12844
+ <li class="md-nav__item">
12845
+ <a href="#housekeeping-in-v2423" class="md-nav__link">
12846
+ <span class="md-ellipsis">
12847
+
12848
+ Housekeeping in v2.4.23
12849
+
12850
+ </span>
12851
+ </a>
12852
+
12853
+ </li>
12854
+
12855
+ </ul>
12856
+ </nav>
12857
+
12586
12858
  </li>
12587
12859
 
12588
12860
  <li class="md-nav__item">
@@ -15477,6 +15749,222 @@
15477
15749
  </ul>
15478
15750
  </nav>
15479
15751
 
15752
+ </li>
15753
+
15754
+ <li class="md-nav__item">
15755
+ <a href="#v2425-2026-01-09" class="md-nav__link">
15756
+ <span class="md-ellipsis">
15757
+
15758
+ v2.4.25 (2026-01-09)
15759
+
15760
+ </span>
15761
+ </a>
15762
+
15763
+ <nav class="md-nav" aria-label="v2.4.25 (2026-01-09)">
15764
+ <ul class="md-nav__list">
15765
+
15766
+ <li class="md-nav__item">
15767
+ <a href="#security-in-v2425" class="md-nav__link">
15768
+ <span class="md-ellipsis">
15769
+
15770
+ Security in v2.4.25
15771
+
15772
+ </span>
15773
+ </a>
15774
+
15775
+ </li>
15776
+
15777
+ <li class="md-nav__item">
15778
+ <a href="#added-in-v2425" class="md-nav__link">
15779
+ <span class="md-ellipsis">
15780
+
15781
+ Added in v2.4.25
15782
+
15783
+ </span>
15784
+ </a>
15785
+
15786
+ </li>
15787
+
15788
+ <li class="md-nav__item">
15789
+ <a href="#changed-in-v2425" class="md-nav__link">
15790
+ <span class="md-ellipsis">
15791
+
15792
+ Changed in v2.4.25
15793
+
15794
+ </span>
15795
+ </a>
15796
+
15797
+ </li>
15798
+
15799
+ <li class="md-nav__item">
15800
+ <a href="#fixed-in-v2425" class="md-nav__link">
15801
+ <span class="md-ellipsis">
15802
+
15803
+ Fixed in v2.4.25
15804
+
15805
+ </span>
15806
+ </a>
15807
+
15808
+ </li>
15809
+
15810
+ <li class="md-nav__item">
15811
+ <a href="#documentation-in-v2425" class="md-nav__link">
15812
+ <span class="md-ellipsis">
15813
+
15814
+ Documentation in v2.4.25
15815
+
15816
+ </span>
15817
+ </a>
15818
+
15819
+ </li>
15820
+
15821
+ </ul>
15822
+ </nav>
15823
+
15824
+ </li>
15825
+
15826
+ <li class="md-nav__item">
15827
+ <a href="#v2424-2025-12-15" class="md-nav__link">
15828
+ <span class="md-ellipsis">
15829
+
15830
+ v2.4.24 (2025-12-15)
15831
+
15832
+ </span>
15833
+ </a>
15834
+
15835
+ <nav class="md-nav" aria-label="v2.4.24 (2025-12-15)">
15836
+ <ul class="md-nav__list">
15837
+
15838
+ <li class="md-nav__item">
15839
+ <a href="#security-in-v2424" class="md-nav__link">
15840
+ <span class="md-ellipsis">
15841
+
15842
+ Security in v2.4.24
15843
+
15844
+ </span>
15845
+ </a>
15846
+
15847
+ </li>
15848
+
15849
+ <li class="md-nav__item">
15850
+ <a href="#added-in-v2424" class="md-nav__link">
15851
+ <span class="md-ellipsis">
15852
+
15853
+ Added in v2.4.24
15854
+
15855
+ </span>
15856
+ </a>
15857
+
15858
+ </li>
15859
+
15860
+ <li class="md-nav__item">
15861
+ <a href="#deprecated-in-v2424" class="md-nav__link">
15862
+ <span class="md-ellipsis">
15863
+
15864
+ Deprecated in v2.4.24
15865
+
15866
+ </span>
15867
+ </a>
15868
+
15869
+ </li>
15870
+
15871
+ <li class="md-nav__item">
15872
+ <a href="#fixed-in-v2424" class="md-nav__link">
15873
+ <span class="md-ellipsis">
15874
+
15875
+ Fixed in v2.4.24
15876
+
15877
+ </span>
15878
+ </a>
15879
+
15880
+ </li>
15881
+
15882
+ <li class="md-nav__item">
15883
+ <a href="#dependencies-in-v2424" class="md-nav__link">
15884
+ <span class="md-ellipsis">
15885
+
15886
+ Dependencies in v2.4.24
15887
+
15888
+ </span>
15889
+ </a>
15890
+
15891
+ </li>
15892
+
15893
+ <li class="md-nav__item">
15894
+ <a href="#housekeeping-in-v2424" class="md-nav__link">
15895
+ <span class="md-ellipsis">
15896
+
15897
+ Housekeeping in v2.4.24
15898
+
15899
+ </span>
15900
+ </a>
15901
+
15902
+ </li>
15903
+
15904
+ </ul>
15905
+ </nav>
15906
+
15907
+ </li>
15908
+
15909
+ <li class="md-nav__item">
15910
+ <a href="#v2423-2025-11-24" class="md-nav__link">
15911
+ <span class="md-ellipsis">
15912
+
15913
+ v2.4.23 (2025-11-24)
15914
+
15915
+ </span>
15916
+ </a>
15917
+
15918
+ <nav class="md-nav" aria-label="v2.4.23 (2025-11-24)">
15919
+ <ul class="md-nav__list">
15920
+
15921
+ <li class="md-nav__item">
15922
+ <a href="#added-in-v2423" class="md-nav__link">
15923
+ <span class="md-ellipsis">
15924
+
15925
+ Added in v2.4.23
15926
+
15927
+ </span>
15928
+ </a>
15929
+
15930
+ </li>
15931
+
15932
+ <li class="md-nav__item">
15933
+ <a href="#fixed-in-v2423" class="md-nav__link">
15934
+ <span class="md-ellipsis">
15935
+
15936
+ Fixed in v2.4.23
15937
+
15938
+ </span>
15939
+ </a>
15940
+
15941
+ </li>
15942
+
15943
+ <li class="md-nav__item">
15944
+ <a href="#documentation-in-v2423" class="md-nav__link">
15945
+ <span class="md-ellipsis">
15946
+
15947
+ Documentation in v2.4.23
15948
+
15949
+ </span>
15950
+ </a>
15951
+
15952
+ </li>
15953
+
15954
+ <li class="md-nav__item">
15955
+ <a href="#housekeeping-in-v2423" class="md-nav__link">
15956
+ <span class="md-ellipsis">
15957
+
15958
+ Housekeeping in v2.4.23
15959
+
15960
+ </span>
15961
+ </a>
15962
+
15963
+ </li>
15964
+
15965
+ </ul>
15966
+ </nav>
15967
+
15480
15968
  </li>
15481
15969
 
15482
15970
  <li class="md-nav__item">
@@ -17478,6 +17966,94 @@
17478
17966
 
17479
17967
  <!-- towncrier release notes start -->
17480
17968
 
17969
+ <h2 id="v2425-2026-01-09">v2.4.25 (2026-01-09)<a class="headerlink" href="#v2425-2026-01-09" title="Permanent link">¶</a></h2>
17970
+ <h3 id="security-in-v2425">Security in v2.4.25<a class="headerlink" href="#security-in-v2425" title="Permanent link">¶</a></h3>
17971
+ <ul>
17972
+ <li><a href="https://github.com/nautobot/nautobot/issues/8383">#8383</a> - Updated dependency <code>pynacl</code> to <code>1.6.2</code> to mitigate CVE-2025-69277. As this is not a direct dependency, it will not auto-update when upgrading; please be sure to upgrade your local environment.</li>
17973
+ <li><a href="https://github.com/nautobot/nautobot/issues/8395">#8395</a> - Updated dependency <code>urllib3</code> to <code>2.6.3</code> to mitigate CVE-2026-21441. As this is not a direct dependency, it will not auto-update when upgrading; please be sure to upgrade your local environment.</li>
17974
+ </ul>
17975
+ <h3 id="added-in-v2425">Added in v2.4.25<a class="headerlink" href="#added-in-v2425" title="Permanent link">¶</a></h3>
17976
+ <ul>
17977
+ <li><a href="https://github.com/nautobot/nautobot/issues/7252">#7252</a> - Added <code>NAUTOBOT_KUBERNETES_JOB_MANIFEST</code> environment variable to configure <code>KUBERNETES_JOB_MANIFEST</code> setting.</li>
17978
+ </ul>
17979
+ <h3 id="changed-in-v2425">Changed in v2.4.25<a class="headerlink" href="#changed-in-v2425" title="Permanent link">¶</a></h3>
17980
+ <ul>
17981
+ <li><a href="https://github.com/nautobot/nautobot/issues/8350">#8350</a> - Use graceful degradation in case of media failure. When a dependency fails to load, show an error alert instead of navigating to a separate page.</li>
17982
+ </ul>
17983
+ <h3 id="fixed-in-v2425">Fixed in v2.4.25<a class="headerlink" href="#fixed-in-v2425" title="Permanent link">¶</a></h3>
17984
+ <ul>
17985
+ <li><a href="https://github.com/nautobot/nautobot/issues/8340">#8340</a> - Fixed incorrect default timeout values for cache entries intended to be long-lived when not explicitly invalidated.</li>
17986
+ <li><a href="https://github.com/nautobot/nautobot/issues/8362">#8362</a> - Fixed an IntegrityError when using kubernetes workers to run jobs.</li>
17987
+ <li><a href="https://github.com/nautobot/nautobot/issues/8380">#8380</a> - Restored (still-deprecated) support for explicit configuration of <code>STATICFILES_STORAGE</code> and <code>DEFAULT_FILE_STORAGE</code> in <code>nautobot_config.py</code> that was inadvertently broken when deprecating these settings in the previous release.</li>
17988
+ </ul>
17989
+ <h3 id="documentation-in-v2425">Documentation in v2.4.25<a class="headerlink" href="#documentation-in-v2425" title="Permanent link">¶</a></h3>
17990
+ <ul>
17991
+ <li><a href="https://github.com/nautobot/nautobot/issues/8380">#8380</a> - Updated documentation for the deprecated <code>STORAGE_BACKEND</code> and <code>STORAGE_CONFIG</code> settings to clarify their migration path.</li>
17992
+ </ul>
17993
+ <h2 id="v2424-2025-12-15">v2.4.24 (2025-12-15)<a class="headerlink" href="#v2424-2025-12-15" title="Permanent link">¶</a></h2>
17994
+ <h3 id="security-in-v2424">Security in v2.4.24<a class="headerlink" href="#security-in-v2424" title="Permanent link">¶</a></h3>
17995
+ <ul>
17996
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated dependency <code>celery</code> to <code>~5.6.0</code> to include a security fix (<code>https://github.com/celery/celery/pull/9997</code>).</li>
17997
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated dependency <code>urllib3</code> to version <code>2.6.1</code> due to CVE-2025-66418 and CVE-2025-66471. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
17998
+ <li><a href="https://github.com/nautobot/nautobot/issues/8271">#8271</a> - Updated dependency <code>Django</code> to <code>~4.2.27</code> to protect against CVE-2025-13372 and CVE-2025-64460.</li>
17999
+ </ul>
18000
+ <h3 id="added-in-v2424">Added in v2.4.24<a class="headerlink" href="#added-in-v2424" title="Permanent link">¶</a></h3>
18001
+ <ul>
18002
+ <li><a href="https://github.com/nautobot/nautobot/issues/694">#694</a> - Added support for defining Job input/output file storage via Django's <code>STORAGES</code> setting. This deprecates the separate settings <code>DEFAULT_FILE_STORAGE</code>, <code>JOB_FILE_IO_STORAGE</code>, <code>STATICFILES_STORAGE</code>, <code>STORAGE_BACKEND</code>, and <code>STORAGE_CONFIG</code>, which will be removed entirely in Nautobot v3.1.</li>
18003
+ <li><a href="https://github.com/nautobot/nautobot/issues/8119">#8119</a> - Added <code>TreeModel.cacheable_descendants_pks</code> method to be usable for improved performance.</li>
18004
+ <li><a href="https://github.com/nautobot/nautobot/issues/8119">#8119</a> - Added <code>nautobot.apps.api.StatsSerializer</code> and <code>nautobot.apps.ui.AsyncStatsPanel</code> to allow for defining a StatsPanel that renders asynchronously.</li>
18005
+ <li><a href="https://github.com/nautobot/nautobot/issues/8215">#8215</a> - Added support for custom Celery worker health probes based on files.</li>
18006
+ </ul>
18007
+ <h3 id="deprecated-in-v2424">Deprecated in v2.4.24<a class="headerlink" href="#deprecated-in-v2424" title="Permanent link">¶</a></h3>
18008
+ <ul>
18009
+ <li><a href="https://github.com/nautobot/nautobot/issues/694">#694</a> - Deprecated support for the settings variables <code>DEFAULT_FILE_STORAGE</code>, <code>JOB_FILE_IO_STORAGE</code>, <code>STATICFILES_STORAGE</code>, <code>STORAGE_BACKEND</code>, and <code>STORAGE_CONFIG</code>, which are replaced with Django's unified <code>STORAGES</code> setting. Support for these variables will be removed entirely in Nautobot v3.1.</li>
18010
+ </ul>
18011
+ <h3 id="fixed-in-v2424">Fixed in v2.4.24<a class="headerlink" href="#fixed-in-v2424" title="Permanent link">¶</a></h3>
18012
+ <ul>
18013
+ <li><a href="https://github.com/nautobot/nautobot/issues/8119">#8119</a> - Improved performance of Location detail view by adding caching of a repeated expensive database query and asynchronous loading of related-object statistics.</li>
18014
+ <li><a href="https://github.com/nautobot/nautobot/issues/8235">#8235</a> - Fixed inability to set a default saved view for list views defined in an App.</li>
18015
+ <li><a href="https://github.com/nautobot/nautobot/issues/8235">#8235</a> - Fixed inability to use UI Component Framework <code>BulkButton</code> for a model defined in an App.</li>
18016
+ <li><a href="https://github.com/nautobot/nautobot/issues/8274">#8274</a> - Fixed unintended omission of the rendered documentation from <code>.whl</code> packages.</li>
18017
+ <li><a href="https://github.com/nautobot/nautobot/issues/8291">#8291</a> - Removed a redundant error condition in Interface form validation when setting interface mode to tagged-all.</li>
18018
+ </ul>
18019
+ <h3 id="dependencies-in-v2424">Dependencies in v2.4.24<a class="headerlink" href="#dependencies-in-v2424" title="Permanent link">¶</a></h3>
18020
+ <ul>
18021
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated dependency <code>django-tables2</code> to <code>~2.8.0</code>.</li>
18022
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated dependency <code>django-timezone-field</code> to <code>~7.2.1</code>.</li>
18023
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated dependency <code>django-tree-queries</code> to <code>~0.23.0</code>.</li>
18024
+ </ul>
18025
+ <h3 id="housekeeping-in-v2424">Housekeeping in v2.4.24<a class="headerlink" href="#housekeeping-in-v2424" title="Permanent link">¶</a></h3>
18026
+ <ul>
18027
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated development dependency <code>coverage</code> to <code>~7.13.0</code>.</li>
18028
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated development dependency <code>ruff</code> to <code>~0.14.8</code>.</li>
18029
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated development dependency <code>tblib</code> to <code>~3.2.2</code>.</li>
18030
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated documentation dependency <code>mkdocs-gen-files</code> to <code>~0.6.0</code>.</li>
18031
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated documentation dependency <code>mkdocs-macros-plugin</code> to <code>~1.5.0</code>.</li>
18032
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.7.0</code>.</li>
18033
+ <li><a href="https://github.com/nautobot/nautobot/issues/8262">#8262</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.19.0</code>.</li>
18034
+ <li><a href="https://github.com/nautobot/nautobot/issues/8295">#8295</a> - Fixed incorrect generic filter test error message.</li>
18035
+ </ul>
18036
+ <h2 id="v2423-2025-11-24">v2.4.23 (2025-11-24)<a class="headerlink" href="#v2423-2025-11-24" title="Permanent link">¶</a></h2>
18037
+ <h3 id="added-in-v2423">Added in v2.4.23<a class="headerlink" href="#added-in-v2423" title="Permanent link">¶</a></h3>
18038
+ <ul>
18039
+ <li><a href="https://github.com/nautobot/nautobot/issues/1629">#1629</a> - Added additional Celery worker metrics.</li>
18040
+ </ul>
18041
+ <h3 id="fixed-in-v2423">Fixed in v2.4.23<a class="headerlink" href="#fixed-in-v2423" title="Permanent link">¶</a></h3>
18042
+ <ul>
18043
+ <li><a href="https://github.com/nautobot/nautobot/issues/7848">#7848</a> - Fixed the Logs Cleanup job to skip records with a protected relationship instead of raising an error.</li>
18044
+ <li><a href="https://github.com/nautobot/nautobot/issues/8025">#8025</a> - Fixed a <code>KeyError</code> when viewing a record with a symmetric one-to-one <code>Relationship</code> defined.</li>
18045
+ <li><a href="https://github.com/nautobot/nautobot/issues/8164">#8164</a> - Fixed insertion order of middleware for <code>nautobot.core.settings_funcs.setup_structlog_logging</code>.</li>
18046
+ <li><a href="https://github.com/nautobot/nautobot/issues/8178">#8178</a> - Fixed "Create and Add Another" behavior for UIViewSet-derived views.</li>
18047
+ <li><a href="https://github.com/nautobot/nautobot/issues/8202">#8202</a> - Fixed Bulk operations when using Saved View and selecting all.</li>
18048
+ </ul>
18049
+ <h3 id="documentation-in-v2423">Documentation in v2.4.23<a class="headerlink" href="#documentation-in-v2423" title="Permanent link">¶</a></h3>
18050
+ <ul>
18051
+ <li><a href="https://github.com/nautobot/nautobot/issues/1629">#1629</a> - Updated prometheus metrics documentation.</li>
18052
+ </ul>
18053
+ <h3 id="housekeeping-in-v2423">Housekeeping in v2.4.23<a class="headerlink" href="#housekeeping-in-v2423" title="Permanent link">¶</a></h3>
18054
+ <ul>
18055
+ <li><a href="https://github.com/nautobot/nautobot/issues/8162">#8162</a> - Updated GitHub Actions definitions for ltm-2.4 branch.</li>
18056
+ </ul>
17481
18057
  <h2 id="v2422-2025-11-10">v2.4.22 (2025-11-10)<a class="headerlink" href="#v2422-2025-11-10" title="Permanent link">¶</a></h2>
17482
18058
  <h3 id="security-in-v2422">Security in v2.4.22<a class="headerlink" href="#security-in-v2422" title="Permanent link">¶</a></h3>
17483
18059
  <ul>