nautobot 2.3.9__py3-none-any.whl → 2.3.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of nautobot might be problematic. Click here for more details.

Files changed (296) hide show
  1. nautobot/core/models/query_functions.py +147 -1
  2. nautobot/core/tests/test_models_query_functions.py +108 -0
  3. nautobot/dcim/templates/dcim/modulebay_create.html +39 -0
  4. nautobot/dcim/templates/dcim/modulebay_update.html +39 -0
  5. nautobot/dcim/views.py +1 -1
  6. nautobot/extras/api/customfields.py +3 -10
  7. nautobot/extras/context_managers.py +23 -3
  8. nautobot/extras/jobs.py +20 -14
  9. nautobot/extras/models/customfields.py +12 -0
  10. nautobot/extras/signals.py +2 -0
  11. nautobot/extras/tasks.py +88 -69
  12. nautobot/extras/tests/test_context_managers.py +9 -4
  13. nautobot/extras/tests/test_webhooks.py +1 -1
  14. nautobot/extras/webhooks.py +16 -7
  15. nautobot/project-static/docs/404.html +1 -1
  16. nautobot/project-static/docs/apps/index.html +1 -1
  17. nautobot/project-static/docs/apps/nautobot-apps.html +1 -1
  18. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +1 -1
  19. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +1 -1
  20. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1 -1
  21. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +1 -1
  22. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +1 -1
  23. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +1 -1
  24. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +1 -1
  25. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +1 -1
  26. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +1 -1
  27. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +1 -1
  28. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +1 -1
  29. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1 -1
  30. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +1 -1
  31. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +62 -5
  32. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +1 -1
  33. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +1 -1
  34. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +1 -1
  35. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +1 -1
  36. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +1 -1
  37. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +1 -1
  38. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +1 -1
  39. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +1 -1
  40. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1 -1
  41. nautobot/project-static/docs/development/apps/api/configuration-view.html +1 -1
  42. nautobot/project-static/docs/development/apps/api/database-backend-config.html +1 -1
  43. nautobot/project-static/docs/development/apps/api/models/django-admin.html +1 -1
  44. nautobot/project-static/docs/development/apps/api/models/global-search.html +1 -1
  45. nautobot/project-static/docs/development/apps/api/models/graphql.html +1 -1
  46. nautobot/project-static/docs/development/apps/api/models/index.html +1 -1
  47. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +1 -1
  48. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +1 -1
  49. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +1 -1
  50. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +1 -1
  51. nautobot/project-static/docs/development/apps/api/platform-features/index.html +1 -1
  52. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +1 -1
  53. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +1 -1
  54. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +1 -1
  55. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +1 -1
  56. nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +1 -1
  57. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +1 -1
  58. nautobot/project-static/docs/development/apps/api/prometheus.html +1 -1
  59. nautobot/project-static/docs/development/apps/api/setup.html +1 -1
  60. nautobot/project-static/docs/development/apps/api/testing.html +1 -1
  61. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +1 -1
  62. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +1 -1
  63. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +1 -1
  64. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +1 -1
  65. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +1 -1
  66. nautobot/project-static/docs/development/apps/api/views/base-template.html +1 -1
  67. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +1 -1
  68. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +1 -1
  69. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +1 -1
  70. nautobot/project-static/docs/development/apps/api/views/index.html +1 -1
  71. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +1 -1
  72. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +1 -1
  73. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +1 -1
  74. nautobot/project-static/docs/development/apps/api/views/notes.html +1 -1
  75. nautobot/project-static/docs/development/apps/api/views/rest-api.html +1 -1
  76. nautobot/project-static/docs/development/apps/api/views/urls.html +1 -1
  77. nautobot/project-static/docs/development/apps/index.html +1 -1
  78. nautobot/project-static/docs/development/apps/migration/code-updates.html +1 -1
  79. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +1 -1
  80. nautobot/project-static/docs/development/apps/migration/from-v1.html +1 -1
  81. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +1 -1
  82. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +1 -1
  83. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +1 -1
  84. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +1 -1
  85. nautobot/project-static/docs/development/apps/porting-from-netbox.html +1 -1
  86. nautobot/project-static/docs/development/core/application-registry.html +1 -1
  87. nautobot/project-static/docs/development/core/best-practices.html +1 -1
  88. nautobot/project-static/docs/development/core/bootstrap-ui.html +1 -1
  89. nautobot/project-static/docs/development/core/caching.html +1 -1
  90. nautobot/project-static/docs/development/core/controllers.html +1 -1
  91. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +1 -1
  92. nautobot/project-static/docs/development/core/generic-views.html +1 -1
  93. nautobot/project-static/docs/development/core/getting-started.html +1 -1
  94. nautobot/project-static/docs/development/core/homepage.html +1 -1
  95. nautobot/project-static/docs/development/core/index.html +1 -1
  96. nautobot/project-static/docs/development/core/model-checklist.html +1 -1
  97. nautobot/project-static/docs/development/core/model-features.html +1 -1
  98. nautobot/project-static/docs/development/core/natural-keys.html +1 -1
  99. nautobot/project-static/docs/development/core/navigation-menu.html +1 -1
  100. nautobot/project-static/docs/development/core/release-checklist.html +1 -1
  101. nautobot/project-static/docs/development/core/role-internals.html +1 -1
  102. nautobot/project-static/docs/development/core/settings.html +1 -1
  103. nautobot/project-static/docs/development/core/style-guide.html +1 -1
  104. nautobot/project-static/docs/development/core/templates.html +1 -1
  105. nautobot/project-static/docs/development/core/testing.html +1 -1
  106. nautobot/project-static/docs/development/core/user-preferences.html +1 -1
  107. nautobot/project-static/docs/development/index.html +1 -1
  108. nautobot/project-static/docs/development/jobs/index.html +1 -1
  109. nautobot/project-static/docs/development/jobs/migration/from-v1.html +1 -1
  110. nautobot/project-static/docs/index.html +1 -1
  111. nautobot/project-static/docs/overview/application_stack.html +1 -1
  112. nautobot/project-static/docs/overview/design_philosophy.html +1 -1
  113. nautobot/project-static/docs/release-notes/index.html +1 -1
  114. nautobot/project-static/docs/release-notes/version-1.0.html +1 -1
  115. nautobot/project-static/docs/release-notes/version-1.1.html +1 -1
  116. nautobot/project-static/docs/release-notes/version-1.2.html +1 -1
  117. nautobot/project-static/docs/release-notes/version-1.3.html +1 -1
  118. nautobot/project-static/docs/release-notes/version-1.4.html +1 -1
  119. nautobot/project-static/docs/release-notes/version-1.5.html +1 -1
  120. nautobot/project-static/docs/release-notes/version-1.6.html +1 -1
  121. nautobot/project-static/docs/release-notes/version-2.0.html +1 -1
  122. nautobot/project-static/docs/release-notes/version-2.1.html +1 -1
  123. nautobot/project-static/docs/release-notes/version-2.2.html +1 -1
  124. nautobot/project-static/docs/release-notes/version-2.3.html +268 -123
  125. nautobot/project-static/docs/requirements.txt +1 -1
  126. nautobot/project-static/docs/search/search_index.json +1 -1
  127. nautobot/project-static/docs/sitemap.xml +270 -270
  128. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  129. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +1 -1
  130. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +1 -1
  131. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +1 -1
  132. nautobot/project-static/docs/user-guide/administration/configuration/index.html +1 -1
  133. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +1 -1
  134. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +1 -1
  135. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +1 -1
  136. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +1 -1
  137. nautobot/project-static/docs/user-guide/administration/guides/docker.html +1 -1
  138. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +1 -1
  139. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +1 -1
  140. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +1 -1
  141. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +1 -1
  142. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +1 -1
  143. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +1 -1
  144. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +1 -1
  145. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +1 -1
  146. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +1 -1
  147. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +1 -1
  148. nautobot/project-static/docs/user-guide/administration/installation/index.html +1 -1
  149. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +1 -1
  150. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +1 -1
  151. nautobot/project-static/docs/user-guide/administration/installation/services.html +1 -1
  152. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +1 -1
  153. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +1 -1
  154. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +1 -1
  155. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +1 -1
  156. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +1 -1
  157. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +1 -1
  158. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +1 -1
  159. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +1 -1
  160. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +1 -1
  161. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +1 -1
  162. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +1 -1
  163. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +1 -1
  164. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +1 -1
  165. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +1 -1
  166. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +1 -1
  167. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +1 -1
  168. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +1 -1
  169. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +1 -1
  170. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +1 -1
  171. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +1 -1
  172. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +1 -1
  173. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +1 -1
  174. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +1 -1
  175. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +1 -1
  176. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +1 -1
  177. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +1 -1
  178. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +1 -1
  179. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +1 -1
  180. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +1 -1
  181. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +1 -1
  182. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +1 -1
  183. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +1 -1
  184. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +1 -1
  185. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +1 -1
  186. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +1 -1
  187. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +1 -1
  188. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +1 -1
  189. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +1 -1
  190. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +1 -1
  191. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +1 -1
  192. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +1 -1
  193. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +1 -1
  194. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +1 -1
  195. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +1 -1
  196. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +1 -1
  197. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +1 -1
  198. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +1 -1
  199. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +1 -1
  200. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +1 -1
  201. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +1 -1
  202. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +1 -1
  203. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +1 -1
  204. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +1 -1
  205. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +1 -1
  206. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +1 -1
  207. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +1 -1
  208. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +1 -1
  209. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +1 -1
  210. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +1 -1
  211. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +1 -1
  212. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +1 -1
  213. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +1 -1
  214. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +1 -1
  215. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +1 -1
  216. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +1 -1
  217. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +1 -1
  218. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +1 -1
  219. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +1 -1
  220. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +1 -1
  221. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +1 -1
  222. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +1 -1
  223. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +1 -1
  224. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +1 -1
  225. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +1 -1
  226. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +1 -1
  227. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +1 -1
  228. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +1 -1
  229. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +1 -1
  230. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +1 -1
  231. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +1 -1
  232. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +1 -1
  233. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +1 -1
  234. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +1 -1
  235. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +1 -1
  236. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +1 -1
  237. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +1 -1
  238. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +1 -1
  239. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +1 -1
  240. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +1 -1
  241. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +1 -1
  242. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +1 -1
  243. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +1 -1
  244. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +1 -1
  245. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +1 -1
  246. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +1 -1
  247. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +1 -1
  248. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +1 -1
  249. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +1 -1
  250. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +1 -1
  251. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +1 -1
  252. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +1 -1
  253. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +1 -1
  254. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +1 -1
  255. nautobot/project-static/docs/user-guide/index.html +1 -1
  256. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +1 -1
  257. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +1 -1
  258. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +1 -1
  259. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +1 -1
  260. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +1 -1
  261. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +1 -1
  262. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +1 -1
  263. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +1 -1
  264. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +1 -1
  265. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +1 -1
  266. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +1 -1
  267. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +1 -1
  268. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +1 -1
  269. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +1 -1
  270. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +1 -1
  271. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +1 -1
  272. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +1 -1
  273. nautobot/project-static/docs/user-guide/platform-functionality/note.html +1 -1
  274. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +1 -1
  275. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +1 -1
  276. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +1 -1
  277. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +1 -1
  278. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +1 -1
  279. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +1 -1
  280. nautobot/project-static/docs/user-guide/platform-functionality/role.html +1 -1
  281. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +1 -1
  282. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +1 -1
  283. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +1 -1
  284. nautobot/project-static/docs/user-guide/platform-functionality/status.html +1 -1
  285. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +1 -1
  286. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +1 -1
  287. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +1 -1
  288. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +1 -1
  289. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +1 -1
  290. nautobot/project-static/js/forms.js +0 -38
  291. {nautobot-2.3.9.dist-info → nautobot-2.3.10.dist-info}/METADATA +2 -2
  292. {nautobot-2.3.9.dist-info → nautobot-2.3.10.dist-info}/RECORD +296 -293
  293. {nautobot-2.3.9.dist-info → nautobot-2.3.10.dist-info}/LICENSE.txt +0 -0
  294. {nautobot-2.3.9.dist-info → nautobot-2.3.10.dist-info}/NOTICE +0 -0
  295. {nautobot-2.3.9.dist-info → nautobot-2.3.10.dist-info}/WHEEL +0 -0
  296. {nautobot-2.3.9.dist-info → nautobot-2.3.10.dist-info}/entry_points.txt +0 -0
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
  <link rel="icon" href="../assets/favicon.ico">
