nautobot 2.2.8__py3-none-any.whl → 2.2.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 (299) hide show
  1. nautobot/core/filters.py +15 -1
  2. nautobot/core/graphql/generators.py +2 -2
  3. nautobot/core/graphql/schema.py +2 -3
  4. nautobot/core/jobs/__init__.py +4 -1
  5. nautobot/core/settings.py +13 -2
  6. nautobot/core/settings.yaml +14 -0
  7. nautobot/core/templates/nautobot_config.py.j2 +15 -0
  8. nautobot/core/tests/integration/test_general_functionality.py +1 -1
  9. nautobot/core/tests/test_jobs.py +82 -2
  10. nautobot/core/tests/test_templatetags_netutils.py +3 -3
  11. nautobot/dcim/models/device_components.py +7 -0
  12. nautobot/dcim/models/devices.py +4 -0
  13. nautobot/dcim/tables/devices.py +19 -4
  14. nautobot/dcim/templates/dcim/deviceredundancygroup_retrieve.html +6 -0
  15. nautobot/dcim/tests/test_models.py +31 -0
  16. nautobot/dcim/tests/test_views.py +13 -0
  17. nautobot/dcim/views.py +8 -2
  18. nautobot/extras/api/views.py +7 -59
  19. nautobot/extras/homepage.py +12 -2
  20. nautobot/extras/jobs.py +2 -2
  21. nautobot/extras/models/jobs.py +81 -0
  22. nautobot/extras/signals.py +14 -1
  23. nautobot/extras/tables.py +36 -5
  24. nautobot/extras/templates/extras/job_detail.html +11 -0
  25. nautobot/extras/tests/test_views.py +21 -0
  26. nautobot/extras/utils.py +34 -5
  27. nautobot/extras/views.py +20 -46
  28. nautobot/ipam/models.py +9 -12
  29. nautobot/ipam/tests/test_models.py +3 -2
  30. nautobot/ipam/views.py +2 -8
  31. nautobot/project-static/css/base.css +1 -0
  32. nautobot/project-static/docs/404.html +2 -2
  33. nautobot/project-static/docs/apps/index.html +2 -2
  34. nautobot/project-static/docs/apps/nautobot-apps.html +2 -2
  35. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +2 -2
  36. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +2 -2
  37. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +2 -2
  38. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +2 -2
  39. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +2 -2
  40. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +2 -2
  41. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +2 -2
  42. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +2 -2
  43. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +2 -2
  44. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +2 -2
  45. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +2 -2
  46. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +2 -2
  47. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +2 -2
  48. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2 -2
  49. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +2 -2
  50. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +2 -2
  51. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +2 -2
  52. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +2 -2
  53. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +2 -2
  54. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +2 -2
  55. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +2 -2
  56. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +4 -2
  57. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +2 -2
  58. nautobot/project-static/docs/development/apps/api/configuration-view.html +2 -2
  59. nautobot/project-static/docs/development/apps/api/database-backend-config.html +2 -2
  60. nautobot/project-static/docs/development/apps/api/models/django-admin.html +2 -2
  61. nautobot/project-static/docs/development/apps/api/models/global-search.html +2 -2
  62. nautobot/project-static/docs/development/apps/api/models/graphql.html +2 -2
  63. nautobot/project-static/docs/development/apps/api/models/index.html +2 -2
  64. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +2 -2
  65. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +2 -2
  66. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +2 -2
  67. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +2 -2
  68. nautobot/project-static/docs/development/apps/api/platform-features/index.html +2 -2
  69. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +2 -2
  70. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +2 -2
  71. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +2 -2
  72. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +2 -2
  73. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +2 -2
  74. nautobot/project-static/docs/development/apps/api/prometheus.html +2 -2
  75. nautobot/project-static/docs/development/apps/api/setup.html +2 -2
  76. nautobot/project-static/docs/development/apps/api/testing.html +2 -2
  77. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +2 -2
  78. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +2 -2
  79. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +2 -2
  80. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +2 -2
  81. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +2 -2
  82. nautobot/project-static/docs/development/apps/api/views/base-template.html +2 -2
  83. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +2 -2
  84. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +2 -2
  85. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +2 -2
  86. nautobot/project-static/docs/development/apps/api/views/index.html +2 -2
  87. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +2 -2
  88. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +2 -2
  89. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +2 -2
  90. nautobot/project-static/docs/development/apps/api/views/notes.html +2 -2
  91. nautobot/project-static/docs/development/apps/api/views/rest-api.html +2 -2
  92. nautobot/project-static/docs/development/apps/api/views/urls.html +2 -2
  93. nautobot/project-static/docs/development/apps/index.html +2 -2
  94. nautobot/project-static/docs/development/apps/migration/code-updates.html +2 -2
  95. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +2 -2
  96. nautobot/project-static/docs/development/apps/migration/from-v1.html +2 -2
  97. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +2 -2
  98. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +2 -2
  99. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +2 -2
  100. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +2 -2
  101. nautobot/project-static/docs/development/apps/porting-from-netbox.html +2 -2
  102. nautobot/project-static/docs/development/core/application-registry.html +2 -2
  103. nautobot/project-static/docs/development/core/best-practices.html +2 -2
  104. nautobot/project-static/docs/development/core/bootstrap-ui.html +2 -2
  105. nautobot/project-static/docs/development/core/caching.html +2 -2
  106. nautobot/project-static/docs/development/core/controllers.html +2 -2
  107. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +2 -2
  108. nautobot/project-static/docs/development/core/generic-views.html +2 -2
  109. nautobot/project-static/docs/development/core/getting-started.html +2 -2
  110. nautobot/project-static/docs/development/core/homepage.html +2 -2
  111. nautobot/project-static/docs/development/core/index.html +13 -2
  112. nautobot/project-static/docs/development/core/model-checklist.html +2 -2
  113. nautobot/project-static/docs/development/core/model-features.html +2 -2
  114. nautobot/project-static/docs/development/core/natural-keys.html +2 -2
  115. nautobot/project-static/docs/development/core/navigation-menu.html +2 -2
  116. nautobot/project-static/docs/development/core/release-checklist.html +2 -2
  117. nautobot/project-static/docs/development/core/role-internals.html +2 -2
  118. nautobot/project-static/docs/development/core/settings.html +2 -2
  119. nautobot/project-static/docs/development/core/style-guide.html +2 -2
  120. nautobot/project-static/docs/development/core/templates.html +2 -2
  121. nautobot/project-static/docs/development/core/testing.html +2 -2
  122. nautobot/project-static/docs/development/core/user-preferences.html +2 -2
  123. nautobot/project-static/docs/development/index.html +2 -2
  124. nautobot/project-static/docs/development/jobs/index.html +377 -363
  125. nautobot/project-static/docs/development/jobs/migration/from-v1.html +2 -2
  126. nautobot/project-static/docs/index.html +8228 -13
  127. nautobot/project-static/docs/overview/application_stack.html +2 -2
  128. nautobot/project-static/docs/overview/design_philosophy.html +4 -4
  129. nautobot/project-static/docs/overview/index.html +13 -8228
  130. nautobot/project-static/docs/release-notes/index.html +2 -2
  131. nautobot/project-static/docs/release-notes/version-1.0.html +2 -2
  132. nautobot/project-static/docs/release-notes/version-1.1.html +2 -2
  133. nautobot/project-static/docs/release-notes/version-1.2.html +2 -2
  134. nautobot/project-static/docs/release-notes/version-1.3.html +2 -2
  135. nautobot/project-static/docs/release-notes/version-1.4.html +2 -2
  136. nautobot/project-static/docs/release-notes/version-1.5.html +2 -2
  137. nautobot/project-static/docs/release-notes/version-1.6.html +2 -2
  138. nautobot/project-static/docs/release-notes/version-2.0.html +2 -2
  139. nautobot/project-static/docs/release-notes/version-2.1.html +2 -2
  140. nautobot/project-static/docs/release-notes/version-2.2.html +232 -95
  141. nautobot/project-static/docs/search/search_index.json +1 -1
  142. nautobot/project-static/docs/sitemap.xml +260 -260
  143. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  144. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +2 -2
  145. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +2 -2
  146. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +2 -2
  147. nautobot/project-static/docs/user-guide/administration/configuration/index.html +2 -2
  148. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +34 -2
  149. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +2 -2
  150. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +2 -2
  151. nautobot/project-static/docs/user-guide/administration/guides/caching.html +2 -2
  152. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +6 -2
  153. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +2 -2
  154. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +2 -2
  155. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +2 -2
  156. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +2 -2
  157. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +2 -2
  158. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +2 -2
  159. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +2 -2
  160. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +2 -2
  161. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +2 -2
  162. nautobot/project-static/docs/user-guide/administration/installation/index.html +2 -2
  163. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +2 -2
  164. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +2 -2
  165. nautobot/project-static/docs/user-guide/administration/installation/services.html +2 -2
  166. nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +2 -2
  167. nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +2 -2
  168. nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +2 -2
  169. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +2 -2
  170. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +2 -2
  171. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +60 -8
  172. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +2 -2
  173. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +2 -2
  174. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +2 -2
  175. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +2 -2
  176. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +2 -2
  177. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +2 -2
  178. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +2 -2
  179. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +2 -2
  180. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +2 -2
  181. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +2 -2
  182. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +2 -2
  183. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +2 -2
  184. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +2 -2
  185. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +2 -2
  186. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +2 -2
  187. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +2 -2
  188. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +2 -2
  189. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +2 -2
  190. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +2 -2
  191. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +2 -2
  192. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +2 -2
  193. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +2 -2
  194. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +2 -2
  195. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +2 -2
  196. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +2 -2
  197. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +2 -2
  198. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +2 -2
  199. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +2 -2
  200. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +2 -2
  201. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +2 -2
  202. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +2 -2
  203. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +2 -2
  204. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +2 -2
  205. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +2 -2
  206. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +2 -2
  207. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +2 -2
  208. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +2 -2
  209. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +2 -2
  210. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +2 -2
  211. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +2 -2
  212. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +2 -2
  213. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +2 -2
  214. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +2 -2
  215. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +2 -2
  216. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +2 -2
  217. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +2 -2
  218. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +2 -2
  219. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +2 -2
  220. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +2 -2
  221. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +2 -2
  222. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +2 -2
  223. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +2 -2
  224. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +2 -2
  225. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +2 -2
  226. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +2 -2
  227. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +2 -2
  228. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +2 -2
  229. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +2 -2
  230. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +2 -2
  231. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +2 -2
  232. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +2 -2
  233. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +2 -2
  234. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +2 -2
  235. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +2 -2
  236. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +2 -2
  237. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +2 -2
  238. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +2 -2
  239. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +2 -2
  240. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +2 -2
  241. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +2 -2
  242. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +2 -2
  243. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +2 -2
  244. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +2 -2
  245. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +2 -2
  246. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +2 -2
  247. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +2 -2
  248. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +2 -2
  249. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +2 -2
  250. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +2 -2
  251. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +2 -2
  252. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +2 -2
  253. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +2 -2
  254. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +2 -2
  255. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +2 -2
  256. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +2 -2
  257. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +2 -2
  258. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +2 -2
  259. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +2 -2
  260. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +2 -2
  261. nautobot/project-static/docs/user-guide/index.html +2 -2
  262. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +2 -2
  263. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +2 -2
  264. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +2 -2
  265. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +2 -2
  266. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +2 -2
  267. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +2 -2
  268. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +2 -2
  269. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +2 -2
  270. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +2 -2
  271. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +2 -2
  272. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +2 -2
  273. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +2 -2
  274. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +2 -2
  275. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +2 -2
  276. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +2 -2
  277. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +2 -2
  278. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +2 -2
  279. nautobot/project-static/docs/user-guide/platform-functionality/note.html +2 -2
  280. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +2 -2
  281. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +2 -2
  282. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +2 -2
  283. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +2 -2
  284. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +2 -2
  285. nautobot/project-static/docs/user-guide/platform-functionality/role.html +2 -2
  286. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +2 -2
  287. nautobot/project-static/docs/user-guide/platform-functionality/status.html +2 -2
  288. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +2 -2
  289. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +2 -2
  290. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +2 -2
  291. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +2 -2
  292. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +2 -2
  293. nautobot/virtualization/tables.py +2 -5
  294. {nautobot-2.2.8.dist-info → nautobot-2.2.9.dist-info}/METADATA +2 -2
  295. {nautobot-2.2.8.dist-info → nautobot-2.2.9.dist-info}/RECORD +299 -299
  296. {nautobot-2.2.8.dist-info → nautobot-2.2.9.dist-info}/LICENSE.txt +0 -0
  297. {nautobot-2.2.8.dist-info → nautobot-2.2.9.dist-info}/NOTICE +0 -0
  298. {nautobot-2.2.8.dist-info → nautobot-2.2.9.dist-info}/WHEEL +0 -0
  299. {nautobot-2.2.8.dist-info → nautobot-2.2.9.dist-info}/entry_points.txt +0 -0
