nautobot 2.3.4__py3-none-any.whl → 2.3.5__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (308) hide show
  1. nautobot/core/tests/runner.py +13 -6
  2. nautobot/core/tests/test_views.py +40 -1
  3. nautobot/core/views/generic.py +15 -15
  4. nautobot/core/views/mixins.py +12 -1
  5. nautobot/core/views/renderers.py +3 -1
  6. nautobot/core/views/utils.py +1 -1
  7. nautobot/dcim/api/serializers.py +1 -0
  8. nautobot/dcim/api/views.py +2 -0
  9. nautobot/dcim/forms.py +1 -1
  10. nautobot/dcim/templates/dcim/devicefamily_retrieve.html +1 -1
  11. nautobot/dcim/tests/test_api.py +58 -4
  12. nautobot/dcim/tests/test_models.py +0 -2
  13. nautobot/dcim/views.py +5 -2
  14. nautobot/extras/api/views.py +9 -0
  15. nautobot/extras/models/jobs.py +9 -1
  16. nautobot/extras/querysets.py +10 -1
  17. nautobot/extras/tables.py +3 -0
  18. nautobot/extras/tests/test_api.py +36 -0
  19. nautobot/extras/tests/test_views.py +76 -1
  20. nautobot/extras/views.py +10 -7
  21. nautobot/ipam/forms.py +6 -1
  22. nautobot/ipam/models.py +5 -11
  23. nautobot/ipam/navigation.py +8 -1
  24. nautobot/ipam/templates/ipam/prefix.html +1 -1
  25. nautobot/ipam/tests/test_filters.py +1 -1
  26. nautobot/ipam/tests/test_views.py +41 -41
  27. nautobot/ipam/views.py +1 -1
  28. nautobot/project-static/docs/404.html +2 -2
  29. nautobot/project-static/docs/apps/index.html +2 -2
  30. nautobot/project-static/docs/apps/nautobot-apps.html +2 -2
  31. nautobot/project-static/docs/assets/javascripts/workers/{search.07f07601.min.js → search.6ce7567c.min.js} +3 -3
  32. nautobot/project-static/docs/assets/javascripts/workers/{search.07f07601.min.js.map → search.6ce7567c.min.js.map} +2 -2
  33. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +2 -2
  34. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +2 -2
  35. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +2 -2
  36. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +2 -2
  37. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +2 -2
  38. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +2 -2
  39. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +2 -2
  40. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +2 -2
  41. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +2 -2
  42. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +2 -2
  43. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +2 -2
  44. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +2 -2
  45. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +2 -2
  46. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2 -2
  47. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +2 -2
  48. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +2 -2
  49. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +2 -2
  50. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +2 -2
  51. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +2 -2
  52. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +2 -2
  53. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +2 -2
  54. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +2 -2
  55. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +2 -2
  56. nautobot/project-static/docs/development/apps/api/configuration-view.html +2 -2
  57. nautobot/project-static/docs/development/apps/api/database-backend-config.html +2 -2
  58. nautobot/project-static/docs/development/apps/api/models/django-admin.html +2 -2
  59. nautobot/project-static/docs/development/apps/api/models/global-search.html +2 -2
  60. nautobot/project-static/docs/development/apps/api/models/graphql.html +2 -2
  61. nautobot/project-static/docs/development/apps/api/models/index.html +2 -2
  62. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +2 -2
  63. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +2 -2
  64. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +2 -2
  65. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +2 -2
  66. nautobot/project-static/docs/development/apps/api/platform-features/index.html +2 -2
  67. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +2 -2
  68. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +2 -2
  69. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +2 -2
  70. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +2 -2
  71. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +2 -2
  72. nautobot/project-static/docs/development/apps/api/prometheus.html +2 -2
  73. nautobot/project-static/docs/development/apps/api/setup.html +2 -2
  74. nautobot/project-static/docs/development/apps/api/testing.html +2 -2
  75. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +2 -2
  76. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +2 -2
  77. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +2 -2
  78. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +2 -2
  79. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +2 -2
  80. nautobot/project-static/docs/development/apps/api/views/base-template.html +2 -2
  81. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +2 -2
  82. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +2 -2
  83. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +2 -2
  84. nautobot/project-static/docs/development/apps/api/views/index.html +2 -2
  85. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +2 -2
  86. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +2 -2
  87. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +2 -2
  88. nautobot/project-static/docs/development/apps/api/views/notes.html +2 -2
  89. nautobot/project-static/docs/development/apps/api/views/rest-api.html +2 -2
  90. nautobot/project-static/docs/development/apps/api/views/urls.html +2 -2
  91. nautobot/project-static/docs/development/apps/index.html +2 -2
  92. nautobot/project-static/docs/development/apps/migration/code-updates.html +2 -2
  93. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +2 -2
  94. nautobot/project-static/docs/development/apps/migration/from-v1.html +2 -2
  95. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +2 -2
  96. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +2 -2
  97. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +2 -2
  98. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +2 -2
  99. nautobot/project-static/docs/development/apps/porting-from-netbox.html +2 -2
  100. nautobot/project-static/docs/development/core/application-registry.html +2 -2
  101. nautobot/project-static/docs/development/core/best-practices.html +2 -2
  102. nautobot/project-static/docs/development/core/bootstrap-ui.html +2 -2
  103. nautobot/project-static/docs/development/core/caching.html +2 -2
  104. nautobot/project-static/docs/development/core/controllers.html +2 -2
  105. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +2 -2
  106. nautobot/project-static/docs/development/core/generic-views.html +2 -2
  107. nautobot/project-static/docs/development/core/getting-started.html +7 -6
  108. nautobot/project-static/docs/development/core/homepage.html +2 -2
  109. nautobot/project-static/docs/development/core/index.html +2 -2
  110. nautobot/project-static/docs/development/core/model-checklist.html +2 -2
  111. nautobot/project-static/docs/development/core/model-features.html +2 -2
  112. nautobot/project-static/docs/development/core/natural-keys.html +2 -2
  113. nautobot/project-static/docs/development/core/navigation-menu.html +2 -2
  114. nautobot/project-static/docs/development/core/release-checklist.html +2 -2
  115. nautobot/project-static/docs/development/core/role-internals.html +2 -2
  116. nautobot/project-static/docs/development/core/settings.html +2 -2
  117. nautobot/project-static/docs/development/core/style-guide.html +2 -2
  118. nautobot/project-static/docs/development/core/templates.html +2 -2
  119. nautobot/project-static/docs/development/core/testing.html +12 -4
  120. nautobot/project-static/docs/development/core/user-preferences.html +2 -2
  121. nautobot/project-static/docs/development/index.html +2 -2
  122. nautobot/project-static/docs/development/jobs/index.html +2 -2
  123. nautobot/project-static/docs/development/jobs/migration/from-v1.html +2 -2
  124. nautobot/project-static/docs/index.html +2 -2
  125. nautobot/project-static/docs/overview/application_stack.html +2 -2
  126. nautobot/project-static/docs/overview/design_philosophy.html +2 -2
  127. nautobot/project-static/docs/release-notes/index.html +2 -2
  128. nautobot/project-static/docs/release-notes/version-1.0.html +2 -2
  129. nautobot/project-static/docs/release-notes/version-1.1.html +2 -2
  130. nautobot/project-static/docs/release-notes/version-1.2.html +2 -2
  131. nautobot/project-static/docs/release-notes/version-1.3.html +2 -2
  132. nautobot/project-static/docs/release-notes/version-1.4.html +2 -2
  133. nautobot/project-static/docs/release-notes/version-1.5.html +2 -2
  134. nautobot/project-static/docs/release-notes/version-1.6.html +2 -2
  135. nautobot/project-static/docs/release-notes/version-2.0.html +2 -2
  136. nautobot/project-static/docs/release-notes/version-2.1.html +2 -2
  137. nautobot/project-static/docs/release-notes/version-2.2.html +2 -2
  138. nautobot/project-static/docs/release-notes/version-2.3.html +252 -76
  139. nautobot/project-static/docs/search/search_index.json +1 -1
  140. nautobot/project-static/docs/sitemap.xml +269 -269
  141. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  142. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +2 -2
  143. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +2 -2
  144. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +2 -2
  145. nautobot/project-static/docs/user-guide/administration/configuration/index.html +2 -2
  146. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +2 -2
  147. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +2 -2
  148. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +2 -2
  149. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +2 -2
  150. nautobot/project-static/docs/user-guide/administration/guides/docker.html +2 -2
  151. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +2 -2
  152. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +2 -2
  153. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +2 -2
  154. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +2 -2
  155. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +2 -2
  156. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +2 -2
  157. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +2 -2
  158. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +2 -2
  159. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +2 -2
  160. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +2 -2
  161. nautobot/project-static/docs/user-guide/administration/installation/index.html +2 -2
  162. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +2 -2
  163. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +2 -2
  164. nautobot/project-static/docs/user-guide/administration/installation/services.html +2 -2
  165. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +2 -2
  166. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +2 -2
  167. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +2 -2
  168. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +2 -2
  169. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +2 -2
  170. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +2 -2
  171. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +2 -2
  172. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +2 -2
  173. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +2 -2
  174. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +2 -2
  175. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +2 -2
  176. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +2 -2
  177. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +2 -2
  178. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +2 -2
  179. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +2 -2
  180. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +2 -2
  181. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +2 -2
  182. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +2 -2
  183. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +2 -2
  184. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +2 -2
  185. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +2 -2
  186. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +2 -2
  187. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +2 -2
  188. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +2 -2
  189. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +2 -2
  190. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +2 -2
  191. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +2 -2
  192. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +2 -2
  193. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +2 -2
  194. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +2 -2
  195. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +2 -2
  196. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +2 -2
  197. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +2 -2
  198. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +2 -2
  199. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +2 -2
  200. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +2 -2
  201. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +2 -2
  202. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +2 -2
  203. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +2 -2
  204. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +2 -2
  205. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +2 -2
  206. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +2 -2
  207. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +2 -2
  208. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +2 -2
  209. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +2 -2
  210. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +2 -2
  211. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +2 -2
  212. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +2 -2
  213. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +2 -2
  214. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +2 -2
  215. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +2 -2
  216. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +2 -2
  217. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +2 -2
  218. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +2 -2
  219. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +2 -2
  220. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +2 -2
  221. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +2 -2
  222. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +2 -2
  223. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +2 -2
  224. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +2 -2
  225. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +2 -2
  226. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +2 -2
  227. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +2 -2
  228. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +2 -2
  229. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +2 -2
  230. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +2 -2
  231. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +2 -2
  232. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +2 -2
  233. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +2 -2
  234. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +2 -2
  235. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +2 -2
  236. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +2 -2
  237. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +2 -2
  238. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +2 -2
  239. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +2 -2
  240. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +2 -2
  241. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +2 -2
  242. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +2 -2
  243. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +2 -2
  244. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +2 -2
  245. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +2 -2
  246. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +2 -2
  247. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +2 -2
  248. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +2 -2
  249. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +2 -2
  250. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +2 -2
  251. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +2 -2
  252. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +2 -2
  253. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +2 -2
  254. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +2 -2
  255. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +2 -2
  256. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +2 -2
  257. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +2 -2
  258. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +2 -2
  259. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +2 -2
  260. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +2 -2
  261. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +2 -2
  262. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +2 -2
  263. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +2 -2
  264. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +2 -2
  265. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +2 -2
  266. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +2 -2
  267. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +2 -2
  268. nautobot/project-static/docs/user-guide/index.html +2 -2
  269. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +2 -2
  270. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +2 -2
  271. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +2 -2
  272. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +2 -2
  273. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +2 -2
  274. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +2 -2
  275. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +2 -2
  276. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +2 -2
  277. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +2 -2
  278. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +2 -2
  279. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +2 -2
  280. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +2 -2
  281. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +2 -2
  282. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +2 -2
  283. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +2 -2
  284. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +2 -2
  285. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +2 -2
  286. nautobot/project-static/docs/user-guide/platform-functionality/note.html +2 -2
  287. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +2 -2
  288. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +2 -2
  289. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +2 -2
  290. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +2 -2
  291. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +2 -2
  292. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +2 -2
  293. nautobot/project-static/docs/user-guide/platform-functionality/role.html +2 -2
  294. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +2 -2
  295. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +2 -2
  296. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +2 -2
  297. nautobot/project-static/docs/user-guide/platform-functionality/status.html +2 -2
  298. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +2 -2
  299. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +2 -2
  300. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +2 -2
  301. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +2 -2
  302. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +2 -2
  303. {nautobot-2.3.4.dist-info → nautobot-2.3.5.dist-info}/METADATA +2 -2
  304. {nautobot-2.3.4.dist-info → nautobot-2.3.5.dist-info}/RECORD +308 -308
  305. {nautobot-2.3.4.dist-info → nautobot-2.3.5.dist-info}/LICENSE.txt +0 -0
  306. {nautobot-2.3.4.dist-info → nautobot-2.3.5.dist-info}/NOTICE +0 -0
  307. {nautobot-2.3.4.dist-info → nautobot-2.3.5.dist-info}/WHEEL +0 -0
  308. {nautobot-2.3.4.dist-info → nautobot-2.3.5.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.34">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
22
22
 
23
23
 
24
24
 
@@ -8227,13 +8227,13 @@
8227
8227
  </li>
8228
8228
 
8229
8229
  <li class="md-nav__item">
8230
- <a href="#v234-2024-09-18" class="md-nav__link">
8230
+ <a href="#v235-2024-09-30" class="md-nav__link">
8231
8231
  <span class="md-ellipsis">
8232
- v2.3.4 (2024-09-18)
8232
+ v2.3.5 (2024-09-30)
8233
8233
  </span>
8234
8234
  </a>
8235
8235
 
8236
- <nav class="md-nav" aria-label="v2.3.4 (2024-09-18)">
8236
+ <nav class="md-nav" aria-label="v2.3.5 (2024-09-30)">
8237
8237
  <ul class="md-nav__list">
8238
8238
 
8239
8239
  <li class="md-nav__item">
@@ -8261,6 +8261,15 @@
8261
8261
  </span>
8262
8262
  </a>
8263
8263
 
8264
+ </li>
8265
+
8266
+ <li class="md-nav__item">
8267
+ <a href="#dependencies_1" class="md-nav__link">
8268
+ <span class="md-ellipsis">
8269
+ Dependencies
8270
+ </span>
8271
+ </a>
8272
+
8264
8273
  </li>
8265
8274
 
8266
8275
  <li class="md-nav__item">
@@ -8284,6 +8293,66 @@
8284
8293
  </ul>
8285
8294
  </nav>
8286
8295
 
8296
+ </li>
8297
+
8298
+ <li class="md-nav__item">
8299
+ <a href="#v234-2024-09-18" class="md-nav__link">
8300
+ <span class="md-ellipsis">
8301
+ v2.3.4 (2024-09-18)
8302
+ </span>
8303
+ </a>
8304
+
8305
+ <nav class="md-nav" aria-label="v2.3.4 (2024-09-18)">
8306
+ <ul class="md-nav__list">
8307
+
8308
+ <li class="md-nav__item">
8309
+ <a href="#added_2" class="md-nav__link">
8310
+ <span class="md-ellipsis">
8311
+ Added
8312
+ </span>
8313
+ </a>
8314
+
8315
+ </li>
8316
+
8317
+ <li class="md-nav__item">
8318
+ <a href="#changed_2" class="md-nav__link">
8319
+ <span class="md-ellipsis">
8320
+ Changed
8321
+ </span>
8322
+ </a>
8323
+
8324
+ </li>
8325
+
8326
+ <li class="md-nav__item">
8327
+ <a href="#fixed_1" class="md-nav__link">
8328
+ <span class="md-ellipsis">
8329
+ Fixed
8330
+ </span>
8331
+ </a>
8332
+
8333
+ </li>
8334
+
8335
+ <li class="md-nav__item">
8336
+ <a href="#documentation_1" class="md-nav__link">
8337
+ <span class="md-ellipsis">
8338
+ Documentation
8339
+ </span>
8340
+ </a>
8341
+
8342
+ </li>
8343
+
8344
+ <li class="md-nav__item">
8345
+ <a href="#housekeeping_1" class="md-nav__link">
8346
+ <span class="md-ellipsis">
8347
+ Housekeeping
8348
+ </span>
8349
+ </a>
8350
+
8351
+ </li>
8352
+
8353
+ </ul>
8354
+ </nav>
8355
+
8287
8356
  </li>
8288
8357
 
8289
8358
  <li class="md-nav__item">
@@ -8306,7 +8375,7 @@
8306
8375
  </li>
8307
8376
 
8308
8377
  <li class="md-nav__item">
8309
- <a href="#fixed_1" class="md-nav__link">
8378
+ <a href="#fixed_2" class="md-nav__link">
8310
8379
  <span class="md-ellipsis">
8311
8380
  Fixed
8312
8381
  </span>
@@ -8315,7 +8384,7 @@
8315
8384
  </li>
8316
8385
 
8317
8386
  <li class="md-nav__item">
8318
- <a href="#dependencies_1" class="md-nav__link">
8387
+ <a href="#dependencies_2" class="md-nav__link">
8319
8388
  <span class="md-ellipsis">
8320
8389
  Dependencies
8321
8390
  </span>
@@ -8324,7 +8393,7 @@
8324
8393
  </li>
8325
8394
 
8326
8395
  <li class="md-nav__item">
8327
- <a href="#housekeeping_1" class="md-nav__link">
8396
+ <a href="#housekeeping_2" class="md-nav__link">
8328
8397
  <span class="md-ellipsis">
8329
8398
  Housekeeping
8330
8399
  </span>
@@ -8357,7 +8426,7 @@
8357
8426
  </li>
8358
8427
 
8359
8428
  <li class="md-nav__item">
8360
- <a href="#added_2" class="md-nav__link">
8429
+ <a href="#added_3" class="md-nav__link">
8361
8430
  <span class="md-ellipsis">
8362
8431
  Added
8363
8432
  </span>
@@ -8366,7 +8435,7 @@
8366
8435
  </li>
8367
8436
 
8368
8437
  <li class="md-nav__item">
8369
- <a href="#fixed_2" class="md-nav__link">
8438
+ <a href="#fixed_3" class="md-nav__link">
8370
8439
  <span class="md-ellipsis">
8371
8440
  Fixed
8372
8441
  </span>
@@ -8375,7 +8444,7 @@
8375
8444
  </li>
8376
8445
 
8377
8446
  <li class="md-nav__item">
8378
- <a href="#housekeeping_2" class="md-nav__link">
8447
+ <a href="#housekeeping_3" class="md-nav__link">
8379
8448
  <span class="md-ellipsis">
8380
8449
  Housekeeping
8381
8450
  </span>
@@ -8399,7 +8468,7 @@
8399
8468
  <ul class="md-nav__list">
8400
8469
 
8401
8470
  <li class="md-nav__item">
8402
- <a href="#added_3" class="md-nav__link">
8471
+ <a href="#added_4" class="md-nav__link">
8403
8472
  <span class="md-ellipsis">
8404
8473
  Added
8405
8474
  </span>
@@ -8408,7 +8477,7 @@
8408
8477
  </li>
8409
8478
 
8410
8479
  <li class="md-nav__item">
8411
- <a href="#changed_2" class="md-nav__link">
8480
+ <a href="#changed_3" class="md-nav__link">
8412
8481
  <span class="md-ellipsis">
8413
8482
  Changed
8414
8483
  </span>
@@ -8417,7 +8486,7 @@
8417
8486
  </li>
8418
8487
 
8419
8488
  <li class="md-nav__item">
8420
- <a href="#fixed_3" class="md-nav__link">
8489
+ <a href="#fixed_4" class="md-nav__link">
8421
8490
  <span class="md-ellipsis">
8422
8491
  Fixed
8423
8492
  </span>
@@ -8426,7 +8495,7 @@
8426
8495
  </li>
8427
8496
 
8428
8497
  <li class="md-nav__item">
8429
- <a href="#housekeeping_3" class="md-nav__link">
8498
+ <a href="#housekeeping_4" class="md-nav__link">
8430
8499
  <span class="md-ellipsis">
8431
8500
  Housekeeping
8432
8501
  </span>
@@ -8459,7 +8528,7 @@
8459
8528
  </li>
8460
8529
 
8461
8530
  <li class="md-nav__item">
8462
- <a href="#added_4" class="md-nav__link">
8531
+ <a href="#added_5" class="md-nav__link">
8463
8532
  <span class="md-ellipsis">
8464
8533
  Added
8465
8534
  </span>
@@ -8468,7 +8537,7 @@
8468
8537
  </li>
8469
8538
 
8470
8539
  <li class="md-nav__item">
8471
- <a href="#changed_3" class="md-nav__link">
8540
+ <a href="#changed_4" class="md-nav__link">
8472
8541
  <span class="md-ellipsis">
8473
8542
  Changed
8474
8543
  </span>
@@ -8486,7 +8555,7 @@
8486
8555
  </li>
8487
8556
 
8488
8557
  <li class="md-nav__item">
8489
- <a href="#fixed_4" class="md-nav__link">
8558
+ <a href="#fixed_5" class="md-nav__link">
8490
8559
  <span class="md-ellipsis">
8491
8560
  Fixed
8492
8561
  </span>
@@ -8495,7 +8564,7 @@
8495
8564
  </li>
8496
8565
 
8497
8566
  <li class="md-nav__item">
8498
- <a href="#documentation_1" class="md-nav__link">
8567
+ <a href="#documentation_2" class="md-nav__link">
8499
8568
  <span class="md-ellipsis">
8500
8569
  Documentation
8501
8570
  </span>
@@ -8504,7 +8573,7 @@
8504
8573
  </li>
8505
8574
 
8506
8575
  <li class="md-nav__item">
8507
- <a href="#housekeeping_4" class="md-nav__link">
8576
+ <a href="#housekeeping_5" class="md-nav__link">
8508
8577
  <span class="md-ellipsis">
8509
8578
  Housekeeping
8510
8579
  </span>
@@ -8537,7 +8606,7 @@
8537
8606
  </li>
8538
8607
 
8539
8608
  <li class="md-nav__item">
8540
- <a href="#added_5" class="md-nav__link">
8609
+ <a href="#added_6" class="md-nav__link">
8541
8610
  <span class="md-ellipsis">
8542
8611
  Added
8543
8612
  </span>
@@ -8546,7 +8615,7 @@
8546
8615
  </li>
8547
8616
 
8548
8617
  <li class="md-nav__item">
8549
- <a href="#changed_4" class="md-nav__link">
8618
+ <a href="#changed_5" class="md-nav__link">
8550
8619
  <span class="md-ellipsis">
8551
8620
  Changed
8552
8621
  </span>
@@ -8573,7 +8642,7 @@
8573
8642
  </li>
8574
8643
 
8575
8644
  <li class="md-nav__item">
8576
- <a href="#fixed_5" class="md-nav__link">
8645
+ <a href="#fixed_6" class="md-nav__link">
8577
8646
  <span class="md-ellipsis">
8578
8647
  Fixed
8579
8648
  </span>
@@ -8582,7 +8651,7 @@
8582
8651
  </li>
8583
8652
 
8584
8653
  <li class="md-nav__item">
8585
- <a href="#dependencies_2" class="md-nav__link">
8654
+ <a href="#dependencies_3" class="md-nav__link">
8586
8655
  <span class="md-ellipsis">
8587
8656
  Dependencies
8588
8657
  </span>
@@ -8591,7 +8660,7 @@
8591
8660
  </li>
8592
8661
 
8593
8662
  <li class="md-nav__item">
8594
- <a href="#documentation_2" class="md-nav__link">
8663
+ <a href="#documentation_3" class="md-nav__link">
8595
8664
  <span class="md-ellipsis">
8596
8665
  Documentation
8597
8666
  </span>
@@ -8600,7 +8669,7 @@
8600
8669
  </li>
8601
8670
 
8602
8671
  <li class="md-nav__item">
8603
- <a href="#housekeeping_5" class="md-nav__link">
8672
+ <a href="#housekeeping_6" class="md-nav__link">
8604
8673
  <span class="md-ellipsis">
8605
8674
  Housekeeping
8606
8675
  </span>
@@ -9405,13 +9474,13 @@
9405
9474
  </li>
9406
9475
 
9407
9476
  <li class="md-nav__item">
9408
- <a href="#v234-2024-09-18" class="md-nav__link">
9477
+ <a href="#v235-2024-09-30" class="md-nav__link">
9409
9478
  <span class="md-ellipsis">
9410
- v2.3.4 (2024-09-18)
9479
+ v2.3.5 (2024-09-30)
9411
9480
  </span>
9412
9481
  </a>
9413
9482
 
9414
- <nav class="md-nav" aria-label="v2.3.4 (2024-09-18)">
9483
+ <nav class="md-nav" aria-label="v2.3.5 (2024-09-30)">
9415
9484
  <ul class="md-nav__list">
9416
9485
 
9417
9486
  <li class="md-nav__item">
@@ -9439,6 +9508,15 @@
9439
9508
  </span>
9440
9509
  </a>
9441
9510
 
9511
+ </li>
9512
+
9513
+ <li class="md-nav__item">
9514
+ <a href="#dependencies_1" class="md-nav__link">
9515
+ <span class="md-ellipsis">
9516
+ Dependencies
9517
+ </span>
9518
+ </a>
9519
+
9442
9520
  </li>
9443
9521
 
9444
9522
  <li class="md-nav__item">
@@ -9462,6 +9540,66 @@
9462
9540
  </ul>
9463
9541
  </nav>
9464
9542
 
9543
+ </li>
9544
+
9545
+ <li class="md-nav__item">
9546
+ <a href="#v234-2024-09-18" class="md-nav__link">
9547
+ <span class="md-ellipsis">
9548
+ v2.3.4 (2024-09-18)
9549
+ </span>
9550
+ </a>
9551
+
9552
+ <nav class="md-nav" aria-label="v2.3.4 (2024-09-18)">
9553
+ <ul class="md-nav__list">
9554
+
9555
+ <li class="md-nav__item">
9556
+ <a href="#added_2" class="md-nav__link">
9557
+ <span class="md-ellipsis">
9558
+ Added
9559
+ </span>
9560
+ </a>
9561
+
9562
+ </li>
9563
+
9564
+ <li class="md-nav__item">
9565
+ <a href="#changed_2" class="md-nav__link">
9566
+ <span class="md-ellipsis">
9567
+ Changed
9568
+ </span>
9569
+ </a>
9570
+
9571
+ </li>
9572
+
9573
+ <li class="md-nav__item">
9574
+ <a href="#fixed_1" class="md-nav__link">
9575
+ <span class="md-ellipsis">
9576
+ Fixed
9577
+ </span>
9578
+ </a>
9579
+
9580
+ </li>
9581
+
9582
+ <li class="md-nav__item">
9583
+ <a href="#documentation_1" class="md-nav__link">
9584
+ <span class="md-ellipsis">
9585
+ Documentation
9586
+ </span>
9587
+ </a>
9588
+
9589
+ </li>
9590
+
9591
+ <li class="md-nav__item">
9592
+ <a href="#housekeeping_1" class="md-nav__link">
9593
+ <span class="md-ellipsis">
9594
+ Housekeeping
9595
+ </span>
9596
+ </a>
9597
+
9598
+ </li>
9599
+
9600
+ </ul>
9601
+ </nav>
9602
+
9465
9603
  </li>
9466
9604
 
9467
9605
  <li class="md-nav__item">
@@ -9484,7 +9622,7 @@
9484
9622
  </li>
9485
9623
 
9486
9624
  <li class="md-nav__item">
9487
- <a href="#fixed_1" class="md-nav__link">
9625
+ <a href="#fixed_2" class="md-nav__link">
9488
9626
  <span class="md-ellipsis">
9489
9627
  Fixed
9490
9628
  </span>
@@ -9493,7 +9631,7 @@
9493
9631
  </li>
9494
9632
 
9495
9633
  <li class="md-nav__item">
9496
- <a href="#dependencies_1" class="md-nav__link">
9634
+ <a href="#dependencies_2" class="md-nav__link">
9497
9635
  <span class="md-ellipsis">
9498
9636
  Dependencies
9499
9637
  </span>
@@ -9502,7 +9640,7 @@
9502
9640
  </li>
9503
9641
 
9504
9642
  <li class="md-nav__item">
9505
- <a href="#housekeeping_1" class="md-nav__link">
9643
+ <a href="#housekeeping_2" class="md-nav__link">
9506
9644
  <span class="md-ellipsis">
9507
9645
  Housekeeping
9508
9646
  </span>
@@ -9535,7 +9673,7 @@
9535
9673
  </li>
9536
9674
 
9537
9675
  <li class="md-nav__item">
9538
- <a href="#added_2" class="md-nav__link">
9676
+ <a href="#added_3" class="md-nav__link">
9539
9677
  <span class="md-ellipsis">
9540
9678
  Added
9541
9679
  </span>
@@ -9544,7 +9682,7 @@
9544
9682
  </li>
9545
9683
 
9546
9684
  <li class="md-nav__item">
9547
- <a href="#fixed_2" class="md-nav__link">
9685
+ <a href="#fixed_3" class="md-nav__link">
9548
9686
  <span class="md-ellipsis">
9549
9687
  Fixed
9550
9688
  </span>
@@ -9553,7 +9691,7 @@
9553
9691
  </li>
9554
9692
 
9555
9693
  <li class="md-nav__item">
9556
- <a href="#housekeeping_2" class="md-nav__link">
9694
+ <a href="#housekeeping_3" class="md-nav__link">
9557
9695
  <span class="md-ellipsis">
9558
9696
  Housekeeping
9559
9697
  </span>
@@ -9577,7 +9715,7 @@
9577
9715
  <ul class="md-nav__list">
9578
9716
 
9579
9717
  <li class="md-nav__item">
9580
- <a href="#added_3" class="md-nav__link">
9718
+ <a href="#added_4" class="md-nav__link">
9581
9719
  <span class="md-ellipsis">
9582
9720
  Added
9583
9721
  </span>
@@ -9586,7 +9724,7 @@
9586
9724
  </li>
9587
9725
 
9588
9726
  <li class="md-nav__item">
9589
- <a href="#changed_2" class="md-nav__link">
9727
+ <a href="#changed_3" class="md-nav__link">
9590
9728
  <span class="md-ellipsis">
9591
9729
  Changed
9592
9730
  </span>
@@ -9595,7 +9733,7 @@
9595
9733
  </li>
9596
9734
 
9597
9735
  <li class="md-nav__item">
9598
- <a href="#fixed_3" class="md-nav__link">
9736
+ <a href="#fixed_4" class="md-nav__link">
9599
9737
  <span class="md-ellipsis">
9600
9738
  Fixed
9601
9739
  </span>
@@ -9604,7 +9742,7 @@
9604
9742
  </li>
9605
9743
 
9606
9744
  <li class="md-nav__item">
9607
- <a href="#housekeeping_3" class="md-nav__link">
9745
+ <a href="#housekeeping_4" class="md-nav__link">
9608
9746
  <span class="md-ellipsis">
9609
9747
  Housekeeping
9610
9748
  </span>
@@ -9637,7 +9775,7 @@
9637
9775
  </li>
9638
9776
 
9639
9777
  <li class="md-nav__item">
9640
- <a href="#added_4" class="md-nav__link">
9778
+ <a href="#added_5" class="md-nav__link">
9641
9779
  <span class="md-ellipsis">
9642
9780
  Added
9643
9781
  </span>
@@ -9646,7 +9784,7 @@
9646
9784
  </li>
9647
9785
 
9648
9786
  <li class="md-nav__item">
9649
- <a href="#changed_3" class="md-nav__link">
9787
+ <a href="#changed_4" class="md-nav__link">
9650
9788
  <span class="md-ellipsis">
9651
9789
  Changed
9652
9790
  </span>
@@ -9664,7 +9802,7 @@
9664
9802
  </li>
9665
9803
 
9666
9804
  <li class="md-nav__item">
9667
- <a href="#fixed_4" class="md-nav__link">
9805
+ <a href="#fixed_5" class="md-nav__link">
9668
9806
  <span class="md-ellipsis">
9669
9807
  Fixed
9670
9808
  </span>
@@ -9673,7 +9811,7 @@
9673
9811
  </li>
9674
9812
 
9675
9813
  <li class="md-nav__item">
9676
- <a href="#documentation_1" class="md-nav__link">
9814
+ <a href="#documentation_2" class="md-nav__link">
9677
9815
  <span class="md-ellipsis">
9678
9816
  Documentation
9679
9817
  </span>
@@ -9682,7 +9820,7 @@
9682
9820
  </li>
9683
9821
 
9684
9822
  <li class="md-nav__item">
9685
- <a href="#housekeeping_4" class="md-nav__link">
9823
+ <a href="#housekeeping_5" class="md-nav__link">
9686
9824
  <span class="md-ellipsis">
9687
9825
  Housekeeping
9688
9826
  </span>
@@ -9715,7 +9853,7 @@
9715
9853
  </li>
9716
9854
 
9717
9855
  <li class="md-nav__item">
9718
- <a href="#added_5" class="md-nav__link">
9856
+ <a href="#added_6" class="md-nav__link">
9719
9857
  <span class="md-ellipsis">
9720
9858
  Added
9721
9859
  </span>
@@ -9724,7 +9862,7 @@
9724
9862
  </li>
9725
9863
 
9726
9864
  <li class="md-nav__item">
9727
- <a href="#changed_4" class="md-nav__link">
9865
+ <a href="#changed_5" class="md-nav__link">
9728
9866
  <span class="md-ellipsis">
9729
9867
  Changed
9730
9868
  </span>
@@ -9751,7 +9889,7 @@
9751
9889
  </li>
9752
9890
 
9753
9891
  <li class="md-nav__item">
9754
- <a href="#fixed_5" class="md-nav__link">
9892
+ <a href="#fixed_6" class="md-nav__link">
9755
9893
  <span class="md-ellipsis">
9756
9894
  Fixed
9757
9895
  </span>
@@ -9760,7 +9898,7 @@
9760
9898
  </li>
9761
9899
 
9762
9900
  <li class="md-nav__item">
9763
- <a href="#dependencies_2" class="md-nav__link">
9901
+ <a href="#dependencies_3" class="md-nav__link">
9764
9902
  <span class="md-ellipsis">
9765
9903
  Dependencies
9766
9904
  </span>
@@ -9769,7 +9907,7 @@
9769
9907
  </li>
9770
9908
 
9771
9909
  <li class="md-nav__item">
9772
- <a href="#documentation_2" class="md-nav__link">
9910
+ <a href="#documentation_3" class="md-nav__link">
9773
9911
  <span class="md-ellipsis">
9774
9912
  Documentation
9775
9913
  </span>
@@ -9778,7 +9916,7 @@
9778
9916
  </li>
9779
9917
 
9780
9918
  <li class="md-nav__item">
9781
- <a href="#housekeeping_5" class="md-nav__link">
9919
+ <a href="#housekeeping_6" class="md-nav__link">
9782
9920
  <span class="md-ellipsis">
9783
9921
  Housekeeping
9784
9922
  </span>
@@ -9895,23 +10033,61 @@
9895
10033
  <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>
9896
10034
  <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>
9897
10035
  <!-- towncrier release notes start -->
9898
- <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>
10036
+ <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>
9899
10037
  <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
9900
10038
  <ul>
10039
+ <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>
10040
+ <li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
10041
+ </ul>
10042
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10043
+ <ul>
10044
+ <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>
10045
+ </ul>
10046
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10047
+ <ul>
10048
+ <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>
10049
+ <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>
10050
+ <li><a href="https://github.com/nautobot/nautobot/issues/6170">#6170</a> - Fix Prefix IPAddresses not accounting for Child Prefix IPAddresses in the UI.</li>
10051
+ <li><a href="https://github.com/nautobot/nautobot/issues/6217">#6217</a> - Fixed SavedView functionality not working in Rack Elevation List View.</li>
10052
+ <li><a href="https://github.com/nautobot/nautobot/issues/6233">#6233</a> - Corrected presentation of rendered Markdown content in Notes table.</li>
10053
+ <li><a href="https://github.com/nautobot/nautobot/issues/6248">#6248</a> - Fixed Device Type link and count from Device Family Detail View.</li>
10054
+ <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>
10055
+ <li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
10056
+ </ul>
10057
+ <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
10058
+ <ul>
10059
+ <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>
10060
+ <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>
10061
+ </ul>
10062
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
10063
+ <ul>
10064
+ <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>
10065
+ </ul>
10066
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10067
+ <ul>
10068
+ <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>
10069
+ <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>
10070
+ <li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added support for <code>invoke unittest --no-parallel</code>.</li>
10071
+ <li><a href="https://github.com/nautobot/nautobot/issues/6285">#6285</a> - Added support for <code>invoke unittest --no-reusedb</code> and <code>nautobot-server test --no-reusedb</code> to streamline testing when switching frequently between branches.</li>
10072
+ <li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
10073
+ </ul>
10074
+ <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>
10075
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10076
+ <ul>
9901
10077
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
9902
10078
  <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>
9903
10079
  </ul>
9904
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10080
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
9905
10081
  <ul>
9906
10082
  <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>
9907
10083
  </ul>
9908
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10084
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9909
10085
  <ul>
9910
10086
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
9911
10087
  <li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
9912
10088
  <li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
9913
10089
  </ul>
9914
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
10090
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9915
10091
  <ul>
9916
10092
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Required Settings" and "Optional Settings" docs into a single unified "Settings" document.</li>
9917
10093
  <li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
@@ -9919,7 +10095,7 @@
9919
10095
  <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>
9920
10096
  <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>
9921
10097
  </ul>
9922
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10098
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
9923
10099
  <ul>
9924
10100
  <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>
9925
10101
  <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>
@@ -9931,18 +10107,18 @@
9931
10107
  <ul>
9932
10108
  <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>
9933
10109
  </ul>
9934
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10110
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9935
10111
  <ul>
9936
10112
  <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>
9937
10113
  <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>
9938
10114
  <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>
9939
10115
  <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>
9940
10116
  </ul>
9941
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
10117
+ <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
9942
10118
  <ul>
9943
10119
  <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>
9944
10120
  </ul>
9945
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10121
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
9946
10122
  <ul>
9947
10123
  <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>
9948
10124
  <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>
@@ -9956,14 +10132,14 @@
9956
10132
  <ul>
9957
10133
  <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>
9958
10134
  </ul>
9959
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10135
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
9960
10136
  <ul>
9961
10137
  <li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
9962
10138
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
9963
10139
  <li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
9964
10140
  <li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
9965
10141
  </ul>
9966
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10142
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9967
10143
  <ul>
9968
10144
  <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>
9969
10145
  <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>
@@ -9972,7 +10148,7 @@
9972
10148
  <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>
9973
10149
  <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>
9974
10150
  </ul>
9975
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10151
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
9976
10152
  <ul>
9977
10153
  <li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
9978
10154
  <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>
@@ -9980,24 +10156,24 @@
9980
10156
  <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>
9981
10157
  </ul>
9982
10158
  <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>
9983
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10159
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9984
10160
  <ul>
9985
10161
  <li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
9986
10162
  <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>
9987
10163
  <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>
9988
10164
  </ul>
9989
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10165
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
9990
10166
  <ul>
9991
10167
  <li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
9992
10168
  </ul>
9993
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10169
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9994
10170
  <ul>
9995
10171
  <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>
9996
10172
  <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>
9997
10173
  <li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
9998
10174
  <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>
9999
10175
  </ul>
10000
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10176
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10001
10177
  <ul>
10002
10178
  <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>
10003
10179
  </ul>
@@ -10006,7 +10182,7 @@
10006
10182
  <ul>
10007
10183
  <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>
10008
10184
  </ul>
10009
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10185
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10010
10186
  <ul>
10011
10187
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
10012
10188
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
@@ -10016,7 +10192,7 @@
10016
10192
  <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>
10017
10193
  <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>
10018
10194
  </ul>
10019
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10195
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10020
10196
  <ul>
10021
10197
  <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>
10022
10198
  <li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
@@ -10030,7 +10206,7 @@
10030
10206
  <li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
10031
10207
  <li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
10032
10208
  </ul>
10033
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10209
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10034
10210
  <ul>
10035
10211
  <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>
10036
10212
  <li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
@@ -10046,7 +10222,7 @@
10046
10222
  <li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
10047
10223
  <li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>ServiceForm.ip_addresses</code> valid addresses.</li>
10048
10224
  </ul>
10049
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
10225
+ <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
10050
10226
  <ul>
10051
10227
  <li><a href="https://github.com/nautobot/nautobot/issues/5920">#5920</a> - Updated documentation for installation under Ubuntu 24.04 LTS, Fedora 40, AlmaLinux 9, and similar distros.</li>
10052
10228
  <li><a href="https://github.com/nautobot/nautobot/issues/6019">#6019</a> - Updated the installation documentation to recommend a more secure set of filesystem permissions.</li>
@@ -10054,7 +10230,7 @@
10054
10230
  <li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
10055
10231
  <li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
10056
10232
  </ul>
10057
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10233
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10058
10234
  <ul>
10059
10235
  <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>
10060
10236
  <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>
@@ -10069,7 +10245,7 @@
10069
10245
  <ul>
10070
10246
  <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>
10071
10247
  </ul>
10072
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10248
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10073
10249
  <ul>
10074
10250
  <li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
10075
10251
  <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>
@@ -10116,7 +10292,7 @@
10116
10292
  <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>
10117
10293
  <li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
10118
10294
  </ul>
10119
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10295
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10120
10296
  <ul>
10121
10297
  <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>
10122
10298
  <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>
@@ -10160,7 +10336,7 @@
10160
10336
  <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>
10161
10337
  <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>
10162
10338
  </ul>
10163
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10339
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10164
10340
  <ul>
10165
10341
  <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>
10166
10342
  <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>
@@ -10184,7 +10360,7 @@
10184
10360
  <li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
10185
10361
  <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>
10186
10362
  </ul>
10187
- <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
10363
+ <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
10188
10364
  <ul>
10189
10365
  <li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
10190
10366
  <li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
@@ -10210,13 +10386,13 @@
10210
10386
  <li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
10211
10387
  <li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-timezone-field</code> to version <code>~7.0</code>.</li>
10212
10388
  </ul>
10213
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
10389
+ <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
10214
10390
  <ul>
10215
10391
  <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
10216
10392
  <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>
10217
10393
  <li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
10218
10394
  </ul>
10219
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10395
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10220
10396
  <ul>
10221
10397
  <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>
10222
10398
  <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>
@@ -10384,7 +10560,7 @@
10384
10560
  </div>
10385
10561
 
10386
10562
 
10387
- <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.07f07601.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>
10563
+ <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>
10388
10564
 
10389
10565
 
10390
10566
  <script src="../assets/javascripts/bundle.56dfad97.min.js"></script>