21
- <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.41">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.42">
22
22
 
23
23
 
24
24
 
@@ -8257,13 +8257,13 @@
8257
8257
  </li>
8258
8258
 
8259
8259
  <li class="md-nav__item">
8260
- <a href="#v239-2024-10-28" class="md-nav__link">
8260
+ <a href="#v2310-2024-10-29" class="md-nav__link">
8261
8261
  <span class="md-ellipsis">
8262
- v2.3.9 (2024-10-28)
8262
+ v2.3.10 (2024-10-29)
8263
8263
  </span>
8264
8264
  </a>
8265
8265
 
8266
- <nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
8266
+ <nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
8267
8267
  <ul class="md-nav__list">
8268
8268
 
8269
8269
  <li class="md-nav__item">
@@ -8314,6 +8314,66 @@
8314
8314
  </ul>
8315
8315
  </nav>
8316
8316
 
8317
+ </li>
8318
+
8319
+ <li class="md-nav__item">
8320
+ <a href="#v239-2024-10-28" class="md-nav__link">
8321
+ <span class="md-ellipsis">
8322
+ v2.3.9 (2024-10-28)
8323
+ </span>
8324
+ </a>
8325
+
8326
+ <nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
8327
+ <ul class="md-nav__list">
8328
+
8329
+ <li class="md-nav__item">
8330
+ <a href="#added_2" class="md-nav__link">
8331
+ <span class="md-ellipsis">
8332
+ Added
8333
+ </span>
8334
+ </a>
8335
+
8336
+ </li>
8337
+
8338
+ <li class="md-nav__item">
8339
+ <a href="#changed_2" class="md-nav__link">
8340
+ <span class="md-ellipsis">
8341
+ Changed
8342
+ </span>
8343
+ </a>
8344
+
8345
+ </li>
8346
+
8347
+ <li class="md-nav__item">
8348
+ <a href="#fixed_1" class="md-nav__link">
8349
+ <span class="md-ellipsis">
8350
+ Fixed
8351
+ </span>
8352
+ </a>
8353
+
8354
+ </li>
8355
+
8356
+ <li class="md-nav__item">
8357
+ <a href="#dependencies_2" class="md-nav__link">
8358
+ <span class="md-ellipsis">
8359
+ Dependencies
8360
+ </span>
8361
+ </a>
8362
+
8363
+ </li>
8364
+
8365
+ <li class="md-nav__item">
8366
+ <a href="#housekeeping_1" class="md-nav__link">
8367
+ <span class="md-ellipsis">
8368
+ Housekeeping
8369
+ </span>
8370
+ </a>
8371
+
8372
+ </li>
8373
+
8374
+ </ul>
8375
+ </nav>
8376
+
8317
8377
  </li>
8318
8378
 
8319
8379
  <li class="md-nav__item">
@@ -8327,7 +8387,7 @@
8327
8387
  <ul class="md-nav__list">
8328
8388
 
8329
8389
  <li class="md-nav__item">
8330
- <a href="#fixed_1" class="md-nav__link">
8390
+ <a href="#fixed_2" class="md-nav__link">
8331
8391
  <span class="md-ellipsis">
8332
8392
  Fixed
8333
8393
  </span>
@@ -8351,7 +8411,7 @@
8351
8411
  <ul class="md-nav__list">
8352
8412
 
8353
8413
  <li class="md-nav__item">
8354
- <a href="#added_2" class="md-nav__link">
8414
+ <a href="#added_3" class="md-nav__link">
8355
8415
  <span class="md-ellipsis">
8356
8416
  Added
8357
8417
  </span>
@@ -8360,7 +8420,7 @@
8360
8420
  </li>
8361
8421
 
8362
8422
  <li class="md-nav__item">
8363
- <a href="#changed_2" class="md-nav__link">
8423
+ <a href="#changed_3" class="md-nav__link">
8364
8424
  <span class="md-ellipsis">
8365
8425
  Changed
8366
8426
  </span>
@@ -8369,7 +8429,7 @@
8369
8429
  </li>
8370
8430
 
8371
8431
  <li class="md-nav__item">
8372
- <a href="#fixed_2" class="md-nav__link">
8432
+ <a href="#fixed_3" class="md-nav__link">
8373
8433
  <span class="md-ellipsis">
8374
8434
  Fixed
8375
8435
  </span>
@@ -8378,7 +8438,7 @@
8378
8438
  </li>
8379
8439
 
8380
8440
  <li class="md-nav__item">
8381
- <a href="#dependencies_2" class="md-nav__link">
8441
+ <a href="#dependencies_3" class="md-nav__link">
8382
8442
  <span class="md-ellipsis">
8383
8443
  Dependencies
8384
8444
  </span>