@@ -238,7 +238,7 @@
238
238
 
239
239
 
240
240
  <li class="md-tabs__item">
241
- <a href="../overview/index.html" class="md-tabs__link">
241
+ <a href="../index.html" class="md-tabs__link">
242
242
 
243
243
 
244
244
 
@@ -409,7 +409,7 @@
409
409
 
410
410
 
411
411
  <div class="md-nav__link md-nav__container">
412
- <a href="../overview/index.html" class="md-nav__link ">
412
+ <a href="../index.html" class="md-nav__link ">
413
413
 
414
414
 
415
415
  <span class="md-ellipsis">
@@ -7454,6 +7454,57 @@
7454
7454
  </ul>
7455
7455
  </nav>
7456
7456
 
7457
+ </li>
7458
+
7459
+ <li class="md-nav__item">
7460
+ <a href="#v229-2024-08-05" class="md-nav__link">
7461
+ <span class="md-ellipsis">
7462
+ v2.2.9 (2024-08-05)
7463
+ </span>
7464
+ </a>
7465
+
7466
+ <nav class="md-nav" aria-label="v2.2.9 (2024-08-05)">
7467
+ <ul class="md-nav__list">
7468
+
7469
+ <li class="md-nav__item">
7470
+ <a href="#added_1" class="md-nav__link">
7471
+ <span class="md-ellipsis">
7472
+ Added
7473
+ </span>
7474
+ </a>
7475
+
7476
+ </li>
7477
+
7478
+ <li class="md-nav__item">
7479
+ <a href="#fixed" class="md-nav__link">
7480
+ <span class="md-ellipsis">
7481
+ Fixed
7482
+ </span>
7483
+ </a>
7484
+
7485
+ </li>
7486
+
7487
+ <li class="md-nav__item">
7488
+ <a href="#dependencies" class="md-nav__link">
7489
+ <span class="md-ellipsis">
7490
+ Dependencies
7491
+ </span>
7492
+ </a>
7493
+
7494
+ </li>
7495
+
7496
+ <li class="md-nav__item">
7497
+ <a href="#documentation" class="md-nav__link">
7498
+ <span class="md-ellipsis">
7499
+ Documentation
7500
+ </span>
7501
+ </a>
7502
+
7503
+ </li>
7504
+
7505
+ </ul>
7506
+ </nav>
7507
+
7457
7508
  </li>
