nautobot 2.3.7__py3-none-any.whl → 2.3.9__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 (336) hide show
  1. nautobot/apps/tables.py +2 -0
  2. nautobot/core/forms/__init__.py +4 -0
  3. nautobot/core/forms/fields.py +32 -0
  4. nautobot/core/jobs/__init__.py +24 -8
  5. nautobot/core/models/tree_queries.py +8 -0
  6. nautobot/core/settings.py +7 -0
  7. nautobot/core/settings.yaml +10 -0
  8. nautobot/core/signals.py +5 -4
  9. nautobot/core/templates/inc/paginator.html +3 -0
  10. nautobot/core/templates/nautobot_config.py.j2 +4 -0
  11. nautobot/core/templates/utilities/obj_table.html +1 -1
  12. nautobot/dcim/api/serializers.py +10 -5
  13. nautobot/dcim/forms.py +41 -34
  14. nautobot/dcim/models/device_components.py +12 -4
  15. nautobot/dcim/tables/devices.py +4 -2
  16. nautobot/dcim/tests/test_api.py +28 -0
  17. nautobot/dcim/tests/test_forms.py +17 -1
  18. nautobot/dcim/tests/test_models.py +58 -4
  19. nautobot/dcim/utils.py +9 -6
  20. nautobot/extras/context_managers.py +7 -8
  21. nautobot/extras/datasources/__init__.py +2 -0
  22. nautobot/extras/datasources/git.py +30 -49
  23. nautobot/extras/datasources/registry.py +2 -2
  24. nautobot/extras/jobs.py +17 -5
  25. nautobot/extras/models/datasources.py +6 -0
  26. nautobot/extras/models/groups.py +47 -33
  27. nautobot/extras/models/jobs.py +1 -1
  28. nautobot/extras/plugins/__init__.py +165 -0
  29. nautobot/extras/plugins/views.py +18 -3
  30. nautobot/extras/templates/extras/plugin_detail.html +33 -0
  31. nautobot/extras/tests/test_context_managers.py +16 -7
  32. nautobot/extras/tests/test_datasources.py +88 -1
  33. nautobot/extras/tests/test_dynamicgroups.py +12 -0
  34. nautobot/extras/tests/test_plugins.py +94 -0
  35. nautobot/extras/views.py +3 -1
  36. nautobot/ipam/filters.py +2 -2
  37. nautobot/ipam/models.py +29 -2
  38. nautobot/ipam/templates/ipam/ipaddress.html +2 -2
  39. nautobot/ipam/templates/ipam/ipaddress_interfaces.html +3 -0
  40. nautobot/ipam/templates/ipam/ipaddress_vm_interfaces.html +3 -0
  41. nautobot/ipam/templates/ipam/prefix.html +3 -3
  42. nautobot/ipam/templates/ipam/routetarget.html +2 -2
  43. nautobot/ipam/templates/ipam/vlan.html +3 -0
  44. nautobot/ipam/templates/ipam/vrf.html +7 -4
  45. nautobot/ipam/tests/test_models.py +68 -12
  46. nautobot/ipam/views.py +43 -0
  47. nautobot/project-static/docs/404.html +24 -3
  48. nautobot/project-static/docs/apps/index.html +24 -3
  49. nautobot/project-static/docs/apps/nautobot-apps.html +24 -3
  50. nautobot/project-static/docs/assets/javascripts/{bundle.525ec568.min.js → bundle.83f73b43.min.js} +2 -2
  51. nautobot/project-static/docs/assets/javascripts/{bundle.525ec568.min.js.map → bundle.83f73b43.min.js.map} +3 -3
  52. nautobot/project-static/docs/assets/stylesheets/main.0253249f.min.css +1 -0
  53. nautobot/project-static/docs/assets/stylesheets/main.0253249f.min.css.map +1 -0
  54. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +24 -3
  55. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +24 -3
  56. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +24 -3
  57. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +24 -3
  58. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +24 -3
  59. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +24 -3
  60. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +24 -3
  61. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +24 -3
  62. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +24 -3
  63. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +24 -3
  64. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +24 -3
  65. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +24 -3
  66. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +24 -3
  67. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +49 -6
  68. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +24 -3
  69. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +24 -3
  70. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +24 -3
  71. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +138 -3
  72. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +24 -3
  73. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +24 -3
  74. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +24 -3
  75. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +24 -3
  76. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +24 -3
  77. nautobot/project-static/docs/development/apps/api/configuration-view.html +24 -3
  78. nautobot/project-static/docs/development/apps/api/database-backend-config.html +24 -3
  79. nautobot/project-static/docs/development/apps/api/models/django-admin.html +24 -3
  80. nautobot/project-static/docs/development/apps/api/models/global-search.html +24 -3
  81. nautobot/project-static/docs/development/apps/api/models/graphql.html +24 -3
  82. nautobot/project-static/docs/development/apps/api/models/index.html +24 -3
  83. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +24 -3
  84. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +24 -3
  85. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +24 -3
  86. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +24 -3
  87. nautobot/project-static/docs/development/apps/api/platform-features/index.html +24 -3
  88. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +24 -3
  89. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +24 -3
  90. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +24 -3
  91. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +27 -6
  92. nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +8823 -0
  93. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +27 -6
  94. nautobot/project-static/docs/development/apps/api/prometheus.html +24 -3
  95. nautobot/project-static/docs/development/apps/api/setup.html +33 -11
  96. nautobot/project-static/docs/development/apps/api/testing.html +24 -3
  97. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +24 -3
  98. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +24 -3
  99. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +24 -3
  100. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +24 -3
  101. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +24 -3
  102. nautobot/project-static/docs/development/apps/api/views/base-template.html +24 -3
  103. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +24 -3
  104. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +24 -3
  105. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +24 -3
  106. nautobot/project-static/docs/development/apps/api/views/index.html +24 -3
  107. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +24 -3
  108. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +24 -3
  109. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +24 -3
  110. nautobot/project-static/docs/development/apps/api/views/notes.html +24 -3
  111. nautobot/project-static/docs/development/apps/api/views/rest-api.html +24 -3
  112. nautobot/project-static/docs/development/apps/api/views/urls.html +24 -3
  113. nautobot/project-static/docs/development/apps/index.html +24 -3
  114. nautobot/project-static/docs/development/apps/migration/code-updates.html +24 -3
  115. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +24 -3
  116. nautobot/project-static/docs/development/apps/migration/from-v1.html +24 -3
  117. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +24 -3
  118. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +24 -3
  119. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +24 -3
  120. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +24 -3
  121. nautobot/project-static/docs/development/apps/porting-from-netbox.html +24 -3
  122. nautobot/project-static/docs/development/core/application-registry.html +24 -3
  123. nautobot/project-static/docs/development/core/best-practices.html +24 -3
  124. nautobot/project-static/docs/development/core/bootstrap-ui.html +24 -3
  125. nautobot/project-static/docs/development/core/caching.html +24 -3
  126. nautobot/project-static/docs/development/core/controllers.html +24 -3
  127. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +24 -3
  128. nautobot/project-static/docs/development/core/generic-views.html +24 -3
  129. nautobot/project-static/docs/development/core/getting-started.html +24 -3
  130. nautobot/project-static/docs/development/core/homepage.html +24 -3
  131. nautobot/project-static/docs/development/core/index.html +24 -3
  132. nautobot/project-static/docs/development/core/model-checklist.html +24 -3
  133. nautobot/project-static/docs/development/core/model-features.html +24 -3
  134. nautobot/project-static/docs/development/core/natural-keys.html +24 -3
  135. nautobot/project-static/docs/development/core/navigation-menu.html +24 -3
  136. nautobot/project-static/docs/development/core/release-checklist.html +24 -3
  137. nautobot/project-static/docs/development/core/role-internals.html +24 -3
  138. nautobot/project-static/docs/development/core/settings.html +24 -3
  139. nautobot/project-static/docs/development/core/style-guide.html +24 -3
  140. nautobot/project-static/docs/development/core/templates.html +24 -3
  141. nautobot/project-static/docs/development/core/testing.html +24 -3
  142. nautobot/project-static/docs/development/core/user-preferences.html +24 -3
  143. nautobot/project-static/docs/development/index.html +24 -3
  144. nautobot/project-static/docs/development/jobs/index.html +24 -3
  145. nautobot/project-static/docs/development/jobs/migration/from-v1.html +24 -3
  146. nautobot/project-static/docs/index.html +24 -3
  147. nautobot/project-static/docs/objects.inv +0 -0
  148. nautobot/project-static/docs/overview/application_stack.html +24 -3
  149. nautobot/project-static/docs/overview/design_philosophy.html +24 -3
  150. nautobot/project-static/docs/release-notes/index.html +24 -3
  151. nautobot/project-static/docs/release-notes/version-1.0.html +24 -3
  152. nautobot/project-static/docs/release-notes/version-1.1.html +24 -3
  153. nautobot/project-static/docs/release-notes/version-1.2.html +24 -3
  154. nautobot/project-static/docs/release-notes/version-1.3.html +24 -3
  155. nautobot/project-static/docs/release-notes/version-1.4.html +24 -3
  156. nautobot/project-static/docs/release-notes/version-1.5.html +24 -3
  157. nautobot/project-static/docs/release-notes/version-1.6.html +24 -3
  158. nautobot/project-static/docs/release-notes/version-2.0.html +24 -3
  159. nautobot/project-static/docs/release-notes/version-2.1.html +24 -3
  160. nautobot/project-static/docs/release-notes/version-2.2.html +24 -3
  161. nautobot/project-static/docs/release-notes/version-2.3.html +337 -109
  162. nautobot/project-static/docs/requirements.txt +1 -1
  163. nautobot/project-static/docs/search/search_index.json +1 -1
  164. nautobot/project-static/docs/sitemap.xml +273 -269
  165. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  166. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +24 -3
  167. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +24 -3
  168. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +24 -3
  169. nautobot/project-static/docs/user-guide/administration/configuration/index.html +24 -3
  170. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +24 -3
  171. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +29 -4
  172. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +24 -3
  173. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +24 -3
  174. nautobot/project-static/docs/user-guide/administration/guides/docker.html +24 -3
  175. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +24 -3
  176. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +24 -3
  177. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +24 -3
  178. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +24 -3
  179. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +24 -3
  180. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +24 -3
  181. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +24 -3
  182. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +24 -3
  183. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +24 -3
  184. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +24 -3
  185. nautobot/project-static/docs/user-guide/administration/installation/index.html +24 -3
  186. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +24 -3
  187. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +24 -3
  188. nautobot/project-static/docs/user-guide/administration/installation/services.html +24 -3
  189. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +24 -3
  190. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +24 -3
  191. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +24 -3
  192. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +24 -3
  193. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +24 -3
  194. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +24 -3
  195. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +24 -3
  196. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +24 -3
  197. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +24 -3
  198. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +24 -3
  199. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +24 -3
  200. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +24 -3
  201. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +24 -3
  202. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +24 -3
  203. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +24 -3
  204. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +24 -3
  205. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +24 -3
  206. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +24 -3
  207. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +24 -3
  208. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +24 -3
  209. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +24 -3
  210. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +24 -3
  211. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +24 -3
  212. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +24 -3
  213. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +24 -3
  214. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +24 -3
  215. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +24 -3
  216. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +24 -3
  217. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +24 -3
  218. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +24 -3
  219. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +24 -3
  220. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +24 -3
  221. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +24 -3
  222. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +24 -3
  223. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +24 -3
  224. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +24 -3
  225. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +24 -3
  226. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +24 -3
  227. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +24 -3
  228. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +24 -3
  229. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +24 -3
  230. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +24 -3
  231. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +24 -3
  232. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +24 -3
  233. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +24 -3
  234. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +24 -3
  235. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +24 -3
  236. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +24 -3
  237. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +24 -3
  238. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +24 -3
  239. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +24 -3
  240. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +24 -3
  241. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +24 -3
  242. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +24 -3
  243. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +24 -3
  244. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +24 -3
  245. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +24 -3
  246. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +24 -3
  247. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +24 -3
  248. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +24 -3
  249. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +24 -3
  250. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +24 -3
  251. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +24 -3
  252. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +24 -3
  253. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +24 -3
  254. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +24 -3
  255. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +24 -3
  256. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +24 -3
  257. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +24 -3
  258. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +24 -3
  259. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +24 -3
  260. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +24 -3
  261. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +24 -3
  262. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +24 -3
  263. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +24 -3
  264. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +24 -3
  265. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +24 -3
  266. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +24 -3
  267. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +24 -3
  268. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +24 -3
  269. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +24 -3
  270. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +24 -3
  271. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +24 -3
  272. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +24 -3
  273. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +24 -3
  274. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +24 -3
  275. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +24 -3
  276. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +24 -3
  277. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +24 -3
  278. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +24 -3
  279. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +24 -3
  280. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +24 -3
  281. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +24 -3
  282. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +24 -3
  283. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +24 -3
  284. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +24 -3
  285. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +24 -3
  286. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +24 -3
  287. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +24 -3
  288. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +24 -3
  289. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +24 -3
  290. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +24 -3
  291. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +24 -3
  292. nautobot/project-static/docs/user-guide/index.html +24 -3
  293. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +24 -3
  294. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +24 -3
  295. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +24 -3
  296. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +24 -3
  297. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +24 -3
  298. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +24 -3
  299. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +24 -3
  300. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +24 -3
  301. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +24 -3
  302. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +24 -3
  303. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +24 -3
  304. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +24 -3
  305. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +24 -3
  306. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +24 -3
  307. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +24 -3
  308. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +24 -3
  309. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +24 -3
  310. nautobot/project-static/docs/user-guide/platform-functionality/note.html +24 -3
  311. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +24 -3
  312. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +24 -3
  313. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +24 -3
  314. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +24 -3
  315. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +24 -3
  316. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +24 -3
  317. nautobot/project-static/docs/user-guide/platform-functionality/role.html +24 -3
  318. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +24 -3
  319. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +24 -3
  320. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +24 -3
  321. nautobot/project-static/docs/user-guide/platform-functionality/status.html +24 -3
  322. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +24 -3
  323. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +24 -3
  324. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +24 -3
  325. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +24 -3
  326. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +24 -3
  327. nautobot/project-static/js/forms.js +41 -5
  328. nautobot/virtualization/tables.py +1 -1
  329. {nautobot-2.3.7.dist-info → nautobot-2.3.9.dist-info}/METADATA +2 -2
  330. {nautobot-2.3.7.dist-info → nautobot-2.3.9.dist-info}/RECORD +334 -333
  331. nautobot/project-static/docs/assets/stylesheets/main.8c3ca2c6.min.css +0 -1
  332. nautobot/project-static/docs/assets/stylesheets/main.8c3ca2c6.min.css.map +0 -1
  333. {nautobot-2.3.7.dist-info → nautobot-2.3.9.dist-info}/LICENSE.txt +0 -0
  334. {nautobot-2.3.7.dist-info → nautobot-2.3.9.dist-info}/NOTICE +0 -0
  335. {nautobot-2.3.7.dist-info → nautobot-2.3.9.dist-info}/WHEEL +0 -0
  336. {nautobot-2.3.7.dist-info → nautobot-2.3.9.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.39">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.41">
22
22
 
23
23
 
24
24
 
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- <link rel="stylesheet" href="../assets/stylesheets/main.8c3ca2c6.min.css">
29
+ <link rel="stylesheet" href="../assets/stylesheets/main.0253249f.min.css">
30
30
 
31
31
 
32
32
  <link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
@@ -6386,6 +6386,27 @@
6386
6386
 
6387
6387
 
6388
6388
 
6389
+ <li class="md-nav__item">
6390
+ <a href="../development/apps/api/platform-features/table-extensions.html" class="md-nav__link">
6391
+
6392
+
6393
+ <span class="md-ellipsis">
6394
+ Table Extensions
6395
+ </span>
6396
+
6397
+
6398
+ </a>
6399
+ </li>
6400
+
6401
+
6402
+
6403
+
6404
+
6405
+
6406
+
6407
+
6408
+
6409
+
6389
6410
  <li class="md-nav__item">
6390
6411
  <a href="../development/apps/api/platform-features/uniquely-identify-objects.html" class="md-nav__link">
6391
6412
 
@@ -8236,13 +8257,13 @@
8236
8257
  </li>
8237
8258
 
8238
8259
  <li class="md-nav__item">
8239
- <a href="#v237-2024-10-15" class="md-nav__link">
8260
+ <a href="#v239-2024-10-28" class="md-nav__link">
8240
8261
  <span class="md-ellipsis">
8241
- v2.3.7 (2024-10-15)
8262
+ v2.3.9 (2024-10-28)
8242
8263
  </span>
8243
8264
  </a>
8244
8265
 
8245
- <nav class="md-nav" aria-label="v2.3.7 (2024-10-15)">
8266
+ <nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
8246
8267
  <ul class="md-nav__list">
8247
8268
 
8248
8269
  <li class="md-nav__item">
@@ -8293,6 +8314,90 @@
8293
8314
  </ul>
8294
8315
  </nav>
8295
8316
 
8317
+ </li>
8318
+
8319
+ <li class="md-nav__item">
8320
+ <a href="#v238-2024-10-18" class="md-nav__link">
8321
+ <span class="md-ellipsis">
8322
+ v2.3.8 (2024-10-18)
8323
+ </span>
8324
+ </a>
8325
+
8326
+ <nav class="md-nav" aria-label="v2.3.8 (2024-10-18)">
8327
+ <ul class="md-nav__list">
8328
+
8329
+ <li class="md-nav__item">
8330
+ <a href="#fixed_1" class="md-nav__link">
8331
+ <span class="md-ellipsis">
8332
+ Fixed
8333
+ </span>
8334
+ </a>
8335
+
8336
+ </li>
8337
+
8338
+ </ul>
8339
+ </nav>
8340
+
8341
+ </li>
8342
+
8343
+ <li class="md-nav__item">
8344
+ <a href="#v237-2024-10-15" class="md-nav__link">
8345
+ <span class="md-ellipsis">
8346
+ v2.3.7 (2024-10-15)
8347
+ </span>
8348
+ </a>
8349
+
8350
+ <nav class="md-nav" aria-label="v2.3.7 (2024-10-15)">
8351
+ <ul class="md-nav__list">
8352
+
8353
+ <li class="md-nav__item">
8354
+ <a href="#added_2" class="md-nav__link">
8355
+ <span class="md-ellipsis">
8356
+ Added
8357
+ </span>
8358
+ </a>
8359
+
8360
+ </li>
8361
+
8362
+ <li class="md-nav__item">
8363
+ <a href="#changed_2" class="md-nav__link">
8364
+ <span class="md-ellipsis">
8365
+ Changed
8366
+ </span>
8367
+ </a>
8368
+
8369
+ </li>
8370
+
8371
+ <li class="md-nav__item">
8372
+ <a href="#fixed_2" class="md-nav__link">
8373
+ <span class="md-ellipsis">
8374
+ Fixed
8375
+ </span>
8376
+ </a>
8377
+
8378
+ </li>
8379
+
8380
+ <li class="md-nav__item">
8381
+ <a href="#dependencies_2" class="md-nav__link">
8382
+ <span class="md-ellipsis">
8383
+ Dependencies
8384
+ </span>
8385
+ </a>
8386
+
8387
+ </li>
8388
+
8389
+ <li class="md-nav__item">
8390
+ <a href="#housekeeping_1" class="md-nav__link">
8391
+ <span class="md-ellipsis">
8392
+ Housekeeping
8393
+ </span>
8394
+ </a>
8395
+
8396
+ </li>
8397
+
8398
+ </ul>
8399
+ </nav>
8400
+
8296
8401
  </li>
8297
8402
 
8298
8403
  <li class="md-nav__item">
@@ -8306,7 +8411,7 @@
8306
8411
  <ul class="md-nav__list">
8307
8412
 
8308
8413
  <li class="md-nav__item">
8309
- <a href="#added_2" class="md-nav__link">
8414
+ <a href="#added_3" class="md-nav__link">
8310
8415
  <span class="md-ellipsis">
8311
8416
  Added
8312
8417
  </span>
@@ -8315,7 +8420,7 @@
8315
8420
  </li>
8316
8421
 
8317
8422
  <li class="md-nav__item">
8318
- <a href="#fixed_1" class="md-nav__link">
8423
+ <a href="#fixed_3" class="md-nav__link">
8319
8424
  <span class="md-ellipsis">
8320
8425
  Fixed
8321
8426
  </span>
@@ -8333,7 +8438,7 @@
8333
8438
  </li>
8334
8439
 
8335
8440
  <li class="md-nav__item">
8336
- <a href="#housekeeping_1" class="md-nav__link">
8441
+ <a href="#housekeeping_2" class="md-nav__link">
8337
8442
  <span class="md-ellipsis">
8338
8443
  Housekeeping
8339
8444
  </span>
@@ -8357,7 +8462,7 @@
8357
8462
  <ul class="md-nav__list">
8358
8463
 
8359
8464
  <li class="md-nav__item">
8360
- <a href="#added_3" class="md-nav__link">
8465
+ <a href="#added_4" class="md-nav__link">
8361
8466
  <span class="md-ellipsis">
8362
8467
  Added
8363
8468
  </span>
@@ -8366,7 +8471,7 @@
8366
8471
  </li>
8367
8472
 
8368
8473
  <li class="md-nav__item">
8369
- <a href="#changed_2" class="md-nav__link">
8474
+ <a href="#changed_3" class="md-nav__link">
8370
8475
  <span class="md-ellipsis">
8371
8476
  Changed
8372
8477
  </span>
@@ -8375,7 +8480,7 @@
8375
8480
  </li>
8376
8481
 
8377
8482
  <li class="md-nav__item">
8378
- <a href="#fixed_2" class="md-nav__link">
8483
+ <a href="#fixed_4" class="md-nav__link">
8379
8484
  <span class="md-ellipsis">
8380
8485
  Fixed
8381
8486
  </span>
@@ -8384,7 +8489,7 @@
8384
8489
  </li>
8385
8490
 
8386
8491
  <li class="md-nav__item">
8387
- <a href="#dependencies_2" class="md-nav__link">
8492
+ <a href="#dependencies_3" class="md-nav__link">
8388
8493
  <span class="md-ellipsis">
8389
8494
  Dependencies
8390
8495
  </span>
@@ -8402,7 +8507,7 @@
8402
8507
  </li>
8403
8508
 
8404
8509
  <li class="md-nav__item">
8405
- <a href="#housekeeping_2" class="md-nav__link">
8510
+ <a href="#housekeeping_3" class="md-nav__link">
8406
8511
  <span class="md-ellipsis">
8407
8512
  Housekeeping
8408
8513
  </span>
@@ -8426,7 +8531,7 @@
8426
8531
  <ul class="md-nav__list">
8427
8532
 
8428
8533
  <li class="md-nav__item">
8429
- <a href="#added_4" class="md-nav__link">
8534
+ <a href="#added_5" class="md-nav__link">
8430
8535
  <span class="md-ellipsis">
8431
8536
  Added
8432
8537
  </span>
@@ -8435,7 +8540,7 @@
8435
8540
  </li>
8436
8541
 
8437
8542
  <li class="md-nav__item">
8438
- <a href="#changed_3" class="md-nav__link">
8543
+ <a href="#changed_4" class="md-nav__link">
8439
8544
  <span class="md-ellipsis">
8440
8545
  Changed
8441
8546
  </span>
@@ -8444,7 +8549,7 @@
8444
8549
  </li>
8445
8550
 
8446
8551
  <li class="md-nav__item">
8447
- <a href="#fixed_3" class="md-nav__link">
8552
+ <a href="#fixed_5" class="md-nav__link">
8448
8553
  <span class="md-ellipsis">
8449
8554
  Fixed
8450
8555
  </span>
@@ -8462,7 +8567,7 @@
8462
8567
  </li>
8463
8568
 
8464
8569
  <li class="md-nav__item">
8465
- <a href="#housekeeping_3" class="md-nav__link">
8570
+ <a href="#housekeeping_4" class="md-nav__link">
8466
8571
  <span class="md-ellipsis">
8467
8572
  Housekeeping
8468
8573
  </span>
@@ -8495,7 +8600,7 @@
8495
8600
  </li>
8496
8601
 
8497
8602
  <li class="md-nav__item">
8498
- <a href="#fixed_4" class="md-nav__link">
8603
+ <a href="#fixed_6" class="md-nav__link">
8499
8604
  <span class="md-ellipsis">
8500
8605
  Fixed
8501
8606
  </span>
@@ -8504,7 +8609,7 @@
8504
8609
  </li>
8505
8610
 
8506
8611
  <li class="md-nav__item">
8507
- <a href="#dependencies_3" class="md-nav__link">
8612
+ <a href="#dependencies_4" class="md-nav__link">
8508
8613
  <span class="md-ellipsis">
8509
8614
  Dependencies
8510
8615
  </span>
@@ -8513,7 +8618,7 @@
8513
8618
  </li>
8514
8619
 
8515
8620
  <li class="md-nav__item">
8516
- <a href="#housekeeping_4" class="md-nav__link">
8621
+ <a href="#housekeeping_5" class="md-nav__link">
8517
8622
  <span class="md-ellipsis">
8518
8623
  Housekeeping
8519
8624
  </span>
@@ -8546,7 +8651,7 @@
8546
8651
  </li>
8547
8652
 
8548
8653
  <li class="md-nav__item">
8549
- <a href="#added_5" class="md-nav__link">
8654
+ <a href="#added_6" class="md-nav__link">
8550
8655
  <span class="md-ellipsis">
8551
8656
  Added
8552
8657
  </span>
@@ -8555,7 +8660,7 @@
8555
8660
  </li>
8556
8661
 
8557
8662
  <li class="md-nav__item">
8558
- <a href="#fixed_5" class="md-nav__link">
8663
+ <a href="#fixed_7" class="md-nav__link">
8559
8664
  <span class="md-ellipsis">
8560
8665
  Fixed
8561
8666
  </span>
@@ -8564,7 +8669,7 @@
8564
8669
  </li>
8565
8670
 
8566
8671
  <li class="md-nav__item">
8567
- <a href="#housekeeping_5" class="md-nav__link">
8672
+ <a href="#housekeeping_6" class="md-nav__link">
8568
8673
  <span class="md-ellipsis">
8569
8674
  Housekeeping
8570
8675
  </span>
@@ -8588,7 +8693,7 @@
8588
8693
  <ul class="md-nav__list">
8589
8694
 
8590
8695
  <li class="md-nav__item">
8591
- <a href="#added_6" class="md-nav__link">
8696
+ <a href="#added_7" class="md-nav__link">
8592
8697
  <span class="md-ellipsis">
8593
8698
  Added
8594
8699
  </span>
@@ -8597,7 +8702,7 @@
8597
8702
  </li>
8598
8703
 
8599
8704
  <li class="md-nav__item">
8600
- <a href="#changed_4" class="md-nav__link">
8705
+ <a href="#changed_5" class="md-nav__link">
8601
8706
  <span class="md-ellipsis">
8602
8707
  Changed
8603
8708
  </span>
@@ -8606,7 +8711,7 @@
8606
8711
  </li>
8607
8712
 
8608
8713
  <li class="md-nav__item">
8609
- <a href="#fixed_6" class="md-nav__link">
8714
+ <a href="#fixed_8" class="md-nav__link">
8610
8715
  <span class="md-ellipsis">
8611
8716
  Fixed
8612
8717
  </span>
@@ -8615,7 +8720,7 @@
8615
8720
  </li>
8616
8721
 
8617
8722
  <li class="md-nav__item">
8618
- <a href="#housekeeping_6" class="md-nav__link">
8723
+ <a href="#housekeeping_7" class="md-nav__link">
8619
8724
  <span class="md-ellipsis">
8620
8725
  Housekeeping
8621
8726
  </span>
@@ -8648,7 +8753,7 @@
8648
8753
  </li>
8649
8754
 
8650
8755
  <li class="md-nav__item">
8651
- <a href="#added_7" class="md-nav__link">
8756
+ <a href="#added_8" class="md-nav__link">
8652
8757
  <span class="md-ellipsis">
8653
8758
  Added
8654
8759
  </span>
@@ -8657,7 +8762,7 @@
8657
8762
  </li>
8658
8763
 
8659
8764
  <li class="md-nav__item">
8660
- <a href="#changed_5" class="md-nav__link">
8765
+ <a href="#changed_6" class="md-nav__link">
8661
8766
  <span class="md-ellipsis">
8662
8767
  Changed
8663
8768
  </span>
@@ -8675,7 +8780,7 @@
8675
8780
  </li>
8676
8781
 
8677
8782
  <li class="md-nav__item">
8678
- <a href="#fixed_7" class="md-nav__link">
8783
+ <a href="#fixed_9" class="md-nav__link">
8679
8784
  <span class="md-ellipsis">
8680
8785
  Fixed
8681
8786
  </span>
@@ -8693,7 +8798,7 @@
8693
8798
  </li>
8694
8799
 
8695
8800
  <li class="md-nav__item">
8696
- <a href="#housekeeping_7" class="md-nav__link">
8801
+ <a href="#housekeeping_8" class="md-nav__link">
8697
8802
  <span class="md-ellipsis">
8698
8803
  Housekeeping
8699
8804
  </span>
@@ -8726,7 +8831,7 @@
8726
8831
  </li>
8727
8832
 
8728
8833
  <li class="md-nav__item">
8729
- <a href="#added_8" class="md-nav__link">
8834
+ <a href="#added_9" class="md-nav__link">
8730
8835
  <span class="md-ellipsis">
8731
8836
  Added
8732
8837
  </span>
@@ -8735,7 +8840,7 @@
8735
8840
  </li>
8736
8841
 
8737
8842
  <li class="md-nav__item">
8738
- <a href="#changed_6" class="md-nav__link">
8843
+ <a href="#changed_7" class="md-nav__link">
8739
8844
  <span class="md-ellipsis">
8740
8845
  Changed
8741
8846
  </span>
@@ -8762,7 +8867,7 @@
8762
8867
  </li>
8763
8868
 
8764
8869
  <li class="md-nav__item">
8765
- <a href="#fixed_8" class="md-nav__link">
8870
+ <a href="#fixed_10" class="md-nav__link">
8766
8871
  <span class="md-ellipsis">
8767
8872
  Fixed
8768
8873
  </span>
@@ -8771,7 +8876,7 @@
8771
8876
  </li>
8772
8877
 
8773
8878
  <li class="md-nav__item">
8774
- <a href="#dependencies_4" class="md-nav__link">
8879
+ <a href="#dependencies_5" class="md-nav__link">
8775
8880
  <span class="md-ellipsis">
8776
8881
  Dependencies
8777
8882
  </span>
@@ -8789,7 +8894,7 @@
8789
8894
  </li>
8790
8895
 
8791
8896
  <li class="md-nav__item">
8792
- <a href="#housekeeping_8" class="md-nav__link">
8897
+ <a href="#housekeeping_9" class="md-nav__link">
8793
8898
  <span class="md-ellipsis">
8794
8899
  Housekeeping
8795
8900
  </span>
@@ -9603,13 +9708,13 @@
9603
9708
  </li>
9604
9709
 
9605
9710
  <li class="md-nav__item">
9606
- <a href="#v237-2024-10-15" class="md-nav__link">
9711
+ <a href="#v239-2024-10-28" class="md-nav__link">
9607
9712
  <span class="md-ellipsis">
9608
- v2.3.7 (2024-10-15)
9713
+ v2.3.9 (2024-10-28)
9609
9714
  </span>
9610
9715
  </a>
9611
9716
 
9612
- <nav class="md-nav" aria-label="v2.3.7 (2024-10-15)">
9717
+ <nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
9613
9718
  <ul class="md-nav__list">
9614
9719
 
9615
9720
  <li class="md-nav__item">
@@ -9660,6 +9765,90 @@
9660
9765
  </ul>
9661
9766
  </nav>
9662
9767
 
9768
+ </li>
9769
+
9770
+ <li class="md-nav__item">
9771
+ <a href="#v238-2024-10-18" class="md-nav__link">
9772
+ <span class="md-ellipsis">
9773
+ v2.3.8 (2024-10-18)
9774
+ </span>
9775
+ </a>
9776
+
9777
+ <nav class="md-nav" aria-label="v2.3.8 (2024-10-18)">
9778
+ <ul class="md-nav__list">
9779
+
9780
+ <li class="md-nav__item">
9781
+ <a href="#fixed_1" class="md-nav__link">
9782
+ <span class="md-ellipsis">
9783
+ Fixed
9784
+ </span>
9785
+ </a>
9786
+
9787
+ </li>
9788
+
9789
+ </ul>
9790
+ </nav>
9791
+
9792
+ </li>
9793
+
9794
+ <li class="md-nav__item">
9795
+ <a href="#v237-2024-10-15" class="md-nav__link">
9796
+ <span class="md-ellipsis">
9797
+ v2.3.7 (2024-10-15)
9798
+ </span>
9799
+ </a>
9800
+
9801
+ <nav class="md-nav" aria-label="v2.3.7 (2024-10-15)">
9802
+ <ul class="md-nav__list">
9803
+
9804
+ <li class="md-nav__item">
9805
+ <a href="#added_2" class="md-nav__link">
9806
+ <span class="md-ellipsis">
9807
+ Added
9808
+ </span>
9809
+ </a>
9810
+
9811
+ </li>
9812
+
9813
+ <li class="md-nav__item">
9814
+ <a href="#changed_2" class="md-nav__link">
9815
+ <span class="md-ellipsis">
9816
+ Changed
9817
+ </span>
9818
+ </a>
9819
+
9820
+ </li>
9821
+
9822
+ <li class="md-nav__item">
9823
+ <a href="#fixed_2" class="md-nav__link">
9824
+ <span class="md-ellipsis">
9825
+ Fixed
9826
+ </span>
9827
+ </a>
9828
+
9829
+ </li>
9830
+
9831
+ <li class="md-nav__item">
9832
+ <a href="#dependencies_2" class="md-nav__link">
9833
+ <span class="md-ellipsis">
9834
+ Dependencies
9835
+ </span>
9836
+ </a>
9837
+
9838
+ </li>
9839
+
9840
+ <li class="md-nav__item">
9841
+ <a href="#housekeeping_1" class="md-nav__link">
9842
+ <span class="md-ellipsis">
9843
+ Housekeeping
9844
+ </span>
9845
+ </a>
9846
+
9847
+ </li>
9848
+
9849
+ </ul>
9850
+ </nav>
9851
+
9663
9852
  </li>
9664
9853
 
9665
9854
  <li class="md-nav__item">
@@ -9673,7 +9862,7 @@
9673
9862
  <ul class="md-nav__list">
9674
9863
 
9675
9864
  <li class="md-nav__item">
9676
- <a href="#added_2" class="md-nav__link">
9865
+ <a href="#added_3" class="md-nav__link">
9677
9866
  <span class="md-ellipsis">
9678
9867
  Added
9679
9868
  </span>
@@ -9682,7 +9871,7 @@
9682
9871
  </li>
9683
9872
 
9684
9873
  <li class="md-nav__item">
9685
- <a href="#fixed_1" class="md-nav__link">
9874
+ <a href="#fixed_3" class="md-nav__link">
9686
9875
  <span class="md-ellipsis">
9687
9876
  Fixed
9688
9877
  </span>
@@ -9700,7 +9889,7 @@
9700
9889
  </li>
9701
9890
 
9702
9891
  <li class="md-nav__item">
9703
- <a href="#housekeeping_1" class="md-nav__link">
9892
+ <a href="#housekeeping_2" class="md-nav__link">
9704
9893
  <span class="md-ellipsis">
9705
9894
  Housekeeping
9706
9895
  </span>
@@ -9724,7 +9913,7 @@
9724
9913
  <ul class="md-nav__list">
9725
9914
 
9726
9915
  <li class="md-nav__item">
9727
- <a href="#added_3" class="md-nav__link">
9916
+ <a href="#added_4" class="md-nav__link">
9728
9917
  <span class="md-ellipsis">
9729
9918
  Added
9730
9919
  </span>
@@ -9733,7 +9922,7 @@
9733
9922
  </li>
9734
9923
 
9735
9924
  <li class="md-nav__item">
9736
- <a href="#changed_2" class="md-nav__link">
9925
+ <a href="#changed_3" class="md-nav__link">
9737
9926
  <span class="md-ellipsis">
9738
9927
  Changed
9739
9928
  </span>
@@ -9742,7 +9931,7 @@
9742
9931
  </li>
9743
9932
 
9744
9933
  <li class="md-nav__item">
9745
- <a href="#fixed_2" class="md-nav__link">
9934
+ <a href="#fixed_4" class="md-nav__link">
9746
9935
  <span class="md-ellipsis">
9747
9936
  Fixed
9748
9937
  </span>
@@ -9751,7 +9940,7 @@
9751
9940
  </li>
9752
9941
 
9753
9942
  <li class="md-nav__item">
9754
- <a href="#dependencies_2" class="md-nav__link">
9943
+ <a href="#dependencies_3" class="md-nav__link">
9755
9944
  <span class="md-ellipsis">
9756
9945
  Dependencies
9757
9946
  </span>
@@ -9769,7 +9958,7 @@
9769
9958
  </li>
9770
9959
 
9771
9960
  <li class="md-nav__item">
9772
- <a href="#housekeeping_2" class="md-nav__link">
9961
+ <a href="#housekeeping_3" class="md-nav__link">
9773
9962
  <span class="md-ellipsis">
9774
9963
  Housekeeping
9775
9964
  </span>
@@ -9793,7 +9982,7 @@
9793
9982
  <ul class="md-nav__list">
9794
9983
 
9795
9984
  <li class="md-nav__item">
9796
- <a href="#added_4" class="md-nav__link">
9985
+ <a href="#added_5" class="md-nav__link">
9797
9986
  <span class="md-ellipsis">
9798
9987
  Added
9799
9988
  </span>
@@ -9802,7 +9991,7 @@
9802
9991
  </li>
9803
9992
 
9804
9993
  <li class="md-nav__item">
9805
- <a href="#changed_3" class="md-nav__link">
9994
+ <a href="#changed_4" class="md-nav__link">
9806
9995
  <span class="md-ellipsis">
9807
9996
  Changed
9808
9997
  </span>
@@ -9811,7 +10000,7 @@
9811
10000
  </li>
9812
10001
 
9813
10002
  <li class="md-nav__item">
9814
- <a href="#fixed_3" class="md-nav__link">
10003
+ <a href="#fixed_5" class="md-nav__link">
9815
10004
  <span class="md-ellipsis">
9816
10005
  Fixed
9817
10006
  </span>
@@ -9829,7 +10018,7 @@
9829
10018
  </li>
9830
10019
 
9831
10020
  <li class="md-nav__item">
9832
- <a href="#housekeeping_3" class="md-nav__link">
10021
+ <a href="#housekeeping_4" class="md-nav__link">
9833
10022
  <span class="md-ellipsis">
9834
10023
  Housekeeping
9835
10024
  </span>
@@ -9862,7 +10051,7 @@
9862
10051
  </li>
9863
10052
 
9864
10053
  <li class="md-nav__item">
9865
- <a href="#fixed_4" class="md-nav__link">
10054
+ <a href="#fixed_6" class="md-nav__link">
9866
10055
  <span class="md-ellipsis">
9867
10056
  Fixed
9868
10057
  </span>
@@ -9871,7 +10060,7 @@
9871
10060
  </li>
9872
10061
 
9873
10062
  <li class="md-nav__item">
9874
- <a href="#dependencies_3" class="md-nav__link">
10063
+ <a href="#dependencies_4" class="md-nav__link">
9875
10064
  <span class="md-ellipsis">
9876
10065
  Dependencies
9877
10066
  </span>
@@ -9880,7 +10069,7 @@
9880
10069
  </li>
9881
10070
 
9882
10071
  <li class="md-nav__item">
9883
- <a href="#housekeeping_4" class="md-nav__link">
10072
+ <a href="#housekeeping_5" class="md-nav__link">
9884
10073
  <span class="md-ellipsis">
9885
10074
  Housekeeping
9886
10075
  </span>
@@ -9913,7 +10102,7 @@
9913
10102
  </li>
9914
10103
 
9915
10104
  <li class="md-nav__item">
9916
- <a href="#added_5" class="md-nav__link">
10105
+ <a href="#added_6" class="md-nav__link">
9917
10106
  <span class="md-ellipsis">
9918
10107
  Added
9919
10108
  </span>
@@ -9922,7 +10111,7 @@
9922
10111
  </li>
9923
10112
 
9924
10113
  <li class="md-nav__item">
9925
- <a href="#fixed_5" class="md-nav__link">
10114
+ <a href="#fixed_7" class="md-nav__link">
9926
10115
  <span class="md-ellipsis">
9927
10116
  Fixed
9928
10117
  </span>
@@ -9931,7 +10120,7 @@
9931
10120
  </li>
9932
10121
 
9933
10122
  <li class="md-nav__item">
9934
- <a href="#housekeeping_5" class="md-nav__link">
10123
+ <a href="#housekeeping_6" class="md-nav__link">
9935
10124
  <span class="md-ellipsis">
9936
10125
  Housekeeping
9937
10126
  </span>
@@ -9955,7 +10144,7 @@
9955
10144
  <ul class="md-nav__list">
9956
10145
 
9957
10146
  <li class="md-nav__item">
9958
- <a href="#added_6" class="md-nav__link">
10147
+ <a href="#added_7" class="md-nav__link">
9959
10148
  <span class="md-ellipsis">
9960
10149
  Added
9961
10150
  </span>
@@ -9964,7 +10153,7 @@
9964
10153
  </li>
9965
10154
 
9966
10155
  <li class="md-nav__item">
9967
- <a href="#changed_4" class="md-nav__link">
10156
+ <a href="#changed_5" class="md-nav__link">
9968
10157
  <span class="md-ellipsis">
9969
10158
  Changed
9970
10159
  </span>
@@ -9973,7 +10162,7 @@
9973
10162
  </li>
9974
10163
 
9975
10164
  <li class="md-nav__item">
9976
- <a href="#fixed_6" class="md-nav__link">
10165
+ <a href="#fixed_8" class="md-nav__link">
9977
10166
  <span class="md-ellipsis">
9978
10167
  Fixed
9979
10168
  </span>
@@ -9982,7 +10171,7 @@
9982
10171
  </li>
9983
10172
 
9984
10173
  <li class="md-nav__item">
9985
- <a href="#housekeeping_6" class="md-nav__link">
10174
+ <a href="#housekeeping_7" class="md-nav__link">
9986
10175
  <span class="md-ellipsis">
9987
10176
  Housekeeping
9988
10177
  </span>
@@ -10015,7 +10204,7 @@
10015
10204
  </li>
10016
10205
 
10017
10206
  <li class="md-nav__item">
10018
- <a href="#added_7" class="md-nav__link">
10207
+ <a href="#added_8" class="md-nav__link">
10019
10208
  <span class="md-ellipsis">
10020
10209
  Added
10021
10210
  </span>
@@ -10024,7 +10213,7 @@
10024
10213
  </li>
10025
10214
 
10026
10215
  <li class="md-nav__item">
10027
- <a href="#changed_5" class="md-nav__link">
10216
+ <a href="#changed_6" class="md-nav__link">
10028
10217
  <span class="md-ellipsis">
10029
10218
  Changed
10030
10219
  </span>
@@ -10042,7 +10231,7 @@
10042
10231
  </li>
10043
10232
 
10044
10233
  <li class="md-nav__item">
10045
- <a href="#fixed_7" class="md-nav__link">
10234
+ <a href="#fixed_9" class="md-nav__link">
10046
10235
  <span class="md-ellipsis">
10047
10236
  Fixed
10048
10237
  </span>
@@ -10060,7 +10249,7 @@
10060
10249
  </li>
10061
10250
 
10062
10251
  <li class="md-nav__item">
10063
- <a href="#housekeeping_7" class="md-nav__link">
10252
+ <a href="#housekeeping_8" class="md-nav__link">
10064
10253
  <span class="md-ellipsis">
10065
10254
  Housekeeping
10066
10255
  </span>
@@ -10093,7 +10282,7 @@
10093
10282
  </li>
10094
10283
 
10095
10284
  <li class="md-nav__item">
10096
- <a href="#added_8" class="md-nav__link">
10285
+ <a href="#added_9" class="md-nav__link">
10097
10286
  <span class="md-ellipsis">
10098
10287
  Added
10099
10288
  </span>
@@ -10102,7 +10291,7 @@
10102
10291
  </li>
10103
10292
 
10104
10293
  <li class="md-nav__item">
10105
- <a href="#changed_6" class="md-nav__link">
10294
+ <a href="#changed_7" class="md-nav__link">
10106
10295
  <span class="md-ellipsis">
10107
10296
  Changed
10108
10297
  </span>
@@ -10129,7 +10318,7 @@
10129
10318
  </li>
10130
10319
 
10131
10320
  <li class="md-nav__item">
10132
- <a href="#fixed_8" class="md-nav__link">
10321
+ <a href="#fixed_10" class="md-nav__link">
10133
10322
  <span class="md-ellipsis">
10134
10323
  Fixed
10135
10324
  </span>
@@ -10138,7 +10327,7 @@
10138
10327
  </li>
10139
10328
 
10140
10329
  <li class="md-nav__item">
10141
- <a href="#dependencies_4" class="md-nav__link">
10330
+ <a href="#dependencies_5" class="md-nav__link">
10142
10331
  <span class="md-ellipsis">
10143
10332
  Dependencies
10144
10333
  </span>
@@ -10156,7 +10345,7 @@
10156
10345
  </li>
10157
10346
 
10158
10347
  <li class="md-nav__item">
10159
- <a href="#housekeeping_8" class="md-nav__link">
10348
+ <a href="#housekeeping_9" class="md-nav__link">
10160
10349
  <span class="md-ellipsis">
10161
10350
  Housekeeping
10162
10351
  </span>
@@ -10279,44 +10468,83 @@
10279
10468
  <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>
10280
10469
  <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>
10281
10470
  <!-- towncrier release notes start -->
10282
- <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>
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>
10283
10472
  <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
10284
10473
  <ul>
10285
- <li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
10474
+ <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
+ <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
+ <li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
10286
10477
  </ul>
10287
10478
  <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10288
10479
  <ul>
10289
- <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>
10290
- <li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that ensure_git_repository logs hashes to include the name of the repository.</li>
10480
+ <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
+ <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
+ <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>
10291
10483
  </ul>
10292
10484
  <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10293
10485
  <ul>
10486
+ <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
+ <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>
10488
+ <li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Fixed reversed chronological ordering of JobHooks and Webhooks sent from a single <code>web_request_context</code> session.</li>
10489
+ <li><a href="https://github.com/nautobot/nautobot/issues/6400">#6400</a> - Removed misleading help text from ModularComponentForm, as the <code>{module}</code> auto-substitution in names only applies through component <em>templates</em> at present.</li>
10490
+ <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
+ <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
+ </ul>
10493
+ <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
10494
+ <ul>
10495
+ <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
+ </ul>
10497
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10498
+ <ul>
10499
+ <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
+ </ul>
10501
+ <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>
10503
+ <ul>
10504
+ <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
+ <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>
10506
+ <li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Added pagination of related-object tables to many IPAM views to avoid errors when very large quantities of related records are present.</li>
10507
+ <li><a href="https://github.com/nautobot/nautobot/issues/6380">#6380</a> - Fixed issue with Installed Apps page trying to render invalid links.</li>
10508
+ <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
+ </ul>
10510
+ <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>
10512
+ <ul>
10513
+ <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
+ </ul>
10515
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10516
+ <ul>
10517
+ <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
+ <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
+ </ul>
10520
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10521
+ <ul>
10294
10522
  <li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
10295
10523
  <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>
10296
10524
  <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>
10297
10525
  <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>
10298
10526
  </ul>
10299
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
10527
+ <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
10300
10528
  <ul>
10301
10529
  <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>
10302
10530
  </ul>
10303
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10531
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10304
10532
  <ul>
10305
10533
  <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>
10306
10534
  <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>
10307
10535
  <li><a href="https://github.com/nautobot/nautobot/issues/6283">#6283</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.39</code>.</li>
10308
10536
  <li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed an error when rerunning parallel tests with a cached database and test factories enabled.</li>
10309
10537
  <li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed a permission-denied error on the <code>MEDIA_ROOT</code> volume when running the local development environment with <code>docker-compose.final.yml</code>.</li>
10310
- <li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Increased the healthcheck start_period in the local development environment to 10 minutes.</li>
10538
+ <li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Increased the healthcheck <code>start_period</code> in the local development environment to 10 minutes.</li>
10311
10539
  <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>
10312
10540
  </ul>
10313
10541
  <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>
10314
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10542
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10315
10543
  <ul>
10316
10544
  <li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
10317
10545
  <li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
10318
10546
  </ul>
10319
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10547
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10320
10548
  <ul>
10321
10549
  <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>
10322
10550
  <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>
@@ -10326,21 +10554,21 @@
10326
10554
  <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>
10327
10555
  <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>
10328
10556
  </ul>
10329
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10557
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10330
10558
  <ul>
10331
10559
  <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>
10332
10560
  </ul>
10333
10561
  <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>
10334
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10562
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10335
10563
  <ul>
10336
10564
  <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>
10337
10565
  <li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
10338
10566
  </ul>
10339
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10567
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10340
10568
  <ul>
10341
10569
  <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>
10342
10570
  </ul>
10343
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10571
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10344
10572
  <ul>
10345
10573
  <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>
10346
10574
  <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>
@@ -10351,7 +10579,7 @@
10351
10579
  <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>
10352
10580
  <li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
10353
10581
  </ul>
10354
- <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
10582
+ <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
10355
10583
  <ul>
10356
10584
  <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>
10357
10585
  <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>
@@ -10360,7 +10588,7 @@
10360
10588
  <ul>
10361
10589
  <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>
10362
10590
  </ul>
10363
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10591
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10364
10592
  <ul>
10365
10593
  <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>
10366
10594
  <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>
@@ -10369,16 +10597,16 @@
10369
10597
  <li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
10370
10598
  </ul>
10371
10599
  <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>
10372
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10600
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10373
10601
  <ul>
10374
10602
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
10375
10603
  <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>
10376
10604
  </ul>
10377
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10605
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10378
10606
  <ul>
10379
10607
  <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>
10380
10608
  </ul>
10381
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10609
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10382
10610
  <ul>
10383
10611
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
10384
10612
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
@@ -10392,7 +10620,7 @@
10392
10620
  <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>
10393
10621
  <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>
10394
10622
  </ul>
10395
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10623
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10396
10624
  <ul>
10397
10625
  <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>
10398
10626
  <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>
@@ -10404,18 +10632,18 @@
10404
10632
  <ul>
10405
10633
  <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>
10406
10634
  </ul>
10407
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10635
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10408
10636
  <ul>
10409
10637
  <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>
10410
10638
  <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>
10411
10639
  <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>
10412
10640
  <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>
10413
10641
  </ul>
10414
- <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
10642
+ <h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">&para;</a></h3>
10415
10643
  <ul>
10416
10644
  <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>
10417
10645
  </ul>
10418
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10646
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10419
10647
  <ul>
10420
10648
  <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>
10421
10649
  <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>
@@ -10429,14 +10657,14 @@
10429
10657
  <ul>
10430
10658
  <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>
10431
10659
  </ul>
10432
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10660
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10433
10661
  <ul>
10434
10662
  <li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
10435
10663
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
10436
10664
  <li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
10437
10665
  <li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
10438
10666
  </ul>
10439
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10667
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10440
10668
  <ul>
10441
10669
  <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>
10442
10670
  <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>
@@ -10445,7 +10673,7 @@
10445
10673
  <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>
10446
10674
  <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>
10447
10675
  </ul>
10448
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10676
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10449
10677
  <ul>
10450
10678
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
10451
10679
  <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>
@@ -10453,24 +10681,24 @@
10453
10681
  <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>
10454
10682
  </ul>
10455
10683
  <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>
10456
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10684
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10457
10685
  <ul>
10458
10686
  <li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
10459
10687
  <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>
10460
10688
  <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>
10461
10689
  </ul>
10462
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10690
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10463
10691
  <ul>
10464
10692
  <li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
10465
10693
  </ul>
10466
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10694
+ <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10467
10695
  <ul>
10468
10696
  <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>
10469
10697
  <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>
10470
10698
  <li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
10471
10699
  <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>
10472
10700
  </ul>
10473
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10701
+ <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10474
10702
  <ul>
10475
10703
  <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>
10476
10704
  </ul>
@@ -10479,7 +10707,7 @@
10479
10707
  <ul>
10480
10708
  <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>
10481
10709
  </ul>
10482
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10710
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10483
10711
  <ul>
10484
10712
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
10485
10713
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
@@ -10489,7 +10717,7 @@
10489
10717
  <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>
10490
10718
  <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>
10491
10719
  </ul>
10492
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10720
+ <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
10493
10721
  <ul>
10494
10722
  <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>
10495
10723
  <li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
@@ -10503,7 +10731,7 @@
10503
10731
  <li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
10504
10732
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
10505
10733
  </ul>
10506
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10734
+ <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10507
10735
  <ul>
10508
10736
  <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>
10509
10737
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
@@ -10527,7 +10755,7 @@
10527
10755
  <li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
10528
10756
  <li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
10529
10757
  </ul>
10530
- <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10758
+ <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
10531
10759
  <ul>
10532
10760
  <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>
10533
10761
  <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>
@@ -10542,7 +10770,7 @@
10542
10770
  <ul>
10543
10771
  <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>
10544
10772
  </ul>
10545
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10773
+ <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
10546
10774
  <ul>
10547
10775
  <li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
10548
10776
  <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>
@@ -10589,7 +10817,7 @@
10589
10817
  <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>
10590
10818
  <li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
10591
10819
  </ul>
10592
- <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
10820
+ <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
10593
10821
  <ul>
10594
10822
  <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>
10595
10823
  <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>
@@ -10633,7 +10861,7 @@
10633
10861
  <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>
10634
10862
  <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>
10635
10863
  </ul>
10636
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10864
+ <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
10637
10865
  <ul>
10638
10866
  <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>
10639
10867
  <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>
@@ -10657,7 +10885,7 @@
10657
10885
  <li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
10658
10886
  <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>
10659
10887
  </ul>
10660
- <h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">&para;</a></h3>
10888
+ <h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">&para;</a></h3>
10661
10889
  <ul>
10662
10890
  <li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
10663
10891
  <li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
@@ -10689,7 +10917,7 @@
10689
10917
  <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>
10690
10918
  <li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
10691
10919
  </ul>
10692
- <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
10920
+ <h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">&para;</a></h3>
10693
10921
  <ul>
10694
10922
  <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>
10695
10923
  <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>
@@ -10860,7 +11088,7 @@
10860
11088
  <script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
10861
11089
 
10862
11090
 
10863
- <script src="../assets/javascripts/bundle.525ec568.min.js"></script>
11091
+ <script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
10864
11092
 
10865
11093
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
10866
11094