@@ -8387,7 +8447,7 @@
8387
8447
  </li>
8388
8448
 
8389
8449
  <li class="md-nav__item">
8390
- <a href="#housekeeping_1" class="md-nav__link">
8450
+ <a href="#housekeeping_2" class="md-nav__link">
8391
8451
  <span class="md-ellipsis">
8392
8452
  Housekeeping
8393
8453
  </span>
@@ -8411,7 +8471,7 @@
8411
8471
  <ul class="md-nav__list">
8412
8472
 
8413
8473
  <li class="md-nav__item">
8414
- <a href="#added_3" class="md-nav__link">
8474
+ <a href="#added_4" class="md-nav__link">
8415
8475
  <span class="md-ellipsis">
8416
8476
  Added
8417
8477
  </span>
@@ -8420,7 +8480,7 @@
8420
8480
  </li>
8421
8481
 
8422
8482
  <li class="md-nav__item">
8423
- <a href="#fixed_3" class="md-nav__link">
8483
+ <a href="#fixed_4" class="md-nav__link">
8424
8484
  <span class="md-ellipsis">
8425
8485
  Fixed
8426
8486
  </span>
@@ -8438,7 +8498,7 @@
8438
8498
  </li>
8439
8499
 
8440
8500
  <li class="md-nav__item">
8441
- <a href="#housekeeping_2" class="md-nav__link">
8501
+ <a href="#housekeeping_3" class="md-nav__link">
8442
8502
  <span class="md-ellipsis">
8443
8503
  Housekeeping
8444
8504
  </span>
@@ -8462,7 +8522,7 @@
8462
8522
  <ul class="md-nav__list">
8463
8523
 
8464
8524
  <li class="md-nav__item">
8465
- <a href="#added_4" class="md-nav__link">
8525
+ <a href="#added_5" class="md-nav__link">
8466
8526
  <span class="md-ellipsis">
8467
8527
  Added
8468
8528
  </span>
@@ -8471,7 +8531,7 @@
8471
8531
  </li>
8472
8532
 
8473
8533
  <li class="md-nav__item">
8474
- <a href="#changed_3" class="md-nav__link">
8534
+ <a href="#changed_4" class="md-nav__link">
8475
8535
  <span class="md-ellipsis">
8476
8536
  Changed
8477
8537
  </span>
@@ -8480,7 +8540,7 @@
8480
8540
  </li>
8481
8541
 
8482
8542
  <li class="md-nav__item">
8483
- <a href="#fixed_4" class="md-nav__link">
8543
+ <a href="#fixed_5" class="md-nav__link">
8484
8544
  <span class="md-ellipsis">
8485
8545
  Fixed
8486
8546
  </span>
@@ -8489,7 +8549,7 @@
8489
8549
  </li>
8490
8550
 
8491
8551
  <li class="md-nav__item">
8492
- <a href="#dependencies_3" class="md-nav__link">
8552
+ <a href="#dependencies_4" class="md-nav__link">
8493
8553
  <span class="md-ellipsis">
8494
8554
  Dependencies
8495
8555
  </span>
@@ -8507,7 +8567,7 @@
8507
8567
  </li>
8508
8568
 
8509
8569
  <li class="md-nav__item">
8510
- <a href="#housekeeping_3" class="md-nav__link">
8570
+ <a href="#housekeeping_4" class="md-nav__link">
8511
8571
  <span class="md-ellipsis">
8512
8572
  Housekeeping
8513
8573
  </span>
@@ -8531,7 +8591,7 @@
8531
8591
  <ul class="md-nav__list">
8532
8592
 
8533
8593
  <li class="md-nav__item">
8534
- <a href="#added_5" class="md-nav__link">
8594
+ <a href="#added_6" class="md-nav__link">
8535
8595
  <span class="md-ellipsis">
8536
8596
  Added
8537
8597
  </span>
@@ -8540,7 +8600,7 @@
8540
8600
  </li>
8541
8601
 
8542
8602
  <li class="md-nav__item">
8543
- <a href="#changed_4" class="md-nav__link">
8603
+ <a href="#changed_5" class="md-nav__link">
8544
8604
  <span class="md-ellipsis">
8545
8605
  Changed
8546
8606
  </span>
@@ -8549,7 +8609,7 @@
8549
8609
  </li>
8550
8610
 
8551
8611
  <li class="md-nav__item">
8552
- <a href="#fixed_5" class="md-nav__link">
8612
+ <a href="#fixed_6" class="md-nav__link">
8553
8613
  <span class="md-ellipsis">
8554
8614
  Fixed
8555
8615
  </span>
@@ -8567,7 +8627,7 @@
8567
8627
  </li>
8568
8628
 
8569
8629
  <li class="md-nav__item">
8570
- <a href="#housekeeping_4" class="md-nav__link">
8630
+ <a href="#housekeeping_5" class="md-nav__link">
8571
8631
  <span class="md-ellipsis">
8572
8632
  Housekeeping
8573
8633
  </span>
@@ -8600,7 +8660,7 @@
8600
8660
  </li>
8601
8661
 
8602
8662
  <li class="md-nav__item">
8603
- <a href="#fixed_6" class="md-nav__link">
8663
+ <a href="#fixed_7" class="md-nav__link">
8604
8664
  <span class="md-ellipsis">
8605
8665
  Fixed
8606
8666
  </span>
@@ -8609,7 +8669,7 @@
8609
8669
  </li>
8610
8670
 
8611
8671
  <li class="md-nav__item">
8612
- <a href="#dependencies_4" class="md-nav__link">
8672
+ <a href="#dependencies_5" class="md-nav__link">
8613
8673
  <span class="md-ellipsis">
8614
8674
  Dependencies
8615
8675
  </span>
@@ -8618,7 +8678,7 @@
8618
8678
  </li>
8619
8679
 
8620
8680
  <li class="md-nav__item">
8621
- <a href="#housekeeping_5" class="md-nav__link">
8681
+ <a href="#housekeeping_6" class="md-nav__link">
8622
8682
  <span class="md-ellipsis">
8623
8683
  Housekeeping
8624
8684
  </span>
@@ -8651,7 +8711,7 @@
8651
8711
  </li>
8652
8712
 
8653
8713
  <li class="md-nav__item">
8654
- <a href="#added_6" class="md-nav__link">
8714
+ <a href="#added_7" class="md-nav__link">
8655
8715
  <span class="md-ellipsis">
8656
8716
  Added
8657
8717
  </span>
@@ -8660,7 +8720,7 @@
8660
8720
  </li>
8661
8721
 
8662
8722
  <li class="md-nav__item">
8663
- <a href="#fixed_7" class="md-nav__link">
8723
+ <a href="#fixed_8" class="md-nav__link">
8664
8724
  <span class="md-ellipsis">
8665
8725
  Fixed
8666
8726
  </span>
@@ -8669,7 +8729,7 @@
8669
8729
  </li>
8670
8730
 
8671
8731
  <li class="md-nav__item">
8672
- <a href="#housekeeping_6" class="md-nav__link">
8732
+ <a href="#housekeeping_7" class="md-nav__link">
8673
8733
  <span class="md-ellipsis">
8674
8734
  Housekeeping
8675
8735
  </span>
@@ -8693,7 +8753,7 @@
8693
8753
  <ul class="md-nav__list">
8694
8754
 
8695
8755
  <li class="md-nav__item">
8696
- <a href="#added_7" class="md-nav__link">
8756
+ <a href="#added_8" class="md-nav__link">
8697
8757
  <span class="md-ellipsis">
8698
8758
  Added
8699
8759
  </span>
@@ -8702,7 +8762,7 @@
8702
8762
  </li>
8703
8763
 
8704
8764
  <li class="md-nav__item">
8705
- <a href="#changed_5" class="md-nav__link">
8765
+ <a href="#changed_6" class="md-nav__link">
8706
8766
  <span class="md-ellipsis">
8707
8767
  Changed
8708
8768
  </span>
@@ -8711,7 +8771,7 @@
8711
8771
  </li>
8712
8772
 
8713
8773
  <li class="md-nav__item">
8714
- <a href="#fixed_8" class="md-nav__link">
8774
+ <a href="#fixed_9" class="md-nav__link">
8715
8775
  <span class="md-ellipsis">
8716
8776
  Fixed
8717
8777
  </span>
@@ -8720,7 +8780,7 @@
8720
8780
  </li>
8721
8781
 
8722
8782
  <li class="md-nav__item">
8723
- <a href="#housekeeping_7" class="md-nav__link">
8783
+ <a href="#housekeeping_8" class="md-nav__link">
8724
8784
  <span class="md-ellipsis">