7458
7509
 
7459
7510
  <li class="md-nav__item">
@@ -7476,7 +7527,7 @@
7476
7527
  </li>
7477
7528
 
7478
7529
  <li class="md-nav__item">
7479
- <a href="#fixed" class="md-nav__link">
7530
+ <a href="#fixed_1" class="md-nav__link">
7480
7531
  <span class="md-ellipsis">
7481
7532
  Fixed
7482
7533
  </span>
@@ -7485,7 +7536,7 @@
7485
7536
  </li>
7486
7537
 
7487
7538
  <li class="md-nav__item">
7488
- <a href="#dependencies" class="md-nav__link">
7539
+ <a href="#dependencies_1" class="md-nav__link">
7489
7540
  <span class="md-ellipsis">
7490
7541
  Dependencies
7491
7542
  </span>
@@ -7494,7 +7545,7 @@
7494
7545
  </li>
7495
7546
 
7496
7547
  <li class="md-nav__item">
7497
- <a href="#documentation" class="md-nav__link">
7548
+ <a href="#documentation_1" class="md-nav__link">
7498
7549
  <span class="md-ellipsis">
7499
7550
  Documentation
7500
7551
  </span>
@@ -7536,7 +7587,7 @@
7536
7587
  </li>
7537
7588
 
7538
7589
  <li class="md-nav__item">
7539
- <a href="#fixed_1" class="md-nav__link">
7590
+ <a href="#fixed_2" class="md-nav__link">
7540
7591
  <span class="md-ellipsis">
7541
7592
  Fixed
7542
7593
  </span>
@@ -7545,7 +7596,7 @@
7545
7596
  </li>
7546
7597
 
7547
7598
  <li class="md-nav__item">
7548
- <a href="#dependencies_1" class="md-nav__link">
7599
+ <a href="#dependencies_2" class="md-nav__link">
7549
7600
  <span class="md-ellipsis">
7550
7601
  Dependencies
7551
7602
  </span>
@@ -7587,7 +7638,7 @@
7587
7638
  </li>
7588
7639
 
7589
7640
  <li class="md-nav__item">
7590
- <a href="#added_1" class="md-nav__link">
7641
+ <a href="#added_2" class="md-nav__link">
7591
7642
  <span class="md-ellipsis">
7592
7643
  Added
7593
7644
  </span>
@@ -7605,7 +7656,7 @@
7605
7656
  </li>
7606
7657
 
7607
7658
  <li class="md-nav__item">
7608
- <a href="#fixed_2" class="md-nav__link">
7659
+ <a href="#fixed_3" class="md-nav__link">
7609
7660
  <span class="md-ellipsis">
7610
7661
  Fixed
7611
7662
  </span>
@@ -7614,7 +7665,7 @@
7614
7665
  </li>
7615
7666
 
7616
7667
  <li class="md-nav__item">
7617
- <a href="#documentation_1" class="md-nav__link">
7668
+ <a href="#documentation_2" class="md-nav__link">
7618
7669
  <span class="md-ellipsis">
7619
7670
  Documentation
7620
7671
  </span>
@@ -7656,7 +7707,7 @@
7656
7707
  </li>
7657
7708
 
7658
7709
  <li class="md-nav__item">
7659
- <a href="#added_2" class="md-nav__link">
7710
+ <a href="#added_3" class="md-nav__link">
7660
7711
  <span class="md-ellipsis">
7661
7712
  Added
7662
7713
  </span>
@@ -7674,7 +7725,7 @@
7674
7725
  </li>
7675
7726
 
7676
7727
  <li class="md-nav__item">
7677
- <a href="#fixed_3" class="md-nav__link">
7728
+ <a href="#fixed_4" class="md-nav__link">
7678
7729
  <span class="md-ellipsis">
7679
7730
  Fixed
7680
7731
  </span>
@@ -7683,7 +7734,7 @@
7683
7734
  </li>
7684
7735
 
7685
7736
  <li class="md-nav__item">
7686
- <a href="#documentation_2" class="md-nav__link">
7737
+ <a href="#documentation_3" class="md-nav__link">
7687
7738
  <span class="md-ellipsis">
7688
7739
  Documentation
7689
7740
  </span>
@@ -7725,7 +7776,7 @@
7725
7776
  </li>
7726
7777
 
7727
7778
  <li class="md-nav__item">
7728
- <a href="#added_3" class="md-nav__link">
7779
+ <a href="#added_4" class="md-nav__link">
7729
7780
  <span class="md-ellipsis">
7730
7781
  Added
7731
7782
  </span>
@@ -7734,7 +7785,7 @@
7734
7785
  </li>
7735
7786
 
7736
7787
  <li class="md-nav__item">
7737
- <a href="#fixed_4" class="md-nav__link">
7788
+ <a href="#fixed_5" class="md-nav__link">
7738
7789
  <span class="md-ellipsis">
7739
7790
  Fixed
7740
7791
  </span>
@@ -7743,7 +7794,7 @@
7743
7794
  </li>
7744
7795
 
7745
7796
  <li class="md-nav__item">
7746
- <a href="#documentation_3" class="md-nav__link">
7797
+ <a href="#documentation_4" class="md-nav__link">
7747
7798
  <span class="md-ellipsis">
7748
7799
  Documentation
7749
7800
  </span>
@@ -7785,7 +7836,7 @@
7785
7836
  </li>
7786
7837
 
7787
7838
  <li class="md-nav__item">
7788
- <a href="#added_4" class="md-nav__link">
7839
+ <a href="#added_5" class="md-nav__link">
7789
7840
  <span class="md-ellipsis">
7790
7841
  Added
7791
7842
  </span>
@@ -7803,7 +7854,7 @@
7803
7854
  </li>
7804
7855
 
7805
7856
  <li class="md-nav__item">
7806
- <a href="#fixed_5" class="md-nav__link">
7857
+ <a href="#fixed_6" class="md-nav__link">
7807
7858
  <span class="md-ellipsis">
7808
7859
  Fixed
7809
7860
  </span>
@@ -7812,7 +7863,7 @@
7812
7863
  </li>
7813
7864
 
7814
7865
  <li class="md-nav__item">
7815
- <a href="#documentation_4" class="md-nav__link">
7866
+ <a href="#documentation_5" class="md-nav__link">
7816
7867
  <span class="md-ellipsis">
7817
7868
  Documentation
7818
7869
  </span>
@@ -7854,7 +7905,7 @@
7854
7905
  </li>
7855
7906
 
7856
7907
  <li class="md-nav__item">
7857
- <a href="#added_5" class="md-nav__link">
7908
+ <a href="#added_6" class="md-nav__link">
7858
7909
  <span class="md-ellipsis">
7859
7910
  Added
7860
7911
  </span>
@@ -7872,7 +7923,7 @@
7872
7923
  </li>
7873
7924
 
7874
7925
  <li class="md-nav__item">
7875
- <a href="#fixed_6" class="md-nav__link">
7926
+ <a href="#fixed_7" class="md-nav__link">
7876
7927
  <span class="md-ellipsis">
7877
7928
  Fixed
7878
7929
  </span>
@@ -7881,7 +7932,7 @@
7881
7932
  </li>
7882
7933
 
7883
7934
  <li class="md-nav__item">
