nautobot 2.2.3__py3-none-any.whl → 2.2.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 (327) hide show
  1. nautobot/circuits/forms.py +15 -0
  2. nautobot/circuits/navigation.py +9 -1
  3. nautobot/circuits/views.py +2 -0
  4. nautobot/core/filters.py +11 -0
  5. nautobot/core/settings.py +6 -4
  6. nautobot/core/settings.yaml +54 -19
  7. nautobot/core/templates/admin/base.html +2 -2
  8. nautobot/core/templates/base_django.html +2 -2
  9. nautobot/core/templates/buttons/export.html +47 -47
  10. nautobot/core/templates/inc/javascript.html +3 -0
  11. nautobot/core/templates/inc/media.html +3 -0
  12. nautobot/core/templates/login.html +2 -2
  13. nautobot/core/templates/nautobot_config.py.j2 +2 -0
  14. nautobot/core/testing/filters.py +24 -1
  15. nautobot/core/testing/views.py +13 -1
  16. nautobot/core/tests/test_jobs.py +79 -2
  17. nautobot/core/tests/test_views.py +33 -0
  18. nautobot/core/views/mixins.py +4 -0
  19. nautobot/core/views/utils.py +18 -1
  20. nautobot/dcim/filters/__init__.py +1 -1
  21. nautobot/dcim/forms.py +23 -4
  22. nautobot/dcim/tables/devicetypes.py +15 -4
  23. nautobot/dcim/tests/test_views.py +323 -55
  24. nautobot/dcim/views.py +26 -20
  25. nautobot/extras/api/serializers.py +17 -6
  26. nautobot/extras/api/views.py +2 -2
  27. nautobot/extras/context_managers.py +3 -0
  28. nautobot/extras/filters/__init__.py +15 -1
  29. nautobot/extras/forms/forms.py +33 -0
  30. nautobot/extras/forms/mixins.py +0 -6
  31. nautobot/extras/signals.py +6 -1
  32. nautobot/extras/tests/test_api.py +24 -2
  33. nautobot/extras/tests/test_context_managers.py +51 -1
  34. nautobot/extras/tests/test_filters.py +69 -0
  35. nautobot/extras/tests/test_forms.py +0 -3
  36. nautobot/extras/tests/test_views.py +48 -4
  37. nautobot/extras/utils.py +2 -1
  38. nautobot/extras/views.py +47 -31
  39. nautobot/ipam/forms.py +18 -0
  40. nautobot/ipam/tests/test_views.py +9 -2
  41. nautobot/ipam/views.py +17 -6
  42. nautobot/project-static/docs/404.html +107 -51
  43. nautobot/project-static/docs/apps/index.html +107 -51
  44. nautobot/project-static/docs/apps/nautobot-apps.html +107 -51
  45. nautobot/project-static/docs/assets/_mkdocstrings.css +6 -1
  46. nautobot/project-static/docs/assets/extra.css +7 -0
  47. nautobot/project-static/docs/assets/javascripts/bundle.ebd0bdb7.min.js +29 -0
  48. nautobot/project-static/docs/assets/javascripts/bundle.ebd0bdb7.min.js.map +7 -0
  49. nautobot/project-static/docs/assets/stylesheets/main.6543a935.min.css +1 -0
  50. nautobot/project-static/docs/assets/stylesheets/main.6543a935.min.css.map +1 -0
  51. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +107 -51
  52. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +107 -51
  53. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +107 -51
  54. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +107 -51
  55. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +107 -51
  56. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +107 -51
  57. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +107 -51
  58. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +107 -51
  59. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +107 -51
  60. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +107 -51
  61. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +107 -51
  62. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +107 -51
  63. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +107 -51
  64. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +107 -51
  65. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +107 -51
  66. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +107 -51
  67. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +107 -51
  68. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +107 -51
  69. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +107 -51
  70. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +107 -51
  71. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +107 -51
  72. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +107 -51
  73. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +107 -51
  74. nautobot/project-static/docs/development/apps/api/configuration-view.html +110 -54
  75. nautobot/project-static/docs/development/apps/api/database-backend-config.html +110 -54
  76. nautobot/project-static/docs/development/apps/api/models/django-admin.html +107 -51
  77. nautobot/project-static/docs/development/apps/api/models/global-search.html +110 -54
  78. nautobot/project-static/docs/development/apps/api/models/graphql.html +113 -57
  79. nautobot/project-static/docs/development/apps/api/models/index.html +107 -51
  80. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +113 -57
  81. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +107 -51
  82. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +111 -55
  83. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +107 -51
  84. nautobot/project-static/docs/development/apps/api/platform-features/index.html +107 -51
  85. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +110 -54
  86. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +110 -54
  87. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +110 -54
  88. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +110 -54
  89. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +107 -51
  90. nautobot/project-static/docs/development/apps/api/prometheus.html +110 -54
  91. nautobot/project-static/docs/development/apps/api/setup.html +107 -51
  92. nautobot/project-static/docs/development/apps/api/testing.html +113 -57
  93. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +110 -54
  94. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +110 -54
  95. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +107 -51
  96. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +107 -51
  97. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +113 -57
  98. nautobot/project-static/docs/development/apps/api/views/base-template.html +107 -51
  99. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +110 -54
  100. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +107 -51
  101. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +110 -54
  102. nautobot/project-static/docs/development/apps/api/views/index.html +107 -51
  103. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +113 -57
  104. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +122 -66
  105. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +110 -54
  106. nautobot/project-static/docs/development/apps/api/views/notes.html +110 -54
  107. nautobot/project-static/docs/development/apps/api/views/rest-api.html +107 -51
  108. nautobot/project-static/docs/development/apps/api/views/urls.html +107 -51
  109. nautobot/project-static/docs/development/apps/index.html +128 -72
  110. nautobot/project-static/docs/development/apps/migration/code-updates.html +107 -51
  111. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +107 -51
  112. nautobot/project-static/docs/development/apps/migration/from-v1.html +109 -53
  113. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +107 -51
  114. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +107 -51
  115. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +107 -51
  116. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +107 -51
  117. nautobot/project-static/docs/development/apps/porting-from-netbox.html +110 -54
  118. nautobot/project-static/docs/development/core/application-registry.html +120 -64
  119. nautobot/project-static/docs/development/core/best-practices.html +122 -66
  120. nautobot/project-static/docs/development/core/bootstrap-ui.html +107 -51
  121. nautobot/project-static/docs/development/core/caching.html +107 -51
  122. nautobot/project-static/docs/development/core/controllers.html +107 -51
  123. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +113 -57
  124. nautobot/project-static/docs/development/core/generic-views.html +110 -54
  125. nautobot/project-static/docs/development/core/getting-started.html +137 -81
  126. nautobot/project-static/docs/development/core/homepage.html +110 -54
  127. nautobot/project-static/docs/development/core/index.html +107 -51
  128. nautobot/project-static/docs/development/core/model-checklist.html +107 -51
  129. nautobot/project-static/docs/development/core/model-features.html +107 -51
  130. nautobot/project-static/docs/development/core/natural-keys.html +110 -54
  131. nautobot/project-static/docs/development/core/navigation-menu.html +107 -51
  132. nautobot/project-static/docs/development/core/release-checklist.html +107 -51
  133. nautobot/project-static/docs/development/core/role-internals.html +107 -51
  134. nautobot/project-static/docs/development/core/settings.html +107 -51
  135. nautobot/project-static/docs/development/core/style-guide.html +110 -54
  136. nautobot/project-static/docs/development/core/templates.html +113 -57
  137. nautobot/project-static/docs/development/core/testing.html +126 -70
  138. nautobot/project-static/docs/development/core/user-preferences.html +107 -51
  139. nautobot/project-static/docs/development/index.html +107 -51
  140. nautobot/project-static/docs/development/jobs/index.html +173 -117
  141. nautobot/project-static/docs/development/jobs/migration/from-v1.html +110 -54
  142. nautobot/project-static/docs/docker/index.html +3 -3
  143. nautobot/project-static/docs/index.html +125 -69
  144. nautobot/project-static/docs/installation/selinux-troubleshooting.html +3 -3
  145. nautobot/project-static/docs/release-notes/index.html +107 -51
  146. nautobot/project-static/docs/release-notes/version-1.0.html +108 -52
  147. nautobot/project-static/docs/release-notes/version-1.1.html +107 -51
  148. nautobot/project-static/docs/release-notes/version-1.2.html +109 -53
  149. nautobot/project-static/docs/release-notes/version-1.3.html +108 -52
  150. nautobot/project-static/docs/release-notes/version-1.4.html +109 -53
  151. nautobot/project-static/docs/release-notes/version-1.5.html +118 -62
  152. nautobot/project-static/docs/release-notes/version-1.6.html +721 -285
  153. nautobot/project-static/docs/release-notes/version-2.0.html +113 -57
  154. nautobot/project-static/docs/release-notes/version-2.1.html +107 -51
  155. nautobot/project-static/docs/release-notes/version-2.2.html +503 -120
  156. nautobot/project-static/docs/requirements.txt +4 -4
  157. nautobot/project-static/docs/search/search_index.json +1 -1
  158. nautobot/project-static/docs/sitemap.xml +262 -262
  159. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  160. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +107 -51
  161. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +107 -51
  162. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +109 -53
  163. nautobot/project-static/docs/user-guide/administration/configuration/index.html +108 -52
  164. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +254 -167
  165. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +113 -57
  166. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +107 -51
  167. nautobot/project-static/docs/user-guide/administration/guides/caching.html +113 -57
  168. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +107 -51
  169. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +107 -51
  170. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +107 -51
  171. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +113 -57
  172. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +108 -52
  173. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +107 -51
  174. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +107 -51
  175. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +171 -112
  176. nautobot/project-static/docs/user-guide/administration/installation/docker.html +13 -8626
  177. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +117 -61
  178. nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +13 -8614
  179. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +252 -165
  180. nautobot/project-static/docs/user-guide/administration/installation/index.html +165 -192
  181. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +411 -691
  182. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +249 -230
  183. nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +13 -8118
  184. nautobot/project-static/docs/user-guide/administration/installation/services.html +351 -241
  185. nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +8684 -0
  186. nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +8672 -0
  187. nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +8176 -0
  188. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +110 -54
  189. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +110 -54
  190. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +155 -99
  191. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +107 -51
  192. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +109 -53
  193. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +107 -51
  194. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +107 -51
  195. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +108 -52
  196. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +107 -51
  197. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +107 -51
  198. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +107 -70
  199. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +115 -59
  200. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +113 -57
  201. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +107 -51
  202. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +107 -51
  203. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +107 -51
  204. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +107 -51
  205. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +110 -54
  206. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +107 -51
  207. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +110 -54
  208. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +110 -54
  209. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +110 -54
  210. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +110 -54
  211. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +107 -51
  212. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +107 -51
  213. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +115 -59
  214. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +110 -54
  215. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +110 -54
  216. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +110 -54
  217. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +110 -54
  218. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +117 -61
  219. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +110 -54
  220. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +110 -54
  221. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +119 -63
  222. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +110 -54
  223. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +110 -54
  224. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +113 -57
  225. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +113 -57
  226. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +113 -57
  227. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +107 -51
  228. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +113 -57
  229. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +107 -51
  230. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +110 -54
  231. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +110 -54
  232. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +107 -51
  233. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +110 -54
  234. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +110 -54
  235. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +107 -51
  236. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +107 -51
  237. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +107 -51
  238. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +110 -54
  239. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +110 -54
  240. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +110 -54
  241. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +110 -54
  242. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +107 -51
  243. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +113 -57
  244. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +110 -54
  245. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +110 -54
  246. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +110 -54
  247. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +125 -69
  248. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +113 -57
  249. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +128 -72
  250. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +110 -54
  251. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +107 -51
  252. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +110 -54
  253. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +116 -60
  254. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +107 -51
  255. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +113 -57
  256. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +107 -51
  257. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +110 -54
  258. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +107 -51
  259. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +107 -51
  260. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +107 -51
  261. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +107 -51
  262. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +113 -57
  263. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +113 -57
  264. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +107 -51
  265. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +113 -57
  266. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +110 -54
  267. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +107 -51
  268. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +107 -51
  269. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +108 -52
  270. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +107 -51
  271. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +107 -51
  272. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +107 -51
  273. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +107 -51
  274. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +108 -52
  275. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +110 -54
  276. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +113 -57
  277. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +107 -51
  278. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +110 -54
  279. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +107 -51
  280. nautobot/project-static/docs/user-guide/index.html +109 -53
  281. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +107 -51
  282. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +113 -57
  283. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +128 -72
  284. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +107 -51
  285. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +125 -69
  286. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +107 -51
  287. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +110 -54
  288. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +125 -69
  289. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +110 -54
  290. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +107 -51
  291. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +107 -51
  292. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +128 -72
  293. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +114 -58
  294. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +113 -57
  295. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +110 -54
  296. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +121 -65
  297. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +109 -53
  298. nautobot/project-static/docs/user-guide/platform-functionality/note.html +110 -54
  299. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +116 -60
  300. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +110 -54
  301. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +131 -75
  302. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +149 -93
  303. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +110 -54
  304. nautobot/project-static/docs/user-guide/platform-functionality/role.html +108 -84
  305. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +116 -60
  306. nautobot/project-static/docs/user-guide/platform-functionality/status.html +119 -63
  307. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +110 -54
  308. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +137 -81
  309. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +110 -54
  310. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +107 -51
  311. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +110 -54
  312. nautobot/project-static/js/forms.js +2 -1
  313. nautobot/tenancy/forms.py +9 -0
  314. nautobot/tenancy/views.py +3 -6
  315. nautobot/virtualization/forms.py +18 -6
  316. nautobot/virtualization/templates/virtualization/clustertype.html +2 -2
  317. nautobot/virtualization/views.py +7 -9
  318. {nautobot-2.2.3.dist-info → nautobot-2.2.5.dist-info}/METADATA +2 -2
  319. {nautobot-2.2.3.dist-info → nautobot-2.2.5.dist-info}/RECORD +323 -320
  320. nautobot/project-static/docs/assets/javascripts/bundle.bd41221c.min.js +0 -29
  321. nautobot/project-static/docs/assets/javascripts/bundle.bd41221c.min.js.map +0 -7
  322. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +0 -1
  323. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +0 -1
  324. {nautobot-2.2.3.dist-info → nautobot-2.2.5.dist-info}/LICENSE.txt +0 -0
  325. {nautobot-2.2.3.dist-info → nautobot-2.2.5.dist-info}/NOTICE +0 -0
  326. {nautobot-2.2.3.dist-info → nautobot-2.2.5.dist-info}/WHEEL +0 -0
  327. {nautobot-2.2.3.dist-info → nautobot-2.2.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.5.3, mkdocs-material-9.5.16">
21
+ <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.23">
22
22
 
23
23
 
24
24
 
@@ -26,12 +26,20 @@
26
26
 
27
27
 
28
28
 
29
- <link rel="stylesheet" href="../assets/stylesheets/main.bcfcd587.min.css">
29
+ <link rel="stylesheet" href="../assets/stylesheets/main.6543a935.min.css">
30
30
 
31
31
 
32
32
  <link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
33
33
 
34
34
 
35
+
36
+
37
+
38
+
39
+
40
+
41
+ <style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0h-32zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1z"/></svg>');}</style>
42
+
35
43
 
36
44
 
37
45
 
@@ -200,7 +208,7 @@
200
208
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
201
209
  <div class="md-source__icon md-icon">
202
210
 
203
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
211
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
204
212
  </div>
205
213
  <div class="md-source__repository">
206
214
  GitHub
@@ -360,7 +368,7 @@
360
368
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
361
369
  <div class="md-source__icon md-icon">
362
370
 
363
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
371
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
364
372
  </div>
365
373
  <div class="md-source__repository">
366
374
  GitHub
@@ -523,7 +531,7 @@
523
531
 
524
532
 
525
533
  <span class="md-ellipsis">
526
- Prerequisites
534
+ Getting Started
527
535
  </span>
528
536
 
529
537
 
@@ -624,11 +632,11 @@
624
632
 
625
633
 
626
634
  <li class="md-nav__item">
627
- <a href="../user-guide/administration/installation/external-authentication.html" class="md-nav__link">
635
+ <a href="../user-guide/administration/installation/app-install.html" class="md-nav__link">
628
636
 
629
637
 
630
638
  <span class="md-ellipsis">
631
- External Authentication (Optional)
639
+ Installing and Using Apps
632
640
  </span>
633
641
 
634
642
 
@@ -645,11 +653,11 @@
645
653
 
646
654
 
647
655
  <li class="md-nav__item">
648
- <a href="../user-guide/administration/installation/app-install.html" class="md-nav__link">
656
+ <a href="../user-guide/administration/installation/external-authentication.html" class="md-nav__link">
649
657
 
650
658
 
651
659
  <span class="md-ellipsis">
652
- Installing and Using Plugins
660
+ External Authentication (Optional)
653
661
  </span>
654
662
 
655
663
 
@@ -659,6 +667,52 @@
659
667
 
660
668
 
661
669
 
670
+ </ul>
671
+ </nav>
672
+
673
+ </li>
674
+
675
+
676
+
677
+
678
+
679
+
680
+
681
+
682
+
683
+
684
+
685
+
686
+
687
+
688
+
689
+
690
+
691
+ <li class="md-nav__item md-nav__item--nested">
692
+
693
+
694
+
695
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
696
+
697
+
698
+ <label class="md-nav__link" for="__nav_2_1_2" id="__nav_2_1_2_label" tabindex="0">
699
+
700
+
701
+ <span class="md-ellipsis">
702
+ Installation Extras
703
+ </span>
704
+
705
+
706
+ <span class="md-nav__icon md-icon"></span>
707
+ </label>
708
+
709
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_2_label" aria-expanded="false">
710
+ <label class="md-nav__title" for="__nav_2_1_2">
711
+ <span class="md-nav__icon md-icon"></span>
712
+ Installation Extras
713
+ </label>
714
+ <ul class="md-nav__list" data-md-scrollfix>
715
+
662
716
 
663
717
 
664
718
 
@@ -666,7 +720,7 @@
666
720
 
667
721
 
668
722
  <li class="md-nav__item">
669
- <a href="../user-guide/administration/installation/docker.html" class="md-nav__link">
723
+ <a href="../user-guide/administration/installation-extras/docker.html" class="md-nav__link">
670
724
 
671
725
 
672
726
  <span class="md-ellipsis">
@@ -687,7 +741,7 @@
687
741
 
688
742
 
689
743
  <li class="md-nav__item">
690
- <a href="../user-guide/administration/installation/health-checks.html" class="md-nav__link">
744
+ <a href="../user-guide/administration/installation-extras/health-checks.html" class="md-nav__link">
691
745
 
692
746
 
693
747
  <span class="md-ellipsis">
@@ -708,7 +762,7 @@
708
762
 
709
763
 
710
764
  <li class="md-nav__item">
711
- <a href="../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
765
+ <a href="../user-guide/administration/installation-extras/selinux-troubleshooting.html" class="md-nav__link">
712
766
 
713
767
 
714
768
  <span class="md-ellipsis">
@@ -747,10 +801,10 @@
747
801
 
748
802
 
749
803
 
750
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
804
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
751
805
 
752
806
 
753
- <label class="md-nav__link" for="__nav_2_1_2" id="__nav_2_1_2_label" tabindex="0">
807
+ <label class="md-nav__link" for="__nav_2_1_3" id="__nav_2_1_3_label" tabindex="0">
754
808
 
755
809
 
756
810
  <span class="md-ellipsis">
@@ -761,8 +815,8 @@
761
815
  <span class="md-nav__icon md-icon"></span>
762
816
  </label>
763
817
 
764
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_2_label" aria-expanded="false">
765
- <label class="md-nav__title" for="__nav_2_1_2">
818
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_3_label" aria-expanded="false">
819
+ <label class="md-nav__title" for="__nav_2_1_3">
766
820
  <span class="md-nav__icon md-icon"></span>
767
821
  Upgrading
768
822
  </label>
@@ -827,7 +881,7 @@
827
881
 
828
882
 
829
883
 
830
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
884
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3_3" >
831
885
 
832
886
 
833
887
 
@@ -843,14 +897,14 @@
843
897
  </a>
844
898
 
845
899
 
846
- <label class="md-nav__link " for="__nav_2_1_2_3" id="__nav_2_1_2_3_label" tabindex="0">
900
+ <label class="md-nav__link " for="__nav_2_1_3_3" id="__nav_2_1_3_3_label" tabindex="0">
847
901
  <span class="md-nav__icon md-icon"></span>
848
902
  </label>
849
903
 
850
904
  </div>
851
905
 
852
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_3_label" aria-expanded="false">
853
- <label class="md-nav__title" for="__nav_2_1_2_3">
906
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_3_3_label" aria-expanded="false">
907
+ <label class="md-nav__title" for="__nav_2_1_3_3">
854
908
  <span class="md-nav__icon md-icon"></span>
855
909
  Upgrading Nautobot from v1.X to v2.0
856
910
  </label>
@@ -894,7 +948,7 @@
894
948
 
895
949
 
896
950
 
897
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
951
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3_3_2" >
898
952
 
899
953
 
900
954
 
@@ -910,14 +964,14 @@
910
964
  </a>
911
965
 
912
966
 
913
- <label class="md-nav__link " for="__nav_2_1_2_3_2" id="__nav_2_1_2_3_2_label" tabindex="0">
967
+ <label class="md-nav__link " for="__nav_2_1_3_3_2" id="__nav_2_1_3_3_2_label" tabindex="0">
914
968
  <span class="md-nav__icon md-icon"></span>
915
969
  </label>
916
970
 
917
971
  </div>
918
972
 
919
- <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_3_2_label" aria-expanded="false">
920
- <label class="md-nav__title" for="__nav_2_1_2_3_2">
973
+ <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_3_3_2_label" aria-expanded="false">
974
+ <label class="md-nav__title" for="__nav_2_1_3_3_2">
921
975
  <span class="md-nav__icon md-icon"></span>
922
976
  IPAM Migration Guide
923
977
  </label>
@@ -1048,10 +1102,10 @@
1048
1102
 
1049
1103
 
1050
1104
 
1051
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
1105
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
1052
1106
 
1053
1107
 
1054
- <label class="md-nav__link" for="__nav_2_1_3" id="__nav_2_1_3_label" tabindex="0">
1108
+ <label class="md-nav__link" for="__nav_2_1_4" id="__nav_2_1_4_label" tabindex="0">
1055
1109
 
1056
1110
 
1057
1111
  <span class="md-ellipsis">
@@ -1062,8 +1116,8 @@
1062
1116
  <span class="md-nav__icon md-icon"></span>
1063
1117
  </label>
1064
1118
 
1065
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_3_label" aria-expanded="false">
1066
- <label class="md-nav__title" for="__nav_2_1_3">
1119
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_4_label" aria-expanded="false">
1120
+ <label class="md-nav__title" for="__nav_2_1_4">
1067
1121
  <span class="md-nav__icon md-icon"></span>
1068
1122
  Migration
1069
1123
  </label>
@@ -1136,7 +1190,7 @@
1136
1190
 
1137
1191
 
1138
1192
 
1139
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
1193
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
1140
1194
 
1141
1195
 
1142
1196
 
@@ -1152,14 +1206,14 @@
1152
1206
  </a>
1153
1207
 
1154
1208
 
1155
- <label class="md-nav__link " for="__nav_2_1_4" id="__nav_2_1_4_label" tabindex="0">
1209
+ <label class="md-nav__link " for="__nav_2_1_5" id="__nav_2_1_5_label" tabindex="0">
1156
1210
  <span class="md-nav__icon md-icon"></span>
1157
1211
  </label>
1158
1212
 
1159
1213
  </div>
1160
1214
 
1161
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_4_label" aria-expanded="false">
1162
- <label class="md-nav__title" for="__nav_2_1_4">
1215
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_5_label" aria-expanded="false">
1216
+ <label class="md-nav__title" for="__nav_2_1_5">
1163
1217
  <span class="md-nav__icon md-icon"></span>
1164
1218
  Configuration
1165
1219
  </label>
@@ -1245,10 +1299,10 @@
1245
1299
 
1246
1300
 
1247
1301
 
1248
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
1302
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5_4" >
1249
1303
 
1250
1304
 
1251
- <label class="md-nav__link" for="__nav_2_1_4_4" id="__nav_2_1_4_4_label" tabindex="0">
1305
+ <label class="md-nav__link" for="__nav_2_1_5_4" id="__nav_2_1_5_4_label" tabindex="0">
1252
1306
 
1253
1307
 
1254
1308
  <span class="md-ellipsis">
@@ -1259,8 +1313,8 @@
1259
1313
  <span class="md-nav__icon md-icon"></span>
1260
1314
  </label>
1261
1315
 
1262
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_4_4_label" aria-expanded="false">
1263
- <label class="md-nav__title" for="__nav_2_1_4_4">
1316
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_5_4_label" aria-expanded="false">
1317
+ <label class="md-nav__title" for="__nav_2_1_5_4">
1264
1318
  <span class="md-nav__icon md-icon"></span>
1265
1319
  External Authentication
1266
1320
  </label>
@@ -1362,10 +1416,10 @@
1362
1416
 
1363
1417
 
1364
1418
 
1365
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
1419
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
1366
1420
 
1367
1421
 
1368
- <label class="md-nav__link" for="__nav_2_1_5" id="__nav_2_1_5_label" tabindex="0">
1422
+ <label class="md-nav__link" for="__nav_2_1_6" id="__nav_2_1_6_label" tabindex="0">
1369
1423
 
1370
1424
 
1371
1425
  <span class="md-ellipsis">
@@ -1376,8 +1430,8 @@
1376
1430
  <span class="md-nav__icon md-icon"></span>
1377
1431
  </label>
1378
1432
 
1379
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_5_label" aria-expanded="false">
1380
- <label class="md-nav__title" for="__nav_2_1_5">
1433
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_6_label" aria-expanded="false">
1434
+ <label class="md-nav__title" for="__nav_2_1_6">
1381
1435
  <span class="md-nav__icon md-icon"></span>
1382
1436
  Tools
1383
1437
  </label>
@@ -1450,10 +1504,10 @@
1450
1504
 
1451
1505
 
1452
1506
 
1453
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
1507
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_7" >
1454
1508
 
1455
1509
 
1456
- <label class="md-nav__link" for="__nav_2_1_6" id="__nav_2_1_6_label" tabindex="0">
1510
+ <label class="md-nav__link" for="__nav_2_1_7" id="__nav_2_1_7_label" tabindex="0">
1457
1511
 
1458
1512
 
1459
1513
  <span class="md-ellipsis">
@@ -1464,8 +1518,8 @@
1464
1518
  <span class="md-nav__icon md-icon"></span>
1465
1519
  </label>
1466
1520
 
1467
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_6_label" aria-expanded="false">
1468
- <label class="md-nav__title" for="__nav_2_1_6">
1521
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_7_label" aria-expanded="false">
1522
+ <label class="md-nav__title" for="__nav_2_1_7">
1469
1523
  <span class="md-nav__icon md-icon"></span>
1470
1524
  Guides
1471
1525
  </label>
@@ -7397,13 +7451,13 @@
7397
7451
  </li>
7398
7452
 
7399
7453
  <li class="md-nav__item">
7400
- <a href="#v1618-2024-04-15" class="md-nav__link">
7454
+ <a href="#v1623-2024-05-28" class="md-nav__link">
7401
7455
  <span class="md-ellipsis">
7402
- v1.6.18 (2024-04-15)
7456
+ v1.6.23 (2024-05-28)
7403
7457
  </span>
7404
7458
  </a>
7405
7459
 
7406
- <nav class="md-nav" aria-label="v1.6.18 (2024-04-15)">
7460
+ <nav class="md-nav" aria-label="v1.6.23 (2024-05-28)">
7407
7461
  <ul class="md-nav__list">
7408
7462
 
7409
7463
  <li class="md-nav__item">
@@ -7416,9 +7470,9 @@
7416
7470
  </li>
7417
7471
 
7418
7472
  <li class="md-nav__item">
7419
- <a href="#dependencies" class="md-nav__link">
7473
+ <a href="#housekeeping" class="md-nav__link">
7420
7474
  <span class="md-ellipsis">
7421
- Dependencies
7475
+ Housekeeping
7422
7476
  </span>
7423
7477
  </a>
7424
7478
 
@@ -7430,19 +7484,37 @@
7430
7484
  </li>
7431
7485
 
7432
7486
  <li class="md-nav__item">
7433
- <a href="#v1617-2024-04-01" class="md-nav__link">
7487
+ <a href="#v1622-2024-05-13" class="md-nav__link">
7434
7488
  <span class="md-ellipsis">
7435
- v1.6.17 (2024-04-01)
7489
+ v1.6.22 (2024-05-13)
7436
7490
  </span>
7437
7491
  </a>
7438
7492
 
7439
- <nav class="md-nav" aria-label="v1.6.17 (2024-04-01)">
7493
+ <nav class="md-nav" aria-label="v1.6.22 (2024-05-13)">
7440
7494
  <ul class="md-nav__list">
7441
7495
 
7442
7496
  <li class="md-nav__item">
7443
- <a href="#dependencies_1" class="md-nav__link">
7497
+ <a href="#security_1" class="md-nav__link">
7444
7498
  <span class="md-ellipsis">
7445
- Dependencies
7499
+ Security
7500
+ </span>
7501
+ </a>
7502
+
7503
+ </li>
7504
+
7505
+ <li class="md-nav__item">
7506
+ <a href="#added_1" class="md-nav__link">
7507
+ <span class="md-ellipsis">
7508
+ Added
7509
+ </span>
7510
+ </a>
7511
+
7512
+ </li>
7513
+
7514
+ <li class="md-nav__item">
7515
+ <a href="#fixed" class="md-nav__link">
7516
+ <span class="md-ellipsis">
7517
+ Fixed
7446
7518
  </span>
7447
7519
  </a>
7448
7520
 
@@ -7454,17 +7526,17 @@
7454
7526
  </li>
7455
7527
 
7456
7528
  <li class="md-nav__item">
7457
- <a href="#v1616-2024-03-25" class="md-nav__link">
7529
+ <a href="#v1621-2024-05-07" class="md-nav__link">
7458
7530
  <span class="md-ellipsis">
7459
- v1.6.16 (2024-03-25)
7531
+ v1.6.21 (2024-05-07)
7460
7532
  </span>
7461
7533
  </a>
7462
7534
 
7463
- <nav class="md-nav" aria-label="v1.6.16 (2024-03-25)">
7535
+ <nav class="md-nav" aria-label="v1.6.21 (2024-05-07)">
7464
7536
  <ul class="md-nav__list">
7465
7537
 
7466
7538
  <li class="md-nav__item">
7467
- <a href="#security_1" class="md-nav__link">
7539
+ <a href="#security_2" class="md-nav__link">
7468
7540
  <span class="md-ellipsis">
7469
7541
  Security
7470
7542
  </span>
@@ -7472,26 +7544,32 @@
7472
7544
 
7473
7545
  </li>
7474
7546
 
7475
- <li class="md-nav__item">
7476
- <a href="#added_1" class="md-nav__link">
7547
+ </ul>
7548
+ </nav>
7549
+
7550
+ </li>
7551
+
7552
+ <li class="md-nav__item">
7553
+ <a href="#v1620-2024-04-30" class="md-nav__link">
7477
7554
  <span class="md-ellipsis">
7478
- Added
7555
+ v1.6.20 (2024-04-30)
7479
7556
  </span>
7480
7557
  </a>
7481
7558
 
7482
- </li>
7559
+ <nav class="md-nav" aria-label="v1.6.20 (2024-04-30)">
7560
+ <ul class="md-nav__list">
7483
7561
 
7484
7562
  <li class="md-nav__item">
7485
- <a href="#changed_1" class="md-nav__link">
7563
+ <a href="#security_3" class="md-nav__link">
7486
7564
  <span class="md-ellipsis">
7487
- Changed
7565
+ Security
7488
7566
  </span>
7489
7567
  </a>
7490
7568
 
7491
7569
  </li>
7492
7570
 
7493
7571
  <li class="md-nav__item">
7494
- <a href="#fixed" class="md-nav__link">
7572
+ <a href="#fixed_1" class="md-nav__link">
7495
7573
  <span class="md-ellipsis">
7496
7574
  Fixed
7497
7575
  </span>
@@ -7499,19 +7577,34 @@
7499
7577
 
7500
7578
  </li>
7501
7579
 
7580
+ </ul>
7581
+ </nav>
7582
+
7583
+ </li>
7584
+
7585
+ <li class="md-nav__item">
7586
+ <a href="#v1619-2024-04-23" class="md-nav__link">
7587
+ <span class="md-ellipsis">
7588
+ v1.6.19 (2024-04-23)
7589
+ </span>
7590
+ </a>
7591
+
7592
+ <nav class="md-nav" aria-label="v1.6.19 (2024-04-23)">
7593
+ <ul class="md-nav__list">
7594
+
7502
7595
  <li class="md-nav__item">
7503
- <a href="#documentation" class="md-nav__link">
7596
+ <a href="#security_4" class="md-nav__link">
7504
7597
  <span class="md-ellipsis">
7505
- Documentation
7598
+ Security
7506
7599
  </span>
7507
7600
  </a>
7508
7601
 
7509
7602
  </li>
7510
7603
 
7511
7604
  <li class="md-nav__item">
7512
- <a href="#housekeeping" class="md-nav__link">
7605
+ <a href="#fixed_2" class="md-nav__link">
7513
7606
  <span class="md-ellipsis">
7514
- Housekeeping
7607
+ Fixed
7515
7608
  </span>
7516
7609
  </a>
7517
7610
 
@@ -7523,37 +7616,28 @@
7523
7616
  </li>
7524
7617
 
7525
7618
  <li class="md-nav__item">
7526
- <a href="#v1615-2024-03-18" class="md-nav__link">
7619
+ <a href="#v1618-2024-04-15" class="md-nav__link">
7527
7620
  <span class="md-ellipsis">
7528
- v1.6.15 (2024-03-18)
7621
+ v1.6.18 (2024-04-15)
7529
7622
  </span>
7530
7623
  </a>
7531
7624
 
7532
- <nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
7625
+ <nav class="md-nav" aria-label="v1.6.18 (2024-04-15)">
7533
7626
  <ul class="md-nav__list">
7534
7627
 
7535
7628
  <li class="md-nav__item">
7536
- <a href="#added_2" class="md-nav__link">
7537
- <span class="md-ellipsis">
7538
- Added
7539
- </span>
7540
- </a>
7541
-
7542
- </li>
7543
-
7544
- <li class="md-nav__item">
7545
- <a href="#fixed_1" class="md-nav__link">
7629
+ <a href="#security_5" class="md-nav__link">
7546
7630
  <span class="md-ellipsis">
7547
- Fixed
7631
+ Security
7548
7632
  </span>
7549
7633
  </a>
7550
7634
 
7551
7635
  </li>
7552
7636
 
7553
7637
  <li class="md-nav__item">
7554
- <a href="#housekeeping_1" class="md-nav__link">
7638
+ <a href="#dependencies" class="md-nav__link">
7555
7639
  <span class="md-ellipsis">
7556
- Housekeeping
7640
+ Dependencies
7557
7641
  </span>
7558
7642
  </a>
7559
7643
 
@@ -7565,19 +7649,19 @@
7565
7649
  </li>
7566
7650
 
7567
7651
  <li class="md-nav__item">
7568
- <a href="#v1614-2024-03-05" class="md-nav__link">
7652
+ <a href="#v1617-2024-04-01" class="md-nav__link">
7569
7653
  <span class="md-ellipsis">
7570
- v1.6.14 (2024-03-05)
7654
+ v1.6.17 (2024-04-01)
7571
7655
  </span>
7572
7656
  </a>
7573
7657
 
7574
- <nav class="md-nav" aria-label="v1.6.14 (2024-03-05)">
7658
+ <nav class="md-nav" aria-label="v1.6.17 (2024-04-01)">
7575
7659
  <ul class="md-nav__list">
7576
7660
 
7577
7661
  <li class="md-nav__item">
7578
- <a href="#fixed_2" class="md-nav__link">
7662
+ <a href="#dependencies_1" class="md-nav__link">
7579
7663
  <span class="md-ellipsis">
7580
- Fixed
7664
+ Dependencies
7581
7665
  </span>
7582
7666
  </a>
7583
7667
 
@@ -7589,31 +7673,40 @@
7589
7673
  </li>
7590
7674
 
7591
7675
  <li class="md-nav__item">
7592
- <a href="#v1613-2024-03-04" class="md-nav__link">
7676
+ <a href="#v1616-2024-03-25" class="md-nav__link">
7593
7677
  <span class="md-ellipsis">
7594
- v1.6.13 (2024-03-04)
7678
+ v1.6.16 (2024-03-25)
7595
7679
  </span>
7596
7680
  </a>
7597
7681
 
7598
- <nav class="md-nav" aria-label="v1.6.13 (2024-03-04)">
7682
+ <nav class="md-nav" aria-label="v1.6.16 (2024-03-25)">
7599
7683
  <ul class="md-nav__list">
7600
7684
 
7601
7685
  <li class="md-nav__item">
7602
- <a href="#added_3" class="md-nav__link">
7686
+ <a href="#security_6" class="md-nav__link">
7603
7687
  <span class="md-ellipsis">
7604
- Added
7688
+ Security
7605
7689
  </span>
7606
7690
  </a>
7607
7691
 
7608
7692
  </li>
7609
7693
 
7610
7694
  <li class="md-nav__item">
7611
- <a href="#added_4" class="md-nav__link">
7695
+ <a href="#added_2" class="md-nav__link">
7612
7696
  <span class="md-ellipsis">
7613
7697
  Added
7614
7698
  </span>
7615
7699
  </a>
7616
7700
 
7701
+ </li>
7702
+
7703
+ <li class="md-nav__item">
7704
+ <a href="#changed_1" class="md-nav__link">
7705
+ <span class="md-ellipsis">
7706
+ Changed
7707
+ </span>
7708
+ </a>
7709
+
7617
7710
  </li>
7618
7711
 
7619
7712
  <li class="md-nav__item">
@@ -7626,12 +7719,21 @@
7626
7719
  </li>
7627
7720
 
7628
7721
  <li class="md-nav__item">
7629
- <a href="#documentation_1" class="md-nav__link">
7722
+ <a href="#documentation" class="md-nav__link">
7630
7723
  <span class="md-ellipsis">
7631
7724
  Documentation
7632
7725
  </span>
7633
7726
  </a>
7634
7727
 
7728
+ </li>
7729
+
7730
+ <li class="md-nav__item">
7731
+ <a href="#housekeeping_1" class="md-nav__link">
7732
+ <span class="md-ellipsis">
7733
+ Housekeeping
7734
+ </span>
7735
+ </a>
7736
+
7635
7737
  </li>
7636
7738
 
7637
7739
  </ul>
@@ -7640,17 +7742,17 @@
7640
7742
  </li>
7641
7743
 
7642
7744
  <li class="md-nav__item">
7643
- <a href="#v1612-2024-02-20" class="md-nav__link">
7745
+ <a href="#v1615-2024-03-18" class="md-nav__link">
7644
7746
  <span class="md-ellipsis">
7645
- v1.6.12 (2024-02-20)
7747
+ v1.6.15 (2024-03-18)
7646
7748
  </span>
7647
7749
  </a>
7648
7750
 
7649
- <nav class="md-nav" aria-label="v1.6.12 (2024-02-20)">
7751
+ <nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
7650
7752
  <ul class="md-nav__list">
7651
7753
 
7652
7754
  <li class="md-nav__item">
7653
- <a href="#added_5" class="md-nav__link">
7755
+ <a href="#added_3" class="md-nav__link">
7654
7756
  <span class="md-ellipsis">
7655
7757
  Added
7656
7758
  </span>
@@ -7659,27 +7761,18 @@
7659
7761
  </li>
7660
7762
 
7661
7763
  <li class="md-nav__item">
7662
- <a href="#security_2" class="md-nav__link">
7663
- <span class="md-ellipsis">
7664
- Security
7665
- </span>
7666
- </a>
7667
-
7668
- </li>
7669
-
7670
- <li class="md-nav__item">
7671
- <a href="#changed_2" class="md-nav__link">
7764
+ <a href="#fixed_4" class="md-nav__link">
7672
7765
  <span class="md-ellipsis">
7673
- Changed
7766
+ Fixed
7674
7767
  </span>
7675
7768
  </a>
7676
7769
 
7677
7770
  </li>
7678
7771
 
7679
7772
  <li class="md-nav__item">
7680
- <a href="#fixed_4" class="md-nav__link">
7773
+ <a href="#housekeeping_2" class="md-nav__link">
7681
7774
  <span class="md-ellipsis">
7682
- Fixed
7775
+ Housekeeping
7683
7776
  </span>
7684
7777
  </a>
7685
7778
 
@@ -7691,7 +7784,133 @@
7691
7784
  </li>
7692
7785
 
7693
7786
  <li class="md-nav__item">
7694
- <a href="#v1611-2024-02-05" class="md-nav__link">
7787
+ <a href="#v1614-2024-03-05" class="md-nav__link">
7788
+ <span class="md-ellipsis">
7789
+ v1.6.14 (2024-03-05)
7790
+ </span>
7791
+ </a>
7792
+
7793
+ <nav class="md-nav" aria-label="v1.6.14 (2024-03-05)">
7794
+ <ul class="md-nav__list">
7795
+
7796
+ <li class="md-nav__item">
7797
+ <a href="#fixed_5" class="md-nav__link">
7798
+ <span class="md-ellipsis">
7799
+ Fixed
7800
+ </span>
7801
+ </a>
7802
+
7803
+ </li>
7804
+
7805
+ </ul>
7806
+ </nav>
7807
+
7808
+ </li>
7809
+
7810
+ <li class="md-nav__item">
7811
+ <a href="#v1613-2024-03-04" class="md-nav__link">
7812
+ <span class="md-ellipsis">
7813
+ v1.6.13 (2024-03-04)
7814
+ </span>
7815
+ </a>
7816
+
7817
+ <nav class="md-nav" aria-label="v1.6.13 (2024-03-04)">
7818
+ <ul class="md-nav__list">
7819
+
7820
+ <li class="md-nav__item">
7821
+ <a href="#added_4" class="md-nav__link">
7822
+ <span class="md-ellipsis">
7823
+ Added
7824
+ </span>
7825
+ </a>
7826
+
7827
+ </li>
7828
+
7829
+ <li class="md-nav__item">
7830
+ <a href="#added_5" class="md-nav__link">
7831
+ <span class="md-ellipsis">
7832
+ Added
7833
+ </span>
7834
+ </a>
7835
+
7836
+ </li>
7837
+
7838
+ <li class="md-nav__item">
7839
+ <a href="#fixed_6" class="md-nav__link">
7840
+ <span class="md-ellipsis">
7841
+ Fixed
7842
+ </span>
7843
+ </a>
7844
+
7845
+ </li>
7846
+
7847
+ <li class="md-nav__item">
7848
+ <a href="#documentation_1" class="md-nav__link">
7849
+ <span class="md-ellipsis">
7850
+ Documentation
7851
+ </span>
7852
+ </a>
7853
+
7854
+ </li>
7855
+
7856
+ </ul>
7857
+ </nav>
7858
+
7859
+ </li>
7860
+
7861
+ <li class="md-nav__item">
7862
+ <a href="#v1612-2024-02-20" class="md-nav__link">
7863
+ <span class="md-ellipsis">
7864
+ v1.6.12 (2024-02-20)
7865
+ </span>
7866
+ </a>
7867
+
7868
+ <nav class="md-nav" aria-label="v1.6.12 (2024-02-20)">
7869
+ <ul class="md-nav__list">
7870
+
7871
+ <li class="md-nav__item">
7872
+ <a href="#added_6" class="md-nav__link">
7873
+ <span class="md-ellipsis">
7874
+ Added
7875
+ </span>
7876
+ </a>
7877
+
7878
+ </li>
7879
+
7880
+ <li class="md-nav__item">
7881
+ <a href="#security_7" class="md-nav__link">
7882
+ <span class="md-ellipsis">
7883
+ Security
7884
+ </span>
7885
+ </a>
7886
+
7887
+ </li>
7888
+
7889
+ <li class="md-nav__item">
7890
+ <a href="#changed_2" class="md-nav__link">
7891
+ <span class="md-ellipsis">
7892
+ Changed
7893
+ </span>
7894
+ </a>
7895
+
7896
+ </li>
7897
+
7898
+ <li class="md-nav__item">
7899
+ <a href="#fixed_7" class="md-nav__link">
7900
+ <span class="md-ellipsis">
7901
+ Fixed
7902
+ </span>
7903
+ </a>
7904
+
7905
+ </li>
7906
+
7907
+ </ul>
7908
+ </nav>
7909
+
7910
+ </li>
7911
+
7912
+ <li class="md-nav__item">
7913
+ <a href="#v1611-2024-02-05" class="md-nav__link">
7695
7914
  <span class="md-ellipsis">
7696
7915
  v1.6.11 (2024-02-05)
7697
7916
  </span>
@@ -7701,7 +7920,7 @@
7701
7920
  <ul class="md-nav__list">
7702
7921
 
7703
7922
  <li class="md-nav__item">
7704
- <a href="#security_3" class="md-nav__link">
7923
+ <a href="#security_8" class="md-nav__link">
7705
7924
  <span class="md-ellipsis">
7706
7925
  Security
7707
7926
  </span>
@@ -7710,7 +7929,7 @@
7710
7929
  </li>
7711
7930
 
7712
7931
  <li class="md-nav__item">
7713
- <a href="#added_6" class="md-nav__link">
7932
+ <a href="#added_7" class="md-nav__link">
7714
7933
  <span class="md-ellipsis">
7715
7934
  Added
7716
7935
  </span>
@@ -7719,7 +7938,7 @@
7719
7938
  </li>
7720
7939
 
7721
7940
  <li class="md-nav__item">
7722
- <a href="#fixed_5" class="md-nav__link">
7941
+ <a href="#fixed_8" class="md-nav__link">
7723
7942
  <span class="md-ellipsis">
7724
7943
  Fixed
7725
7944
  </span>
@@ -7743,7 +7962,7 @@
7743
7962
  <ul class="md-nav__list">
7744
7963
 
7745
7964
  <li class="md-nav__item">
7746
- <a href="#security_4" class="md-nav__link">
7965
+ <a href="#security_9" class="md-nav__link">
7747
7966
  <span class="md-ellipsis">
7748
7967
  Security
7749
7968
  </span>
@@ -7752,7 +7971,7 @@
7752
7971
  </li>
7753
7972
 
7754
7973
  <li class="md-nav__item">
7755
- <a href="#added_7" class="md-nav__link">
7974
+ <a href="#added_8" class="md-nav__link">
7756
7975
  <span class="md-ellipsis">
7757
7976
  Added
7758
7977
  </span>
@@ -7794,7 +8013,7 @@
7794
8013
  <ul class="md-nav__list">
7795
8014
 
7796
8015
  <li class="md-nav__item">
7797
- <a href="#fixed_6" class="md-nav__link">
8016
+ <a href="#fixed_9" class="md-nav__link">
7798
8017
  <span class="md-ellipsis">
7799
8018
  Fixed
7800
8019
  </span>
@@ -7818,7 +8037,7 @@
7818
8037
  <ul class="md-nav__list">
7819
8038
 
7820
8039
  <li class="md-nav__item">
7821
- <a href="#security_5" class="md-nav__link">
8040
+ <a href="#security_10" class="md-nav__link">
7822
8041
  <span class="md-ellipsis">
7823
8042
  Security
7824
8043
  </span>
@@ -7827,7 +8046,7 @@
7827
8046
  </li>
7828
8047
 
7829
8048
  <li class="md-nav__item">
7830
- <a href="#added_8" class="md-nav__link">
8049
+ <a href="#added_9" class="md-nav__link">
7831
8050
  <span class="md-ellipsis">
7832
8051
  Added
7833
8052
  </span>
@@ -7845,7 +8064,7 @@
7845
8064
  </li>
7846
8065
 
7847
8066
  <li class="md-nav__item">
7848
- <a href="#fixed_7" class="md-nav__link">
8067
+ <a href="#fixed_10" class="md-nav__link">
7849
8068
  <span class="md-ellipsis">
7850
8069
  Fixed
7851
8070
  </span>
@@ -7854,7 +8073,7 @@
7854
8073
  </li>
7855
8074
 
7856
8075
  <li class="md-nav__item">
7857
- <a href="#housekeeping_2" class="md-nav__link">
8076
+ <a href="#housekeeping_3" class="md-nav__link">
7858
8077
  <span class="md-ellipsis">
7859
8078
  Housekeeping
7860
8079
  </span>
@@ -7878,7 +8097,7 @@
7878
8097
  <ul class="md-nav__list">
7879
8098
 
7880
8099
  <li class="md-nav__item">
7881
- <a href="#security_6" class="md-nav__link">
8100
+ <a href="#security_11" class="md-nav__link">
7882
8101
  <span class="md-ellipsis">
7883
8102
  Security
7884
8103
  </span>
@@ -7887,7 +8106,7 @@
7887
8106
  </li>
7888
8107
 
7889
8108
  <li class="md-nav__item">
7890
- <a href="#added_9" class="md-nav__link">
8109
+ <a href="#added_10" class="md-nav__link">
7891
8110
  <span class="md-ellipsis">
7892
8111
  Added
7893
8112
  </span>
@@ -7905,7 +8124,7 @@
7905
8124
  </li>
7906
8125
 
7907
8126
  <li class="md-nav__item">
7908
- <a href="#fixed_8" class="md-nav__link">
8127
+ <a href="#fixed_11" class="md-nav__link">
7909
8128
  <span class="md-ellipsis">
7910
8129
  Fixed
7911
8130
  </span>
@@ -7929,7 +8148,7 @@
7929
8148
  <ul class="md-nav__list">
7930
8149
 
7931
8150
  <li class="md-nav__item">
7932
- <a href="#security_7" class="md-nav__link">
8151
+ <a href="#security_12" class="md-nav__link">
7933
8152
  <span class="md-ellipsis">
7934
8153
  Security
7935
8154
  </span>
@@ -7947,7 +8166,7 @@
7947
8166
  </li>
7948
8167
 
7949
8168
  <li class="md-nav__item">
7950
- <a href="#fixed_9" class="md-nav__link">
8169
+ <a href="#fixed_12" class="md-nav__link">
7951
8170
  <span class="md-ellipsis">
7952
8171
  Fixed
7953
8172
  </span>
@@ -7965,7 +8184,7 @@
7965
8184
  </li>
7966
8185
 
7967
8186
  <li class="md-nav__item">
7968
- <a href="#housekeeping_3" class="md-nav__link">
8187
+ <a href="#housekeeping_4" class="md-nav__link">
7969
8188
  <span class="md-ellipsis">
7970
8189
  Housekeeping
7971
8190
  </span>
@@ -7989,7 +8208,7 @@
7989
8208
  <ul class="md-nav__list">
7990
8209
 
7991
8210
  <li class="md-nav__item">
7992
- <a href="#security_8" class="md-nav__link">
8211
+ <a href="#security_13" class="md-nav__link">
7993
8212
  <span class="md-ellipsis">
7994
8213
  Security
7995
8214
  </span>
@@ -7998,7 +8217,7 @@
7998
8217
  </li>
7999
8218
 
8000
8219
  <li class="md-nav__item">
8001
- <a href="#added_10" class="md-nav__link">
8220
+ <a href="#added_11" class="md-nav__link">
8002
8221
  <span class="md-ellipsis">
8003
8222
  Added
8004
8223
  </span>
@@ -8007,7 +8226,7 @@
8007
8226
  </li>
8008
8227
 
8009
8228
  <li class="md-nav__item">
8010
- <a href="#fixed_10" class="md-nav__link">
8229
+ <a href="#fixed_13" class="md-nav__link">
8011
8230
  <span class="md-ellipsis">
8012
8231
  Fixed
8013
8232
  </span>
@@ -8025,7 +8244,7 @@
8025
8244
  </li>
8026
8245
 
8027
8246
  <li class="md-nav__item">
8028
- <a href="#housekeeping_4" class="md-nav__link">
8247
+ <a href="#housekeeping_5" class="md-nav__link">
8029
8248
  <span class="md-ellipsis">
8030
8249
  Housekeeping
8031
8250
  </span>
@@ -8049,7 +8268,7 @@
8049
8268
  <ul class="md-nav__list">
8050
8269
 
8051
8270
  <li class="md-nav__item">
8052
- <a href="#added_11" class="md-nav__link">
8271
+ <a href="#added_12" class="md-nav__link">
8053
8272
  <span class="md-ellipsis">
8054
8273
  Added
8055
8274
  </span>
@@ -8076,7 +8295,7 @@
8076
8295
  </li>
8077
8296
 
8078
8297
  <li class="md-nav__item">
8079
- <a href="#housekeeping_5" class="md-nav__link">
8298
+ <a href="#housekeeping_6" class="md-nav__link">
8080
8299
  <span class="md-ellipsis">
8081
8300
  Housekeeping
8082
8301
  </span>
@@ -8100,7 +8319,7 @@
8100
8319
  <ul class="md-nav__list">
8101
8320
 
8102
8321
  <li class="md-nav__item">
8103
- <a href="#security_9" class="md-nav__link">
8322
+ <a href="#security_14" class="md-nav__link">
8104
8323
  <span class="md-ellipsis">
8105
8324
  Security
8106
8325
  </span>
@@ -8109,7 +8328,7 @@
8109
8328
  </li>
8110
8329
 
8111
8330
  <li class="md-nav__item">
8112
- <a href="#added_12" class="md-nav__link">
8331
+ <a href="#added_13" class="md-nav__link">
8113
8332
  <span class="md-ellipsis">
8114
8333
  Added
8115
8334
  </span>
@@ -8118,7 +8337,7 @@
8118
8337
  </li>
8119
8338
 
8120
8339
  <li class="md-nav__item">
8121
- <a href="#fixed_11" class="md-nav__link">
8340
+ <a href="#fixed_14" class="md-nav__link">
8122
8341
  <span class="md-ellipsis">
8123
8342
  Fixed
8124
8343
  </span>
@@ -8127,7 +8346,7 @@
8127
8346
  </li>
8128
8347
 
8129
8348
  <li class="md-nav__item">
8130
- <a href="#housekeeping_6" class="md-nav__link">
8349
+ <a href="#housekeeping_7" class="md-nav__link">
8131
8350
  <span class="md-ellipsis">
8132
8351
  Housekeeping
8133
8352
  </span>
@@ -8151,7 +8370,7 @@
8151
8370
  <ul class="md-nav__list">
8152
8371
 
8153
8372
  <li class="md-nav__item">
8154
- <a href="#added_13" class="md-nav__link">
8373
+ <a href="#added_14" class="md-nav__link">
8155
8374
  <span class="md-ellipsis">
8156
8375
  Added
8157
8376
  </span>
@@ -8169,7 +8388,7 @@
8169
8388
  </li>
8170
8389
 
8171
8390
  <li class="md-nav__item">
8172
- <a href="#fixed_12" class="md-nav__link">
8391
+ <a href="#fixed_15" class="md-nav__link">
8173
8392
  <span class="md-ellipsis">
8174
8393
  Fixed
8175
8394
  </span>
@@ -8187,7 +8406,7 @@
8187
8406
  </li>
8188
8407
 
8189
8408
  <li class="md-nav__item">
8190
- <a href="#housekeeping_7" class="md-nav__link">
8409
+ <a href="#housekeeping_8" class="md-nav__link">
8191
8410
  <span class="md-ellipsis">
8192
8411
  Housekeeping
8193
8412
  </span>
@@ -8220,7 +8439,7 @@
8220
8439
  </li>
8221
8440
 
8222
8441
  <li class="md-nav__item">
8223
- <a href="#fixed_13" class="md-nav__link">
8442
+ <a href="#fixed_16" class="md-nav__link">
8224
8443
  <span class="md-ellipsis">
8225
8444
  Fixed
8226
8445
  </span>
@@ -8238,7 +8457,7 @@
8238
8457
  </li>
8239
8458
 
8240
8459
  <li class="md-nav__item">
8241
- <a href="#housekeeping_8" class="md-nav__link">
8460
+ <a href="#housekeeping_9" class="md-nav__link">
8242
8461
  <span class="md-ellipsis">
8243
8462
  Housekeeping
8244
8463
  </span>
@@ -8262,7 +8481,7 @@
8262
8481
  <ul class="md-nav__list">
8263
8482
 
8264
8483
  <li class="md-nav__item">
8265
- <a href="#added_14" class="md-nav__link">
8484
+ <a href="#added_15" class="md-nav__link">
8266
8485
  <span class="md-ellipsis">
8267
8486
  Added
8268
8487
  </span>
@@ -8271,7 +8490,7 @@
8271
8490
  </li>
8272
8491
 
8273
8492
  <li class="md-nav__item">
8274
- <a href="#fixed_14" class="md-nav__link">
8493
+ <a href="#fixed_17" class="md-nav__link">
8275
8494
  <span class="md-ellipsis">
8276
8495
  Fixed
8277
8496
  </span>
@@ -8313,7 +8532,7 @@
8313
8532
  <ul class="md-nav__list">
8314
8533
 
8315
8534
  <li class="md-nav__item">
8316
- <a href="#added_15" class="md-nav__link">
8535
+ <a href="#added_16" class="md-nav__link">
8317
8536
  <span class="md-ellipsis">
8318
8537
  Added
8319
8538
  </span>
@@ -8340,7 +8559,7 @@
8340
8559
  </li>
8341
8560
 
8342
8561
  <li class="md-nav__item">
8343
- <a href="#fixed_15" class="md-nav__link">
8562
+ <a href="#fixed_18" class="md-nav__link">
8344
8563
  <span class="md-ellipsis">
8345
8564
  Fixed
8346
8565
  </span>
@@ -8934,9 +9153,179 @@
8934
9153
  </li>
8935
9154
 
8936
9155
  <li class="md-nav__item">
8937
- <a href="#python-311-support-3561" class="md-nav__link">
9156
+ <a href="#python-311-support-3561" class="md-nav__link">
9157
+ <span class="md-ellipsis">
9158
+ Python 3.11 Support (#3561)
9159
+ </span>
9160
+ </a>
9161
+
9162
+ </li>
9163
+
9164
+ </ul>
9165
+ </nav>
9166
+
9167
+ </li>
9168
+
9169
+ <li class="md-nav__item">
9170
+ <a href="#changed" class="md-nav__link">
9171
+ <span class="md-ellipsis">
9172
+ Changed
9173
+ </span>
9174
+ </a>
9175
+
9176
+ <nav class="md-nav" aria-label="Changed">
9177
+ <ul class="md-nav__list">
9178
+
9179
+ <li class="md-nav__item">
9180
+ <a href="#additional-hide_restricted_ui-effects-for-unauthenticated-users-3646" class="md-nav__link">
9181
+ <span class="md-ellipsis">
9182
+ Additional HIDE_RESTRICTED_UI Effects for Unauthenticated Users (#3646)
9183
+ </span>
9184
+ </a>
9185
+
9186
+ </li>
9187
+
9188
+ <li class="md-nav__item">
9189
+ <a href="#increased-deviceasset_tag-maximum-length-3693" class="md-nav__link">
9190
+ <span class="md-ellipsis">
9191
+ Increased Device.asset_tag maximum length (#3693)
9192
+ </span>
9193
+ </a>
9194
+
9195
+ </li>
9196
+
9197
+ <li class="md-nav__item">
9198
+ <a href="#changed-default-python-version-for-docker-images-4029" class="md-nav__link">
9199
+ <span class="md-ellipsis">
9200
+ Changed Default Python Version for Docker Images (#4029)
9201
+ </span>
9202
+ </a>
9203
+
9204
+ </li>
9205
+
9206
+ </ul>
9207
+ </nav>
9208
+
9209
+ </li>
9210
+
9211
+ <li class="md-nav__item">
9212
+ <a href="#removed" class="md-nav__link">
9213
+ <span class="md-ellipsis">
9214
+ Removed
9215
+ </span>
9216
+ </a>
9217
+
9218
+ <nav class="md-nav" aria-label="Removed">
9219
+ <ul class="md-nav__list">
9220
+
9221
+ <li class="md-nav__item">
9222
+ <a href="#removed-python-37-support-3561" class="md-nav__link">
9223
+ <span class="md-ellipsis">
9224
+ Removed Python 3.7 Support (#3561)
9225
+ </span>
9226
+ </a>
9227
+
9228
+ </li>
9229
+
9230
+ </ul>
9231
+ </nav>
9232
+
9233
+ </li>
9234
+
9235
+ </ul>
9236
+ </nav>
9237
+
9238
+ </li>
9239
+
9240
+ <li class="md-nav__item">
9241
+ <a href="#v1623-2024-05-28" class="md-nav__link">
9242
+ <span class="md-ellipsis">
9243
+ v1.6.23 (2024-05-28)
9244
+ </span>
9245
+ </a>
9246
+
9247
+ <nav class="md-nav" aria-label="v1.6.23 (2024-05-28)">
9248
+ <ul class="md-nav__list">
9249
+
9250
+ <li class="md-nav__item">
9251
+ <a href="#security" class="md-nav__link">
9252
+ <span class="md-ellipsis">
9253
+ Security
9254
+ </span>
9255
+ </a>
9256
+
9257
+ </li>
9258
+
9259
+ <li class="md-nav__item">
9260
+ <a href="#housekeeping" class="md-nav__link">
9261
+ <span class="md-ellipsis">
9262
+ Housekeeping
9263
+ </span>
9264
+ </a>
9265
+
9266
+ </li>
9267
+
9268
+ </ul>
9269
+ </nav>
9270
+
9271
+ </li>
9272
+
9273
+ <li class="md-nav__item">
9274
+ <a href="#v1622-2024-05-13" class="md-nav__link">
9275
+ <span class="md-ellipsis">
9276
+ v1.6.22 (2024-05-13)
9277
+ </span>
9278
+ </a>
9279
+
9280
+ <nav class="md-nav" aria-label="v1.6.22 (2024-05-13)">
9281
+ <ul class="md-nav__list">
9282
+
9283
+ <li class="md-nav__item">
9284
+ <a href="#security_1" class="md-nav__link">
9285
+ <span class="md-ellipsis">
9286
+ Security
9287
+ </span>
9288
+ </a>
9289
+
9290
+ </li>
9291
+
9292
+ <li class="md-nav__item">
9293
+ <a href="#added_1" class="md-nav__link">
9294
+ <span class="md-ellipsis">
9295
+ Added
9296
+ </span>
9297
+ </a>
9298
+
9299
+ </li>
9300
+
9301
+ <li class="md-nav__item">
9302
+ <a href="#fixed" class="md-nav__link">
9303
+ <span class="md-ellipsis">
9304
+ Fixed
9305
+ </span>
9306
+ </a>
9307
+
9308
+ </li>
9309
+
9310
+ </ul>
9311
+ </nav>
9312
+
9313
+ </li>
9314
+
9315
+ <li class="md-nav__item">
9316
+ <a href="#v1621-2024-05-07" class="md-nav__link">
9317
+ <span class="md-ellipsis">
9318
+ v1.6.21 (2024-05-07)
9319
+ </span>
9320
+ </a>
9321
+
9322
+ <nav class="md-nav" aria-label="v1.6.21 (2024-05-07)">
9323
+ <ul class="md-nav__list">
9324
+
9325
+ <li class="md-nav__item">
9326
+ <a href="#security_2" class="md-nav__link">
8938
9327
  <span class="md-ellipsis">
8939
- Python 3.11 Support (#3561)
9328
+ Security
8940
9329
  </span>
8941
9330
  </a>
8942
9331
 
@@ -8946,39 +9335,30 @@
8946
9335
  </nav>
8947
9336
 
8948
9337
  </li>
8949
-
8950
- <li class="md-nav__item">
8951
- <a href="#changed" class="md-nav__link">
9338
+
9339
+ <li class="md-nav__item">
9340
+ <a href="#v1620-2024-04-30" class="md-nav__link">
8952
9341
  <span class="md-ellipsis">
8953
- Changed
9342
+ v1.6.20 (2024-04-30)
8954
9343
  </span>
8955
9344
  </a>
8956
9345
 
8957
- <nav class="md-nav" aria-label="Changed">
9346
+ <nav class="md-nav" aria-label="v1.6.20 (2024-04-30)">
8958
9347
  <ul class="md-nav__list">
8959
9348
 
8960
9349
  <li class="md-nav__item">
8961
- <a href="#additional-hide_restricted_ui-effects-for-unauthenticated-users-3646" class="md-nav__link">
8962
- <span class="md-ellipsis">
8963
- Additional HIDE_RESTRICTED_UI Effects for Unauthenticated Users (#3646)
8964
- </span>
8965
- </a>
8966
-
8967
- </li>
8968
-
8969
- <li class="md-nav__item">
8970
- <a href="#increased-deviceasset_tag-maximum-length-3693" class="md-nav__link">
9350
+ <a href="#security_3" class="md-nav__link">
8971
9351
  <span class="md-ellipsis">
8972
- Increased Device.asset_tag maximum length (#3693)
9352
+ Security
8973
9353
  </span>
8974
9354
  </a>
8975
9355
 
8976
9356
  </li>
8977
9357
 
8978
9358
  <li class="md-nav__item">
8979
- <a href="#changed-default-python-version-for-docker-images-4029" class="md-nav__link">
9359
+ <a href="#fixed_1" class="md-nav__link">
8980
9360
  <span class="md-ellipsis">
8981
- Changed Default Python Version for Docker Images (#4029)
9361
+ Fixed
8982
9362
  </span>
8983
9363
  </a>
8984
9364
 
@@ -8988,28 +9368,32 @@
8988
9368
  </nav>
8989
9369
 
8990
9370
  </li>
8991
-
8992
- <li class="md-nav__item">
8993
- <a href="#removed" class="md-nav__link">
9371
+
9372
+ <li class="md-nav__item">
9373
+ <a href="#v1619-2024-04-23" class="md-nav__link">
8994
9374
  <span class="md-ellipsis">
8995
- Removed
9375
+ v1.6.19 (2024-04-23)
8996
9376
  </span>
8997
9377
  </a>
8998
9378
 
8999
- <nav class="md-nav" aria-label="Removed">
9379
+ <nav class="md-nav" aria-label="v1.6.19 (2024-04-23)">
9000
9380
  <ul class="md-nav__list">
9001
9381
 
9002
9382
  <li class="md-nav__item">
9003
- <a href="#removed-python-37-support-3561" class="md-nav__link">
9383
+ <a href="#security_4" class="md-nav__link">
9004
9384
  <span class="md-ellipsis">
9005
- Removed Python 3.7 Support (#3561)
9385
+ Security
9006
9386
  </span>
9007
9387
  </a>
9008
9388
 
9009
9389
  </li>
9010
9390
 
9011
- </ul>
9012
- </nav>
9391
+ <li class="md-nav__item">
9392
+ <a href="#fixed_2" class="md-nav__link">
9393
+ <span class="md-ellipsis">
9394
+ Fixed
9395
+ </span>
9396
+ </a>
9013
9397
 
9014
9398
  </li>
9015
9399
 
@@ -9029,7 +9413,7 @@
9029
9413
  <ul class="md-nav__list">
9030
9414
 
9031
9415
  <li class="md-nav__item">
9032
- <a href="#security" class="md-nav__link">
9416
+ <a href="#security_5" class="md-nav__link">
9033
9417
  <span class="md-ellipsis">
9034
9418
  Security
9035
9419
  </span>
@@ -9086,7 +9470,7 @@
9086
9470
  <ul class="md-nav__list">
9087
9471
 
9088
9472
  <li class="md-nav__item">
9089
- <a href="#security_1" class="md-nav__link">
9473
+ <a href="#security_6" class="md-nav__link">
9090
9474
  <span class="md-ellipsis">
9091
9475
  Security
9092
9476
  </span>
@@ -9095,7 +9479,7 @@
9095
9479
  </li>
9096
9480
 
9097
9481
  <li class="md-nav__item">
9098
- <a href="#added_1" class="md-nav__link">
9482
+ <a href="#added_2" class="md-nav__link">
9099
9483
  <span class="md-ellipsis">
9100
9484
  Added
9101
9485
  </span>
@@ -9113,7 +9497,7 @@
9113
9497
  </li>
9114
9498
 
9115
9499
  <li class="md-nav__item">
9116
- <a href="#fixed" class="md-nav__link">
9500
+ <a href="#fixed_3" class="md-nav__link">
9117
9501
  <span class="md-ellipsis">
9118
9502
  Fixed
9119
9503
  </span>
@@ -9131,7 +9515,7 @@
9131
9515
  </li>
9132
9516
 
9133
9517
  <li class="md-nav__item">
9134
- <a href="#housekeeping" class="md-nav__link">
9518
+ <a href="#housekeeping_1" class="md-nav__link">
9135
9519
  <span class="md-ellipsis">
9136
9520
  Housekeeping
9137
9521
  </span>
@@ -9155,7 +9539,7 @@
9155
9539
  <ul class="md-nav__list">
9156
9540
 
9157
9541
  <li class="md-nav__item">
9158
- <a href="#added_2" class="md-nav__link">
9542
+ <a href="#added_3" class="md-nav__link">
9159
9543
  <span class="md-ellipsis">
9160
9544
  Added
9161
9545
  </span>
@@ -9164,7 +9548,7 @@
9164
9548
  </li>
9165
9549
 
9166
9550
  <li class="md-nav__item">
9167
- <a href="#fixed_1" class="md-nav__link">
9551
+ <a href="#fixed_4" class="md-nav__link">
9168
9552
  <span class="md-ellipsis">
9169
9553
  Fixed
9170
9554
  </span>
@@ -9173,7 +9557,7 @@
9173
9557
  </li>
9174
9558
 
9175
9559
  <li class="md-nav__item">
9176
- <a href="#housekeeping_1" class="md-nav__link">
9560
+ <a href="#housekeeping_2" class="md-nav__link">
9177
9561
  <span class="md-ellipsis">
9178
9562
  Housekeeping
9179
9563
  </span>
@@ -9197,7 +9581,7 @@
9197
9581
  <ul class="md-nav__list">
9198
9582
 
9199
9583
  <li class="md-nav__item">
9200
- <a href="#fixed_2" class="md-nav__link">
9584
+ <a href="#fixed_5" class="md-nav__link">
9201
9585
  <span class="md-ellipsis">
9202
9586
  Fixed
9203
9587
  </span>
@@ -9221,7 +9605,7 @@
9221
9605
  <ul class="md-nav__list">
9222
9606
 
9223
9607
  <li class="md-nav__item">
9224
- <a href="#added_3" class="md-nav__link">
9608
+ <a href="#added_4" class="md-nav__link">
9225
9609
  <span class="md-ellipsis">
9226
9610
  Added
9227
9611
  </span>
@@ -9230,7 +9614,7 @@
9230
9614
  </li>
9231
9615
 
9232
9616
  <li class="md-nav__item">
9233
- <a href="#added_4" class="md-nav__link">
9617
+ <a href="#added_5" class="md-nav__link">
9234
9618
  <span class="md-ellipsis">
9235
9619
  Added
9236
9620
  </span>
@@ -9239,7 +9623,7 @@
9239
9623
  </li>
9240
9624
 
9241
9625
  <li class="md-nav__item">
9242
- <a href="#fixed_3" class="md-nav__link">
9626
+ <a href="#fixed_6" class="md-nav__link">
9243
9627
  <span class="md-ellipsis">
9244
9628
  Fixed
9245
9629
  </span>
@@ -9272,7 +9656,7 @@
9272
9656
  <ul class="md-nav__list">
9273
9657
 
9274
9658
  <li class="md-nav__item">
9275
- <a href="#added_5" class="md-nav__link">
9659
+ <a href="#added_6" class="md-nav__link">
9276
9660
  <span class="md-ellipsis">
9277
9661
  Added
9278
9662
  </span>
@@ -9281,7 +9665,7 @@
9281
9665
  </li>
9282
9666
 
9283
9667
  <li class="md-nav__item">
9284
- <a href="#security_2" class="md-nav__link">
9668
+ <a href="#security_7" class="md-nav__link">
9285
9669
  <span class="md-ellipsis">
9286
9670
  Security
9287
9671
  </span>
@@ -9299,7 +9683,7 @@
9299
9683
  </li>
9300
9684
 
9301
9685
  <li class="md-nav__item">
9302
- <a href="#fixed_4" class="md-nav__link">
9686
+ <a href="#fixed_7" class="md-nav__link">
9303
9687
  <span class="md-ellipsis">
9304
9688
  Fixed
9305
9689
  </span>
@@ -9323,7 +9707,7 @@
9323
9707
  <ul class="md-nav__list">
9324
9708
 
9325
9709
  <li class="md-nav__item">
9326
- <a href="#security_3" class="md-nav__link">
9710
+ <a href="#security_8" class="md-nav__link">
9327
9711
  <span class="md-ellipsis">
9328
9712
  Security
9329
9713
  </span>
@@ -9332,7 +9716,7 @@
9332
9716
  </li>
9333
9717
 
9334
9718
  <li class="md-nav__item">
9335
- <a href="#added_6" class="md-nav__link">
9719
+ <a href="#added_7" class="md-nav__link">
9336
9720
  <span class="md-ellipsis">
9337
9721
  Added
9338
9722
  </span>
@@ -9341,7 +9725,7 @@
9341
9725
  </li>
9342
9726
 
9343
9727
  <li class="md-nav__item">
9344
- <a href="#fixed_5" class="md-nav__link">
9728
+ <a href="#fixed_8" class="md-nav__link">
9345
9729
  <span class="md-ellipsis">
9346
9730
  Fixed
9347
9731
  </span>
@@ -9365,7 +9749,7 @@
9365
9749
  <ul class="md-nav__list">
9366
9750
 
9367
9751
  <li class="md-nav__item">
9368
- <a href="#security_4" class="md-nav__link">
9752
+ <a href="#security_9" class="md-nav__link">
9369
9753
  <span class="md-ellipsis">
9370
9754
  Security
9371
9755
  </span>
@@ -9374,7 +9758,7 @@
9374
9758
  </li>
9375
9759
 
9376
9760
  <li class="md-nav__item">
9377
- <a href="#added_7" class="md-nav__link">
9761
+ <a href="#added_8" class="md-nav__link">
9378
9762
  <span class="md-ellipsis">
9379
9763
  Added
9380
9764
  </span>
@@ -9416,7 +9800,7 @@
9416
9800
  <ul class="md-nav__list">
9417
9801
 
9418
9802
  <li class="md-nav__item">
9419
- <a href="#fixed_6" class="md-nav__link">
9803
+ <a href="#fixed_9" class="md-nav__link">
9420
9804
  <span class="md-ellipsis">
9421
9805
  Fixed
9422
9806
  </span>
@@ -9440,7 +9824,7 @@
9440
9824
  <ul class="md-nav__list">
9441
9825
 
9442
9826
  <li class="md-nav__item">
9443
- <a href="#security_5" class="md-nav__link">
9827
+ <a href="#security_10" class="md-nav__link">
9444
9828
  <span class="md-ellipsis">
9445
9829
  Security
9446
9830
  </span>
@@ -9449,7 +9833,7 @@
9449
9833
  </li>
9450
9834
 
9451
9835
  <li class="md-nav__item">
9452
- <a href="#added_8" class="md-nav__link">
9836
+ <a href="#added_9" class="md-nav__link">
9453
9837
  <span class="md-ellipsis">
9454
9838
  Added
9455
9839
  </span>
@@ -9467,7 +9851,7 @@
9467
9851
  </li>
9468
9852
 
9469
9853
  <li class="md-nav__item">
9470
- <a href="#fixed_7" class="md-nav__link">
9854
+ <a href="#fixed_10" class="md-nav__link">
9471
9855
  <span class="md-ellipsis">
9472
9856
  Fixed
9473
9857
  </span>
@@ -9476,7 +9860,7 @@
9476
9860
  </li>
9477
9861
 
9478
9862
  <li class="md-nav__item">
9479
- <a href="#housekeeping_2" class="md-nav__link">
9863
+ <a href="#housekeeping_3" class="md-nav__link">
9480
9864
  <span class="md-ellipsis">
9481
9865
  Housekeeping
9482
9866
  </span>
@@ -9500,7 +9884,7 @@
9500
9884
  <ul class="md-nav__list">
9501
9885
 
9502
9886
  <li class="md-nav__item">
9503
- <a href="#security_6" class="md-nav__link">
9887
+ <a href="#security_11" class="md-nav__link">
9504
9888
  <span class="md-ellipsis">
9505
9889
  Security
9506
9890
  </span>
@@ -9509,7 +9893,7 @@
9509
9893
  </li>
9510
9894
 
9511
9895
  <li class="md-nav__item">
9512
- <a href="#added_9" class="md-nav__link">
9896
+ <a href="#added_10" class="md-nav__link">
9513
9897
  <span class="md-ellipsis">
9514
9898
  Added
9515
9899
  </span>
@@ -9527,7 +9911,7 @@
9527
9911
  </li>
9528
9912
 
9529
9913
  <li class="md-nav__item">
9530
- <a href="#fixed_8" class="md-nav__link">
9914
+ <a href="#fixed_11" class="md-nav__link">
9531
9915
  <span class="md-ellipsis">
9532
9916
  Fixed
9533
9917
  </span>
@@ -9551,7 +9935,7 @@
9551
9935
  <ul class="md-nav__list">
9552
9936
 
9553
9937
  <li class="md-nav__item">
9554
- <a href="#security_7" class="md-nav__link">
9938
+ <a href="#security_12" class="md-nav__link">
9555
9939
  <span class="md-ellipsis">
9556
9940
  Security
9557
9941
  </span>
@@ -9569,7 +9953,7 @@
9569
9953
  </li>
9570
9954
 
9571
9955
  <li class="md-nav__item">
9572
- <a href="#fixed_9" class="md-nav__link">
9956
+ <a href="#fixed_12" class="md-nav__link">
9573
9957
  <span class="md-ellipsis">
9574
9958
  Fixed
9575
9959
  </span>
@@ -9587,7 +9971,7 @@
9587
9971
  </li>
9588
9972
 
9589
9973
  <li class="md-nav__item">
9590
- <a href="#housekeeping_3" class="md-nav__link">
9974
+ <a href="#housekeeping_4" class="md-nav__link">
9591
9975
  <span class="md-ellipsis">
9592
9976
  Housekeeping
9593
9977
  </span>
@@ -9611,7 +9995,7 @@
9611
9995
  <ul class="md-nav__list">
9612
9996
 
9613
9997
  <li class="md-nav__item">
9614
- <a href="#security_8" class="md-nav__link">
9998
+ <a href="#security_13" class="md-nav__link">
9615
9999
  <span class="md-ellipsis">
9616
10000
  Security
9617
10001
  </span>
@@ -9620,7 +10004,7 @@
9620
10004
  </li>
9621
10005
 
9622
10006
  <li class="md-nav__item">
9623
- <a href="#added_10" class="md-nav__link">
10007
+ <a href="#added_11" class="md-nav__link">
9624
10008
  <span class="md-ellipsis">
9625
10009
  Added
9626
10010
  </span>
@@ -9629,7 +10013,7 @@
9629
10013
  </li>
9630
10014
 
9631
10015
  <li class="md-nav__item">
9632
- <a href="#fixed_10" class="md-nav__link">
10016
+ <a href="#fixed_13" class="md-nav__link">
9633
10017
  <span class="md-ellipsis">
9634
10018
  Fixed
9635
10019
  </span>
@@ -9647,7 +10031,7 @@
9647
10031
  </li>
9648
10032
 
9649
10033
  <li class="md-nav__item">
9650
- <a href="#housekeeping_4" class="md-nav__link">
10034
+ <a href="#housekeeping_5" class="md-nav__link">
9651
10035
  <span class="md-ellipsis">
9652
10036
  Housekeeping
9653
10037
  </span>
@@ -9671,7 +10055,7 @@
9671
10055
  <ul class="md-nav__list">
9672
10056
 
9673
10057
  <li class="md-nav__item">
9674
- <a href="#added_11" class="md-nav__link">
10058
+ <a href="#added_12" class="md-nav__link">
9675
10059
  <span class="md-ellipsis">
9676
10060
  Added
9677
10061
  </span>
@@ -9698,7 +10082,7 @@
9698
10082
  </li>
9699
10083
 
9700
10084
  <li class="md-nav__item">
9701
- <a href="#housekeeping_5" class="md-nav__link">
10085
+ <a href="#housekeeping_6" class="md-nav__link">
9702
10086
  <span class="md-ellipsis">
9703
10087
  Housekeeping
9704
10088
  </span>
@@ -9722,7 +10106,7 @@
9722
10106
  <ul class="md-nav__list">
9723
10107
 
9724
10108
  <li class="md-nav__item">
9725
- <a href="#security_9" class="md-nav__link">
10109
+ <a href="#security_14" class="md-nav__link">
9726
10110
  <span class="md-ellipsis">
9727
10111
  Security
9728
10112
  </span>
@@ -9731,7 +10115,7 @@
9731
10115
  </li>
9732
10116
 
9733
10117
  <li class="md-nav__item">
9734
- <a href="#added_12" class="md-nav__link">
10118
+ <a href="#added_13" class="md-nav__link">
9735
10119
  <span class="md-ellipsis">
9736
10120
  Added
9737
10121
  </span>
@@ -9740,7 +10124,7 @@
9740
10124
  </li>
9741
10125
 
9742
10126
  <li class="md-nav__item">
9743
- <a href="#fixed_11" class="md-nav__link">
10127
+ <a href="#fixed_14" class="md-nav__link">
9744
10128
  <span class="md-ellipsis">
9745
10129
  Fixed
9746
10130
  </span>
@@ -9749,7 +10133,7 @@
9749
10133
  </li>
9750
10134
 
9751
10135
  <li class="md-nav__item">
9752
- <a href="#housekeeping_6" class="md-nav__link">
10136
+ <a href="#housekeeping_7" class="md-nav__link">
9753
10137
  <span class="md-ellipsis">
9754
10138
  Housekeeping
9755
10139
  </span>
@@ -9773,7 +10157,7 @@
9773
10157
  <ul class="md-nav__list">
9774
10158
 
9775
10159
  <li class="md-nav__item">
9776
- <a href="#added_13" class="md-nav__link">
10160
+ <a href="#added_14" class="md-nav__link">
9777
10161
  <span class="md-ellipsis">
9778
10162
  Added
9779
10163
  </span>
@@ -9791,7 +10175,7 @@
9791
10175
  </li>
9792
10176
 
9793
10177
  <li class="md-nav__item">
9794
- <a href="#fixed_12" class="md-nav__link">
10178
+ <a href="#fixed_15" class="md-nav__link">
9795
10179
  <span class="md-ellipsis">
9796
10180
  Fixed
9797
10181
  </span>
@@ -9809,7 +10193,7 @@
9809
10193
  </li>
9810
10194
 
9811
10195
  <li class="md-nav__item">
9812
- <a href="#housekeeping_7" class="md-nav__link">
10196
+ <a href="#housekeeping_8" class="md-nav__link">
9813
10197
  <span class="md-ellipsis">
9814
10198
  Housekeeping
9815
10199
  </span>
@@ -9842,7 +10226,7 @@
9842
10226
  </li>
9843
10227
 
9844
10228
  <li class="md-nav__item">
9845
- <a href="#fixed_13" class="md-nav__link">
10229
+ <a href="#fixed_16" class="md-nav__link">
9846
10230
  <span class="md-ellipsis">
9847
10231
  Fixed
9848
10232
  </span>
@@ -9860,7 +10244,7 @@
9860
10244
  </li>
9861
10245
 
9862
10246
  <li class="md-nav__item">
9863
- <a href="#housekeeping_8" class="md-nav__link">
10247
+ <a href="#housekeeping_9" class="md-nav__link">
9864
10248
  <span class="md-ellipsis">
9865
10249
  Housekeeping
9866
10250
  </span>
@@ -9884,7 +10268,7 @@
9884
10268
  <ul class="md-nav__list">
9885
10269
 
9886
10270
  <li class="md-nav__item">
9887
- <a href="#added_14" class="md-nav__link">
10271
+ <a href="#added_15" class="md-nav__link">
9888
10272
  <span class="md-ellipsis">
9889
10273
  Added
9890
10274
  </span>
@@ -9893,7 +10277,7 @@
9893
10277
  </li>
9894
10278
 
9895
10279
  <li class="md-nav__item">
9896
- <a href="#fixed_14" class="md-nav__link">
10280
+ <a href="#fixed_17" class="md-nav__link">
9897
10281
  <span class="md-ellipsis">
9898
10282
  Fixed
9899
10283
  </span>
@@ -9935,7 +10319,7 @@
9935
10319
  <ul class="md-nav__list">
9936
10320
 
9937
10321
  <li class="md-nav__item">
9938
- <a href="#added_15" class="md-nav__link">
10322
+ <a href="#added_16" class="md-nav__link">
9939
10323
  <span class="md-ellipsis">
9940
10324
  Added
9941
10325
  </span>
@@ -9962,7 +10346,7 @@
9962
10346
  </li>
9963
10347
 
9964
10348
  <li class="md-nav__item">
9965
- <a href="#fixed_15" class="md-nav__link">
10349
+ <a href="#fixed_18" class="md-nav__link">
9966
10350
  <span class="md-ellipsis">
9967
10351
  Fixed
9968
10352
  </span>
@@ -10054,9 +10438,59 @@
10054
10438
  <h4 id="removed-python-37-support-3561">Removed Python 3.7 Support (<a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a>)<a class="headerlink" href="#removed-python-37-support-3561" title="Permanent link">&para;</a></h4>
10055
10439
  <p>As Python 3.7 has reached end-of-life, Nautobot 1.6 and later do not support installation or operation under Python 3.7.</p>
10056
10440
  <!-- towncrier release notes start -->
10057
- <h2 id="v1618-2024-04-15">v1.6.18 (2024-04-15)<a class="headerlink" href="#v1618-2024-04-15" title="Permanent link">&para;</a></h2>
10441
+ <h2 id="v1623-2024-05-28">v1.6.23 (2024-05-28)<a class="headerlink" href="#v1623-2024-05-28" title="Permanent link">&para;</a></h2>
10058
10442
  <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
10059
10443
  <ul>
10444
+ <li><a href="https://github.com/nautobot/nautobot/issues/5762">#5762</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>
10445
+ <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>
10446
+ </ul>
10447
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10448
+ <ul>
10449
+ <li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
10450
+ </ul>
10451
+ <h2 id="v1622-2024-05-13">v1.6.22 (2024-05-13)<a class="headerlink" href="#v1622-2024-05-13" title="Permanent link">&para;</a></h2>
10452
+ <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
10453
+ <ul>
10454
+ <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>
10455
+ </ul>
10456
+ <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
10457
+ <ul>
10458
+ <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>
10459
+ <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>
10460
+ </ul>
10461
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10462
+ <ul>
10463
+ <li><a href="https://github.com/nautobot/nautobot/issues/2974">#2974</a> - Fixed an error when deleting and then recreating a GitRepository that provides Jobs.</li>
10464
+ </ul>
10465
+ <h2 id="v1621-2024-05-07">v1.6.21 (2024-05-07)<a class="headerlink" href="#v1621-2024-05-07" title="Permanent link">&para;</a></h2>
10466
+ <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
10467
+ <ul>
10468
+ <li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
10469
+ <li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to <code>3.7</code> due to <code>CVE-2024-3651</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
10470
+ <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>
10471
+ <li><a href="https://github.com/nautobot/nautobot/issues/5675">#5675</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
10472
+ </ul>
10473
+ <h2 id="v1620-2024-04-30">v1.6.20 (2024-04-30)<a class="headerlink" href="#v1620-2024-04-30" title="Permanent link">&para;</a></h2>
10474
+ <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
10475
+ <ul>
10476
+ <li><a href="https://github.com/nautobot/nautobot/issues/5647">#5647</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>
10477
+ </ul>
10478
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10479
+ <ul>
10480
+ <li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Increased performance of <code>brief=true</code> in API endpoints by eliminating unnecessary database joins.</li>
10481
+ </ul>
10482
+ <h2 id="v1619-2024-04-23">v1.6.19 (2024-04-23)<a class="headerlink" href="#v1619-2024-04-23" title="Permanent link">&para;</a></h2>
10483
+ <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
10484
+ <ul>
10485
+ <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>
10486
+ </ul>
10487
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10488
+ <ul>
10489
+ <li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Fixed static media failure on <code>/graphql/</code> and <code>/admin/</code> pages.</li>
10490
+ </ul>
10491
+ <h2 id="v1618-2024-04-15">v1.6.18 (2024-04-15)<a class="headerlink" href="#v1618-2024-04-15" title="Permanent link">&para;</a></h2>
10492
+ <h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">&para;</a></h3>
10493
+ <ul>
10060
10494
  <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>
10061
10495
  </ul>
10062
10496
  <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
@@ -10070,7 +10504,7 @@
10070
10504
  <li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed <code>jsonschema</code> version constraint from <code>&gt;=4.7.0,&lt;4.18.0</code> to <code>^4.7.0</code>.</li>
10071
10505
  </ul>
10072
10506
  <h2 id="v1616-2024-03-25">v1.6.16 (2024-03-25)<a class="headerlink" href="#v1616-2024-03-25" title="Permanent link">&para;</a></h2>
10073
- <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
10507
+ <h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">&para;</a></h3>
10074
10508
  <ul>
10075
10509
  <li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
10076
10510
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/&lt;uuid:pk&gt;/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
@@ -10082,7 +10516,7 @@
10082
10516
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/&lt;uuid&gt;/dynamic-groups/</code>, <code>/dcim/devices/&lt;uuid&gt;/dynamic-groups/</code>, <code>/ipam/prefixes/&lt;uuid&gt;/dynamic-groups/</code>, <code>/ipam/ip-addresses/&lt;uuid&gt;/dynamic-groups/</code>, <code>/virtualization/clusters/&lt;uuid&gt;/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/&lt;uuid&gt;/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10083
10517
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/&lt;str:provider_slug&gt;/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10084
10518
  </ul>
10085
- <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
10519
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10086
10520
  <ul>
10087
10521
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
10088
10522
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
@@ -10093,7 +10527,7 @@
10093
10527
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication by default on the <code>nautobot.core.api.AuthenticatedAPIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
10094
10528
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access <code>/api/docs/</code> and <code>/graphql/</code> even when <code>HIDE_RESTRICTED_UI</code> is False.</li>
10095
10529
  </ul>
10096
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10530
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10097
10531
  <ul>
10098
10532
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Fixed a 500 error when accessing any of the <code>/dcim/&lt;port-type&gt;/&lt;uuid&gt;/connect/&lt;termination_b_type&gt;/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
10099
10533
  </ul>
@@ -10101,38 +10535,38 @@
10101
10535
  <ul>
10102
10536
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
10103
10537
  </ul>
10104
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10538
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10105
10539
  <ul>
10106
10540
  <li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
10107
10541
  </ul>
10108
10542
  <h2 id="v1615-2024-03-18">v1.6.15 (2024-03-18)<a class="headerlink" href="#v1615-2024-03-18" title="Permanent link">&para;</a></h2>
10109
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10543
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10110
10544
  <ul>
10111
10545
  <li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
10112
10546
  <li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
10113
10547
  </ul>
10114
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10548
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10115
10549
  <ul>
10116
10550
  <li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
10117
10551
  <li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
10118
10552
  </ul>
10119
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10553
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10120
10554
  <ul>
10121
10555
  <li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
10122
10556
  <li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
10123
10557
  </ul>
10124
10558
  <h2 id="v1614-2024-03-05">v1.6.14 (2024-03-05)<a class="headerlink" href="#v1614-2024-03-05" title="Permanent link">&para;</a></h2>
10125
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10559
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10126
10560
  <ul>
10127
10561
  <li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
10128
10562
  </ul>
10129
10563
  <h2 id="v1613-2024-03-04">v1.6.13 (2024-03-04)<a class="headerlink" href="#v1613-2024-03-04" title="Permanent link">&para;</a></h2>
10130
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10131
10564
  <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10565
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10132
10566
  <ul>
10133
10567
  <li><a href="https://github.com/nautobot/nautobot/issues/4247">#4247</a> - Added a check to the <code>nautobot-server pre_migrate</code> command to identify Interfaces and VMInterfaces with multiple VRFs through IPAddress relationships.</li>
10134
10568
  </ul>
10135
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10569
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10136
10570
  <ul>
10137
10571
  <li><a href="https://github.com/nautobot/nautobot/issues/5307">#5307</a> - Fixed Custom Field form field(s) missing from git repository edit form.</li>
10138
10572
  <li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
@@ -10144,11 +10578,11 @@
10144
10578
  <li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
10145
10579
  </ul>
10146
10580
  <h2 id="v1612-2024-02-20">v1.6.12 (2024-02-20)<a class="headerlink" href="#v1612-2024-02-20" title="Permanent link">&para;</a></h2>
10147
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10581
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10148
10582
  <ul>
10149
10583
  <li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
10150
10584
  </ul>
10151
- <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
10585
+ <h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">&para;</a></h3>
10152
10586
  <ul>
10153
10587
  <li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
10154
10588
  </ul>
@@ -10157,32 +10591,32 @@
10157
10591
  <li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
10158
10592
  <li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
10159
10593
  </ul>
10160
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10594
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10161
10595
  <ul>
10162
10596
  <li><a href="https://github.com/nautobot/nautobot/issues/5253">#5253</a> - Fixed issue with Job Button Groups displaying when Conditional Rendering should remove the button.</li>
10163
10597
  <li><a href="https://github.com/nautobot/nautobot/issues/5261">#5261</a> - Fixed a regression introduced in v1.6.8 where Job Buttons would always run with <code>commit=False</code>.</li>
10164
10598
  </ul>
10165
10599
  <h2 id="v1611-2024-02-05">v1.6.11 (2024-02-05)<a class="headerlink" href="#v1611-2024-02-05" title="Permanent link">&para;</a></h2>
10166
- <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
10600
+ <h3 id="security_8">Security<a class="headerlink" href="#security_8" title="Permanent link">&para;</a></h3>
10167
10601
  <ul>
10168
10602
  <li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
10169
10603
  </ul>
10170
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
10604
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10171
10605
  <ul>
10172
10606
  <li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
10173
10607
  </ul>
10174
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10608
+ <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10175
10609
  <ul>
10176
10610
  <li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
10177
10611
  <li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
10178
10612
  </ul>
10179
10613
  <h2 id="v1610-2024-01-22">v1.6.10 (2024-01-22)<a class="headerlink" href="#v1610-2024-01-22" title="Permanent link">&para;</a></h2>
10180
- <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
10614
+ <h3 id="security_9">Security<a class="headerlink" href="#security_9" title="Permanent link">&para;</a></h3>
10181
10615
  <ul>
10182
10616
  <li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
10183
10617
  <li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
10184
10618
  </ul>
10185
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
10619
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10186
10620
  <ul>
10187
10621
  <li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
10188
10622
  </ul>
@@ -10197,19 +10631,19 @@
10197
10631
  <li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
10198
10632
  </ul>
10199
10633
  <h2 id="v169-2024-01-08">v1.6.9 (2024-01-08)<a class="headerlink" href="#v169-2024-01-08" title="Permanent link">&para;</a></h2>
10200
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
10634
+ <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10201
10635
  <ul>
10202
10636
  <li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
10203
10637
  </ul>
10204
10638
  <h2 id="v168-2023-12-21">v1.6.8 (2023-12-21)<a class="headerlink" href="#v168-2023-12-21" title="Permanent link">&para;</a></h2>
10205
- <h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">&para;</a></h3>
10639
+ <h3 id="security_10">Security<a class="headerlink" href="#security_10" title="Permanent link">&para;</a></h3>
10206
10640
  <ul>
10207
10641
  <li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>41.0.7</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
10208
10642
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
10209
10643
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
10210
10644
  <li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
10211
10645
  </ul>
10212
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10646
+ <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
10213
10647
  <ul>
10214
10648
  <li><a href="https://github.com/nautobot/nautobot/issues/4965">#4965</a> - Added MMF OM5 cable type to cable type choices.</li>
10215
10649
  </ul>
@@ -10217,20 +10651,20 @@
10217
10651
  <ul>
10218
10652
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/&lt;uuid&gt;/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/&lt;uuid&gt;/run/</code> endpoint like any other job.</li>
10219
10653
  </ul>
10220
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
10654
+ <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
10221
10655
  <ul>
10222
10656
  <li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
10223
10657
  </ul>
10224
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10658
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10225
10659
  <ul>
10226
10660
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
10227
10661
  </ul>
10228
10662
  <h2 id="v167-2023-12-12">v1.6.7 (2023-12-12)<a class="headerlink" href="#v167-2023-12-12" title="Permanent link">&para;</a></h2>
10229
- <h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">&para;</a></h3>
10663
+ <h3 id="security_11">Security<a class="headerlink" href="#security_11" title="Permanent link">&para;</a></h3>
10230
10664
  <ul>
10231
10665
  <li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
10232
10666
  </ul>
10233
- <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
10667
+ <h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">&para;</a></h3>
10234
10668
  <ul>
10235
10669
  <li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
10236
10670
  </ul>
@@ -10239,14 +10673,14 @@
10239
10673
  <li><a href="https://github.com/nautobot/nautobot/issues/4797">#4797</a> - Removed erroneous <code>custom_fields</code> decorator from InterfaceRedundancyGroupAssociation as it's not a supported feature for this model.</li>
10240
10674
  <li><a href="https://github.com/nautobot/nautobot/issues/4857">#4857</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
10241
10675
  </ul>
10242
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
10676
+ <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
10243
10677
  <ul>
10244
10678
  <li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
10245
10679
  <li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
10246
10680
  <li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
10247
10681
  </ul>
10248
10682
  <h2 id="v166-2023-11-21">v1.6.6 (2023-11-21)<a class="headerlink" href="#v166-2023-11-21" title="Permanent link">&para;</a></h2>
10249
- <h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">&para;</a></h3>
10683
+ <h3 id="security_12">Security<a class="headerlink" href="#security_12" title="Permanent link">&para;</a></h3>
10250
10684
  <ul>
10251
10685
  <li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
10252
10686
  </ul>
@@ -10254,7 +10688,7 @@
10254
10688
  <ul>
10255
10689
  <li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
10256
10690
  </ul>
10257
- <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10691
+ <h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">&para;</a></h3>
10258
10692
  <ul>
10259
10693
  <li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Fixed the error that occurred when fetching the API response for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort.</li>
10260
10694
  <li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 69 MB to 29 MB.</li>
@@ -10263,22 +10697,22 @@
10263
10697
  <ul>
10264
10698
  <li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
10265
10699
  </ul>
10266
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10700
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10267
10701
  <ul>
10268
10702
  <li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
10269
10703
  <li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
10270
10704
  </ul>
10271
10705
  <h2 id="v165-2023-11-13">v1.6.5 (2023-11-13)<a class="headerlink" href="#v165-2023-11-13" title="Permanent link">&para;</a></h2>
10272
- <h3 id="security_8">Security<a class="headerlink" href="#security_8" title="Permanent link">&para;</a></h3>
10706
+ <h3 id="security_13">Security<a class="headerlink" href="#security_13" title="Permanent link">&para;</a></h3>
10273
10707
  <ul>
10274
10708
  <li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
10275
10709
  <li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
10276
10710
  </ul>
10277
- <h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">&para;</a></h3>
10711
+ <h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">&para;</a></h3>
10278
10712
  <ul>
10279
10713
  <li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
10280
10714
  </ul>
10281
- <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
10715
+ <h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">&para;</a></h3>
10282
10716
  <ul>
10283
10717
  <li><a href="https://github.com/nautobot/nautobot/issues/4645">#4645</a> - Fixed a bug where the <code>failover-strategy</code> field was required for the device redundancy group API.</li>
10284
10718
  <li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
@@ -10290,12 +10724,12 @@
10290
10724
  <ul>
10291
10725
  <li><a href="https://github.com/nautobot/nautobot/issues/4700">#4700</a> - Removed incorrect <code>NAUTOBOT_DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> environment variable reference from settings documentation.</li>
10292
10726
  </ul>
10293
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
10727
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10294
10728
  <ul>
10295
10729
  <li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Renamed <code>ltm/1.6</code> branch to <code>ltm-1.6</code>.</li>
10296
10730
  </ul>
10297
10731
  <h2 id="v164-2023-10-17">v1.6.4 (2023-10-17)<a class="headerlink" href="#v164-2023-10-17" title="Permanent link">&para;</a></h2>
10298
- <h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">&para;</a></h3>
10732
+ <h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">&para;</a></h3>
10299
10733
  <ul>
10300
10734
  <li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
10301
10735
  <li><a href="https://github.com/nautobot/nautobot/issues/4573">#4573</a> - Added caching for <code>display</code> property of <code>Location</code> and <code>LocationType</code>, mitigating duplicated SQL queries in the related API views.</li>
@@ -10308,30 +10742,30 @@
10308
10742
  <ul>
10309
10743
  <li><a href="https://github.com/nautobot/nautobot/issues/4595">#4595</a> - Removed <code>stable</code> tagging for container builds in LTM release workflow.</li>
10310
10744
  </ul>
10311
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
10745
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10312
10746
  <ul>
10313
10747
  <li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
10314
10748
  </ul>
10315
10749
  <h2 id="v163-2023-10-03">v1.6.3 (2023-10-03)<a class="headerlink" href="#v163-2023-10-03" title="Permanent link">&para;</a></h2>
10316
- <h3 id="security_9">Security<a class="headerlink" href="#security_9" title="Permanent link">&para;</a></h3>
10750
+ <h3 id="security_14">Security<a class="headerlink" href="#security_14" title="Permanent link">&para;</a></h3>
10317
10751
  <ul>
10318
10752
  <li><a href="https://github.com/nautobot/nautobot/issues/4446">#4446</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
10319
10753
  </ul>
10320
- <h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">&para;</a></h3>
10754
+ <h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">&para;</a></h3>
10321
10755
  <ul>
10322
10756
  <li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to <code>pre_migrate</code> management command.</li>
10323
10757
  </ul>
10324
- <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
10758
+ <h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">&para;</a></h3>
10325
10759
  <ul>
10326
10760
  <li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
10327
10761
  </ul>
10328
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10762
+ <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10329
10763
  <ul>
10330
10764
  <li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Fixed <code>release.yml</code> and <code>pre-release.yml</code> workflow files to target <code>ci_integration.yml</code> in its own branch.</li>
10331
10765
  <li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Enforced changelog requirement in <code>ci_pullrequest.yml</code> for <code>ltm/1.6</code>.</li>
10332
10766
  </ul>
10333
10767
  <h2 id="v162-2023-09-01">v1.6.2 (2023-09-01)<a class="headerlink" href="#v162-2023-09-01" title="Permanent link">&para;</a></h2>
10334
- <h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">&para;</a></h3>
10768
+ <h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">&para;</a></h3>
10335
10769
  <ul>
10336
10770
  <li><a href="https://github.com/nautobot/nautobot/issues/3913">#3913</a> - Added <code>url</code> field to GraphQL objects.</li>
10337
10771
  <li><a href="https://github.com/nautobot/nautobot/issues/4316">#4316</a> - Added management command <code>nautobot-server populate_platform_network_driver</code> to help update the <code>Platform.network_driver</code> field in bulk.</li>
@@ -10343,7 +10777,7 @@
10343
10777
  <li><a href="https://github.com/nautobot/nautobot/issues/4216">#4216</a> - Changed the rendering of <code>TagFilterField</code> to prevent very slow rendering of pages when large numbers of tags are defined.</li>
10344
10778
  <li><a href="https://github.com/nautobot/nautobot/issues/4217">#4217</a> - Added a restriction that two Git repositories with the same <code>remote_url</code> cannot overlap in their <code>provided_contents</code>, as such cases are highly likely to introduce data conflicts.</li>
10345
10779
  </ul>
10346
- <h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">&para;</a></h3>
10780
+ <h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">&para;</a></h3>
10347
10781
  <ul>
10348
10782
  <li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed a ValueError when editing an existing DynamicGroup that has invalid <code>filter</code> data.</li>
10349
10783
  <li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed <code>DynamicGroup.clean_fields()</code> so that it will respect an <code>exclude=["filter"]</code> kwarg by not validating the <code>filter</code> field.</li>
@@ -10354,7 +10788,7 @@
10354
10788
  <li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
10355
10789
  <li><a href="https://github.com/nautobot/nautobot/issues/4201">#4201</a> - Added docs for <code>InterfaceRedundancyGroup</code>.</li>
10356
10790
  </ul>
10357
- <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10791
+ <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
10358
10792
  <ul>
10359
10793
  <li><a href="https://github.com/nautobot/nautobot/issues/4317">#4317</a> - Added tests for GraphQL url field.</li>
10360
10794
  <li><a href="https://github.com/nautobot/nautobot/issues/4331">#4331</a> - Added a "housekeeping" subsection to the release-notes via <code>towncrier</code>.</li>
@@ -10364,7 +10798,7 @@
10364
10798
  <ul>
10365
10799
  <li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
10366
10800
  </ul>
10367
- <h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">&para;</a></h3>
10801
+ <h3 id="fixed_16">Fixed<a class="headerlink" href="#fixed_16" title="Permanent link">&para;</a></h3>
10368
10802
  <ul>
10369
10803
  <li><a href="https://github.com/nautobot/nautobot/issues/4093">#4093</a> - Fixed dependencies required for saml support missing in final docker image.</li>
10370
10804
  <li><a href="https://github.com/nautobot/nautobot/issues/4149">#4149</a> - Fixed a bug that prevented renaming a <code>Rack</code> if it contained any devices whose names were not globally unique.</li>
@@ -10376,18 +10810,18 @@
10376
10810
  <li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Updated docs at <code>nautobot/docs/installation/nautobot.md</code> and <code>nautobot/docs/installation/http-server.md</code> to adopt tabbed interfaces.</li>
10377
10811
  <li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
10378
10812
  </ul>
10379
- <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
10813
+ <h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">&para;</a></h3>
10380
10814
  <ul>
10381
10815
  <li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
10382
10816
  <li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
10383
10817
  <li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed <code>development/nautobot_config.py</code> to disable installation metrics for developer environments by default.</li>
10384
10818
  </ul>
10385
10819
  <h2 id="v160-2023-08-08">v1.6.0 (2023-08-08)<a class="headerlink" href="#v160-2023-08-08" title="Permanent link">&para;</a></h2>
10386
- <h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">&para;</a></h3>
10820
+ <h3 id="added_15">Added<a class="headerlink" href="#added_15" title="Permanent link">&para;</a></h3>
10387
10821
  <ul>
10388
10822
  <li><a href="https://github.com/nautobot/nautobot/issues/4169">#4169</a> - Added environment variable <code>NAUTOBOT_SESSION_EXPIRE_AT_BROWSER_CLOSE</code> to set the <code>SESSION_EXPIRE_AT_BROWSER_CLOSE</code> Django setting which expires session cookies when the user closes their browser.</li>
10389
10823
  </ul>
10390
- <h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">&para;</a></h3>
10824
+ <h3 id="fixed_17">Fixed<a class="headerlink" href="#fixed_17" title="Permanent link">&para;</a></h3>
10391
10825
  <ul>
10392
10826
  <li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added error handling in <code>JobResult.log()</code> for the case where an object's <code>get_absolute_url()</code> raises an exception.</li>
10393
10827
  <li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added missing <code>get_absolute_url()</code> implementation on <code>CustomFieldChoice</code> model.</li>
@@ -10409,7 +10843,7 @@
10409
10843
  <li><a href="https://github.com/nautobot/nautobot/issues/4184">#4184</a> - Added documentation detailing rack power utilization calculation.</li>
10410
10844
  </ul>
10411
10845
  <h2 id="v160-rc1-2023-08-02">v1.6.0-rc.1 (2023-08-02)<a class="headerlink" href="#v160-rc1-2023-08-02" title="Permanent link">&para;</a></h2>
10412
- <h3 id="added_15">Added<a class="headerlink" href="#added_15" title="Permanent link">&para;</a></h3>
10846
+ <h3 id="added_16">Added<a class="headerlink" href="#added_16" title="Permanent link">&para;</a></h3>
10413
10847
  <ul>
10414
10848
  <li><a href="https://github.com/nautobot/nautobot/issues/2825">#2825</a> - Added InterfaceRedundancyGroup and related views, forms, filtersets and table.</li>
10415
10849
  <li><a href="https://github.com/nautobot/nautobot/issues/3269">#3269</a> - Added ability to cache <code>DynamicGroup</code> memberships in Redis to improve reverse lookup performance.</li>
@@ -10437,7 +10871,7 @@
10437
10871
  <li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>importlib-metadata</code>.</li>
10438
10872
  <li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>pycryptodome</code> as Nautobot does not currently use this library and hasn't for some time.</li>
10439
10873
  </ul>
10440
- <h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">&para;</a></h3>
10874
+ <h3 id="fixed_18">Fixed<a class="headerlink" href="#fixed_18" title="Permanent link">&para;</a></h3>
10441
10875
  <ul>
10442
10876
  <li><a href="https://github.com/nautobot/nautobot/issues/4178">#4178</a> - Fixed JSON serialization of overloaded/non-default FilterForm fields on Dynamic Groups.</li>
10443
10877
  </ul>
@@ -10495,6 +10929,8 @@
10495
10929
  </div>
10496
10930
 
10497
10931
 
10932
+ <script>var tabs=__md_get("__tabs");if(Array.isArray(tabs))e:for(var set of document.querySelectorAll(".tabbed-set")){var tab,labels=set.querySelector(".tabbed-labels");for(tab of tabs)for(var label of labels.getElementsByTagName("label"))if(label.innerText.trim()===tab){var input=document.getElementById(label.htmlFor);input.checked=!0;continue e}}</script>
10933
+
10498
10934
  <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
10499
10935
  </div>
10500
10936
 
@@ -10572,7 +11008,7 @@
10572
11008
 
10573
11009
 
10574
11010
  <a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
10575
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64zm0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0zm32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>
11011
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64zm0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0zm32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>
10576
11012
  </a>
10577
11013
 
10578
11014
 
@@ -10580,7 +11016,7 @@
10580
11016
 
10581
11017
 
10582
11018
  <a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
10583
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
11019
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
10584
11020
  </a>
10585
11021
 
10586
11022
 
@@ -10588,7 +11024,7 @@
10588
11024
 
10589
11025
 
10590
11026
  <a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
10591
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z"/></svg>
11027
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z"/></svg>
10592
11028
  </a>
10593
11029
 
10594
11030
 
@@ -10596,7 +11032,7 @@
10596
11032
 
10597
11033
 
10598
11034
  <a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
10599
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
11035
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
10600
11036
  </a>
10601
11037
 
10602
11038
 
@@ -10604,7 +11040,7 @@
10604
11040
 
10605
11041
 
10606
11042
  <a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
10607
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
11043
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
10608
11044
  </a>
10609
11045
 
10610
11046
  </div>
@@ -10619,10 +11055,10 @@
10619
11055
  </div>
10620
11056
 
10621
11057
 
10622
- <script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.b8dbb3d2.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>
11058
+ <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.b8dbb3d2.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>
10623
11059
 
10624
11060
 
10625
- <script src="../assets/javascripts/bundle.bd41221c.min.js"></script>
11061
+ <script src="../assets/javascripts/bundle.ebd0bdb7.min.js"></script>
10626
11062
 
10627
11063
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
10628
11064