8725
8785
  Housekeeping
8726
8786
  </span>
@@ -8753,7 +8813,7 @@
8753
8813
  </li>
8754
8814
 
8755
8815
  <li class="md-nav__item">
8756
- <a href="#added_8" class="md-nav__link">
8816
+ <a href="#added_9" class="md-nav__link">
8757
8817
  <span class="md-ellipsis">
8758
8818
  Added
8759
8819
  </span>
@@ -8762,7 +8822,7 @@
8762
8822
  </li>
8763
8823
 
8764
8824
  <li class="md-nav__item">
8765
- <a href="#changed_6" class="md-nav__link">
8825
+ <a href="#changed_7" class="md-nav__link">
8766
8826
  <span class="md-ellipsis">
8767
8827
  Changed
8768
8828
  </span>
@@ -8780,7 +8840,7 @@
8780
8840
  </li>
8781
8841
 
8782
8842
  <li class="md-nav__item">
8783
- <a href="#fixed_9" class="md-nav__link">
8843
+ <a href="#fixed_10" class="md-nav__link">
8784
8844
  <span class="md-ellipsis">
8785
8845
  Fixed
8786
8846
  </span>
@@ -8798,7 +8858,7 @@
8798
8858
  </li>
8799
8859
 
8800
8860
  <li class="md-nav__item">
8801
- <a href="#housekeeping_8" class="md-nav__link">
8861
+ <a href="#housekeeping_9" class="md-nav__link">
8802
8862
  <span class="md-ellipsis">
8803
8863
  Housekeeping
8804
8864
  </span>
@@ -8831,7 +8891,7 @@
8831
8891
  </li>
8832
8892
 
8833
8893
  <li class="md-nav__item">
8834
- <a href="#added_9" class="md-nav__link">
8894
+ <a href="#added_10" class="md-nav__link">
8835
8895
  <span class="md-ellipsis">
8836
8896
  Added
8837
8897
  </span>
@@ -8840,7 +8900,7 @@
8840
8900
  </li>
8841
8901
 
8842
8902
  <li class="md-nav__item">
8843
- <a href="#changed_7" class="md-nav__link">
8903
+ <a href="#changed_8" class="md-nav__link">
8844
8904
  <span class="md-ellipsis">
8845
8905
  Changed
8846
8906
  </span>
@@ -8867,7 +8927,7 @@
8867
8927
  </li>
8868
8928
 
8869
8929
  <li class="md-nav__item">
8870
- <a href="#fixed_10" class="md-nav__link">
8930
+ <a href="#fixed_11" class="md-nav__link">
8871
8931
  <span class="md-ellipsis">
8872
8932
  Fixed
8873
8933
  </span>
@@ -8876,7 +8936,7 @@
8876
8936
  </li>
8877
8937
 
8878
8938
  <li class="md-nav__item">
8879
- <a href="#dependencies_5" class="md-nav__link">
8939
+ <a href="#dependencies_6" class="md-nav__link">
8880
8940
  <span class="md-ellipsis">
8881
8941
  Dependencies
8882
8942
  </span>
@@ -8894,7 +8954,7 @@
8894
8954
  </li>
8895
8955
 
8896
8956
  <li class="md-nav__item">
8897
- <a href="#housekeeping_9" class="md-nav__link">
8957
+ <a href="#housekeeping_10" class="md-nav__link">
8898
8958
  <span class="md-ellipsis">
8899
8959
  Housekeeping
8900
8960
  </span>
@@ -9708,13 +9768,13 @@
9708
9768
  </li>
9709
9769
 
9710
9770
  <li class="md-nav__item">
9711
- <a href="#v239-2024-10-28" class="md-nav__link">
9771
+ <a href="#v2310-2024-10-29" class="md-nav__link">
9712
9772
  <span class="md-ellipsis">
9713
- v2.3.9 (2024-10-28)
9773
+ v2.3.10 (2024-10-29)
9714
9774
  </span>
9715
9775
  </a>
9716
9776
 
9717
- <nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
9777
+ <nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
9718
9778
  <ul class="md-nav__list">
9719
9779
 
9720
9780
  <li class="md-nav__item">
@@ -9765,6 +9825,66 @@
9765
9825
  </ul>
9766
9826
  </nav>
9767
9827
 
9828
+ </li>
9829
+
9830
+ <li class="md-nav__item">
9831
+ <a href="#v239-2024-10-28" class="md-nav__link">
9832
+ <span class="md-ellipsis">
9833
+ v2.3.9 (2024-10-28)
9834
+ </span>
9835
+ </a>
9836
+
9837
+ <nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
9838
+ <ul class="md-nav__list">
9839
+
9840
+ <li class="md-nav__item">
9841
+ <a href="#added_2" class="md-nav__link">
9842
+ <span class="md-ellipsis">
9843
+ Added
9844
+ </span>
9845
+ </a>
9846
+
9847
+ </li>
9848
+
9849
+ <li class="md-nav__item">
9850
+ <a href="#changed_2" class="md-nav__link">
9851
+ <span class="md-ellipsis">
9852
+ Changed
9853
+ </span>
9854
+ </a>
9855
+
9856
+ </li>
9857
+
9858
+ <li class="md-nav__item">
9859
+ <a href="#fixed_1" class="md-nav__link">
9860
+ <span class="md-ellipsis">
9861
+ Fixed
9862
+ </span>
9863
+ </a>
9864
+
9865
+ </li>
9866
+
9867
+ <li class="md-nav__item">
9868
+ <a href="#dependencies_2" class="md-nav__link">
9869
+ <span class="md-ellipsis">
9870
+ Dependencies
9871
+ </span>
9872
+ </a>
9873
+
9874
+ </li>
9875
+
9876
+ <li class="md-nav__item">
9877
+ <a href="#housekeeping_1" class="md-nav__link">
9878
+ <span class="md-ellipsis">
9879
+ Housekeeping
9880
+ </span>
9881
+ </a>
9882
+
9883
+ </li>
9884
+
9885
+ </ul>
9886
+ </nav>
9887
+
9768
9888
  </li>
9769
9889
 
9770
9890
  <li class="md-nav__item">
@@ -9778,7 +9898,7 @@
9778
9898
  <ul class="md-nav__list">
9779
9899
 
9780
9900
  <li class="md-nav__item">
9781
- <a href="#fixed_1" class="md-nav__link">
9901
+ <a href="#fixed_2" class="md-nav__link">
9782
9902
  <span class="md-ellipsis">
9783
9903
  Fixed
9784
9904
  </span>
@@ -9802,7 +9922,7 @@
9802
9922
  <ul class="md-nav__list">
9803
9923
 
9804
9924
  <li class="md-nav__item">
9805
- <a href="#added_2" class="md-nav__link">
9925
+ <a href="#added_3" class="md-nav__link">
9806
9926
  <span class="md-ellipsis">
9807
9927
  Added
9808
9928
  </span>
@@ -9811,7 +9931,7 @@
9811
9931
  </li>
9812
9932
 
9813
9933
  <li class="md-nav__item">
9814
- <a href="#changed_2" class="md-nav__link">
9934
+ <a href="#changed_3" class="md-nav__link">
9815
9935
  <span class="md-ellipsis">
9816
9936
  Changed
9817
9937
  </span>
@@ -9820,7 +9940,7 @@
9820
9940
  </li>
9821
9941
 
9822
9942
  <li class="md-nav__item">
9823
- <a href="#fixed_2" class="md-nav__link">
9943
+ <a href="#fixed_3" class="md-nav__link">
9824
9944
  <span class="md-ellipsis">
9825
9945
  Fixed
9826
9946
  </span>
@@ -9829,7 +9949,7 @@
9829
9949
  </li>
9830
9950
 
9831
9951
  <li class="md-nav__item">
9832
- <a href="#dependencies_2" class="md-nav__link">
9952
+ <a href="#dependencies_3" class="md-nav__link">
9833
9953
  <span class="md-ellipsis">
9834
9954
  Dependencies
9835
9955
  </span>
@@ -9838,7 +9958,7 @@
9838
9958
  </li>
9839
9959
 
9840
9960
  <li class="md-nav__item">
9841
- <a href="#housekeeping_1" class="md-nav__link">
9961
+ <a href="#housekeeping_2" class="md-nav__link">
9842
9962
  <span class="md-ellipsis">
9843
9963
  Housekeeping
9844
9964
  </span>
@@ -9862,7 +9982,7 @@
9862
9982
  <ul class="md-nav__list">
9863
9983
 
9864
9984
  <li class="md-nav__item">