7884
- <a href="#documentation_5" class="md-nav__link">
7935
+ <a href="#documentation_6" class="md-nav__link">
7885
7936
  <span class="md-ellipsis">
7886
7937
  Documentation
7887
7938
  </span>
@@ -7923,7 +7974,7 @@
7923
7974
  </li>
7924
7975
 
7925
7976
  <li class="md-nav__item">
7926
- <a href="#added_6" class="md-nav__link">
7977
+ <a href="#added_7" class="md-nav__link">
7927
7978
  <span class="md-ellipsis">
7928
7979
  Added
7929
7980
  </span>
@@ -7941,7 +7992,7 @@
7941
7992
  </li>
7942
7993
 
7943
7994
  <li class="md-nav__item">
7944
- <a href="#fixed_7" class="md-nav__link">
7995
+ <a href="#fixed_8" class="md-nav__link">
7945
7996
  <span class="md-ellipsis">
7946
7997
  Fixed
7947
7998
  </span>
@@ -7950,7 +8001,7 @@
7950
8001
  </li>
7951
8002
 
7952
8003
  <li class="md-nav__item">
7953
- <a href="#dependencies_2" class="md-nav__link">
8004
+ <a href="#dependencies_3" class="md-nav__link">
7954
8005
  <span class="md-ellipsis">
7955
8006
  Dependencies
7956
8007
  </span>
@@ -7959,7 +8010,7 @@
7959
8010
  </li>
7960
8011
 
7961
8012
  <li class="md-nav__item">
7962
- <a href="#documentation_6" class="md-nav__link">
8013
+ <a href="#documentation_7" class="md-nav__link">
7963
8014
  <span class="md-ellipsis">
7964
8015
  Documentation
7965
8016
  </span>
@@ -7992,7 +8043,7 @@
7992
8043
  <ul class="md-nav__list">
7993
8044
 
7994
8045
  <li class="md-nav__item">
7995
- <a href="#added_7" class="md-nav__link">
8046
+ <a href="#added_8" class="md-nav__link">
7996
8047
  <span class="md-ellipsis">
7997
8048
  Added
7998
8049
  </span>
@@ -8010,7 +8061,7 @@
8010
8061
  </li>
8011
8062
 
8012
8063
  <li class="md-nav__item">
8013
- <a href="#fixed_8" class="md-nav__link">
8064
+ <a href="#fixed_9" class="md-nav__link">
8014
8065
  <span class="md-ellipsis">
8015
8066
  Fixed
8016
8067
  </span>
@@ -8019,7 +8070,7 @@
8019
8070
  </li>
8020
8071
 
8021
8072
  <li class="md-nav__item">
8022
- <a href="#dependencies_3" class="md-nav__link">
8073
+ <a href="#dependencies_4" class="md-nav__link">
8023
8074
  <span class="md-ellipsis">
8024
8075
  Dependencies
8025
8076
  </span>
@@ -8052,7 +8103,7 @@
8052
8103
  <ul class="md-nav__list">
8053
8104
 
8054
8105
  <li class="md-nav__item">
8055
- <a href="#added_8" class="md-nav__link">
8106
+ <a href="#added_9" class="md-nav__link">
8056
8107
  <span class="md-ellipsis">
8057
8108
  Added
8058
8109
  </span>
@@ -8088,7 +8139,7 @@
8088
8139
  </li>
8089
8140
 
8090
8141
  <li class="md-nav__item">
8091
- <a href="#fixed_9" class="md-nav__link">
8142
+ <a href="#fixed_10" class="md-nav__link">
8092
8143
  <span class="md-ellipsis">
8093
8144
  Fixed
8094
8145
  </span>
@@ -8097,7 +8148,7 @@
8097
8148
  </li>
8098
8149
 
8099
8150
  <li class="md-nav__item">
8100
- <a href="#dependencies_4" class="md-nav__link">
8151
+ <a href="#dependencies_5" class="md-nav__link">
8101
8152
  <span class="md-ellipsis">
8102
8153
  Dependencies
8103
8154
  </span>
@@ -8106,7 +8157,7 @@
8106
8157
  </li>
8107
8158
 
8108
8159
  <li class="md-nav__item">
8109
- <a href="#documentation_7" class="md-nav__link">
8160
+ <a href="#documentation_8" class="md-nav__link">
8110
8161
  <span class="md-ellipsis">
8111
8162
  Documentation
8112
8163
  </span>
@@ -8821,6 +8872,57 @@
8821
8872
  </ul>
8822
8873
  </nav>
8823
8874
 
8875
+ </li>
8876
+
8877
+ <li class="md-nav__item">
8878
+ <a href="#v229-2024-08-05" class="md-nav__link">
8879
+ <span class="md-ellipsis">
8880
+ v2.2.9 (2024-08-05)
8881
+ </span>
8882
+ </a>
8883
+
8884
+ <nav class="md-nav" aria-label="v2.2.9 (2024-08-05)">
8885
+ <ul class="md-nav__list">
8886
+
8887
+ <li class="md-nav__item">
8888
+ <a href="#added_1" class="md-nav__link">
8889
+ <span class="md-ellipsis">
8890
+ Added
8891
+ </span>
8892
+ </a>
8893
+
8894
+ </li>
8895
+
8896
+ <li class="md-nav__item">
8897
+ <a href="#fixed" class="md-nav__link">
8898
+ <span class="md-ellipsis">
8899
+ Fixed
8900
+ </span>
8901
+ </a>
8902
+
8903
+ </li>
8904
+
8905
+ <li class="md-nav__item">
8906
+ <a href="#dependencies" class="md-nav__link">
8907
+ <span class="md-ellipsis">
8908
+ Dependencies
8909
+ </span>
8910
+ </a>
8911
+
8912
+ </li>
8913
+
8914
+ <li class="md-nav__item">
8915
+ <a href="#documentation" class="md-nav__link">
8916
+ <span class="md-ellipsis">
8917
+ Documentation
8918
+ </span>
8919
+ </a>
8920
+
8921
+ </li>
8922
+
8923
+ </ul>
8924
+ </nav>
8925
+
8824
8926
  </li>
8825
8927
 
8826
8928
  <li class="md-nav__item">
@@ -8843,7 +8945,7 @@
8843
8945
  </li>
8844
8946
 
8845
8947
  <li class="md-nav__item">
8846
- <a href="#fixed" class="md-nav__link">
8948
+ <a href="#fixed_1" class="md-nav__link">
8847
8949
  <span class="md-ellipsis">
8848
8950
  Fixed
8849
8951
  </span>
@@ -8852,7 +8954,7 @@
8852
8954
  </li>
8853
8955
 
8854
8956
  <li class="md-nav__item">
8855
- <a href="#dependencies" class="md-nav__link">
8957
+ <a href="#dependencies_1" class="md-nav__link">
8856
8958
  <span class="md-ellipsis">
8857
8959
  Dependencies
8858
8960
  </span>
@@ -8861,7 +8963,7 @@
8861
8963
  </li>
8862
8964
 
8863
8965
  <li class="md-nav__item">
8864
- <a href="#documentation" class="md-nav__link">
8966
+ <a href="#documentation_1" class="md-nav__link">
8865
8967
  <span class="md-ellipsis">
8866
8968
  Documentation
8867
8969
  </span>
@@ -8903,7 +9005,7 @@
8903
9005
  </li>
8904
9006
 
8905
9007
  <li class="md-nav__item">
8906
- <a href="#fixed_1" class="md-nav__link">
9008
+ <a href="#fixed_2" class="md-nav__link">
8907
9009
  <span class="md-ellipsis">
8908
9010
  Fixed
8909
9011
  </span>
@@ -8912,7 +9014,7 @@
8912
9014
  </li>
8913
9015
 
8914
9016
  <li class="md-nav__item">
8915
- <a href="#dependencies_1" class="md-nav__link">
9017
+ <a href="#dependencies_2" class="md-nav__link">
8916
9018
  <span class="md-ellipsis">
8917
9019
  Dependencies
8918
9020
  </span>
@@ -8954,7 +9056,7 @@
8954
9056
  </li>
8955
9057
 
8956
9058
  <li class="md-nav__item">
8957
- <a href="#added_1" class="md-nav__link">
9059
+ <a href="#added_2" class="md-nav__link">
8958
9060
  <span class="md-ellipsis">
8959
9061
  Added
8960
9062
  </span>
@@ -8972,7 +9074,7 @@
8972
9074
  </li>
8973
9075
 
8974
9076
  <li class="md-nav__item">
8975
- <a href="#fixed_2" class="md-nav__link">
9077
+ <a href="#fixed_3" class="md-nav__link">
8976
9078
  <span class="md-ellipsis">
8977
9079
  Fixed
8978
9080
  </span>
@@ -8981,7 +9083,7 @@
8981
9083
  </li>
8982
9084
 
8983
9085
  <li class="md-nav__item">
8984
- <a href="#documentation_1" class="md-nav__link">
9086
+ <a href="#documentation_2" class="md-nav__link">
8985
9087
  <span class="md-ellipsis">
8986
9088
  Documentation
8987
9089
  </span>
@@ -9023,7 +9125,7 @@
9023
9125
  </li>
9024
9126
 
9025
9127
  <li class="md-nav__item">
9026
- <a href="#added_2" class="md-nav__link">
9128
+ <a href="#added_3" class="md-nav__link">
9027
9129
  <span class="md-ellipsis">
9028
9130
  Added
9029
9131
  </span>
@@ -9041,7 +9143,7 @@
9041
9143
  </li>
9042
9144
 
9043
9145
  <li class="md-nav__item">
9044
- <a href="#fixed_3" class="md-nav__link">
9146
+ <a href="#fixed_4" class="md-nav__link">
9045
9147
  <span class="md-ellipsis">
9046
9148
  Fixed
9047
9149
  </span>
@@ -9050,7 +9152,7 @@
9050
9152
  </li>
9051
9153
 
9052
9154
  <li class="md-nav__item">
9053
- <a href="#documentation_2" class="md-nav__link">
9155
+ <a href="#documentation_3" class="md-nav__link">
9054
9156
  <span class="md-ellipsis">
9055
9157
  Documentation
9056
9158
  </span>
@@ -9092,7 +9194,7 @@
9092
9194
  </li>
9093
9195
 
9094
9196
  <li class="md-nav__item">
9095
- <a href="#added_3" class="md-nav__link">
9197
+ <a href="#added_4" class="md-nav__link">
9096
9198
  <span class="md-ellipsis">
9097
9199
  Added
9098
9200
  </span>
@@ -9101,7 +9203,7 @@
9101
9203
  </li>
9102
9204
 
9103
9205
  <li class="md-nav__item">
9104
- <a href="#fixed_4" class="md-nav__link">
9206
+ <a href="#fixed_5" class="md-nav__link">
9105
9207
  <span class="md-ellipsis">
9106
9208
  Fixed
9107
9209
  </span>
@@ -9110,7 +9212,7 @@
9110
9212
  </li>
9111
9213
 
9112
9214
  <li class="md-nav__item">
9113
- <a href="#documentation_3" class="md-nav__link">
9215
+ <a href="#documentation_4" class="md-nav__link">
9114
9216
  <span class="md-ellipsis">
9115
9217
  Documentation
9116
9218
  </span>
@@ -9152,7 +9254,7 @@
9152
9254
  </li>
9153
9255
 
9154
9256
  <li class="md-nav__item">
9155
- <a href="#added_4" class="md-nav__link">
9257
+ <a href="#added_5" class="md-nav__link">
9156
9258
  <span class="md-ellipsis">
9157
9259
  Added
9158
9260
  </span>
@@ -9170,7 +9272,7 @@
9170
9272
  </li>
9171
9273
 
9172
9274
  <li class="md-nav__item">
9173
- <a href="#fixed_5" class="md-nav__link">
9275
+ <a href="#fixed_6" class="md-nav__link">
9174
9276
  <span class="md-ellipsis">
9175
9277
  Fixed
9176
9278
  </span>
@@ -9179,7 +9281,7 @@
9179
9281
  </li>
9180
9282
 
9181
9283
  <li class="md-nav__item">
9182
- <a href="#documentation_4" class="md-nav__link">
9284
+ <a href="#documentation_5" class="md-nav__link">
9183
9285
  <span class="md-ellipsis">
9184
9286
  Documentation
9185
9287
  </span>
@@ -9221,7 +9323,7 @@
9221
9323
  </li>
9222
9324
 
9223
9325
  <li class="md-nav__item">
9224
- <a href="#added_5" class="md-nav__link">
9326
+ <a href="#added_6" class="md-nav__link">
9225
9327
  <span class="md-ellipsis">
9226
9328
  Added
9227
9329
  </span>
@@ -9239,7 +9341,7 @@
9239
9341
  </li>
9240
9342
 
9241
9343
  <li class="md-nav__item">
9242
- <a href="#fixed_6" class="md-nav__link">
9344
+ <a href="#fixed_7" class="md-nav__link">
9243
9345
  <span class="md-ellipsis">
9244
9346
  Fixed
9245
9347
  </span>
@@ -9248,7 +9350,7 @@
9248
9350
  </li>
9249
9351
 
9250
9352
  <li class="md-nav__item">
9251
- <a href="#documentation_5" class="md-nav__link">
9353
+ <a href="#documentation_6" class="md-nav__link">
9252
9354
  <span class="md-ellipsis">
9253
9355
  Documentation
9254
9356
  </span>
@@ -9290,7 +9392,7 @@
9290
9392
  </li>
9291
9393
 
9292
9394
  <li class="md-nav__item">
9293
- <a href="#added_6" class="md-nav__link">
9395
+ <a href="#added_7" class="md-nav__link">
9294
9396
  <span class="md-ellipsis">
9295
9397
  Added
9296
9398
  </span>
@@ -9308,7 +9410,7 @@
9308
9410
  </li>
9309
9411
 
9310
9412
  <li class="md-nav__item">
9311
- <a href="#fixed_7" class="md-nav__link">
9413
+ <a href="#fixed_8" class="md-nav__link">
9312
9414
  <span class="md-ellipsis">
9313
9415
  Fixed
9314
9416
  </span>
@@ -9317,7 +9419,7 @@
9317
9419
  </li>
9318
9420
 
9319
9421
  <li class="md-nav__item">
9320
- <a href="#dependencies_2" class="md-nav__link">
9422
+ <a href="#dependencies_3" class="md-nav__link">
9321
9423
  <span class="md-ellipsis">
9322
9424
  Dependencies
9323
9425
  </span>
@@ -9326,7 +9428,7 @@
9326
9428
  </li>
9327
9429
 
9328
9430
  <li class="md-nav__item">
9329
- <a href="#documentation_6" class="md-nav__link">
9431
+ <a href="#documentation_7" class="md-nav__link">
9330
9432
  <span class="md-ellipsis">
9331
9433
  Documentation
9332
9434
  </span>
@@ -9359,7 +9461,7 @@
9359
9461
  <ul class="md-nav__list">