9865
- <a href="#added_3" class="md-nav__link">
9985
+ <a href="#added_4" class="md-nav__link">
9866
9986
  <span class="md-ellipsis">
9867
9987
  Added
9868
9988
  </span>
@@ -9871,7 +9991,7 @@
9871
9991
  </li>
9872
9992
 
9873
9993
  <li class="md-nav__item">
9874
- <a href="#fixed_3" class="md-nav__link">
9994
+ <a href="#fixed_4" class="md-nav__link">
9875
9995
  <span class="md-ellipsis">
9876
9996
  Fixed
9877
9997
  </span>
@@ -9889,7 +10009,7 @@
9889
10009
  </li>
9890
10010
 
9891
10011
  <li class="md-nav__item">
9892
- <a href="#housekeeping_2" class="md-nav__link">
10012
+ <a href="#housekeeping_3" class="md-nav__link">
9893
10013
  <span class="md-ellipsis">
9894
10014
  Housekeeping
9895
10015
  </span>
@@ -9913,7 +10033,7 @@
9913
10033
  <ul class="md-nav__list">
9914
10034
 
9915
10035
  <li class="md-nav__item">
9916
- <a href="#added_4" class="md-nav__link">
10036
+ <a href="#added_5" class="md-nav__link">
9917
10037
  <span class="md-ellipsis">
9918
10038
  Added
9919
10039
  </span>
@@ -9922,7 +10042,7 @@
9922
10042
  </li>
9923
10043
 
9924
10044
  <li class="md-nav__item">
9925
- <a href="#changed_3" class="md-nav__link">
10045
+ <a href="#changed_4" class="md-nav__link">
9926
10046
  <span class="md-ellipsis">
9927
10047
  Changed
9928
10048
  </span>
@@ -9931,7 +10051,7 @@
9931
10051
  </li>
9932
10052
 
9933
10053
  <li class="md-nav__item">
9934
- <a href="#fixed_4" class="md-nav__link">
10054
+ <a href="#fixed_5" class="md-nav__link">
9935
10055
  <span class="md-ellipsis">
9936
10056
  Fixed
9937
10057
  </span>
@@ -9940,7 +10060,7 @@
9940
10060
  </li>
9941
10061
 
9942
10062
  <li class="md-nav__item">
9943
- <a href="#dependencies_3" class="md-nav__link">
10063
+ <a href="#dependencies_4" class="md-nav__link">
9944
10064
  <span class="md-ellipsis">
9945
10065
  Dependencies
9946
10066
  </span>
@@ -9958,7 +10078,7 @@
9958
10078
  </li>
9959
10079
 
9960
10080
  <li class="md-nav__item">
9961
- <a href="#housekeeping_3" class="md-nav__link">
10081
+ <a href="#housekeeping_4" class="md-nav__link">
9962
10082
  <span class="md-ellipsis">
9963
10083
  Housekeeping
9964
10084
  </span>
@@ -9982,7 +10102,7 @@
9982
10102
  <ul class="md-nav__list">
9983
10103
 
9984
10104
  <li class="md-nav__item">
9985
- <a href="#added_5" class="md-nav__link">
10105
+ <a href="#added_6" class="md-nav__link">
9986
10106
  <span class="md-ellipsis">
9987
10107
  Added
9988
10108
  </span>
@@ -9991,7 +10111,7 @@
9991
10111
  </li>
9992
10112
 
9993
10113
  <li class="md-nav__item">
9994
- <a href="#changed_4" class="md-nav__link">
10114
+ <a href="#changed_5" class="md-nav__link">
9995
10115
  <span class="md-ellipsis">
9996
10116
  Changed
9997
10117
  </span>
@@ -10000,7 +10120,7 @@
10000
10120
  </li>
10001
10121
 
10002
10122
  <li class="md-nav__item">
10003
- <a href="#fixed_5" class="md-nav__link">
10123
+ <a href="#fixed_6" class="md-nav__link">
10004
10124
  <span class="md-ellipsis">
10005
10125
  Fixed
10006
10126
  </span>
@@ -10018,7 +10138,7 @@
10018
10138
  </li>
10019
10139
 
10020
10140
  <li class="md-nav__item">
10021
- <a href="#housekeeping_4" class="md-nav__link">
10141
+ <a href="#housekeeping_5" class="md-nav__link">
10022
10142
  <span class="md-ellipsis">
10023
10143
  Housekeeping
10024
10144
  </span>
@@ -10051,7 +10171,7 @@
10051
10171
  </li>
10052
10172
 
10053
10173
  <li class="md-nav__item">
10054
- <a href="#fixed_6" class="md-nav__link">
10174
+ <a href="#fixed_7" class="md-nav__link">
10055
10175
  <span class="md-ellipsis">
10056
10176
  Fixed
10057
10177
  </span>
@@ -10060,7 +10180,7 @@
10060
10180
  </li>
10061
10181
 
10062
10182
  <li class="md-nav__item">
10063
- <a href="#dependencies_4" class="md-nav__link">
10183
+ <a href="#dependencies_5" class="md-nav__link">
10064
10184
  <span class="md-ellipsis">
10065
10185
  Dependencies
10066
10186
  </span>
@@ -10069,7 +10189,7 @@
10069
10189
  </li>
10070
10190
 
10071
10191
  <li class="md-nav__item">
10072
- <a href="#housekeeping_5" class="md-nav__link">
10192
+ <a href="#housekeeping_6" class="md-nav__link">
10073
10193
  <span class="md-ellipsis">
10074
10194
  Housekeeping
10075
10195
  </span>
@@ -10102,7 +10222,7 @@
10102
10222
  </li>
10103
10223
 
10104
10224
  <li class="md-nav__item">
10105
- <a href="#added_6" class="md-nav__link">
10225
+ <a href="#added_7" class="md-nav__link">
10106
10226
  <span class="md-ellipsis">
10107
10227
  Added
10108
10228
  </span>
@@ -10111,7 +10231,7 @@
10111
10231
  </li>
10112
10232
 
10113
10233
  <li class="md-nav__item">
10114
- <a href="#fixed_7" class="md-nav__link">
10234
+ <a href="#fixed_8" class="md-nav__link">
10115
10235
  <span class="md-ellipsis">
10116
10236
  Fixed
10117
10237
  </span>
@@ -10120,7 +10240,7 @@
10120
10240
  </li>
10121
10241
 
10122
10242
  <li class="md-nav__item">
10123
- <a href="#housekeeping_6" class="md-nav__link">
10243
+ <a href="#housekeeping_7" class="md-nav__link">
10124
10244
  <span class="md-ellipsis">
10125
10245
  Housekeeping
10126
10246
  </span>
@@ -10144,7 +10264,7 @@
10144
10264
  <ul class="md-nav__list">
10145
10265
 
10146
10266
  <li class="md-nav__item">
10147
- <a href="#added_7" class="md-nav__link">
10267
+ <a href="#added_8" class="md-nav__link">
10148
10268
  <span class="md-ellipsis">
10149
10269
  Added
10150
10270
  </span>
@@ -10153,7 +10273,7 @@
10153
10273
  </li>
10154
10274
 
10155
10275
  <li class="md-nav__item">
10156
- <a href="#changed_5" class="md-nav__link">
10276
+ <a href="#changed_6" class="md-nav__link">
10157
10277
  <span class="md-ellipsis">
10158
10278
  Changed
10159
10279
  </span>
@@ -10162,7 +10282,7 @@
10162
10282
  </li>
10163
10283
 
10164
10284
  <li class="md-nav__item">
10165
- <a href="#fixed_8" class="md-nav__link">
10285
+ <a href="#fixed_9" class="md-nav__link">
10166
10286
  <span class="md-ellipsis">
10167
10287
  Fixed
10168
10288
  </span>
@@ -10171,7 +10291,7 @@
10171
10291
  </li>
10172
10292
 
10173
10293
  <li class="md-nav__item">
10174
- <a href="#housekeeping_7" class="md-nav__link">
10294
+ <a href="#housekeeping_8" class="md-nav__link">
10175
10295
  <span class="md-ellipsis">
10176
10296
  Housekeeping
10177
10297
  </span>
@@ -10204,7 +10324,7 @@
10204
10324
  </li>
10205
10325
 
10206
10326
  <li class="md-nav__item">
10207
- <a href="#added_8" class="md-nav__link">
10327
+ <a href="#added_9" class="md-nav__link">
10208
10328
  <span class="md-ellipsis">
10209
10329
  Added
10210
10330
  </span>
@@ -10213,7 +10333,7 @@
10213
10333
  </li>
10214
10334
 
10215
10335
  <li class="md-nav__item">