9360
9462
 
9361
9463
  <li class="md-nav__item">
9362
- <a href="#added_7" class="md-nav__link">
9464
+ <a href="#added_8" class="md-nav__link">
9363
9465
  <span class="md-ellipsis">
9364
9466
  Added
9365
9467
  </span>
@@ -9377,7 +9479,7 @@
9377
9479
  </li>
9378
9480
 
9379
9481
  <li class="md-nav__item">
9380
- <a href="#fixed_8" class="md-nav__link">
9482
+ <a href="#fixed_9" class="md-nav__link">
9381
9483
  <span class="md-ellipsis">
9382
9484
  Fixed
9383
9485
  </span>
@@ -9386,7 +9488,7 @@
9386
9488
  </li>
9387
9489
 
9388
9490
  <li class="md-nav__item">
9389
- <a href="#dependencies_3" class="md-nav__link">
9491
+ <a href="#dependencies_4" class="md-nav__link">
9390
9492
  <span class="md-ellipsis">
9391
9493
  Dependencies
9392
9494
  </span>
@@ -9419,7 +9521,7 @@
9419
9521
  <ul class="md-nav__list">
9420
9522
 
9421
9523
  <li class="md-nav__item">
9422
- <a href="#added_8" class="md-nav__link">
9524
+ <a href="#added_9" class="md-nav__link">
9423
9525
  <span class="md-ellipsis">
9424
9526
  Added
9425
9527
  </span>
@@ -9455,7 +9557,7 @@
9455
9557
  </li>
9456
9558
 
9457
9559
  <li class="md-nav__item">
9458
- <a href="#fixed_9" class="md-nav__link">
9560
+ <a href="#fixed_10" class="md-nav__link">
9459
9561
  <span class="md-ellipsis">
9460
9562
  Fixed
9461
9563
  </span>
@@ -9464,7 +9566,7 @@
9464
9566
  </li>
9465
9567
 
9466
9568
  <li class="md-nav__item">
9467
- <a href="#dependencies_4" class="md-nav__link">
9569
+ <a href="#dependencies_5" class="md-nav__link">
9468
9570
  <span class="md-ellipsis">
9469
9571
  Dependencies
9470
9572
  </span>
@@ -9473,7 +9575,7 @@
9473
9575
  </li>
9474
9576
 
9475
9577
  <li class="md-nav__item">
9476
- <a href="#documentation_7" class="md-nav__link">
9578
+ <a href="#documentation_8" class="md-nav__link">
9477
9579
  <span class="md-ellipsis">
9478
9580
  Documentation
9479
9581
  </span>
@@ -9551,24 +9653,59 @@
9551
9653
  <h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">&para;</a></h4>
9552
9654
  <p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
9553
9655
  <!-- towncrier release notes start -->
9656
+ <h2 id="v229-2024-08-05">v2.2.9 (2024-08-05)<a class="headerlink" href="#v229-2024-08-05" title="Permanent link">&para;</a></h2>
9657
+ <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
9658
+ <ul>
9659
+ <li><a href="https://github.com/nautobot/nautobot/issues/5965">#5965</a> - Added missing controller references for DeviceRedundancyGroup in the UI.</li>
9660
+ <li><a href="https://github.com/nautobot/nautobot/issues/5980">#5980</a> - Added caching to <code>FeatureQuery().get_choices()</code> and <code>FeatureQuery().list_subclasses()</code>.</li>
9661
+ <li><a href="https://github.com/nautobot/nautobot/issues/6029">#6029</a> - Added environment variable support for setting <code>CELERY_WORKER_PREFETCH_MULTIPLIER</code>.</li>
9662
+ <li><a href="https://github.com/nautobot/nautobot/issues/6030">#6030</a> - Added links from the Job list and detail views to quickly filter the list of Job Results to the corresponding Job.</li>
9663
+ </ul>
9664
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
9665
+ <ul>
9666
+ <li><a href="https://github.com/nautobot/nautobot/issues/5775">#5775</a> - Reintroduced <code>Add IP Address</code> button to VirtualMachine Interface table.</li>
9667
+ <li><a href="https://github.com/nautobot/nautobot/issues/5785">#5785</a> - Fixed Scheduled Jobs not respecting Job Soft / Hard Time Limit.</li>
9668
+ <li><a href="https://github.com/nautobot/nautobot/issues/5796">#5796</a> - Added missing validation to ensure that a DeviceBay can only contain Devices with a <code>subdevice_role</code> of <code>child</code>.</li>
9669
+ <li><a href="https://github.com/nautobot/nautobot/issues/5811">#5811</a> - Fixed broken UI and added error message when submitting IPAddressAssignForm without selecting any IPAddress.</li>
9670
+ <li><a href="https://github.com/nautobot/nautobot/issues/5812">#5812</a> - Fixed CSV file upload handling of "UTF-8 with BOM" encoding.</li>
9671
+ <li><a href="https://github.com/nautobot/nautobot/issues/5904">#5904</a> - Fixed performance of JobResults UI when thousands of JobLogEntries are present.</li>
9672
+ <li><a href="https://github.com/nautobot/nautobot/issues/5904">#5904</a> - Fixed performance when Bulk Importing large csv files.</li>
9673
+ <li><a href="https://github.com/nautobot/nautobot/issues/5912">#5912</a> - Fixed incorrect <code>clean()</code> behavior on <code>IPAddress</code> that caused certain uniqueness violations to not be caught until <code>save()</code>.</li>
9674
+ <li><a href="https://github.com/nautobot/nautobot/issues/5948">#5948</a> - Fixed table overflow.</li>
9675
+ <li><a href="https://github.com/nautobot/nautobot/issues/5980">#5980</a> - Improved performance of GraphQL queries by no longer unnecessarily creating <code>FilterSet</code> instances when no filter is present.</li>
9676
+ <li><a href="https://github.com/nautobot/nautobot/issues/5992">#5992</a> - Added signal to clear relevant content-type caches after running migrations.</li>
9677
+ <li><a href="https://github.com/nautobot/nautobot/issues/6022">#6022</a> - Fixed incorrect labels for derived filters (<code>tenant__n</code>, <code>tenant__isw</code>, etc.) when the base filter (<code>tenant</code>, etc.) has a custom label.</li>
9678
+ </ul>
9679
+ <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
9680
+ <ul>
9681
+ <li><a href="https://github.com/nautobot/nautobot/issues/6010">#6010</a> - Pinned <code>django-storages</code> temporarily to 1.14.3 due to an <a href="https://github.com/revsys/django-health-check/issues/434">incompatibility</a> between <code>django-health-check</code> and version 1.14.4 of <code>django-storages</code>.</li>
9682
+ </ul>
9683
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
9684
+ <ul>
9685
+ <li><a href="https://github.com/nautobot/nautobot/issues/5949">#5949</a> - Fixed NewBranch job code in documentation.</li>
9686
+ <li><a href="https://github.com/nautobot/nautobot/issues/5958">#5958</a> - Added an example job that uses a custom template to render the job form.</li>
9687
+ <li><a href="https://github.com/nautobot/nautobot/issues/5959">#5959</a> - Fixed documentation structure and added documentation on contributing documentation updates.</li>
9688
+ <li><a href="https://github.com/nautobot/nautobot/issues/5971">#5971</a> - Added documentation for registering jobs from Git Repositories.</li>
9689
+ <li><a href="https://github.com/nautobot/nautobot/issues/6024">#6024</a> - Added documentation for the <code>nautobot-server validate_models</code> command.</li>
9690
+ </ul>
9554
9691
  <h2 id="v228-2024-07-22">v2.2.8 (2024-07-22)<a class="headerlink" href="#v228-2024-07-22" title="Permanent link">&para;</a></h2>
9555
9692
  <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
9556
9693
  <ul>
9557
9694
  <li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.1</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9558
9695
  </ul>
9559
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
9696
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9560
9697
  <ul>
9561
9698
  <li><a href="https://github.com/nautobot/nautobot/issues/5569">#5569</a> - Fixed relationship required to ignore objects that do not match the related filter.</li>
9562
9699
  <li><a href="https://github.com/nautobot/nautobot/issues/5613">#5613</a> - Fixed intermittent failure in integration test for dynamic groups.</li>
9563
9700
  <li><a href="https://github.com/nautobot/nautobot/issues/5906">#5906</a> - Added support for filtering in GraphQL of objects identified by a many-to-many relation (<code>Location.prefixes</code>, <code>Prefix.locations</code>, etc.)</li>
9564
9701
  <li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
9565
9702
  </ul>
9566
- <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
9703
+ <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
9567
9704
  <ul>
9568
9705
  <li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated dependency <code>social-auth-app-django</code> to <code>~5.4.2</code>.</li>
9569
9706
  <li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated optional dependency <code>django-storages</code> to <code>~1.14.4</code>.</li>
9570
9707
  </ul>
9571
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
9708
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9572
9709
  <ul>
9573
9710
  <li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.29</code>.</li>
9574
9711
  <li><a href="https://github.com/nautobot/nautobot/issues/5874">#5874</a> - Updated documentation regarding Nautobot on Ubuntu 24.04.</li>
@@ -9582,7 +9719,7 @@
9582
9719
  <ul>
9583
9720
  <li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9584
9721
  </ul>
9585
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9722
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9586
9723
  <ul>
9587
9724
  <li><a href="https://github.com/nautobot/nautobot/issues/4237">#4237</a> - Fixed display issue with multiple tags filter on dynamic groups. Multiple Tags are now correctly displayed with an AND.</li>
9588
9725
  <li><a href="https://github.com/nautobot/nautobot/issues/5093">#5093</a> - Fixed blank page redirect when syncing or running a dry run on a GIT Repo with no workers available; now redirects to the GIT Repo Detail page with an error message.</li>
@@ -9590,7 +9727,7 @@
9590
9727
  <li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed lack of API versioning of responses to a POST to <code>/api/ipam/prefixes/&lt;id&gt;/available-prefixes/</code> to allocate child prefixes of a prefix.</li>
9591
9728
  <li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed incorrect OpenAPI schema for <code>/api/ipam/prefixes/&lt;id&gt;/available-prefixes/</code> and <code>/api/ipam/prefixes/&lt;id&gt;/available-ips/</code>.</li>
9592
9729
  </ul>
9593
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
9730
+ <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
9594
9731
  <ul>
9595
9732
  <li><a href="https://github.com/nautobot/nautobot/issues/5518">#5518</a> - Updated <code>drf-spectacular</code> to version <code>0.27.2</code>.</li>
9596
9733
  <li><a href="https://github.com/nautobot/nautobot/pull/5896">#5896</a> - Pinned dev dependency <code>faker</code> to <code>&gt;=0.7.0,&lt;26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
@@ -9605,7 +9742,7 @@
9605
9742
  <ul>
9606
9743
  <li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9607
9744
  </ul>
9608
- <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
9745
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
9609
9746
  <ul>
9610
9747
  <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added support for specifying a tag or a commit hash as the GitRepository <code>branch</code> value.</li>
9611
9748
  <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added an <code>enabled</code> flag to the JobButton class; disabled JobButtons will not appear in the UI.</li>
@@ -9616,7 +9753,7 @@
9616
9753
  <ul>
9617
9754
  <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Changed the behavior on removal of a previously-installed Job class to additionally auto-disable any JobButtons, JobHooks, and ScheduledJobs referencing this class.</li>
9618
9755
  </ul>
9619
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9756
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9620
9757
  <ul>
9621
9758
  <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an issue where config-contexts and export-templates sourced from a Git repository might not be automatically deleted from Nautobot after removing them from the repository and resyncing it.</li>
9622
9759
  <li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an exception that might be raised when performing a Git repository "dry-run" sync if certain types of diffs are present.</li>
@@ -9624,7 +9761,7 @@
9624
9761
  <li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
9625
9762
  <li><a href="https://github.com/nautobot/nautobot/issues/5819">#5819</a> - Fixed inability to use bare (local-DNS) hostnames when specifying a GitRepository remote URL.</li>
9626
9763
  </ul>
9627
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9764
+ <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
9628
9765
  <ul>
9629
9766
  <li><a href="https://github.com/nautobot/nautobot/issues/5726">#5726</a> - Updated, cleaned up, and separated out the main landing page for Nautobot docs.</li>
9630
9767
  <li><a href="https://github.com/nautobot/nautobot/issues/5752">#5752</a> - Corrected incorrect entry for <code>nautobot.utilities.ordering</code> in <code>v2-code-location-changes</code> table.</li>
@@ -9642,7 +9779,7 @@
9642
9779
  <li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
9643
9780
  <li><a href="https://github.com/nautobot/nautobot/issues/5757">#5757</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
9644
9781
  </ul>
9645
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
9782
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
9646
9783
  <ul>
9647
9784
  <li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
9648
9785
  <li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
@@ -9654,7 +9791,7 @@
9654
9791
  <ul>
9655
9792
  <li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Removed deprecated <code>CustomFieldFilterForm</code> alias of <code>CustomFieldModelFilterFormMixin</code> as this would have caused confusion with the newly added <code>CustomFieldFilterForm</code> class providing filtering support for the Custom Fields list view.</li>
9656
9793
  </ul>
9657
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9794
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9658
9795
  <ul>
9659
9796
  <li><a href="https://github.com/nautobot/nautobot/issues/5564">#5564</a> - Fixed <code>ContactAssociationFilterSet.associated_object_type</code> not using the right filter field.</li>
9660
9797
  <li><a href="https://github.com/nautobot/nautobot/issues/5669">#5669</a> - Fixed <code>AttributeError</code> thrown when deleting software versions or images from list views.</li>
@@ -9667,7 +9804,7 @@
9667
9804
  <li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect API query parameters when selecting VLANs to apply to a VM Interface.</li>
9668
9805
  <li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect query parameters when accessing or creating Clusters from a Cluster Type detail view.</li>
9669
9806
  </ul>
9670
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
9807
+ <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
9671
9808
  <ul>
9672
9809
  <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated to <code>mkdocs~1.6.0</code> and <code>mkdocs-material~9.5.23</code>.</li>
9673
9810
  <li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
@@ -9683,19 +9820,19 @@
9683
9820
  <li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
9684
9821
  <li><a href="https://github.com/nautobot/nautobot/issues/5672">#5672</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
9685
9822
  </ul>
9686
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
9823
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9687
9824
  <ul>
9688
9825
  <li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
9689
9826
  <li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
9690
9827
  </ul>
9691
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9828
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
9692
9829
  <ul>
9693
9830
  <li><a href="https://github.com/nautobot/nautobot/issues/4986">#4986</a> - Fixed inconsistent use of super causing <code>active_tab</code> context to be missing from several views.</li>
9694
9831
  <li><a href="https://github.com/nautobot/nautobot/issues/5644">#5644</a> - Made the uniqueness constraints between the ContactAssociation model and the related API serializer consistent.</li>
9695
9832
  <li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