10216
- <a href="#changed_6" class="md-nav__link">
10336
+ <a href="#changed_7" class="md-nav__link">
10217
10337
  <span class="md-ellipsis">
10218
10338
  Changed
10219
10339
  </span>
@@ -10231,7 +10351,7 @@
10231
10351
  </li>
10232
10352
 
10233
10353
  <li class="md-nav__item">
10234
- <a href="#fixed_9" class="md-nav__link">
10354
+ <a href="#fixed_10" class="md-nav__link">
10235
10355
  <span class="md-ellipsis">
10236
10356
  Fixed
10237
10357
  </span>
@@ -10249,7 +10369,7 @@
10249
10369
  </li>
10250
10370
 
10251
10371
  <li class="md-nav__item">
10252
- <a href="#housekeeping_8" class="md-nav__link">
10372
+ <a href="#housekeeping_9" class="md-nav__link">
10253
10373
  <span class="md-ellipsis">
10254
10374
  Housekeeping
10255
10375
  </span>
@@ -10282,7 +10402,7 @@
10282
10402
  </li>
10283
10403
 
10284
10404
  <li class="md-nav__item">
10285
- <a href="#added_9" class="md-nav__link">
10405
+ <a href="#added_10" class="md-nav__link">
10286
10406
  <span class="md-ellipsis">
10287
10407
  Added
10288
10408
  </span>
@@ -10291,7 +10411,7 @@
10291
10411
  </li>
10292
10412
 
10293
10413
  <li class="md-nav__item">
10294
- <a href="#changed_7" class="md-nav__link">
10414
+ <a href="#changed_8" class="md-nav__link">
10295
10415
  <span class="md-ellipsis">
10296
10416
  Changed
10297
10417
  </span>
@@ -10318,7 +10438,7 @@
10318
10438
  </li>
10319
10439
 
10320
10440
  <li class="md-nav__item">
10321
- <a href="#fixed_10" class="md-nav__link">
10441
+ <a href="#fixed_11" class="md-nav__link">
10322
10442
  <span class="md-ellipsis">
10323
10443
  Fixed
10324
10444
  </span>
@@ -10327,7 +10447,7 @@
10327
10447
  </li>
10328
10448
 
10329
10449
  <li class="md-nav__item">
10330
- <a href="#dependencies_5" class="md-nav__link">
10450
+ <a href="#dependencies_6" class="md-nav__link">
10331
10451
  <span class="md-ellipsis">
10332
10452
  Dependencies
10333
10453
  </span>
@@ -10345,7 +10465,7 @@
10345
10465
  </li>
10346
10466
 
10347
10467
  <li class="md-nav__item">
10348
- <a href="#housekeeping_9" class="md-nav__link">
10468
+ <a href="#housekeeping_10" class="md-nav__link">
10349
10469
  <span class="md-ellipsis">
10350
10470
  Housekeeping
10351
10471
  </span>