9696
9833
  <li><a href="https://github.com/nautobot/nautobot/issues/5689">#5689</a> - Fixed change logging for bulk delete operations so that user is included in the log.</li>
9697
9834
  </ul>
9698
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
9835
+ <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
9699
9836
  <ul>
9700
9837
  <li><a href="https://github.com/nautobot/nautobot/issues/5661">#5661</a> - Updated documentation to organize installation instructions and provide easier to use functions from mkdocs.</li>
9701
9838
  </ul>
@@ -9711,7 +9848,7 @@
9711
9848
  <li><a href="https://github.com/nautobot/nautobot/issues/5624">#5624</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.4.1</code> to address <code>CVE-2024-32879</code>.</li>
9712
9849
  <li><a href="https://github.com/nautobot/nautobot/issues/5646">#5646</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
9713
9850
  </ul>
9714
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9851
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
9715
9852
  <ul>
9716
9853
  <li><a href="https://github.com/nautobot/nautobot/issues/2946">#2946</a> - Added custom link support for interfaces, console ports, console server ports, power ports, power outlets, front ports, rear ports, device bays, and inventory items.</li>
9717
9854
  <li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a view to convert location contact information to contacts or teams.</li>
@@ -9723,7 +9860,7 @@
9723
9860
  <ul>
9724
9861
  <li><a href="https://github.com/nautobot/nautobot/issues/5498">#5498</a> - Changed the <code>nautobot.extras.jobs.Job</code> class to no longer be a subclass of <code>celery.tasks.Task</code>.</li>
9725
9862
  </ul>
9726
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
9863
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
9727
9864
  <ul>
9728
9865
  <li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Fixed missing <code>location</code> field in <code>Prefix</code> and <code>VLAN</code> GraphQL schema.</li>
9729
9866
  <li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Restored ability to filter Prefix and VLAN objects at the ORM level by <code>location</code>.</li>
@@ -9736,7 +9873,7 @@
9736
9873
  <li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed some cases where stale Job code might be present when Jobs are sourced from <code>JOBS_ROOT</code> or a Git repository.</li>
9737
9874
  <li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed incorrect handling of Job <code>kwargs</code> when dry-running a job approval request via the REST API.</li>
9738
9875
  </ul>
9739
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
9876
+ <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
9740
9877
  <ul>
9741
9878
  <li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
9742
9879
  <li><a href="https://github.com/nautobot/nautobot/issues/5608">#5608</a> - Updated VLAN documentation with a recommendation for modeling of VLANs with respect to Locations.</li>
@@ -9754,7 +9891,7 @@
9754
9891
  <ul>
9755
9892
  <li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
9756
9893
  </ul>
9757
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
9894
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
9758
9895
  <ul>
9759
9896
  <li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.utils.bulk_delete_with_bulk_change_logging</code> helper function for improving performance on bulk delete.</li>
9760
9897
  <li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.context_managers.deferred_change_logging_for_bulk_operation</code> context manager for improving performance on bulk update.</li>
@@ -9765,12 +9902,12 @@
9765
9902
  <li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
9766
9903
  <li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
9767
9904
  </ul>
9768
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
9905
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
9769
9906
  <ul>
9770
9907
  <li><a href="https://github.com/nautobot/nautobot/issues/5580">#5580</a> - Fixed bugs when assigning a VLAN to an Interface related to the recently introduced many-to-many relationship between VLANs and Locations.</li>
9771
9908
  <li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
9772
9909
  </ul>
9773
- <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
9910
+ <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
9774
9911
  <ul>
9775
9912
  <li><a href="https://github.com/nautobot/nautobot/issues/5583">#5583</a> - Re-added release note content for v1.6.16 through v1.6.18.</li>
9776
9913
  </ul>
@@ -9785,7 +9922,7 @@
9785
9922
  <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
9786
9923
  <li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9787
9924
  </ul>
9788
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
9925
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
9789
9926
  <ul>
9790
9927
  <li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
9791
9928
  <li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
@@ -9796,7 +9933,7 @@
9796
9933
  <ul>
9797
9934
  <li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
9798
9935
  </ul>
9799
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
9936
+ <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
9800
9937
  <ul>
9801
9938
  <li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
9802
9939
  <li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
@@ -9806,14 +9943,14 @@
9806
9943
  <li><a href="https://github.com/nautobot/nautobot/issues/5527">#5527</a> - Fixed incorrect "members" links in Virtual Chassis list view.</li>
9807
9944
  <li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Re-added <code>nautobot.setup()</code> function mistakenly removed in 2.2.0.</li>
9808
9945
  </ul>
9809
- <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
9946
+ <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
9810
9947
  <ul>
9811
9948
  <li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed jsonschema version constraint from <code>&gt;=4.7.0,&lt;4.19.0</code> to <code>^4.7.0</code>.</li>
9812
9949
  <li><a href="https://github.com/nautobot/nautobot/issues/5517">#5517</a> - Updated <code>djangorestframework</code> to <code>~3.15.1</code>.</li>
9813
9950
  <li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
9814
9951
  <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
9815
9952
  </ul>
9816
- <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
9953
+ <h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">&para;</a></h3>
9817
9954
  <ul>
9818
9955
  <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
9819
9956
  <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
@@ -9829,7 +9966,7 @@
9829
9966
  <p class="admonition-title">Warning</p>
9830
9967
  <p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
9831
9968
  </div>
9832
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
9969
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
9833
9970
  <ul>
9834
9971
  <li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
9835
9972
  <li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
@@ -9847,14 +9984,14 @@
9847
9984
  <li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
9848
9985
  <li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
9849
9986
  </ul>
9850
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
9987
+ <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
9851
9988
  <ul>
9852
9989
  <li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
9853
9990
  <li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
9854
9991
  <li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Providers API response containing duplicate entries when filtering on more than one <code>location</code> value.</li>
9855
9992
  <li><a href="https://github.com/nautobot/nautobot/issues/5440">#5440</a> - Fixed <code>Cannot resolve keyword 'task_id' into field</code> error when calling <code>nautobot-server celery result &lt;task_id&gt;</code>.</li>
9856
9993
  </ul>
9857
- <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
9994
+ <h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">&para;</a></h3>
9858
9995
  <ul>
9859
9996
  <li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> &amp; it's dependency on <code>ecdsa</code>.</li>
9860
9997
  </ul>
@@ -9864,7 +10001,7 @@
9864
10001
  <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
9865
10002
  </ul>
9866
10003
  <h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">&para;</a></h2>
9867
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10004
+ <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
9868
10005
  <ul>
9869
10006
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
9870
10007
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
@@ -9933,7 +10070,7 @@
9933
10070
  <li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
9934
10071
  <li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
9935
10072
  </ul>
9936
- <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10073
+ <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
9937
10074
  <ul>
9938
10075
  <li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
9939
10076
  <li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
@@ -9946,11 +10083,11 @@
9946
10083
  <li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a <code>ValidationError</code> that was being thrown when a user logged out.</li>
9947
10084
  <li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a case where viewing a completed JobResult that was missing a <code>date_done</code> value would cause the JobResult view to repeatedly refresh.</li>
9948
10085
  </ul>
9949
- <h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">&para;</a></h3>
10086
+ <h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">&para;</a></h3>
9950
10087
  <ul>
9951
10088
  <li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
9952
10089
  </ul>
9953
- <h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">&para;</a></h3>
10090
+ <h3 id="documentation_8">Documentation<a class="headerlink" href="#documentation_8" title="Permanent link">&para;</a></h3>
9954
10091
  <ul>
9955
10092
  <li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
9956
10093
  <li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>