@@ -10468,20 +10588,45 @@
10468
10588
  <h4 id="updated-to-django-42-3581">Updated to Django 4.2 (<a href="https://github.com/nautobot/nautobot/issues/3581">#3581</a>)<a class="headerlink" href="#updated-to-django-42-3581" title="Permanent link">&para;</a></h4>
10469
10589
  <p>As Django 3.2 has reached end-of-life, Nautobot 2.3 requires Django 4.2, the next long-term-support (LTS) version of Django. There are a number of changes in Django itself as a result of this upgrade; Nautobot App maintainers are urged to review the Django release-notes (<a href="https://docs.djangoproject.com/en/4.2/releases/4.0/">4.0</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.1/">4.1</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.2/">4.2</a>), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.</p>
10470
10590
  <!-- towncrier release notes start -->
10471
- <h2 id="v239-2024-10-28">v2.3.9 (2024-10-28)<a class="headerlink" href="#v239-2024-10-28" title="Permanent link">&para;</a></h2>
10591
+ <h2 id="v2310-2024-10-29">v2.3.10 (2024-10-29)<a class="headerlink" href="#v2310-2024-10-29" title="Permanent link">&para;</a></h2>
10472
10592
  <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
10473
10593
  <ul>
10594
+ <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
10595
+ <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added queryset caching in <code>web_request_context</code> for more efficient JobHook and Webhook dispatching on bulk requests.</li>
10596
+ <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
10597
+ <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added more efficient database calls for most cases of bulk-provisioning CustomField data on model objects.</li>
10598
+ </ul>
10599
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10600
+ <ul>
10601
+ <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Increased soft/hard time limits on CustomField provisioning background tasks to 1800 and 2000 seconds respectively.</li>
10602
+ </ul>
10603
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10604
+ <ul>
10605
+ <li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Fixed long-running-at-scale transaction lock on records while adding/removing a CustomField definition.</li>
10606
+ <li><a href="https://github.com/nautobot/nautobot/issues/6441">#6441</a> - Fixed a regression in 2.3.9 that broke the rendering of the Device create/edit form.</li>
10607
+ </ul>
10608
+ <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
10609
+ <ul>
10610
+ <li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
10611
+ </ul>
10612
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10613
+ <ul>
10614
+ <li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.42</code>.</li>
10615
+ </ul>
10616
+ <h2 id="v239-2024-10-28">v2.3.9 (2024-10-28)<a class="headerlink" href="#v239-2024-10-28" title="Permanent link">&para;</a></h2>
10617
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10618
+ <ul>
10474
10619
  <li><a href="https://github.com/nautobot/nautobot/issues/4899">#4899</a> - Added TableExtension class to allow app developers to add columns to core tables.</li>
10475
10620
  <li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Added logic to ModuleBay model to ensure that if the <code>position</code> field is empty, its value will be automatically populated from the <code>name</code> of the Module Bay instance.</li>
10476
10621
  <li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
10477
10622
  </ul>
10478
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10623
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10479
10624
  <ul>
10480
10625
  <li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Enhanced <code>position</code> fields on ModuleBayCreate/UpdateForms to auto-populate their values from <code>name</code> fields.</li>
10481
10626
  <li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed <code>GitRepositorySync</code> system Job to run atomically (all-or-nothing), such that any failure in the resync will cause all associated database updates to be reverted.</li>
10482
10627
  <li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed behavior of change logging <code>web_request_context()</code> to only reload Job code when a relevant JobHook is found to apply to the change in question.</li>
10483
10628
  </ul>
10484
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10629
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10485
10630
  <ul>
10486
10631
  <li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed overly broad scope of the TreeModel <code>invalidate_max_depth_cache</code> signal so that it now correctly only fires for TreeModel instances rather than all models.</li>
10487
10632
  <li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Improved performance of DynamicGroup membership updates/recalculations when dealing with large numbers of member objects.</li>
@@ -10490,16 +10635,16 @@
10490
10635
  <li><a href="https://github.com/nautobot/nautobot/issues/6415">#6415</a> - Added missing column <code>software_version</code> to the Device Table in Device List View.</li>
10491
10636
  <li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the `role' column on Device/VM interfaces.</li>
10492
10637
  </ul>
10493
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
10638
+ <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
10494
10639
  <ul>
10495
10640
  <li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.10</code>.</li>
10496
10641
  </ul>
10497
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10642
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10498
10643
  <ul>
10499
10644
  <li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.41</code>.</li>
10500
10645
  </ul>
10501
10646
  <h2 id="v238-2024-10-18">v2.3.8 (2024-10-18)<a class="headerlink" href="#v238-2024-10-18" title="Permanent link">&para;</a></h2>
10502
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10647
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10503
10648
  <ul>
10504
10649
  <li><a href="https://github.com/nautobot/nautobot/issues/5050">#5050</a> - Changed logic to permit VLANs assigned to a device's location's parent locations (including parents of parents, etc.) to be assigned to that device's interfaces.</li>
10505
10650
  <li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed paginator widget to display the current selected <code>per_page</code> value even if it's not one of the <code>PER_PAGE_DEFAULTS</code> options.</li>
@@ -10508,27 +10653,27 @@
10508
10653
  <li><a href="https://github.com/nautobot/nautobot/issues/6385">#6385</a> - Restored <code>Prefix.get_child_ips()</code> API mistakenly removed from v2.3.5 through v2.3.7.</li>
10509
10654
  </ul>
10510
10655
  <h2 id="v237-2024-10-15">v2.3.7 (2024-10-15)<a class="headerlink" href="#v237-2024-10-15" title="Permanent link">&para;</a></h2>
10511
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10656
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10512
10657
  <ul>
10513
10658
  <li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
10514
10659
  </ul>
10515
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10660
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10516
10661
  <ul>
10517
10662
  <li><a href="https://github.com/nautobot/nautobot/issues/6205">#6205</a> - Changed initial <code>Nautobot initialized!</code> message logged on startup to include the Nautobot version number.</li>
10518
10663
  <li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that <code>ensure_git_repository</code> logs hashes to include the name of the repository.</li>
10519
10664
  </ul>
10520
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10665
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10521
10666
  <ul>
10522
10667
  <li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
10523
10668
  <li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added retry logic and error handling for several cases where an intermittent Redis connection error could cause Celery to throw an exception.</li>
10524
10669
  <li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed duplicate loading of <code>nautobot_config.py</code> during Nautobot startup.</li>
10525
10670
  <li><a href="https://github.com/nautobot/nautobot/issues/6329">#6329</a> - Added a data migration to fix DynamicGroup <code>group_type</code> values set incorrectly in upgrading to Nautobot 2.3.x.</li>
10526
10671
  </ul>
10527
- <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
10672
+ <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
10528
10673
  <ul>
10529
10674
  <li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added a direct dependency on <code>kombu</code> to guarantee the presence of some essential fixes for this Celery dependency.</li>
10530
10675
  </ul>
10531
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10676
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10532
10677
  <ul>
10533
10678
  <li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added usage of <code>extract_page_body()</code> to many view-related test cases in order to make their failure output more readable.</li>
10534
10679
  <li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Modified many view-related test cases to use new <code>assertBodyContains()</code> test helper method for brevity.</li>
@@ -10539,12 +10684,12 @@
10539
10684
  <li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Added <code>--remove-orphans</code> to the docker compose commands for <code>invoke stop</code> and <code>invoke destroy</code>.</li>
10540
10685
  </ul>
10541
10686
  <h2 id="v236-2024-10-02">v2.3.6 (2024-10-02)<a class="headerlink" href="#v236-2024-10-02" title="Permanent link">&para;</a></h2>
10542
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10687
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10543
10688
  <ul>
10544
10689
  <li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
10545
10690
  <li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
10546
10691
  </ul>
10547
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10692
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10548
10693
  <ul>
10549
10694
  <li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed an error during startup when an App included a REST API serializer inheriting from an unexpected base class.</li>
10550
10695
  <li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed a warning during startup about the <code>extras.FileAttachment</code> model.</li>
@@ -10554,21 +10699,21 @@
10554
10699
  <li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Added a note to the release overview section for app developers regarding opt-in/opt-out of model features.</li>
10555
10700
  <li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Updated app model developer documentation with more details about feature opt-out.</li>
10556
10701
  </ul>
10557
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10702
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10558
10703
  <ul>
10559
10704
  <li><a href="https://github.com/nautobot/nautobot/issues/6308">#6308</a> - Increase the minimum number of content-types to three and capped the maximum to five for MetadataType instances created by MetadataTypeFactory.</li>
10560
10705
  </ul>
10561
10706
  <h2 id="v235-2024-09-30">v2.3.5 (2024-09-30)<a class="headerlink" href="#v235-2024-09-30" title="Permanent link">&para;</a></h2>
10562
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10707
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10563
10708
  <ul>
10564
10709
  <li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Added <code>is_occupied</code> boolean filter to the Rack elevation API endpoint to allow filtering by occupied or unoccupied units.</li>
10565
10710
  <li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
10566
10711
  </ul>
10567
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10712
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10568
10713
  <ul>
10569
10714
  <li><a href="https://github.com/nautobot/nautobot/issues/6057">#6057</a> - Enhanced job delete functions to prevent users from deleting system jobs from the UI and the API.</li>
10570
10715
  </ul>
10571
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10716
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10572
10717
  <ul>
10573
10718
  <li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
10574
10719
  <li><a href="https://github.com/nautobot/nautobot/issues/5924">#5924</a> - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.</li>
@@ -10579,7 +10724,7 @@
10579
10724
  <li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Fixed the selection options for <code>position</code> on the device add/edit form to disable RUs that are currently occupied.</li>
10580
10725
  <li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
10581
10726
  </ul>
10582
- <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
10727
+ <h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">&para;</a></h3>
10583
10728
  <ul>
10584
10729
  <li><a href="https://github.com/nautobot/nautobot/issues/6247">#6247</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.35</code>.</li>
10585
10730
  <li><a href="https://github.com/nautobot/nautobot/issues/6287">#6287</a> - Replaced incorrect <code>django-structlog[all]</code> dependency with <code>django-structlog[celery]</code>.</li>
@@ -10588,7 +10733,7 @@
10588
10733
  <ul>
10589
10734
  <li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added to the core developer documentation a warning against the use of data factories within test case code.</li>
10590
10735
  </ul>
10591
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10736
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10592
10737
  <ul>
10593
10738
  <li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
10594
10739
  <li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Changed <code>invoke unittest</code> to default to <code>--parallel</code> even when a <code>--label</code> value is specified.</li>
@@ -10597,16 +10742,16 @@
10597
10742
  <li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
10598
10743
  </ul>
10599
10744
  <h2 id="v234-2024-09-18">v2.3.4 (2024-09-18)<a class="headerlink" href="#v234-2024-09-18" title="Permanent link">&para;</a></h2>
10600
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10745
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10601
10746
  <ul>
10602
10747
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
10603
10748
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Added the ability to filter virtual machines by their <code>cluster</code> names or IDs.</li>
10604
10749
  </ul>
10605
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10750
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10606
10751
  <ul>
10607
10752
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Changed default cache timeout for Constance configuration from 1 day to 300 seconds to match other caches.</li>
10608
10753
  </ul>
10609
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10754
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10610
10755
  <ul>
10611
10756
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
10612
10757
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
@@ -10620,7 +10765,7 @@
10620
10765
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added <code>environment_variables</code> keys to <code>settings.yaml</code> to more accurately document settings that are influenced by multiple environment variables together.</li>
10621
10766
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Removed <code>is_required_setting</code> keys from <code>settings.yaml</code> as no longer relevant.</li>
10622
10767
  </ul>
10623
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10768
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10624
10769
  <ul>
10625
10770
  <li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>--cache-test-fixtures</code> and <code>--keepdb</code> flags from opt-in to opt-out for <code>invoke unittest</code> and <code>invoke integration-test</code> commands.</li>
10626
10771
  <li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>invoke unittest</code> to automatically include <code>--parallel</code> flag when running the entire unit test suite.</li>
@@ -10632,18 +10777,18 @@
10632
10777
  <ul>
10633
10778
  <li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated <code>Django</code> to <code>~4.2.16</code> to address <code>CVE-2024-45230</code> and <code>CVE-2024-45231</code>.</li>
10634
10779
  </ul>
10635
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10780
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10636
10781
  <ul>
10637
10782
  <li><a href="https://github.com/nautobot/nautobot/issues/6184">#6184</a> - Fixed an exception in <code>extras.models.groups._map_filter_fields</code> method when certain App <code>filter_extensions</code> were present.</li>
10638
10783
  <li><a href="https://github.com/nautobot/nautobot/issues/6190">#6190</a> - Added <code>display</code> property to Prefix to display its namespace along with the prefix to allow differentiation between prefixes in the UI.</li>
10639
10784
  <li><a href="https://github.com/nautobot/nautobot/issues/6197">#6197</a> - Fixed an exception in <code>core.utils.lookup.get_model_for_view_name</code> function when rendering certain App object list views.</li>
10640
10785
  <li><a href="https://github.com/nautobot/nautobot/issues/6203">#6203</a> - Fixed a performance regression observed when change logging resulted in a large number of ObjectChange records (such as in an SSOT Job).</li>
10641
10786
  </ul>
10642
- <h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">&para;</a></h3>
10787
+ <h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">&para;</a></h3>
10643
10788
  <ul>
10644
10789
  <li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated <code>pyuwsgi</code> to <code>~2.0.26</code> and <code>PyYAML</code> to <code>~6.0.2</code>.</li>
10645
10790
  </ul>
10646
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10791
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10647
10792
  <ul>
10648
10793
  <li><a href="https://github.com/nautobot/nautobot/issues/5376">#5376</a> - Disabled <code>coverage</code> during initial test database setup to improve test performance.</li>
10649
10794
  <li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated development dependencies <code>factory-boy</code> to <code>~3.3.1</code>, <code>ruff</code> to <code>~0.5.7</code>, and <code>watchdog</code> to <code>~4.0.2</code>.</li>
@@ -10657,14 +10802,14 @@
10657
10802
  <ul>
10658
10803
  <li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
10659
10804
  </ul>
10660
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10805
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10661
10806
  <ul>
10662
10807
  <li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
10663
10808
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
10664
10809
  <li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
10665
10810
  <li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
10666
10811
  </ul>
10667
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10812
+ <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10668
10813
  <ul>
10669
10814
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Corrected several bugs around handling of <code>ScheduledJob</code> execution when <code>settings.TIME_ZONE</code> is other than "UTC".</li>
10670
10815
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added missing <code>Meta.ordering</code> definition to <code>ScheduledJob</code> model.</li>
@@ -10673,7 +10818,7 @@
10673
10818
  <li><a href="https://github.com/nautobot/nautobot/issues/6146">#6146</a> - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.</li>
10674
10819
  <li><a href="https://github.com/nautobot/nautobot/issues/6175">#6175</a> - Prevented some <code>AttributeError</code> exceptions from being raised when an App contains a model that doesn't inherit from <code>BaseModel</code>.</li>
10675
10820
  </ul>
10676
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10821
+ <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10677
10822
  <ul>
10678
10823
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
10679
10824
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time-machine</code> as a development environment (test execution) dependency.</li>
@@ -10681,24 +10826,24 @@
10681
10826
  <li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Added <code>development/cleanup_factory_dump.py</code> helper script to aid in identifying other issues with test data.</li>
10682
10827
  </ul>
10683
10828
  <h2 id="v231-2024-08-19">v2.3.1 (2024-08-19)<a class="headerlink" href="#v231-2024-08-19" title="Permanent link">&para;</a></h2>
10684
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10829
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10685
10830
  <ul>
10686
10831
  <li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
10687
10832
  <li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Added validation logic to <code>DeviceForm</code> <code>clean()</code> method to raise a validation error if there is any invalid software image file specified.</li>
10688
10833
  <li><a href="https://github.com/nautobot/nautobot/issues/5915">#5915</a> - Enhanced <code>IPAddress.objects.get_or_create</code> method to permit specifying a namespace as an alternative to a parent prefix.</li>
10689
10834
  </ul>
10690
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10835
+ <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
10691
10836
  <ul>
10692
10837
  <li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
10693
10838
  </ul>
10694
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10839
+ <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10695
10840
  <ul>
10696
10841
  <li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Fixed <code>Device</code> model <code>clean()</code> validation logic to allow user to specify a software version on a device without specifying any software image files.</li>
10697
10842
  <li><a href="https://github.com/nautobot/nautobot/issues/6096">#6096</a> - Updated CloudAccount UI: Set the <code>secrets_group</code> form field to be optional.</li>
10698
10843
  <li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
10699
10844
  <li><a href="https://github.com/nautobot/nautobot/issues/6116">#6116</a> - Added handling for an <code>OperationalError</code> that might be raised when running <code>pylint-nautobot</code> or similar linters that depend on successfully running <code>nautobot.setup()</code>.</li>
10700
10845
  </ul>
10701
- <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10846
+ <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
10702
10847
  <ul>
10703
10848
  <li><a href="https://github.com/nautobot/nautobot/issues/6107">#6107</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.10.8</code>.</li>
10704
10849
  </ul>
@@ -10707,7 +10852,7 @@
10707
10852
  <ul>
10708
10853
  <li><a href="https://github.com/nautobot/nautobot/issues/6073">#6073</a> - Updated <code>Django</code> to <code>~4.2.15</code> due to <code>CVE-2024-41989</code>, <code>CVE-2024-41990</code>, <code>CVE-2024-41991</code>, and <code>CVE-2024-42005</code>.</li>
10709
10854
  </ul>
10710
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10855
+ <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
10711
10856
  <ul>
10712
10857
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
10713
10858
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
@@ -10717,7 +10862,7 @@
10717
10862
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for querying <code>GenericRelation</code> relationships (reverse of <code>GenericForeignKey</code>) in GraphQL.</li>
10718
10863
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for filtering an object's <code>associated_contacts</code> in GraphQL.</li>
10719
10864
  </ul>
10720
- <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
10865
+ <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
10721
10866
  <ul>
10722
10867
  <li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed rendering of <code>scoped_fields</code> column in <code>ObjectMetadataTable</code>.</li>
10723
10868
  <li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
@@ -10731,7 +10876,7 @@
10731
10876
  <li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
10732
10877
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
10733
10878
  </ul>
10734
- <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10879
+ <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
10735
10880
  <ul>
10736
10881
  <li><a href="https://github.com/nautobot/nautobot/issues/5967">#5967</a> - Fixed a regression in the display of custom fields in object-edit forms.</li>
10737
10882
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
@@ -10755,7 +10900,7 @@
10755
10900
  <li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
10756
10901
  <li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
10757
10902
  </ul>
10758
- <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
10903
+ <h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">&para;</a></h3>
10759
10904
  <ul>
10760
10905
  <li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated development dependency <code>ruff</code> to <code>~0.5.6</code>.</li>
10761
10906
  <li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated documentation dependencies: <code>mkdocs-material</code> to <code>~9.5.31</code>, <code>mkdocstrings</code> to <code>~0.25.2</code>, and <code>mkdocstrings-python</code> to <code>~1.10.7</code>.</li>
@@ -10770,7 +10915,7 @@
10770
10915
  <ul>
10771
10916
  <li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>Django</code> to <code>~4.2.14</code> due to <code>CVE-2024-38875</code>, <code>CVE-2024-39329</code>, <code>CVE-2024-39330</code>, and <code>CVE-2024-39614</code>.</li>
10772
10917
  </ul>
10773
- <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
10918
+ <h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">&para;</a></h3>
10774
10919
  <ul>
10775
10920
  <li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
10776
10921
  <li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.</li>
@@ -10817,7 +10962,7 @@
10817
10962
  <li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added tables of related <code>CloudService</code> and/or <code>CloudNetwork</code> instances to the <code>CloudResourceType</code> detail view.</li>
10818
10963
  <li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
10819
10964
  </ul>
10820
- <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
10965
+ <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
10821
10966
  <ul>
10822
10967
  <li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Updated device interfaces filter to support filtering by interface name as well as by ID.</li>
10823
10968
  <li><a href="https://github.com/nautobot/nautobot/issues/3749">#3749</a> - Changed behavior of the <code>CHANGELOG_RETENTION</code> setting; it no longer applies automatically to force cleanup of ObjectChange records over a certain age cutoff, but instead serves as the default cutoff age whenever running the new "Logs Cleanup" system Job.</li>
@@ -10861,7 +11006,7 @@
10861
11006
  <li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Removed <code>DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> setting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation.</li>
10862
11007
  <li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Removed the <code>StaticGroup</code> model added in #5472, replacing it with a subtype of the <code>DynamicGroup</code> model.</li>
10863
11008
  </ul>
10864
- <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
11009
+ <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
10865
11010
  <ul>
10866
11011
  <li><a href="https://github.com/nautobot/nautobot/issues/2352">#2352</a> - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.</li>
10867
11012
  <li><a href="https://github.com/nautobot/nautobot/issues/5123">#5123</a> - Fixed an unhandled <code>ValueError</code> when filtering on <code>vlans</code> by their UUID rather than their VLAN ID.</li>
@@ -10885,7 +11030,7 @@
10885
11030
  <li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
10886
11031
  <li><a href="https://github.com/nautobot/nautobot/issues/5952">#5952</a> - Changed generic "Bulk Actions" dropup button styling to match generic "Actions" dropdown button.</li>
10887
11032
  </ul>
10888
- <h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">&para;</a></h3>
11033
+ <h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">&para;</a></h3>
10889
11034
  <ul>
10890
11035
  <li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
10891
11036
  <li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
@@ -10917,7 +11062,7 @@
10917
11062
  <li><a href="https://github.com/nautobot/nautobot/issues/5895">#5895</a> - Added missing model documentation for <code>CloudNetwork</code>, <code>CloudNetworkPrefixAssignment</code>, <code>CloudService</code> and <del><code>CloudType</code></del> <code>CloudResourceType</code>.</li>
10918
11063
  <li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
10919
11064
  </ul>
10920
- <h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">&para;</a></h3>
11065
+ <h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">&para;</a></h3>
10921
11066
  <ul>
10922
11067
  <li><a href="https://github.com/nautobot/nautobot/issues/5160">#5160</a> - Replaced references to <code>pytz</code> with <code>zoneinfo</code> in keeping with Django 4.</li>
10923
11068
  <li><a href="https://github.com/nautobot/nautobot/issues/5212">#5212</a> - Enhanced <code>nautobot.core.testing.filters.FilterTestCases.BaseFilterTestCase.test_filters_generic()</code> test case to test for the presence and proper functioning of the <code>contacts</code> and <code>teams</code> filters on any appropriate model FilterSet.</li>