nautobot 2.2.0b1__py3-none-any.whl → 2.2.2__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 (429) hide show
  1. nautobot/__init__.py +31 -0
  2. nautobot/apps/api.py +1 -2
  3. nautobot/apps/utils.py +4 -0
  4. nautobot/apps/views.py +2 -0
  5. nautobot/circuits/api/urls.py +1 -2
  6. nautobot/circuits/api/views.py +0 -12
  7. nautobot/circuits/apps.py +1 -1
  8. nautobot/circuits/tests/test_filters.py +1 -1
  9. nautobot/core/api/routers.py +50 -3
  10. nautobot/core/api/utils.py +4 -0
  11. nautobot/core/api/views.py +21 -15
  12. nautobot/core/cli/__init__.py +18 -11
  13. nautobot/core/constants.py +85 -0
  14. nautobot/core/filters.py +7 -1
  15. nautobot/core/forms/widgets.py +1 -2
  16. nautobot/core/graphql/schema.py +1 -0
  17. nautobot/core/management/commands/generate_test_data.py +4 -4
  18. nautobot/core/models/__init__.py +1 -0
  19. nautobot/core/settings.py +24 -3
  20. nautobot/core/settings.yaml +20 -0
  21. nautobot/core/signals.py +1 -0
  22. nautobot/core/tables.py +2 -1
  23. nautobot/core/templates/admin/base.html +23 -94
  24. nautobot/core/templates/generic/object_retrieve.html +2 -2
  25. nautobot/core/templates/graphene/graphiql.html +18 -47
  26. nautobot/core/templates/inc/footer.html +5 -5
  27. nautobot/core/templates/inc/javascript.html +4 -4
  28. nautobot/core/templates/inc/media.html +2 -2
  29. nautobot/core/templates/inc/nav_menu.html +0 -7
  30. nautobot/core/templates/nautobot_config.py.j2 +14 -1
  31. nautobot/core/templates/rest_framework/api.html +12 -5
  32. nautobot/core/templatetags/helpers.py +2 -2
  33. nautobot/core/testing/__init__.py +1 -1
  34. nautobot/core/testing/filters.py +1 -1
  35. nautobot/core/testing/views.py +30 -0
  36. nautobot/core/tests/integration/test_view_authentication.py +68 -0
  37. nautobot/core/tests/test_api.py +13 -6
  38. nautobot/core/tests/test_csv.py +5 -4
  39. nautobot/core/tests/test_filters.py +2 -1
  40. nautobot/core/tests/test_graphql.py +4 -14
  41. nautobot/core/tests/test_navigations.py +3 -0
  42. nautobot/core/tests/test_views.py +45 -16
  43. nautobot/core/utils/data.py +1 -2
  44. nautobot/core/utils/lookup.py +126 -0
  45. nautobot/core/views/__init__.py +3 -7
  46. nautobot/core/views/generic.py +24 -10
  47. nautobot/core/views/mixins.py +11 -4
  48. nautobot/core/views/renderers.py +11 -6
  49. nautobot/core/wsgi.py +9 -2
  50. nautobot/dcim/api/serializers.py +4 -4
  51. nautobot/dcim/api/urls.py +2 -3
  52. nautobot/dcim/api/views.py +7 -18
  53. nautobot/dcim/apps.py +8 -4
  54. nautobot/dcim/elevations.py +5 -1
  55. nautobot/dcim/factory.py +7 -7
  56. nautobot/dcim/filters/__init__.py +16 -17
  57. nautobot/dcim/forms.py +69 -48
  58. nautobot/dcim/homepage.py +11 -3
  59. nautobot/dcim/management/commands/migrate_location_contacts.py +218 -0
  60. nautobot/dcim/migrations/0057_controller_models.py +11 -70
  61. nautobot/dcim/models/__init__.py +2 -2
  62. nautobot/dcim/models/devices.py +14 -16
  63. nautobot/dcim/models/racks.py +1 -3
  64. nautobot/dcim/navigation.py +23 -31
  65. nautobot/dcim/signals.py +6 -6
  66. nautobot/dcim/tables/__init__.py +2 -2
  67. nautobot/dcim/tables/devices.py +13 -16
  68. nautobot/dcim/tables/template_code.py +1 -1
  69. nautobot/dcim/templates/dcim/controller_create.html +70 -0
  70. nautobot/dcim/templates/dcim/controller_retrieve.html +35 -18
  71. nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +88 -0
  72. nautobot/dcim/templates/dcim/device/lldp_neighbors.html +74 -42
  73. nautobot/dcim/templates/dcim/device.html +11 -3
  74. nautobot/dcim/templates/dcim/device_edit.html +1 -1
  75. nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
  76. nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
  77. nautobot/dcim/tests/test_api.py +47 -6
  78. nautobot/dcim/tests/test_filters.py +92 -81
  79. nautobot/dcim/tests/test_forms.py +49 -2
  80. nautobot/dcim/tests/test_graphql.py +11 -1
  81. nautobot/dcim/tests/test_models.py +15 -15
  82. nautobot/dcim/tests/test_signals.py +3 -1
  83. nautobot/dcim/tests/test_views.py +24 -12
  84. nautobot/dcim/urls.py +1 -1
  85. nautobot/dcim/views.py +25 -15
  86. nautobot/extras/api/serializers.py +20 -1
  87. nautobot/extras/api/urls.py +1 -2
  88. nautobot/extras/api/views.py +0 -10
  89. nautobot/extras/apps.py +7 -0
  90. nautobot/extras/context_managers.py +71 -4
  91. nautobot/extras/filters/__init__.py +53 -2
  92. nautobot/extras/filters/customfields.py +14 -9
  93. nautobot/extras/filters/mixins.py +6 -1
  94. nautobot/extras/forms/contacts.py +7 -0
  95. nautobot/extras/health_checks.py +1 -0
  96. nautobot/extras/jobs.py +1 -0
  97. nautobot/extras/managers.py +15 -2
  98. nautobot/extras/models/contacts.py +1 -0
  99. nautobot/extras/models/customfields.py +25 -2
  100. nautobot/extras/models/datasources.py +1 -0
  101. nautobot/extras/models/mixins.py +1 -0
  102. nautobot/extras/navigation.py +71 -65
  103. nautobot/extras/plugins/__init__.py +2 -1
  104. nautobot/extras/plugins/views.py +7 -11
  105. nautobot/extras/querysets.py +1 -2
  106. nautobot/extras/secrets/providers.py +1 -0
  107. nautobot/extras/signals.py +95 -51
  108. nautobot/extras/tasks.py +70 -17
  109. nautobot/extras/tests/test_api.py +2 -4
  110. nautobot/extras/tests/test_context_managers.py +98 -1
  111. nautobot/extras/tests/test_customfields.py +72 -9
  112. nautobot/extras/tests/test_dynamicgroups.py +2 -0
  113. nautobot/extras/tests/test_filters.py +89 -4
  114. nautobot/extras/tests/test_models.py +9 -0
  115. nautobot/extras/tests/test_relationships.py +10 -1
  116. nautobot/extras/tests/test_views.py +112 -1
  117. nautobot/extras/utils.py +37 -0
  118. nautobot/extras/views.py +18 -17
  119. nautobot/ipam/api/serializers.py +10 -0
  120. nautobot/ipam/api/urls.py +1 -2
  121. nautobot/ipam/api/views.py +0 -11
  122. nautobot/ipam/apps.py +3 -2
  123. nautobot/ipam/tables.py +3 -23
  124. nautobot/ipam/tests/test_graphql.py +2 -3
  125. nautobot/ipam/tests/test_tables.py +42 -0
  126. nautobot/ipam/tests/test_views.py +1 -0
  127. nautobot/ipam/views.py +9 -9
  128. nautobot/project-static/css/base.css +1 -0
  129. nautobot/project-static/docs/404.html +126 -73
  130. nautobot/project-static/docs/apps/index.html +127 -71
  131. nautobot/project-static/docs/apps/nautobot-apps.html +127 -71
  132. nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
  133. nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
  134. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
  135. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
  136. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +127 -71
  137. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +127 -71
  138. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +167 -73
  139. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +165 -72
  140. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +127 -71
  141. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +127 -71
  142. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +127 -71
  143. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +127 -71
  144. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +127 -71
  145. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +127 -71
  146. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +127 -71
  147. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +127 -71
  148. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +127 -71
  149. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +127 -71
  150. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +127 -71
  151. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +127 -71
  152. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +127 -71
  153. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +127 -71
  154. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +128 -72
  155. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +127 -71
  156. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +127 -71
  157. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +345 -71
  158. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +172 -73
  159. nautobot/project-static/docs/development/apps/api/configuration-view.html +127 -71
  160. nautobot/project-static/docs/development/apps/api/database-backend-config.html +127 -71
  161. nautobot/project-static/docs/development/apps/api/models/django-admin.html +127 -71
  162. nautobot/project-static/docs/development/apps/api/models/global-search.html +127 -71
  163. nautobot/project-static/docs/development/apps/api/models/graphql.html +127 -71
  164. nautobot/project-static/docs/development/apps/api/models/index.html +127 -71
  165. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +127 -71
  166. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +127 -71
  167. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +127 -71
  168. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +127 -71
  169. nautobot/project-static/docs/development/apps/api/platform-features/index.html +127 -71
  170. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +127 -71
  171. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +127 -71
  172. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +127 -71
  173. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +127 -71
  174. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +127 -71
  175. nautobot/project-static/docs/development/apps/api/prometheus.html +127 -71
  176. nautobot/project-static/docs/development/apps/api/setup.html +127 -71
  177. nautobot/project-static/docs/development/apps/api/testing.html +127 -71
  178. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +127 -71
  179. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +127 -71
  180. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +127 -71
  181. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +127 -71
  182. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +127 -71
  183. nautobot/project-static/docs/development/apps/api/views/base-template.html +127 -71
  184. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +141 -80
  185. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +144 -83
  186. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +127 -71
  187. nautobot/project-static/docs/development/apps/api/views/index.html +127 -71
  188. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +127 -71
  189. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +127 -71
  190. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +127 -71
  191. nautobot/project-static/docs/development/apps/api/views/notes.html +127 -71
  192. nautobot/project-static/docs/development/apps/api/views/rest-api.html +127 -71
  193. nautobot/project-static/docs/development/apps/api/views/urls.html +127 -71
  194. nautobot/project-static/docs/development/apps/index.html +127 -71
  195. nautobot/project-static/docs/development/apps/migration/code-updates.html +127 -71
  196. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +127 -71
  197. nautobot/project-static/docs/development/apps/migration/from-v1.html +127 -71
  198. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +127 -71
  199. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +127 -71
  200. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +127 -71
  201. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +127 -71
  202. nautobot/project-static/docs/development/apps/porting-from-netbox.html +127 -71
  203. nautobot/project-static/docs/development/core/application-registry.html +127 -71
  204. nautobot/project-static/docs/development/core/best-practices.html +145 -79
  205. nautobot/project-static/docs/development/core/bootstrap-ui.html +127 -71
  206. nautobot/project-static/docs/development/core/caching.html +127 -71
  207. nautobot/project-static/docs/development/core/controllers.html +141 -275
  208. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +127 -71
  209. nautobot/project-static/docs/development/core/extending-models.html +13 -8166
  210. nautobot/project-static/docs/development/core/generic-views.html +142 -86
  211. nautobot/project-static/docs/development/core/getting-started.html +146 -81
  212. nautobot/project-static/docs/development/core/homepage.html +145 -89
  213. nautobot/project-static/docs/development/core/index.html +127 -71
  214. nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
  215. nautobot/project-static/docs/development/core/model-features.html +130 -74
  216. nautobot/project-static/docs/development/core/natural-keys.html +127 -71
  217. nautobot/project-static/docs/development/core/navigation-menu.html +127 -71
  218. nautobot/project-static/docs/development/core/release-checklist.html +127 -71
  219. nautobot/project-static/docs/development/core/role-internals.html +127 -71
  220. nautobot/project-static/docs/development/core/settings.html +127 -71
  221. nautobot/project-static/docs/development/core/style-guide.html +127 -71
  222. nautobot/project-static/docs/development/core/templates.html +127 -71
  223. nautobot/project-static/docs/development/core/testing.html +127 -71
  224. nautobot/project-static/docs/development/core/user-preferences.html +127 -71
  225. nautobot/project-static/docs/development/extending-models.html +3 -3
  226. nautobot/project-static/docs/development/index.html +127 -71
  227. nautobot/project-static/docs/development/jobs/index.html +128 -72
  228. nautobot/project-static/docs/development/jobs/migration/from-v1.html +127 -71
  229. nautobot/project-static/docs/index.html +126 -73
  230. nautobot/project-static/docs/models/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +3 -3
  231. nautobot/project-static/docs/objects.inv +0 -0
  232. nautobot/project-static/docs/release-notes/index.html +127 -71
  233. nautobot/project-static/docs/release-notes/version-1.0.html +127 -71
  234. nautobot/project-static/docs/release-notes/version-1.1.html +127 -71
  235. nautobot/project-static/docs/release-notes/version-1.2.html +127 -71
  236. nautobot/project-static/docs/release-notes/version-1.3.html +127 -71
  237. nautobot/project-static/docs/release-notes/version-1.4.html +127 -71
  238. nautobot/project-static/docs/release-notes/version-1.5.html +127 -71
  239. nautobot/project-static/docs/release-notes/version-1.6.html +663 -304
  240. nautobot/project-static/docs/release-notes/version-2.0.html +127 -71
  241. nautobot/project-static/docs/release-notes/version-2.1.html +538 -254
  242. nautobot/project-static/docs/release-notes/version-2.2.html +711 -125
  243. nautobot/project-static/docs/requirements.txt +3 -3
  244. nautobot/project-static/docs/search/search_index.json +1 -1
  245. nautobot/project-static/docs/sitemap.xml +264 -259
  246. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  247. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +127 -71
  248. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +127 -71
  249. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +127 -71
  250. nautobot/project-static/docs/user-guide/administration/configuration/index.html +127 -71
  251. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +192 -71
  252. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +127 -71
  253. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +127 -71
  254. nautobot/project-static/docs/user-guide/administration/guides/caching.html +127 -71
  255. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +127 -71
  256. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +127 -71
  257. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +127 -71
  258. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -71
  259. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +127 -71
  260. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +127 -71
  261. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +130 -74
  262. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +127 -71
  263. nautobot/project-static/docs/user-guide/administration/installation/docker.html +134 -74
  264. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +127 -71
  265. nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +8616 -0
  266. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +127 -71
  267. nautobot/project-static/docs/user-guide/administration/installation/index.html +127 -71
  268. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +127 -71
  269. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +127 -71
  270. nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +130 -74
  271. nautobot/project-static/docs/user-guide/administration/installation/services.html +127 -71
  272. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +127 -71
  273. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +127 -71
  274. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +127 -71
  275. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +127 -71
  276. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +127 -71
  277. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +127 -71
  278. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +127 -71
  279. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +127 -71
  280. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +127 -71
  281. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +127 -71
  282. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +127 -71
  283. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +127 -71
  284. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +127 -71
  285. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +127 -71
  286. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +127 -71
  287. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +127 -71
  288. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +127 -71
  289. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +127 -71
  290. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +127 -71
  291. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +127 -71
  292. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +127 -71
  293. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +127 -71
  294. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +127 -71
  295. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +362 -79
  296. nautobot/project-static/docs/user-guide/core-data-model/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +210 -85
  297. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +127 -71
  298. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +127 -71
  299. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +127 -71
  300. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +127 -71
  301. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +127 -71
  302. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +127 -71
  303. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +127 -71
  304. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +127 -71
  305. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +127 -71
  306. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +127 -71
  307. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +127 -71
  308. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +127 -71
  309. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +127 -71
  310. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +127 -71
  311. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +127 -71
  312. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +127 -71
  313. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +127 -71
  314. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +127 -71
  315. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +127 -71
  316. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +127 -71
  317. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +127 -71
  318. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +127 -71
  319. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +127 -71
  320. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +127 -71
  321. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +127 -71
  322. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +127 -71
  323. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +127 -71
  324. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +127 -71
  325. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +127 -71
  326. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +127 -71
  327. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +130 -74
  328. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +127 -71
  329. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +138 -71
  330. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +138 -71
  331. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +127 -71
  332. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +127 -71
  333. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +127 -71
  334. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +127 -71
  335. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +127 -71
  336. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +127 -71
  337. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +127 -71
  338. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +127 -71
  339. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +127 -71
  340. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +127 -71
  341. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +127 -71
  342. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +127 -71
  343. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +127 -71
  344. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +127 -71
  345. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +127 -71
  346. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +127 -71
  347. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +127 -71
  348. nautobot/project-static/docs/user-guide/feature-guides/{contact-and-team.html → contacts-and-teams.html} +128 -72
  349. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +129 -73
  350. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +127 -71
  351. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +127 -71
  352. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +127 -71
  353. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +127 -71
  354. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +127 -71
  355. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +127 -71
  356. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +129 -73
  357. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +127 -71
  358. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +127 -71
  359. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +127 -71
  360. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +127 -71
  361. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +127 -71
  362. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +127 -71
  363. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +127 -71
  364. nautobot/project-static/docs/user-guide/index.html +127 -71
  365. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +127 -71
  366. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +127 -71
  367. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +127 -71
  368. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +127 -71
  369. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +127 -71
  370. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +127 -71
  371. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +127 -71
  372. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +127 -71
  373. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +127 -71
  374. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +127 -71
  375. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +127 -71
  376. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +127 -71
  377. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +127 -71
  378. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +127 -71
  379. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +127 -71
  380. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +127 -71
  381. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +127 -71
  382. nautobot/project-static/docs/user-guide/platform-functionality/note.html +127 -71
  383. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +127 -71
  384. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +127 -71
  385. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +127 -71
  386. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +127 -71
  387. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +127 -71
  388. nautobot/project-static/docs/user-guide/platform-functionality/role.html +127 -71
  389. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +127 -71
  390. nautobot/project-static/docs/user-guide/platform-functionality/status.html +127 -71
  391. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +127 -71
  392. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +127 -71
  393. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +127 -71
  394. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +127 -71
  395. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +127 -71
  396. nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
  397. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
  398. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
  399. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
  400. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
  401. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
  402. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
  403. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
  404. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
  405. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
  406. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
  407. nautobot/tenancy/api/urls.py +1 -2
  408. nautobot/tenancy/api/views.py +0 -12
  409. nautobot/tenancy/tables.py +1 -1
  410. nautobot/tenancy/tests/test_views.py +1 -0
  411. nautobot/users/api/urls.py +1 -2
  412. nautobot/users/api/views.py +2 -65
  413. nautobot/users/views.py +8 -8
  414. nautobot/virtualization/api/urls.py +1 -2
  415. nautobot/virtualization/api/views.py +0 -12
  416. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/METADATA +24 -24
  417. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/RECORD +422 -416
  418. nautobot/dcim/templates/dcim/controllerdevicegroup_create.html +0 -43
  419. nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
  420. nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
  421. nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
  422. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
  423. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
  424. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
  425. /nautobot/dcim/templates/dcim/{controllerdevicegroup_retrieve.html → controllermanageddevicegroup_retrieve.html} +0 -0
  426. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/LICENSE.txt +0 -0
  427. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/NOTICE +0 -0
  428. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/WHEEL +0 -0
  429. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.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.8">
21
+ <meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
22
22
 
23
23
 
24
24
 
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- <link rel="stylesheet" href="../assets/stylesheets/main.f2e4d321.min.css">
29
+ <link rel="stylesheet" href="../assets/stylesheets/main.bcfcd587.min.css">
30
30
 
31
31
 
32
32
  <link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
@@ -399,16 +399,14 @@
399
399
 
400
400
 
401
401
 
402
-
403
-
404
402
 
405
403
 
406
404
 
407
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
405
+
406
+ <li class="md-nav__item md-nav__item--nested">
408
407
 
409
408
 
410
409
 
411
-
412
410
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" >
413
411
 
414
412
 
@@ -425,7 +423,7 @@
425
423
  </a>
426
424
 
427
425
 
428
- <label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="">
426
+ <label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="0">
429
427
  <span class="md-nav__icon md-icon"></span>
430
428
  </label>
431
429
 
@@ -447,13 +445,14 @@
447
445
 
448
446
 
449
447
 
448
+
449
+
450
450
 
451
451
 
452
452
  <li class="md-nav__item md-nav__item--nested">
453
453
 
454
454
 
455
455
 
456
-
457
456
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" >
458
457
 
459
458
 
@@ -484,13 +483,14 @@
484
483
 
485
484
 
486
485
 
486
+
487
+
487
488
 
488
489
 
489
490
  <li class="md-nav__item md-nav__item--nested">
490
491
 
491
492
 
492
493
 
493
-
494
494
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
495
495
 
496
496
 
@@ -686,6 +686,27 @@
686
686
 
687
687
 
688
688
 
689
+ <li class="md-nav__item">
690
+ <a href="../user-guide/administration/installation/health-checks.html" class="md-nav__link">
691
+
692
+
693
+ <span class="md-ellipsis">
694
+ Health Checks
695
+ </span>
696
+
697
+
698
+ </a>
699
+ </li>
700
+
701
+
702
+
703
+
704
+
705
+
706
+
707
+
708
+
709
+
689
710
  <li class="md-nav__item">
690
711
  <a href="../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
691
712
 
@@ -718,13 +739,14 @@
718
739
 
719
740
 
720
741
 
742
+
743
+
721
744
 
722
745
 
723
746
  <li class="md-nav__item md-nav__item--nested">
724
747
 
725
748
 
726
749
 
727
-
728
750
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
729
751
 
730
752
 
@@ -797,13 +819,14 @@
797
819
 
798
820
 
799
821
 
822
+
823
+
800
824
 
801
825
 
802
826
  <li class="md-nav__item md-nav__item--nested">
803
827
 
804
828
 
805
829
 
806
-
807
830
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
808
831
 
809
832
 
@@ -863,13 +886,14 @@
863
886
 
864
887
 
865
888
 
889
+
890
+
866
891
 
867
892
 
868
893
  <li class="md-nav__item md-nav__item--nested">
869
894
 
870
895
 
871
896
 
872
-
873
897
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
874
898
 
875
899
 
@@ -1016,13 +1040,14 @@
1016
1040
 
1017
1041
 
1018
1042
 
1043
+
1044
+
1019
1045
 
1020
1046
 
1021
1047
  <li class="md-nav__item md-nav__item--nested">
1022
1048
 
1023
1049
 
1024
1050
 
1025
-
1026
1051
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
1027
1052
 
1028
1053
 
@@ -1103,13 +1128,14 @@
1103
1128
 
1104
1129
 
1105
1130
 
1131
+
1132
+
1106
1133
 
1107
1134
 
1108
1135
  <li class="md-nav__item md-nav__item--nested">
1109
1136
 
1110
1137
 
1111
1138
 
1112
-
1113
1139
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
1114
1140
 
1115
1141
 
@@ -1211,13 +1237,14 @@
1211
1237
 
1212
1238
 
1213
1239
 
1240
+
1241
+
1214
1242
 
1215
1243
 
1216
1244
  <li class="md-nav__item md-nav__item--nested">
1217
1245
 
1218
1246
 
1219
1247
 
1220
-
1221
1248
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
1222
1249
 
1223
1250
 
@@ -1327,13 +1354,14 @@
1327
1354
 
1328
1355
 
1329
1356
 
1357
+
1358
+
1330
1359
 
1331
1360
 
1332
1361
  <li class="md-nav__item md-nav__item--nested">
1333
1362
 
1334
1363
 
1335
1364
 
1336
-
1337
1365
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
1338
1366
 
1339
1367
 
@@ -1414,13 +1442,14 @@
1414
1442
 
1415
1443
 
1416
1444
 
1445
+
1446
+
1417
1447
 
1418
1448
 
1419
1449
  <li class="md-nav__item md-nav__item--nested">
1420
1450
 
1421
1451
 
1422
1452
 
1423
-
1424
1453
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
1425
1454
 
1426
1455
 
@@ -1635,13 +1664,14 @@
1635
1664
 
1636
1665
 
1637
1666
 
1667
+
1668
+
1638
1669
 
1639
1670
 
1640
1671
  <li class="md-nav__item md-nav__item--nested">
1641
1672
 
1642
1673
 
1643
1674
 
1644
-
1645
1675
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
1646
1676
 
1647
1677
 
@@ -1672,13 +1702,14 @@
1672
1702
 
1673
1703
 
1674
1704
 
1705
+
1706
+
1675
1707
 
1676
1708
 
1677
1709
  <li class="md-nav__item md-nav__item--nested">
1678
1710
 
1679
1711
 
1680
1712
 
1681
-
1682
1713
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
1683
1714
 
1684
1715
 
@@ -1891,7 +1922,7 @@
1891
1922
 
1892
1923
 
1893
1924
  <li class="md-nav__item">
1894
- <a href="../user-guide/feature-guides/contact-and-team.html" class="md-nav__link">
1925
+ <a href="../user-guide/feature-guides/contacts-and-teams.html" class="md-nav__link">
1895
1926
 
1896
1927
 
1897
1928
  <span class="md-ellipsis">
@@ -2048,13 +2079,14 @@
2048
2079
 
2049
2080
 
2050
2081
 
2082
+
2083
+
2051
2084
 
2052
2085
 
2053
2086
  <li class="md-nav__item md-nav__item--nested">
2054
2087
 
2055
2088
 
2056
2089
 
2057
-
2058
2090
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
2059
2091
 
2060
2092
 
@@ -2085,13 +2117,14 @@
2085
2117
 
2086
2118
 
2087
2119
 
2120
+
2121
+
2088
2122
 
2089
2123
 
2090
2124
  <li class="md-nav__item md-nav__item--nested">
2091
2125
 
2092
2126
 
2093
2127
 
2094
-
2095
2128
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
2096
2129
 
2097
2130
 
@@ -2151,13 +2184,14 @@
2151
2184
 
2152
2185
 
2153
2186
 
2187
+
2188
+
2154
2189
 
2155
2190
 
2156
2191
  <li class="md-nav__item md-nav__item--nested">
2157
2192
 
2158
2193
 
2159
2194
 
2160
-
2161
2195
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
2162
2196
 
2163
2197
 
@@ -2301,13 +2335,14 @@
2301
2335
 
2302
2336
 
2303
2337
 
2338
+
2339
+
2304
2340
 
2305
2341
 
2306
2342
  <li class="md-nav__item md-nav__item--nested">
2307
2343
 
2308
2344
 
2309
2345
 
2310
-
2311
2346
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
2312
2347
 
2313
2348
 
@@ -2485,13 +2520,14 @@
2485
2520
 
2486
2521
 
2487
2522
 
2523
+
2524
+
2488
2525
 
2489
2526
 
2490
2527
  <li class="md-nav__item md-nav__item--nested">
2491
2528
 
2492
2529
 
2493
2530
 
2494
-
2495
2531
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
2496
2532
 
2497
2533
 
@@ -2706,13 +2742,14 @@
2706
2742
 
2707
2743
 
2708
2744
 
2745
+
2746
+
2709
2747
 
2710
2748
 
2711
2749
  <li class="md-nav__item md-nav__item--nested">
2712
2750
 
2713
2751
 
2714
2752
 
2715
-
2716
2753
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
2717
2754
 
2718
2755
 
@@ -3156,11 +3193,11 @@
3156
3193
 
3157
3194
 
3158
3195
  <li class="md-nav__item">
3159
- <a href="../user-guide/core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
3196
+ <a href="../user-guide/core-data-model/dcim/controllermanageddevicegroup.html" class="md-nav__link">
3160
3197
 
3161
3198
 
3162
3199
  <span class="md-ellipsis">
3163
- Controller Device Group
3200
+ Controller Managed Device Group
3164
3201
  </span>
3165
3202
 
3166
3203
 
@@ -3187,13 +3224,14 @@
3187
3224
 
3188
3225
 
3189
3226
 
3227
+
3228
+
3190
3229
 
3191
3230
 
3192
3231
  <li class="md-nav__item md-nav__item--nested">
3193
3232
 
3194
3233
 
3195
3234
 
3196
-
3197
3235
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
3198
3236
 
3199
3237
 
@@ -3316,13 +3354,14 @@
3316
3354
 
3317
3355
 
3318
3356
 
3357
+
3358
+
3319
3359
 
3320
3360
 
3321
3361
  <li class="md-nav__item md-nav__item--nested">
3322
3362
 
3323
3363
 
3324
3364
 
3325
-
3326
3365
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
3327
3366
 
3328
3367
 
@@ -3550,13 +3589,14 @@
3550
3589
 
3551
3590
 
3552
3591
 
3592
+
3593
+
3553
3594
 
3554
3595
 
3555
3596
  <li class="md-nav__item md-nav__item--nested">
3556
3597
 
3557
3598
 
3558
3599
 
3559
-
3560
3600
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
3561
3601
 
3562
3602
 
@@ -3637,13 +3677,14 @@
3637
3677
 
3638
3678
 
3639
3679
 
3680
+
3681
+
3640
3682
 
3641
3683
 
3642
3684
  <li class="md-nav__item md-nav__item--nested">
3643
3685
 
3644
3686
 
3645
3687
 
3646
-
3647
3688
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
3648
3689
 
3649
3690
 
@@ -3795,13 +3836,14 @@
3795
3836
 
3796
3837
 
3797
3838
 
3839
+
3840
+
3798
3841
 
3799
3842
 
3800
3843
  <li class="md-nav__item md-nav__item--nested">
3801
3844
 
3802
3845
 
3803
3846
 
3804
-
3805
3847
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
3806
3848
 
3807
3849
 
@@ -4000,13 +4042,14 @@
4000
4042
 
4001
4043
 
4002
4044
 
4045
+
4046
+
4003
4047
 
4004
4048
 
4005
4049
  <li class="md-nav__item md-nav__item--nested">
4006
4050
 
4007
4051
 
4008
4052
 
4009
-
4010
4053
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
4011
4054
 
4012
4055
 
@@ -4095,13 +4138,14 @@
4095
4138
 
4096
4139
 
4097
4140
 
4141
+
4142
+
4098
4143
 
4099
4144
 
4100
4145
  <li class="md-nav__item md-nav__item--nested">
4101
4146
 
4102
4147
 
4103
4148
 
4104
-
4105
4149
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
4106
4150
 
4107
4151
 
@@ -4295,13 +4339,14 @@
4295
4339
 
4296
4340
 
4297
4341
 
4342
+
4343
+
4298
4344
 
4299
4345
 
4300
4346
  <li class="md-nav__item md-nav__item--nested">
4301
4347
 
4302
4348
 
4303
4349
 
4304
-
4305
4350
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
4306
4351
 
4307
4352
 
@@ -4516,13 +4561,14 @@
4516
4561
 
4517
4562
 
4518
4563
 
4564
+
4565
+
4519
4566
 
4520
4567
 
4521
4568
  <li class="md-nav__item md-nav__item--nested">
4522
4569
 
4523
4570
 
4524
4571
 
4525
-
4526
4572
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
4527
4573
 
4528
4574
 
@@ -4639,16 +4685,14 @@
4639
4685
 
4640
4686
 
4641
4687
 
4642
-
4643
-
4644
4688
 
4645
4689
 
4646
4690
 
4647
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
4691
+
4692
+ <li class="md-nav__item md-nav__item--nested">
4648
4693
 
4649
4694
 
4650
4695
 
4651
-
4652
4696
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
4653
4697
 
4654
4698
 
@@ -4665,7 +4709,7 @@
4665
4709
  </a>
4666
4710
 
4667
4711
 
4668
- <label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
4712
+ <label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
4669
4713
  <span class="md-nav__icon md-icon"></span>
4670
4714
  </label>
4671
4715
 
@@ -4687,13 +4731,14 @@
4687
4731
 
4688
4732
 
4689
4733
 
4734
+
4735
+
4690
4736
 
4691
4737
 
4692
4738
  <li class="md-nav__item md-nav__item--nested">
4693
4739
 
4694
4740
 
4695
4741
 
4696
-
4697
4742
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
4698
4743
 
4699
4744
 
@@ -4761,13 +4806,14 @@
4761
4806
 
4762
4807
 
4763
4808
 
4809
+
4810
+
4764
4811
 
4765
4812
 
4766
4813
  <li class="md-nav__item md-nav__item--nested">
4767
4814
 
4768
4815
 
4769
4816
 
4770
-
4771
4817
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
4772
4818
 
4773
4819
 
@@ -4848,13 +4894,14 @@
4848
4894
 
4849
4895
 
4850
4896
 
4897
+
4898
+
4851
4899
 
4852
4900
 
4853
4901
  <li class="md-nav__item md-nav__item--nested">
4854
4902
 
4855
4903
 
4856
4904
 
4857
-
4858
4905
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
4859
4906
 
4860
4907
 
@@ -4964,13 +5011,14 @@
4964
5011
 
4965
5012
 
4966
5013
 
5014
+
5015
+
4967
5016
 
4968
5017
 
4969
5018
  <li class="md-nav__item md-nav__item--nested">
4970
5019
 
4971
5020
 
4972
5021
 
4973
-
4974
5022
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
4975
5023
 
4976
5024
 
@@ -5156,13 +5204,14 @@
5156
5204
 
5157
5205
 
5158
5206
 
5207
+
5208
+
5159
5209
 
5160
5210
 
5161
5211
  <li class="md-nav__item md-nav__item--nested">
5162
5212
 
5163
5213
 
5164
5214
 
5165
-
5166
5215
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
5167
5216
 
5168
5217
 
@@ -5272,13 +5321,14 @@
5272
5321
 
5273
5322
 
5274
5323
 
5324
+
5325
+
5275
5326
 
5276
5327
 
5277
5328
  <li class="md-nav__item md-nav__item--nested">
5278
5329
 
5279
5330
 
5280
5331
 
5281
-
5282
5332
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
5283
5333
 
5284
5334
 
@@ -5535,13 +5585,14 @@
5535
5585
 
5536
5586
 
5537
5587
 
5588
+
5589
+
5538
5590
 
5539
5591
 
5540
5592
  <li class="md-nav__item md-nav__item--nested">
5541
5593
 
5542
5594
 
5543
5595
 
5544
-
5545
5596
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
5546
5597
 
5547
5598
 
@@ -5714,13 +5765,14 @@
5714
5765
 
5715
5766
 
5716
5767
 
5768
+
5769
+
5717
5770
 
5718
5771
 
5719
5772
  <li class="md-nav__item md-nav__item--nested">
5720
5773
 
5721
5774
 
5722
5775
 
5723
-
5724
5776
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
5725
5777
 
5726
5778
 
@@ -6242,13 +6294,14 @@
6242
6294
 
6243
6295
 
6244
6296
 
6297
+
6298
+
6245
6299
 
6246
6300
 
6247
6301
  <li class="md-nav__item md-nav__item--nested">
6248
6302
 
6249
6303
 
6250
6304
 
6251
-
6252
6305
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
6253
6306
 
6254
6307
 
@@ -6342,13 +6395,14 @@
6342
6395
 
6343
6396
 
6344
6397
 
6398
+
6399
+
6345
6400
 
6346
6401
 
6347
6402
  <li class="md-nav__item md-nav__item--nested">
6348
6403
 
6349
6404
 
6350
6405
 
6351
-
6352
6406
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
6353
6407
 
6354
6408
 
@@ -6479,13 +6533,14 @@
6479
6533
 
6480
6534
 
6481
6535
 
6536
+
6537
+
6482
6538
 
6483
6539
 
6484
6540
  <li class="md-nav__item md-nav__item--nested">
6485
6541
 
6486
6542
 
6487
6543
 
6488
-
6489
6544
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
6490
6545
 
6491
6546
 
@@ -6553,13 +6608,14 @@
6553
6608
 
6554
6609
 
6555
6610
 
6611
+
6612
+
6556
6613
 
6557
6614
 
6558
6615
  <li class="md-nav__item md-nav__item--nested">
6559
6616
 
6560
6617
 
6561
6618
 
6562
-
6563
6619
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
6564
6620
 
6565
6621
 
@@ -6764,11 +6820,11 @@
6764
6820
 
6765
6821
 
6766
6822
  <li class="md-nav__item">
6767
- <a href="../development/core/extending-models.html" class="md-nav__link">
6823
+ <a href="../development/core/generic-views.html" class="md-nav__link">
6768
6824
 
6769
6825
 
6770
6826
  <span class="md-ellipsis">
6771
- Extending Models
6827
+ Generic Views
6772
6828
  </span>
6773
6829
 
6774
6830
 
@@ -6785,11 +6841,11 @@
6785
6841
 
6786
6842
 
6787
6843
  <li class="md-nav__item">
6788
- <a href="../development/core/generic-views.html" class="md-nav__link">
6844
+ <a href="../development/core/homepage.html" class="md-nav__link">
6789
6845
 
6790
6846
 
6791
6847
  <span class="md-ellipsis">
6792
- Generic Views
6848
+ Home Page Panels
6793
6849
  </span>
6794
6850
 
6795
6851
 
@@ -6806,11 +6862,11 @@
6806
6862
 
6807
6863
 
6808
6864
  <li class="md-nav__item">
6809
- <a href="../development/core/homepage.html" class="md-nav__link">
6865
+ <a href="../development/core/model-checklist.html" class="md-nav__link">
6810
6866
 
6811
6867
 
6812
6868
  <span class="md-ellipsis">
6813
- Home Page Panels
6869
+ Model Development Checklist
6814
6870
  </span>
6815
6871
 
6816
6872
 
@@ -7035,16 +7091,17 @@
7035
7091
 
7036
7092
 
7037
7093
 
7038
-
7039
-
7040
7094
 
7095
+
7096
+
7041
7097
 
7098
+
7099
+
7042
7100
 
7043
7101
  <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
7044
7102
 
7045
7103
 
7046
7104
 
7047
-
7048
7105
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" checked>
7049
7106
 
7050
7107
 
@@ -7298,15 +7355,24 @@
7298
7355
  </li>
7299
7356
 
7300
7357
  <li class="md-nav__item">
7301
- <a href="#v218-2024-03-18" class="md-nav__link">
7358
+ <a href="#v219-2024-03-25" class="md-nav__link">
7302
7359
  <span class="md-ellipsis">
7303
- v2.1.8 (2024-03-18)
7360
+ v2.1.9 (2024-03-25)
7304
7361
  </span>
7305
7362
  </a>
7306
7363
 
7307
- <nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
7364
+ <nav class="md-nav" aria-label="v2.1.9 (2024-03-25)">
7308
7365
  <ul class="md-nav__list">
7309
7366
 
7367
+ <li class="md-nav__item">
7368
+ <a href="#security" class="md-nav__link">
7369
+ <span class="md-ellipsis">
7370
+ Security
7371
+ </span>
7372
+ </a>
7373
+
7374
+ </li>
7375
+
7310
7376
  <li class="md-nav__item">
7311
7377
  <a href="#added_1" class="md-nav__link">
7312
7378
  <span class="md-ellipsis">
@@ -7341,6 +7407,15 @@
7341
7407
  </span>
7342
7408
  </a>
7343
7409
 
7410
+ </li>
7411
+
7412
+ <li class="md-nav__item">
7413
+ <a href="#dependencies" class="md-nav__link">
7414
+ <span class="md-ellipsis">
7415
+ Dependencies
7416
+ </span>
7417
+ </a>
7418
+
7344
7419
  </li>
7345
7420
 
7346
7421
  <li class="md-nav__item">
@@ -7367,79 +7442,88 @@
7367
7442
  </li>
7368
7443
 
7369
7444
  <li class="md-nav__item">
7370
- <a href="#v217-2024-03-05" class="md-nav__link">
7445
+ <a href="#v218-2024-03-18" class="md-nav__link">
7371
7446
  <span class="md-ellipsis">
7372
- v2.1.7 (2024-03-05)
7447
+ v2.1.8 (2024-03-18)
7373
7448
  </span>
7374
7449
  </a>
7375
7450
 
7376
- <nav class="md-nav" aria-label="v2.1.7 (2024-03-05)">
7451
+ <nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
7377
7452
  <ul class="md-nav__list">
7378
7453
 
7379
7454
  <li class="md-nav__item">
7380
- <a href="#fixed_1" class="md-nav__link">
7455
+ <a href="#added_2" class="md-nav__link">
7381
7456
  <span class="md-ellipsis">
7382
- Fixed
7457
+ Added
7383
7458
  </span>
7384
7459
  </a>
7385
7460
 
7386
7461
  </li>
7387
7462
 
7388
- </ul>
7389
- </nav>
7390
-
7391
- </li>
7392
-
7393
- <li class="md-nav__item">
7394
- <a href="#v216-2024-03-04" class="md-nav__link">
7463
+ <li class="md-nav__item">
7464
+ <a href="#changed_2" class="md-nav__link">
7395
7465
  <span class="md-ellipsis">
7396
- v2.1.6 (2024-03-04)
7466
+ Changed
7397
7467
  </span>
7398
7468
  </a>
7399
7469
 
7400
- <nav class="md-nav" aria-label="v2.1.6 (2024-03-04)">
7401
- <ul class="md-nav__list">
7470
+ </li>
7402
7471
 
7403
7472
  <li class="md-nav__item">
7404
- <a href="#security" class="md-nav__link">
7473
+ <a href="#removed_2" class="md-nav__link">
7405
7474
  <span class="md-ellipsis">
7406
- Security
7475
+ Removed
7407
7476
  </span>
7408
7477
  </a>
7409
7478
 
7410
7479
  </li>
7411
7480
 
7412
7481
  <li class="md-nav__item">
7413
- <a href="#added_2" class="md-nav__link">
7482
+ <a href="#fixed_1" class="md-nav__link">
7414
7483
  <span class="md-ellipsis">
7415
- Added
7484
+ Fixed
7416
7485
  </span>
7417
7486
  </a>
7418
7487
 
7419
7488
  </li>
7420
7489
 
7421
7490
  <li class="md-nav__item">
7422
- <a href="#changed_2" class="md-nav__link">
7491
+ <a href="#documentation_1" class="md-nav__link">
7423
7492
  <span class="md-ellipsis">
7424
- Changed
7493
+ Documentation
7425
7494
  </span>
7426
7495
  </a>
7427
7496
 
7428
7497
  </li>
7429
7498
 
7430
7499
  <li class="md-nav__item">
7431
- <a href="#fixed_2" class="md-nav__link">
7500
+ <a href="#housekeeping_1" class="md-nav__link">
7432
7501
  <span class="md-ellipsis">
7433
- Fixed
7502
+ Housekeeping
7434
7503
  </span>
7435
7504
  </a>
7436
7505
 
7437
7506
  </li>
7438
7507
 
7508
+ </ul>
7509
+ </nav>
7510
+
7511
+ </li>
7512
+
7513
+ <li class="md-nav__item">
7514
+ <a href="#v217-2024-03-05" class="md-nav__link">
7515
+ <span class="md-ellipsis">
7516
+ v2.1.7 (2024-03-05)
7517
+ </span>
7518
+ </a>
7519
+
7520
+ <nav class="md-nav" aria-label="v2.1.7 (2024-03-05)">
7521
+ <ul class="md-nav__list">
7522
+
7439
7523
  <li class="md-nav__item">
7440
- <a href="#documentation_1" class="md-nav__link">
7524
+ <a href="#fixed_2" class="md-nav__link">
7441
7525
  <span class="md-ellipsis">
7442
- Documentation
7526
+ Fixed
7443
7527
  </span>
7444
7528
  </a>
7445
7529
 
@@ -7451,13 +7535,13 @@
7451
7535
  </li>
7452
7536
 
7453
7537
  <li class="md-nav__item">
7454
- <a href="#v215-2024-02-21" class="md-nav__link">
7538
+ <a href="#v216-2024-03-04" class="md-nav__link">
7455
7539
  <span class="md-ellipsis">
7456
- v2.1.5 (2024-02-21)
7540
+ v2.1.6 (2024-03-04)
7457
7541
  </span>
7458
7542
  </a>
7459
7543
 
7460
- <nav class="md-nav" aria-label="v2.1.5 (2024-02-21)">
7544
+ <nav class="md-nav" aria-label="v2.1.6 (2024-03-04)">
7461
7545
  <ul class="md-nav__list">
7462
7546
 
7463
7547
  <li class="md-nav__item">
@@ -7503,15 +7587,6 @@
7503
7587
  </span>
7504
7588
  </a>
7505
7589
 
7506
- </li>
7507
-
7508
- <li class="md-nav__item">
7509
- <a href="#housekeeping_1" class="md-nav__link">
7510
- <span class="md-ellipsis">
7511
- Housekeeping
7512
- </span>
7513
- </a>
7514
-
7515
7590
  </li>
7516
7591
 
7517
7592
  </ul>
@@ -7520,13 +7595,13 @@
7520
7595
  </li>
7521
7596
 
7522
7597
  <li class="md-nav__item">
7523
- <a href="#v214-2024-02-08" class="md-nav__link">
7598
+ <a href="#v215-2024-02-21" class="md-nav__link">
7524
7599
  <span class="md-ellipsis">
7525
- v2.1.4 (2024-02-08)
7600
+ v2.1.5 (2024-02-21)
7526
7601
  </span>
7527
7602
  </a>
7528
7603
 
7529
- <nav class="md-nav" aria-label="v2.1.4 (2024-02-08)">
7604
+ <nav class="md-nav" aria-label="v2.1.5 (2024-02-21)">
7530
7605
  <ul class="md-nav__list">
7531
7606
 
7532
7607
  <li class="md-nav__item">
@@ -7536,6 +7611,24 @@
7536
7611
  </span>
7537
7612
  </a>
7538
7613
 
7614
+ </li>
7615
+
7616
+ <li class="md-nav__item">
7617
+ <a href="#added_4" class="md-nav__link">
7618
+ <span class="md-ellipsis">
7619
+ Added
7620
+ </span>
7621
+ </a>
7622
+
7623
+ </li>
7624
+
7625
+ <li class="md-nav__item">
7626
+ <a href="#changed_4" class="md-nav__link">
7627
+ <span class="md-ellipsis">
7628
+ Changed
7629
+ </span>
7630
+ </a>
7631
+
7539
7632
  </li>
7540
7633
 
7541
7634
  <li class="md-nav__item">
@@ -7568,6 +7661,57 @@
7568
7661
  </ul>
7569
7662
  </nav>
7570
7663
 
7664
+ </li>
7665
+
7666
+ <li class="md-nav__item">
7667
+ <a href="#v214-2024-02-08" class="md-nav__link">
7668
+ <span class="md-ellipsis">
7669
+ v2.1.4 (2024-02-08)
7670
+ </span>
7671
+ </a>
7672
+
7673
+ <nav class="md-nav" aria-label="v2.1.4 (2024-02-08)">
7674
+ <ul class="md-nav__list">
7675
+
7676
+ <li class="md-nav__item">
7677
+ <a href="#security_3" class="md-nav__link">
7678
+ <span class="md-ellipsis">
7679
+ Security
7680
+ </span>
7681
+ </a>
7682
+
7683
+ </li>
7684
+
7685
+ <li class="md-nav__item">
7686
+ <a href="#fixed_5" class="md-nav__link">
7687
+ <span class="md-ellipsis">
7688
+ Fixed
7689
+ </span>
7690
+ </a>
7691
+
7692
+ </li>
7693
+
7694
+ <li class="md-nav__item">
7695
+ <a href="#documentation_4" class="md-nav__link">
7696
+ <span class="md-ellipsis">
7697
+ Documentation
7698
+ </span>
7699
+ </a>
7700
+
7701
+ </li>
7702
+
7703
+ <li class="md-nav__item">
7704
+ <a href="#housekeeping_3" class="md-nav__link">
7705
+ <span class="md-ellipsis">
7706
+ Housekeeping
7707
+ </span>
7708
+ </a>
7709
+
7710
+ </li>
7711
+
7712
+ </ul>
7713
+ </nav>
7714
+
7571
7715
  </li>
7572
7716
 
7573
7717
  <li class="md-nav__item">
@@ -7581,7 +7725,7 @@
7581
7725
  <ul class="md-nav__list">
7582
7726
 
7583
7727
  <li class="md-nav__item">
7584
- <a href="#security_3" class="md-nav__link">
7728
+ <a href="#security_4" class="md-nav__link">
7585
7729
  <span class="md-ellipsis">
7586
7730
  Security
7587
7731
  </span>
@@ -7590,7 +7734,7 @@
7590
7734
  </li>
7591
7735
 
7592
7736
  <li class="md-nav__item">
7593
- <a href="#added_4" class="md-nav__link">
7737
+ <a href="#added_5" class="md-nav__link">
7594
7738
  <span class="md-ellipsis">
7595
7739
  Added
7596
7740
  </span>
@@ -7599,7 +7743,7 @@
7599
7743
  </li>
7600
7744
 
7601
7745
  <li class="md-nav__item">
7602
- <a href="#changed_4" class="md-nav__link">
7746
+ <a href="#changed_5" class="md-nav__link">
7603
7747
  <span class="md-ellipsis">
7604
7748
  Changed
7605
7749
  </span>
@@ -7608,7 +7752,7 @@
7608
7752
  </li>
7609
7753
 
7610
7754
  <li class="md-nav__item">
7611
- <a href="#removed_2" class="md-nav__link">
7755
+ <a href="#removed_3" class="md-nav__link">
7612
7756
  <span class="md-ellipsis">
7613
7757
  Removed
7614
7758
  </span>
@@ -7617,7 +7761,7 @@
7617
7761
  </li>
7618
7762
 
7619
7763
  <li class="md-nav__item">
7620
- <a href="#fixed_5" class="md-nav__link">
7764
+ <a href="#fixed_6" class="md-nav__link">
7621
7765
  <span class="md-ellipsis">
7622
7766
  Fixed
7623
7767
  </span>
@@ -7626,7 +7770,7 @@
7626
7770
  </li>
7627
7771
 
7628
7772
  <li class="md-nav__item">
7629
- <a href="#dependencies" class="md-nav__link">
7773
+ <a href="#dependencies_1" class="md-nav__link">
7630
7774
  <span class="md-ellipsis">
7631
7775
  Dependencies
7632
7776
  </span>
@@ -7635,7 +7779,7 @@
7635
7779
  </li>
7636
7780
 
7637
7781
  <li class="md-nav__item">
7638
- <a href="#housekeeping_3" class="md-nav__link">
7782
+ <a href="#housekeeping_4" class="md-nav__link">
7639
7783
  <span class="md-ellipsis">
7640
7784
  Housekeeping
7641
7785
  </span>
@@ -7659,7 +7803,7 @@
7659
7803
  <ul class="md-nav__list">
7660
7804
 
7661
7805
  <li class="md-nav__item">
7662
- <a href="#security_4" class="md-nav__link">
7806
+ <a href="#security_5" class="md-nav__link">
7663
7807
  <span class="md-ellipsis">
7664
7808
  Security
7665
7809
  </span>
@@ -7668,7 +7812,7 @@
7668
7812
  </li>
7669
7813
 
7670
7814
  <li class="md-nav__item">
7671
- <a href="#added_5" class="md-nav__link">
7815
+ <a href="#added_6" class="md-nav__link">
7672
7816
  <span class="md-ellipsis">
7673
7817
  Added
7674
7818
  </span>
@@ -7677,7 +7821,7 @@
7677
7821
  </li>
7678
7822
 
7679
7823
  <li class="md-nav__item">
7680
- <a href="#changed_5" class="md-nav__link">
7824
+ <a href="#changed_6" class="md-nav__link">
7681
7825
  <span class="md-ellipsis">
7682
7826
  Changed
7683
7827
  </span>
@@ -7686,7 +7830,7 @@
7686
7830
  </li>
7687
7831
 
7688
7832
  <li class="md-nav__item">
7689
- <a href="#removed_3" class="md-nav__link">
7833
+ <a href="#removed_4" class="md-nav__link">
7690
7834
  <span class="md-ellipsis">
7691
7835
  Removed
7692
7836
  </span>
@@ -7695,7 +7839,7 @@
7695
7839
  </li>
7696
7840
 
7697
7841
  <li class="md-nav__item">
7698
- <a href="#fixed_6" class="md-nav__link">
7842
+ <a href="#fixed_7" class="md-nav__link">
7699
7843
  <span class="md-ellipsis">
7700
7844
  Fixed
7701
7845
  </span>
@@ -7704,7 +7848,7 @@
7704
7848
  </li>
7705
7849
 
7706
7850
  <li class="md-nav__item">
7707
- <a href="#dependencies_1" class="md-nav__link">
7851
+ <a href="#dependencies_2" class="md-nav__link">
7708
7852
  <span class="md-ellipsis">
7709
7853
  Dependencies
7710
7854
  </span>
@@ -7713,7 +7857,7 @@
7713
7857
  </li>
7714
7858
 
7715
7859
  <li class="md-nav__item">
7716
- <a href="#documentation_4" class="md-nav__link">
7860
+ <a href="#documentation_5" class="md-nav__link">
7717
7861
  <span class="md-ellipsis">
7718
7862
  Documentation
7719
7863
  </span>
@@ -7722,7 +7866,7 @@
7722
7866
  </li>
7723
7867
 
7724
7868
  <li class="md-nav__item">
7725
- <a href="#housekeeping_4" class="md-nav__link">
7869
+ <a href="#housekeeping_5" class="md-nav__link">
7726
7870
  <span class="md-ellipsis">
7727
7871
  Housekeeping
7728
7872
  </span>
@@ -7746,7 +7890,7 @@
7746
7890
  <ul class="md-nav__list">
7747
7891
 
7748
7892
  <li class="md-nav__item">
7749
- <a href="#added_6" class="md-nav__link">
7893
+ <a href="#added_7" class="md-nav__link">
7750
7894
  <span class="md-ellipsis">
7751
7895
  Added
7752
7896
  </span>
@@ -7755,7 +7899,7 @@
7755
7899
  </li>
7756
7900
 
7757
7901
  <li class="md-nav__item">
7758
- <a href="#changed_6" class="md-nav__link">
7902
+ <a href="#changed_7" class="md-nav__link">
7759
7903
  <span class="md-ellipsis">
7760
7904
  Changed
7761
7905
  </span>
@@ -7764,7 +7908,7 @@
7764
7908
  </li>
7765
7909
 
7766
7910
  <li class="md-nav__item">
7767
- <a href="#removed_4" class="md-nav__link">
7911
+ <a href="#removed_5" class="md-nav__link">
7768
7912
  <span class="md-ellipsis">
7769
7913
  Removed
7770
7914
  </span>
@@ -7773,7 +7917,7 @@
7773
7917
  </li>
7774
7918
 
7775
7919
  <li class="md-nav__item">
7776
- <a href="#fixed_7" class="md-nav__link">
7920
+ <a href="#fixed_8" class="md-nav__link">
7777
7921
  <span class="md-ellipsis">
7778
7922
  Fixed
7779
7923
  </span>
@@ -7782,7 +7926,7 @@
7782
7926
  </li>
7783
7927
 
7784
7928
  <li class="md-nav__item">
7785
- <a href="#documentation_5" class="md-nav__link">
7929
+ <a href="#documentation_6" class="md-nav__link">
7786
7930
  <span class="md-ellipsis">
7787
7931
  Documentation
7788
7932
  </span>
@@ -7791,7 +7935,7 @@
7791
7935
  </li>
7792
7936
 
7793
7937
  <li class="md-nav__item">
7794
- <a href="#housekeeping_5" class="md-nav__link">
7938
+ <a href="#housekeeping_6" class="md-nav__link">
7795
7939
  <span class="md-ellipsis">
7796
7940
  Housekeeping
7797
7941
  </span>
@@ -7815,7 +7959,7 @@
7815
7959
  <ul class="md-nav__list">
7816
7960
 
7817
7961
  <li class="md-nav__item">
7818
- <a href="#security_5" class="md-nav__link">
7962
+ <a href="#security_6" class="md-nav__link">
7819
7963
  <span class="md-ellipsis">
7820
7964
  Security
7821
7965
  </span>
@@ -7824,7 +7968,7 @@
7824
7968
  </li>
7825
7969
 
7826
7970
  <li class="md-nav__item">
7827
- <a href="#added_7" class="md-nav__link">
7971
+ <a href="#added_8" class="md-nav__link">
7828
7972
  <span class="md-ellipsis">
7829
7973
  Added
7830
7974
  </span>
@@ -7833,7 +7977,7 @@
7833
7977
  </li>
7834
7978
 
7835
7979
  <li class="md-nav__item">
7836
- <a href="#changed_7" class="md-nav__link">
7980
+ <a href="#changed_8" class="md-nav__link">
7837
7981
  <span class="md-ellipsis">
7838
7982
  Changed
7839
7983
  </span>
@@ -7842,7 +7986,7 @@
7842
7986
  </li>
7843
7987
 
7844
7988
  <li class="md-nav__item">
7845
- <a href="#removed_5" class="md-nav__link">
7989
+ <a href="#removed_6" class="md-nav__link">
7846
7990
  <span class="md-ellipsis">
7847
7991
  Removed
7848
7992
  </span>
@@ -7851,7 +7995,7 @@
7851
7995
  </li>
7852
7996
 
7853
7997
  <li class="md-nav__item">
7854
- <a href="#fixed_8" class="md-nav__link">
7998
+ <a href="#fixed_9" class="md-nav__link">
7855
7999
  <span class="md-ellipsis">
7856
8000
  Fixed
7857
8001
  </span>
@@ -7860,7 +8004,7 @@
7860
8004
  </li>
7861
8005
 
7862
8006
  <li class="md-nav__item">
7863
- <a href="#documentation_6" class="md-nav__link">
8007
+ <a href="#documentation_7" class="md-nav__link">
7864
8008
  <span class="md-ellipsis">
7865
8009
  Documentation
7866
8010
  </span>
@@ -7869,7 +8013,7 @@
7869
8013
  </li>
7870
8014
 
7871
8015
  <li class="md-nav__item">
7872
- <a href="#housekeeping_6" class="md-nav__link">
8016
+ <a href="#housekeeping_7" class="md-nav__link">
7873
8017
  <span class="md-ellipsis">
7874
8018
  Housekeeping
7875
8019
  </span>
@@ -7893,7 +8037,7 @@
7893
8037
  <ul class="md-nav__list">
7894
8038
 
7895
8039
  <li class="md-nav__item">
7896
- <a href="#added_8" class="md-nav__link">
8040
+ <a href="#added_9" class="md-nav__link">
7897
8041
  <span class="md-ellipsis">
7898
8042
  Added
7899
8043
  </span>
@@ -7902,7 +8046,7 @@
7902
8046
  </li>
7903
8047
 
7904
8048
  <li class="md-nav__item">
7905
- <a href="#changed_8" class="md-nav__link">
8049
+ <a href="#changed_9" class="md-nav__link">
7906
8050
  <span class="md-ellipsis">
7907
8051
  Changed
7908
8052
  </span>
@@ -7911,7 +8055,7 @@
7911
8055
  </li>
7912
8056
 
7913
8057
  <li class="md-nav__item">
7914
- <a href="#removed_6" class="md-nav__link">
8058
+ <a href="#removed_7" class="md-nav__link">
7915
8059
  <span class="md-ellipsis">
7916
8060
  Removed
7917
8061
  </span>
@@ -7920,7 +8064,7 @@
7920
8064
  </li>
7921
8065
 
7922
8066
  <li class="md-nav__item">
7923
- <a href="#fixed_9" class="md-nav__link">
8067
+ <a href="#fixed_10" class="md-nav__link">
7924
8068
  <span class="md-ellipsis">
7925
8069
  Fixed
7926
8070
  </span>
@@ -7929,7 +8073,7 @@
7929
8073
  </li>
7930
8074
 
7931
8075
  <li class="md-nav__item">
7932
- <a href="#housekeeping_7" class="md-nav__link">
8076
+ <a href="#housekeeping_8" class="md-nav__link">
7933
8077
  <span class="md-ellipsis">
7934
8078
  Housekeeping
7935
8079
  </span>
@@ -8135,16 +8279,14 @@
8135
8279
 
8136
8280
 
8137
8281
 
8138
-
8139
-
8140
8282
 
8141
8283
 
8142
8284
 
8143
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
8285
+
8286
+ <li class="md-nav__item md-nav__item--nested">
8144
8287
 
8145
8288
 
8146
8289
 
8147
-
8148
8290
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
8149
8291
 
8150
8292
 
@@ -8161,7 +8303,7 @@
8161
8303
  </a>
8162
8304
 
8163
8305
 
8164
- <label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
8306
+ <label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
8165
8307
  <span class="md-nav__icon md-icon"></span>
8166
8308
  </label>
8167
8309
 
@@ -8183,13 +8325,14 @@
8183
8325
 
8184
8326
 
8185
8327
 
8328
+
8329
+
8186
8330
 
8187
8331
 
8188
8332
  <li class="md-nav__item md-nav__item--nested">
8189
8333
 
8190
8334
 
8191
8335
 
8192
-
8193
8336
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
8194
8337
 
8195
8338
 
@@ -8633,15 +8776,24 @@
8633
8776
  </li>
8634
8777
 
8635
8778
  <li class="md-nav__item">
8636
- <a href="#v218-2024-03-18" class="md-nav__link">
8779
+ <a href="#v219-2024-03-25" class="md-nav__link">
8637
8780
  <span class="md-ellipsis">
8638
- v2.1.8 (2024-03-18)
8781
+ v2.1.9 (2024-03-25)
8639
8782
  </span>
8640
8783
  </a>
8641
8784
 
8642
- <nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
8785
+ <nav class="md-nav" aria-label="v2.1.9 (2024-03-25)">
8643
8786
  <ul class="md-nav__list">
8644
8787
 
8788
+ <li class="md-nav__item">
8789
+ <a href="#security" class="md-nav__link">
8790
+ <span class="md-ellipsis">
8791
+ Security
8792
+ </span>
8793
+ </a>
8794
+
8795
+ </li>
8796
+
8645
8797
  <li class="md-nav__item">
8646
8798
  <a href="#added_1" class="md-nav__link">
8647
8799
  <span class="md-ellipsis">
@@ -8676,6 +8828,15 @@
8676
8828
  </span>
8677
8829
  </a>
8678
8830
 
8831
+ </li>
8832
+
8833
+ <li class="md-nav__item">
8834
+ <a href="#dependencies" class="md-nav__link">
8835
+ <span class="md-ellipsis">
8836
+ Dependencies
8837
+ </span>
8838
+ </a>
8839
+
8679
8840
  </li>
8680
8841
 
8681
8842
  <li class="md-nav__item">
@@ -8699,6 +8860,75 @@
8699
8860
  </ul>
8700
8861
  </nav>
8701
8862
 
8863
+ </li>
8864
+
8865
+ <li class="md-nav__item">
8866
+ <a href="#v218-2024-03-18" class="md-nav__link">
8867
+ <span class="md-ellipsis">
8868
+ v2.1.8 (2024-03-18)
8869
+ </span>
8870
+ </a>
8871
+
8872
+ <nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
8873
+ <ul class="md-nav__list">
8874
+
8875
+ <li class="md-nav__item">
8876
+ <a href="#added_2" class="md-nav__link">
8877
+ <span class="md-ellipsis">
8878
+ Added
8879
+ </span>
8880
+ </a>
8881
+
8882
+ </li>
8883
+
8884
+ <li class="md-nav__item">
8885
+ <a href="#changed_2" class="md-nav__link">
8886
+ <span class="md-ellipsis">
8887
+ Changed
8888
+ </span>
8889
+ </a>
8890
+
8891
+ </li>
8892
+
8893
+ <li class="md-nav__item">
8894
+ <a href="#removed_2" class="md-nav__link">
8895
+ <span class="md-ellipsis">
8896
+ Removed
8897
+ </span>
8898
+ </a>
8899
+
8900
+ </li>
8901
+
8902
+ <li class="md-nav__item">
8903
+ <a href="#fixed_1" class="md-nav__link">
8904
+ <span class="md-ellipsis">
8905
+ Fixed
8906
+ </span>
8907
+ </a>
8908
+
8909
+ </li>
8910
+
8911
+ <li class="md-nav__item">
8912
+ <a href="#documentation_1" class="md-nav__link">
8913
+ <span class="md-ellipsis">
8914
+ Documentation
8915
+ </span>
8916
+ </a>
8917
+
8918
+ </li>
8919
+
8920
+ <li class="md-nav__item">
8921
+ <a href="#housekeeping_1" class="md-nav__link">
8922
+ <span class="md-ellipsis">
8923
+ Housekeeping
8924
+ </span>
8925
+ </a>
8926
+
8927
+ </li>
8928
+
8929
+ </ul>
8930
+ </nav>
8931
+
8702
8932
  </li>
8703
8933
 
8704
8934
  <li class="md-nav__item">
@@ -8712,7 +8942,7 @@
8712
8942
  <ul class="md-nav__list">
8713
8943
 
8714
8944
  <li class="md-nav__item">
8715
- <a href="#fixed_1" class="md-nav__link">
8945
+ <a href="#fixed_2" class="md-nav__link">
8716
8946
  <span class="md-ellipsis">
8717
8947
  Fixed
8718
8948
  </span>
@@ -8736,7 +8966,7 @@
8736
8966
  <ul class="md-nav__list">
8737
8967
 
8738
8968
  <li class="md-nav__item">
8739
- <a href="#security" class="md-nav__link">
8969
+ <a href="#security_1" class="md-nav__link">
8740
8970
  <span class="md-ellipsis">
8741
8971
  Security
8742
8972
  </span>
@@ -8745,7 +8975,7 @@
8745
8975
  </li>
8746
8976
 
8747
8977
  <li class="md-nav__item">
8748
- <a href="#added_2" class="md-nav__link">
8978
+ <a href="#added_3" class="md-nav__link">
8749
8979
  <span class="md-ellipsis">
8750
8980
  Added
8751
8981
  </span>
@@ -8754,7 +8984,7 @@
8754
8984
  </li>
8755
8985
 
8756
8986
  <li class="md-nav__item">
8757
- <a href="#changed_2" class="md-nav__link">
8987
+ <a href="#changed_3" class="md-nav__link">
8758
8988
  <span class="md-ellipsis">
8759
8989
  Changed
8760
8990
  </span>
@@ -8763,7 +8993,7 @@
8763
8993
  </li>
8764
8994
 
8765
8995
  <li class="md-nav__item">
8766
- <a href="#fixed_2" class="md-nav__link">
8996
+ <a href="#fixed_3" class="md-nav__link">
8767
8997
  <span class="md-ellipsis">
8768
8998
  Fixed
8769
8999
  </span>
@@ -8772,7 +9002,7 @@
8772
9002
  </li>
8773
9003
 
8774
9004
  <li class="md-nav__item">
8775
- <a href="#documentation_1" class="md-nav__link">
9005
+ <a href="#documentation_2" class="md-nav__link">
8776
9006
  <span class="md-ellipsis">
8777
9007
  Documentation
8778
9008
  </span>
@@ -8796,7 +9026,7 @@
8796
9026
  <ul class="md-nav__list">
8797
9027
 
8798
9028
  <li class="md-nav__item">
8799
- <a href="#security_1" class="md-nav__link">
9029
+ <a href="#security_2" class="md-nav__link">
8800
9030
  <span class="md-ellipsis">
8801
9031
  Security
8802
9032
  </span>
@@ -8805,7 +9035,7 @@
8805
9035
  </li>
8806
9036
 
8807
9037
  <li class="md-nav__item">
8808
- <a href="#added_3" class="md-nav__link">
9038
+ <a href="#added_4" class="md-nav__link">
8809
9039
  <span class="md-ellipsis">
8810
9040
  Added
8811
9041
  </span>
@@ -8814,7 +9044,7 @@
8814
9044
  </li>
8815
9045
 
8816
9046
  <li class="md-nav__item">
8817
- <a href="#changed_3" class="md-nav__link">
9047
+ <a href="#changed_4" class="md-nav__link">
8818
9048
  <span class="md-ellipsis">
8819
9049
  Changed
8820
9050
  </span>
@@ -8823,7 +9053,7 @@
8823
9053
  </li>
8824
9054
 
8825
9055
  <li class="md-nav__item">
8826
- <a href="#fixed_3" class="md-nav__link">
9056
+ <a href="#fixed_4" class="md-nav__link">
8827
9057
  <span class="md-ellipsis">
8828
9058
  Fixed
8829
9059
  </span>
@@ -8832,7 +9062,7 @@
8832
9062
  </li>
8833
9063
 
8834
9064
  <li class="md-nav__item">
8835
- <a href="#documentation_2" class="md-nav__link">
9065
+ <a href="#documentation_3" class="md-nav__link">
8836
9066
  <span class="md-ellipsis">
8837
9067
  Documentation
8838
9068
  </span>
@@ -8841,7 +9071,7 @@
8841
9071
  </li>
8842
9072
 
8843
9073
  <li class="md-nav__item">
8844
- <a href="#housekeeping_1" class="md-nav__link">
9074
+ <a href="#housekeeping_2" class="md-nav__link">
8845
9075
  <span class="md-ellipsis">
8846
9076
  Housekeeping
8847
9077
  </span>
@@ -8865,7 +9095,7 @@
8865
9095
  <ul class="md-nav__list">
8866
9096
 
8867
9097
  <li class="md-nav__item">
8868
- <a href="#security_2" class="md-nav__link">
9098
+ <a href="#security_3" class="md-nav__link">
8869
9099
  <span class="md-ellipsis">
8870
9100
  Security
8871
9101
  </span>
@@ -8874,7 +9104,7 @@
8874
9104
  </li>
8875
9105
 
8876
9106
  <li class="md-nav__item">
8877
- <a href="#fixed_4" class="md-nav__link">
9107
+ <a href="#fixed_5" class="md-nav__link">
8878
9108
  <span class="md-ellipsis">
8879
9109
  Fixed
8880
9110
  </span>
@@ -8883,7 +9113,7 @@
8883
9113
  </li>
8884
9114
 
8885
9115
  <li class="md-nav__item">
8886
- <a href="#documentation_3" class="md-nav__link">
9116
+ <a href="#documentation_4" class="md-nav__link">
8887
9117
  <span class="md-ellipsis">
8888
9118
  Documentation
8889
9119
  </span>
@@ -8892,7 +9122,7 @@
8892
9122
  </li>
8893
9123
 
8894
9124
  <li class="md-nav__item">
8895
- <a href="#housekeeping_2" class="md-nav__link">
9125
+ <a href="#housekeeping_3" class="md-nav__link">
8896
9126
  <span class="md-ellipsis">
8897
9127
  Housekeeping
8898
9128
  </span>
@@ -8916,7 +9146,7 @@
8916
9146
  <ul class="md-nav__list">
8917
9147
 
8918
9148
  <li class="md-nav__item">
8919
- <a href="#security_3" class="md-nav__link">
9149
+ <a href="#security_4" class="md-nav__link">
8920
9150
  <span class="md-ellipsis">
8921
9151
  Security
8922
9152
  </span>
@@ -8925,7 +9155,7 @@
8925
9155
  </li>
8926
9156
 
8927
9157
  <li class="md-nav__item">
8928
- <a href="#added_4" class="md-nav__link">
9158
+ <a href="#added_5" class="md-nav__link">
8929
9159
  <span class="md-ellipsis">
8930
9160
  Added
8931
9161
  </span>
@@ -8934,7 +9164,7 @@
8934
9164
  </li>
8935
9165
 
8936
9166
  <li class="md-nav__item">
8937
- <a href="#changed_4" class="md-nav__link">
9167
+ <a href="#changed_5" class="md-nav__link">
8938
9168
  <span class="md-ellipsis">
8939
9169
  Changed
8940
9170
  </span>
@@ -8943,7 +9173,7 @@
8943
9173
  </li>
8944
9174
 
8945
9175
  <li class="md-nav__item">
8946
- <a href="#removed_2" class="md-nav__link">
9176
+ <a href="#removed_3" class="md-nav__link">
8947
9177
  <span class="md-ellipsis">
8948
9178
  Removed
8949
9179
  </span>
@@ -8952,7 +9182,7 @@
8952
9182
  </li>
8953
9183
 
8954
9184
  <li class="md-nav__item">
8955
- <a href="#fixed_5" class="md-nav__link">
9185
+ <a href="#fixed_6" class="md-nav__link">
8956
9186
  <span class="md-ellipsis">
8957
9187
  Fixed
8958
9188
  </span>
@@ -8961,7 +9191,7 @@
8961
9191
  </li>
8962
9192
 
8963
9193
  <li class="md-nav__item">
8964
- <a href="#dependencies" class="md-nav__link">
9194
+ <a href="#dependencies_1" class="md-nav__link">
8965
9195
  <span class="md-ellipsis">
8966
9196
  Dependencies
8967
9197
  </span>
@@ -8970,7 +9200,7 @@
8970
9200
  </li>
8971
9201
 
8972
9202
  <li class="md-nav__item">
8973
- <a href="#housekeeping_3" class="md-nav__link">
9203
+ <a href="#housekeeping_4" class="md-nav__link">
8974
9204
  <span class="md-ellipsis">
8975
9205
  Housekeeping
8976
9206
  </span>
@@ -8994,7 +9224,7 @@
8994
9224
  <ul class="md-nav__list">
8995
9225
 
8996
9226
  <li class="md-nav__item">
8997
- <a href="#security_4" class="md-nav__link">
9227
+ <a href="#security_5" class="md-nav__link">
8998
9228
  <span class="md-ellipsis">
8999
9229
  Security
9000
9230
  </span>
@@ -9003,7 +9233,7 @@
9003
9233
  </li>
9004
9234
 
9005
9235
  <li class="md-nav__item">
9006
- <a href="#added_5" class="md-nav__link">
9236
+ <a href="#added_6" class="md-nav__link">
9007
9237
  <span class="md-ellipsis">
9008
9238
  Added
9009
9239
  </span>
@@ -9012,7 +9242,7 @@
9012
9242
  </li>
9013
9243
 
9014
9244
  <li class="md-nav__item">
9015
- <a href="#changed_5" class="md-nav__link">
9245
+ <a href="#changed_6" class="md-nav__link">
9016
9246
  <span class="md-ellipsis">
9017
9247
  Changed
9018
9248
  </span>
@@ -9021,7 +9251,7 @@
9021
9251
  </li>
9022
9252
 
9023
9253
  <li class="md-nav__item">
9024
- <a href="#removed_3" class="md-nav__link">
9254
+ <a href="#removed_4" class="md-nav__link">
9025
9255
  <span class="md-ellipsis">
9026
9256
  Removed
9027
9257
  </span>
@@ -9030,7 +9260,7 @@
9030
9260
  </li>
9031
9261
 
9032
9262
  <li class="md-nav__item">
9033
- <a href="#fixed_6" class="md-nav__link">
9263
+ <a href="#fixed_7" class="md-nav__link">
9034
9264
  <span class="md-ellipsis">
9035
9265
  Fixed
9036
9266
  </span>
@@ -9039,7 +9269,7 @@
9039
9269
  </li>
9040
9270
 
9041
9271
  <li class="md-nav__item">
9042
- <a href="#dependencies_1" class="md-nav__link">
9272
+ <a href="#dependencies_2" class="md-nav__link">
9043
9273
  <span class="md-ellipsis">
9044
9274
  Dependencies
9045
9275
  </span>
@@ -9048,7 +9278,7 @@
9048
9278
  </li>
9049
9279
 
9050
9280
  <li class="md-nav__item">
9051
- <a href="#documentation_4" class="md-nav__link">
9281
+ <a href="#documentation_5" class="md-nav__link">
9052
9282
  <span class="md-ellipsis">
9053
9283
  Documentation
9054
9284
  </span>
@@ -9057,7 +9287,7 @@
9057
9287
  </li>
9058
9288
 
9059
9289
  <li class="md-nav__item">
9060
- <a href="#housekeeping_4" class="md-nav__link">
9290
+ <a href="#housekeeping_5" class="md-nav__link">
9061
9291
  <span class="md-ellipsis">
9062
9292
  Housekeeping
9063
9293
  </span>
@@ -9081,7 +9311,7 @@
9081
9311
  <ul class="md-nav__list">
9082
9312
 
9083
9313
  <li class="md-nav__item">
9084
- <a href="#added_6" class="md-nav__link">
9314
+ <a href="#added_7" class="md-nav__link">
9085
9315
  <span class="md-ellipsis">
9086
9316
  Added
9087
9317
  </span>
@@ -9090,7 +9320,7 @@
9090
9320
  </li>
9091
9321
 
9092
9322
  <li class="md-nav__item">
9093
- <a href="#changed_6" class="md-nav__link">
9323
+ <a href="#changed_7" class="md-nav__link">
9094
9324
  <span class="md-ellipsis">
9095
9325
  Changed
9096
9326
  </span>
@@ -9099,7 +9329,7 @@
9099
9329
  </li>
9100
9330
 
9101
9331
  <li class="md-nav__item">
9102
- <a href="#removed_4" class="md-nav__link">
9332
+ <a href="#removed_5" class="md-nav__link">
9103
9333
  <span class="md-ellipsis">
9104
9334
  Removed
9105
9335
  </span>
@@ -9108,7 +9338,7 @@
9108
9338
  </li>
9109
9339
 
9110
9340
  <li class="md-nav__item">
9111
- <a href="#fixed_7" class="md-nav__link">
9341
+ <a href="#fixed_8" class="md-nav__link">
9112
9342
  <span class="md-ellipsis">
9113
9343
  Fixed
9114
9344
  </span>
@@ -9117,7 +9347,7 @@
9117
9347
  </li>
9118
9348
 
9119
9349
  <li class="md-nav__item">
9120
- <a href="#documentation_5" class="md-nav__link">
9350
+ <a href="#documentation_6" class="md-nav__link">
9121
9351
  <span class="md-ellipsis">
9122
9352
  Documentation
9123
9353
  </span>
@@ -9126,7 +9356,7 @@
9126
9356
  </li>
9127
9357
 
9128
9358
  <li class="md-nav__item">
9129
- <a href="#housekeeping_5" class="md-nav__link">
9359
+ <a href="#housekeeping_6" class="md-nav__link">
9130
9360
  <span class="md-ellipsis">
9131
9361
  Housekeeping
9132
9362
  </span>
@@ -9150,7 +9380,7 @@
9150
9380
  <ul class="md-nav__list">
9151
9381
 
9152
9382
  <li class="md-nav__item">
9153
- <a href="#security_5" class="md-nav__link">
9383
+ <a href="#security_6" class="md-nav__link">
9154
9384
  <span class="md-ellipsis">
9155
9385
  Security
9156
9386
  </span>
@@ -9159,7 +9389,7 @@
9159
9389
  </li>
9160
9390
 
9161
9391
  <li class="md-nav__item">
9162
- <a href="#added_7" class="md-nav__link">
9392
+ <a href="#added_8" class="md-nav__link">
9163
9393
  <span class="md-ellipsis">
9164
9394
  Added
9165
9395
  </span>
@@ -9168,7 +9398,7 @@
9168
9398
  </li>
9169
9399
 
9170
9400
  <li class="md-nav__item">
9171
- <a href="#changed_7" class="md-nav__link">
9401
+ <a href="#changed_8" class="md-nav__link">
9172
9402
  <span class="md-ellipsis">
9173
9403
  Changed
9174
9404
  </span>
@@ -9177,7 +9407,7 @@
9177
9407
  </li>
9178
9408
 
9179
9409
  <li class="md-nav__item">
9180
- <a href="#removed_5" class="md-nav__link">
9410
+ <a href="#removed_6" class="md-nav__link">
9181
9411
  <span class="md-ellipsis">
9182
9412
  Removed
9183
9413
  </span>
@@ -9186,7 +9416,7 @@
9186
9416
  </li>
9187
9417
 
9188
9418
  <li class="md-nav__item">
9189
- <a href="#fixed_8" class="md-nav__link">
9419
+ <a href="#fixed_9" class="md-nav__link">
9190
9420
  <span class="md-ellipsis">
9191
9421
  Fixed
9192
9422
  </span>
@@ -9195,7 +9425,7 @@
9195
9425
  </li>
9196
9426
 
9197
9427
  <li class="md-nav__item">
9198
- <a href="#documentation_6" class="md-nav__link">
9428
+ <a href="#documentation_7" class="md-nav__link">
9199
9429
  <span class="md-ellipsis">
9200
9430
  Documentation
9201
9431
  </span>
@@ -9204,7 +9434,7 @@
9204
9434
  </li>
9205
9435
 
9206
9436
  <li class="md-nav__item">
9207
- <a href="#housekeeping_6" class="md-nav__link">
9437
+ <a href="#housekeeping_7" class="md-nav__link">
9208
9438
  <span class="md-ellipsis">
9209
9439
  Housekeeping
9210
9440
  </span>
@@ -9228,7 +9458,7 @@
9228
9458
  <ul class="md-nav__list">
9229
9459
 
9230
9460
  <li class="md-nav__item">
9231
- <a href="#added_8" class="md-nav__link">
9461
+ <a href="#added_9" class="md-nav__link">
9232
9462
  <span class="md-ellipsis">
9233
9463
  Added
9234
9464
  </span>
@@ -9237,7 +9467,7 @@
9237
9467
  </li>
9238
9468
 
9239
9469
  <li class="md-nav__item">
9240
- <a href="#changed_8" class="md-nav__link">
9470
+ <a href="#changed_9" class="md-nav__link">
9241
9471
  <span class="md-ellipsis">
9242
9472
  Changed
9243
9473
  </span>
@@ -9246,7 +9476,7 @@
9246
9476
  </li>
9247
9477
 
9248
9478
  <li class="md-nav__item">
9249
- <a href="#removed_6" class="md-nav__link">
9479
+ <a href="#removed_7" class="md-nav__link">
9250
9480
  <span class="md-ellipsis">
9251
9481
  Removed
9252
9482
  </span>
@@ -9255,7 +9485,7 @@
9255
9485
  </li>
9256
9486
 
9257
9487
  <li class="md-nav__item">
9258
- <a href="#fixed_9" class="md-nav__link">
9488
+ <a href="#fixed_10" class="md-nav__link">
9259
9489
  <span class="md-ellipsis">
9260
9490
  Fixed
9261
9491
  </span>
@@ -9264,7 +9494,7 @@
9264
9494
  </li>
9265
9495
 
9266
9496
  <li class="md-nav__item">
9267
- <a href="#housekeeping_7" class="md-nav__link">
9497
+ <a href="#housekeeping_8" class="md-nav__link">
9268
9498
  <span class="md-ellipsis">
9269
9499
  Housekeeping
9270
9500
  </span>
@@ -9346,9 +9576,63 @@
9346
9576
  <h4 id="remove-hide_restricted_ui-toggle-4787">Remove <code>HIDE_RESTRICTED_UI</code> Toggle (<a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a>)<a class="headerlink" href="#remove-hide_restricted_ui-toggle-4787" title="Permanent link">&para;</a></h4>
9347
9577
  <p>Support for <code>HIDE_RESTRICTED_UI</code> has been removed. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</p>
9348
9578
  <!-- towncrier release notes start -->
9349
- <h2 id="v218-2024-03-18">v2.1.8 (2024-03-18)<a class="headerlink" href="#v218-2024-03-18" title="Permanent link">&para;</a></h2>
9579
+ <h2 id="v219-2024-03-25">v2.1.9 (2024-03-25)<a class="headerlink" href="#v219-2024-03-25" title="Permanent link">&para;</a></h2>
9580
+ <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
9581
+ <ul>
9582
+ <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>
9583
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
9584
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added narrower permissions enforcement on the endpoints <code>/extras/git-repositories/&lt;uuid:pk&gt;/sync/</code> and <code>/extras/git-repositories/&lt;uuid:pk&gt;/dry-run/</code>; a user who has <code>change</code> permissions for a subset of Git repositories is no longer permitted to sync or dry-run other repositories for which they lack the appropriate permissions. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
9585
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added narrower permissions enforcement on the <code>/api/dcim/connected-device/?peer_device=...&amp;?peer_interface=...</code> REST API endpoint; a user who has <code>view</code> permissions for a subset of interfaces is no longer permitted to query other interfaces for which they lack permissions. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
9586
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added narrower permissions enforcement on all <code>&lt;app&gt;/&lt;model&gt;/&lt;uuid&gt;/notes/</code> UI endpoints; a user must now have the appropriate <code>extras.view_note</code> permissions to view existing notes. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
9587
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the REST API endpoints <code>/api/redoc/</code>, <code>/api/swagger/</code>, <code>/api/swagger.json</code>, and <code>/api/swagger.yaml</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
9588
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the <code>/api/graphql</code> REST API endpoint, 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>
9589
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
9590
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
9591
+ </ul>
9350
9592
  <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
9351
9593
  <ul>
9594
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
9595
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
9596
+ </ul>
9597
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
9598
+ <ul>
9599
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added support for <code>view_name</code> and <code>view_description</code> optional parameters when instantiating a <code>nautobot.apps.api.OrderedDefaultRouter</code>. Specifying these parameters is to be preferred over defining a custom <code>APIRootView</code> subclass when defining App API URLs.</li>
9600
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication by default on the <code>nautobot.apps.api.APIRootView</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>
9601
+ </ul>
9602
+ <h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">&para;</a></h3>
9603
+ <ul>
9604
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Removed the URL endpoints <code>/api/users/users/my-profile/</code>, <code>/api/users/users/session/</code>, <code>/api/users/tokens/authenticate/</code>, and <code>/api/users/tokens/logout/</code> as they are unused at this time.</li>
9605
+ </ul>
9606
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
9607
+ <ul>
9608
+ <li><a href="https://github.com/nautobot/nautobot/issues/5413">#5413</a> - Updated Device "LLDP Neighbors" detail panel to handle LLDP neighbors with MAC address as port-id.</li>
9609
+ <li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for GraphiQL page <code>/graphql</code>.</li>
9610
+ <li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for Admin page <code>/admin</code>.</li>
9611
+ <li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for Django Rest Framework (DRF) page <code>/api/</code>.</li>
9612
+ <li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Improved footer responsiveness for certain media sizes.</li>
9613
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
9614
+ <li><a href="https://github.com/nautobot/nautobot/issues/5466">#5466</a> - Remove duplicated location param in vlan table.</li>
9615
+ </ul>
9616
+ <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
9617
+ <ul>
9618
+ <li><a href="https://github.com/nautobot/nautobot/issues/5296">#5296</a> - Fixed bug in pyproject.toml that added <code>coverage</code> as a nautobot dependency instead of a development dependency.</li>
9619
+ </ul>
9620
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
9621
+ <ul>
9622
+ <li><a href="https://github.com/nautobot/nautobot/issues/5340">#5340</a> - Added installation documentation about recommended health-checks for Docker Compose and Kubernetes.</li>
9623
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
9624
+ </ul>
9625
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
9626
+ <ul>
9627
+ <li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/core/api/routers.py#21</code> with with a plain <code>dict</code> instance.</li>
9628
+ <li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/dcim/models/racks.py#275</code> with a plain <code>dict</code> instance.</li>
9629
+ <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
9630
+ <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
9631
+ <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
9632
+ </ul>
9633
+ <h2 id="v218-2024-03-18">v2.1.8 (2024-03-18)<a class="headerlink" href="#v218-2024-03-18" title="Permanent link">&para;</a></h2>
9634
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
9635
+ <ul>
9352
9636
  <li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
9353
9637
  <li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Added the option to configure and enforce <code>validation_minimum</code> and <code>validation_maximum</code> as length constraints on a Custom Field of type <code>Text</code>, <code>URL</code>, <code>JSON</code>, <code>Markdown</code>, <code>Selection</code>, or <code>Multiple Selection</code>.</li>
9354
9638
  <li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Added the option to configure and enforce <code>validation_regex</code> as a constraint on valid choice definitions for a Custom Field of type <code>Selection</code> or <code>Multiple Selection</code>.</li>
@@ -9357,16 +9641,16 @@
9357
9641
  <li><a href="https://github.com/nautobot/nautobot/issues/5402">#5402</a> - Added interface types <code>CXP (100GE)</code>, <code>DSFP (100GE)</code>, <code>SFP-DD (100GE)</code>, <code>QSFP-DD (100GE)</code>, <code>QSFP-DD (200GE)</code>, <code>CFP2 (400GE)</code>, <code>OSFP-RHS (400GE)</code>, <code>CDFP (400GE)</code>, <code>CPF8 (400GE)</code>, <code>SFP+ (32GFC)</code>, <code>SFP-DD (64GFC)</code>, and <code>SFP+ (64GFC)</code>.</li>
9358
9642
  <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>
9359
9643
  </ul>
9360
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
9644
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
9361
9645
  <ul>
9362
9646
  <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Changed uses of <code>functools.lru_cache</code> to use django-redis cache instead.</li>
9363
9647
  <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the django-redis cache.</li>
9364
9648
  </ul>
9365
- <h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">&para;</a></h3>
9649
+ <h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">&para;</a></h3>
9366
9650
  <ul>
9367
9651
  <li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Removed the hard-coded 255-character limit on custom fields of type <code>Text</code>.</li>
9368
9652
  </ul>
9369
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
9653
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9370
9654
  <ul>
9371
9655
  <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>
9372
9656
  <li><a href="https://github.com/nautobot/nautobot/issues/5380">#5380</a> - Fixed incorrect permission for "Add Tenant" button in the navigation menu.</li>
@@ -9374,28 +9658,28 @@
9374
9658
  <li><a href="https://github.com/nautobot/nautobot/issues/5395">#5395</a> - Fixed incorrect permission for "Roles" link in the navigation menu.</li>
9375
9659
  <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Fixed an issue with stale CustomField, ComputedField, Relationship, and TreeModel caches that caused incorrect data at times.</li>
9376
9660
  </ul>
9377
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
9661
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9378
9662
  <ul>
9379
9663
  <li><a href="https://github.com/nautobot/nautobot/issues/5437">#5437</a> - Added release-note for version 1.6.15.</li>
9380
9664
  <li><a href="https://github.com/nautobot/nautobot/issues/5421">#5421</a> - Added release-notes for versions 1.6.11 through 1.6.14.</li>
9381
9665
  </ul>
9382
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
9666
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
9383
9667
  <ul>
9384
9668
  <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>
9385
9669
  <li><a href="https://github.com/nautobot/nautobot/issues/3213">#3213</a> - Removed redundant filter tests for related boolean filters.</li>
9386
9670
  <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>
9387
9671
  </ul>
9388
9672
  <h2 id="v217-2024-03-05">v2.1.7 (2024-03-05)<a class="headerlink" href="#v217-2024-03-05" title="Permanent link">&para;</a></h2>
9389
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
9673
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9390
9674
  <ul>
9391
9675
  <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>
9392
9676
  </ul>
9393
9677
  <h2 id="v216-2024-03-04">v2.1.6 (2024-03-04)<a class="headerlink" href="#v216-2024-03-04" title="Permanent link">&para;</a></h2>
9394
- <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
9678
+ <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
9395
9679
  <ul>
9396
9680
  <li><a href="https://github.com/nautobot/nautobot/issues/5319">#5319</a> - Updated <code>cryptography</code> to 42.0.4 due to CVE-2024-26130. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9397
9681
  </ul>
9398
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
9682
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
9399
9683
  <ul>
9400
9684
  <li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Collapse Capable Side Navbar: Side Navbar is now able to be expanded and collapsed</li>
9401
9685
  <li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Expandable Main Content: The Main Content part of the UI grows as the Side Navbar collapses and shrinks as the Side Navbar expands.</li>
@@ -9404,11 +9688,11 @@
9404
9688
  <li><a href="https://github.com/nautobot/nautobot/issues/5329">#5329</a> - Added caching of <code>ChangeLoggedModelsQuery().as_queryset()</code> to improve performance when saving many objects in a change-logged context.</li>
9405
9689
  <li><a href="https://github.com/nautobot/nautobot/issues/5361">#5361</a> - Added <code>nautobot.core.testing.forms.FormTestCases</code> base class and added it to <code>nautobot.apps.testing</code> as well.</li>
9406
9690
  </ul>
9407
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
9691
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
9408
9692
  <ul>
9409
9693
  <li><a href="https://github.com/nautobot/nautobot/issues/5082">#5082</a> - Adjusted Edit / Create panels to occupy more page width on medium and large screens.</li>
9410
9694
  </ul>
9411
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
9695
+ <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9412
9696
  <ul>
9413
9697
  <li><a href="https://github.com/nautobot/nautobot/issues/4106">#4106</a> - Fixed inefficient query in VirtualMachine create form.</li>
9414
9698
  <li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Fixed Brand Icon mouseover Background: Fix for mouseover effect on the Brand / Icon (was flashing white background vs being transparent) when in dark mode.</li>
@@ -9425,7 +9709,7 @@
9425
9709
  <li><a href="https://github.com/nautobot/nautobot/issues/5346">#5346</a> - Fixed device LLDP view to work when interface names include a space.</li>
9426
9710
  <li><a href="https://github.com/nautobot/nautobot/issues/5365">#5365</a> - Fixed <code>invalidate_max_depth_cache</code> itself calculating <code>max_depth</code> on querysets without tree fields.</li>
9427
9711
  </ul>
9428
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
9712
+ <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
9429
9713
  <ul>
9430
9714
  <li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation on <code>nautobot.apps</code> import locations.</li>
9431
9715
  <li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation about the supported public interfaces.</li>
@@ -9439,24 +9723,24 @@
9439
9723
  <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>
9440
9724
  </ul>
9441
9725
  <h2 id="v215-2024-02-21">v2.1.5 (2024-02-21)<a class="headerlink" href="#v215-2024-02-21" title="Permanent link">&para;</a></h2>
9442
- <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
9726
+ <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
9443
9727
  <ul>
9444
9728
  <li><a href="https://github.com/nautobot/nautobot/pull/5303">#5303</a> - Updated <code>cryptography</code> to 42.0.2 due to CVE-2024-0727. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
9445
9729
  </ul>
9446
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
9730
+ <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9447
9731
  <ul>
9448
9732
  <li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Added <code>latest</code> and <code>latest-py&lt;version&gt;</code> tags to the <code>nautobot</code> Docker images published for the latest stable release of Nautobot.</li>
9449
9733
  <li><a href="https://github.com/nautobot/nautobot/issues/5210">#5210</a> - Added <code>METRICS_AUTHENTICATED</code> setting to control authentication for the HTTP endpoint <code>/metrics</code>.</li>
9450
9734
  <li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting display_field on DynamicModelChoiceField to nested values in suggested choices list.</li>
9451
9735
  </ul>
9452
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
9736
+ <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
9453
9737
  <ul>
9454
9738
  <li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Changed the tagging of <code>nautobot-dev</code> Docker images to reserve the <code>latest</code> and <code>latest-py&lt;version&gt;</code> tags for the latest stable release of Nautobot, rather than the latest build from the <code>develop</code> branch.</li>
9455
9739
  <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>
9456
9740
  <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>
9457
9741
  <li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Updated navbar user dropdown with chevron.</li>
9458
9742
  </ul>
9459
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
9743
+ <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9460
9744
  <ul>
9461
9745
  <li><a href="https://github.com/nautobot/nautobot/issues/5058">#5058</a> - Changed more filter parameters from <code>location_id</code> to <code>location</code> in <code>virtualization/forms.py</code>.</li>
9462
9746
  <li><a href="https://github.com/nautobot/nautobot/issues/5121">#5121</a> - Fixed an issue where deleting a git repository resulted in a job result stuck in running state.</li>
@@ -9465,38 +9749,38 @@
9465
9749
  <li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Fixed button spacing when there are multiple buttons in navbar.</li>
9466
9750
  <li><a href="https://github.com/nautobot/nautobot/issues/5283">#5283</a> - Fixed inconsistent ordering of IP addresses in various tables.</li>
9467
9751
  </ul>
9468
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
9752
+ <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
9469
9753
  <ul>
9470
9754
  <li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the TIME_ZONE setting consistent on Nautobot web servers and Celery Beat servers.</li>
9471
9755
  <li><a href="https://github.com/nautobot/nautobot/issues/5297">#5297</a> - Updated the low level application stack diagram to orient user traffic coming from the top.</li>
9472
9756
  </ul>
9473
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
9757
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
9474
9758
  <ul>
9475
9759
  <li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Reorganized navbar css rules in <code>base.css</code>.</li>
9476
9760
  </ul>
9477
9761
  <h2 id="v214-2024-02-08">v2.1.4 (2024-02-08)<a class="headerlink" href="#v214-2024-02-08" title="Permanent link">&para;</a></h2>
9478
- <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
9762
+ <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
9479
9763
  <ul>
9480
9764
  <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>
9481
9765
  </ul>
9482
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
9766
+ <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
9483
9767
  <ul>
9484
9768
  <li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Fixed <code>TypeError</code> and similar exceptions thrown when rendering certain App data tables in v2.1.3.</li>
9485
9769
  </ul>
9486
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
9770
+ <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
9487
9771
  <ul>
9488
9772
  <li><a href="https://github.com/nautobot/nautobot/issues/4778">#4778</a> - Added troubleshooting documentation for PostgreSQL databases with unsupported encoding settings.</li>
9489
9773
  </ul>
9490
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
9774
+ <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
9491
9775
  <ul>
9492
9776
  <li><a href="https://github.com/nautobot/nautobot/issues/5240">#5240</a> - Changed test config to use <code>constance.backends.memory.MemoryBackend</code> to avoid intermittent failures in parallel tests.</li>
9493
9777
  </ul>
9494
9778
  <h2 id="v213-2024-02-05">v2.1.3 (2024-02-05)<a class="headerlink" href="#v213-2024-02-05" title="Permanent link">&para;</a></h2>
9495
- <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
9779
+ <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
9496
9780
  <ul>
9497
9781
  <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>
9498
9782
  </ul>
9499
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
9783
+ <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
9500
9784
  <ul>
9501
9785
  <li><a href="https://github.com/nautobot/nautobot/issues/4981">#4981</a> - Add serial types to InterfaceTypeChoices.</li>
9502
9786
  <li><a href="https://github.com/nautobot/nautobot/issues/5012">#5012</a> - Added database indexes to the ObjectChange model to improve performance when filtering by <code>user_name</code>, <code>changed_object</code>, or <code>related_object</code>, and also by <code>changed_object</code> in combination with <code>user</code> or <code>user_name</code>.</li>
@@ -9504,7 +9788,7 @@
9504
9788
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added Navbar dropdown arrow rotation on open/close.</li>
9505
9789
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added behavior of resetting navbar state when the "home" link is clicked.</li>
9506
9790
  </ul>
9507
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
9791
+ <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
9508
9792
  <ul>
9509
9793
  <li><a href="https://github.com/nautobot/nautobot/issues/5149">#5149</a> - Updated the Job List to show Job Hook Receiver and Job Button Receiver Jobs, which were previously being hidden from view.</li>
9510
9794
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown link behavior to turn orange when active/clicked; state is saved.</li>
@@ -9513,12 +9797,12 @@
9513
9797
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown to use chevron icon instead of carets.</li>
9514
9798
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Aligned navbar dropdown icons to the right.</li>
9515
9799
  </ul>
9516
- <h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">&para;</a></h3>
9800
+ <h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">&para;</a></h3>
9517
9801
  <ul>
9518
9802
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed unneeded tooltip of dropdown title.</li>
9519
9803
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed navbar dropdown links underlining.</li>
9520
9804
  </ul>
9521
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
9805
+ <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
9522
9806
  <ul>
9523
9807
  <li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
9524
9808
  <li><a href="https://github.com/nautobot/nautobot/issues/4898">#4898</a> - Improved automatic query optimization when rendering object list views.</li>
@@ -9532,14 +9816,14 @@
9532
9816
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Fixed navbar dropdown links alignment and spacing.</li>
9533
9817
  <li><a href="https://github.com/nautobot/nautobot/issues/5198">#5198</a> - Fixed error in device and rack dropdowns when attempting to add an Interface to an InterfaceRedundancyGroup.</li>
9534
9818
  </ul>
9535
- <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
9819
+ <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
9536
9820
  <ul>
9537
9821
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>MarkupSafe</code> dependency to 2.1.5.</li>
9538
9822
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mysqlclient</code> dependency to 2.2.3.</li>
9539
9823
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>python-slugify</code> dependency to 8.0.3.</li>
9540
9824
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>pyuwsgi</code> dependency to 2.0.23.</li>
9541
9825
  </ul>
9542
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
9826
+ <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
9543
9827
  <ul>
9544
9828
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mkdocs-section-index</code> documentation dependency to 0.3.8.</li>
9545
9829
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>ruff</code> development dependency to 0.1.15.</li>
@@ -9551,30 +9835,30 @@
9551
9835
  <li><a href="https://github.com/nautobot/nautobot/issues/5206">#5206</a> - Added q filter test for ExternalIntegration.</li>
9552
9836
  </ul>
9553
9837
  <h2 id="v212-2024-01-22">v2.1.2 (2024-01-22)<a class="headerlink" href="#v212-2024-01-22" title="Permanent link">&para;</a></h2>
9554
- <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
9838
+ <h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">&para;</a></h3>
9555
9839
  <ul>
9556
9840
  <li><a href="https://github.com/nautobot/nautobot/issues/5054">#5054</a> - Added validation of redirect URLs to the "Add a new IP Address" and "Assign an IP Address" views.</li>
9557
9841
  <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>
9558
9842
  <li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</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>
9559
9843
  </ul>
9560
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
9844
+ <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
9561
9845
  <ul>
9562
9846
  <li><a href="https://github.com/nautobot/nautobot/issues/3877">#3877</a> - Added global filtering to Job Result log table, enabling search across all pages.</li>
9563
9847
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Enhanced the <code>sanitize</code> function to also handle sanitization of lists and tuples of strings.</li>
9564
9848
  <li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</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>
9565
9849
  </ul>
9566
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
9850
+ <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
9567
9851
  <ul>
9568
9852
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested user has permission to run the requested job.</li>
9569
9853
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested job is installed and enabled.</li>
9570
9854
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether a Celery worker is running when invoked without the <code>--local</code> flag.</li>
9571
9855
  <li><a href="https://github.com/nautobot/nautobot/issues/5131">#5131</a> - Improved the performance of the <code>/api/dcim/locations/</code> REST API.</li>
9572
9856
  </ul>
9573
- <h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">&para;</a></h3>
9857
+ <h3 id="removed_4">Removed<a class="headerlink" href="#removed_4" title="Permanent link">&para;</a></h3>
9574
9858
  <ul>
9575
9859
  <li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Removed <code>nautobot-server startplugin</code> management command.</li>
9576
9860
  </ul>
9577
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
9861
+ <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
9578
9862
  <ul>
9579
9863
  <li><a href="https://github.com/nautobot/nautobot/issues/4075">#4075</a> - Fixed sorting of Device Bays list view by installed device status.</li>
9580
9864
  <li><a href="https://github.com/nautobot/nautobot/issues/4444">#4444</a> - Fixed Sync Git Repository requires non-matching permissions for UI vs API.</li>
@@ -9600,17 +9884,17 @@
9600
9884
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Fixed incorrect JobResult data when using <code>nautobot-server runjob --local</code> or <code>JobResult.execute_job()</code>.</li>
9601
9885
  <li><a href="https://github.com/nautobot/nautobot/issues/5111">#5111</a> - Fixed rack group and rack filtering by the location selected in the device bulk edit form.</li>
9602
9886
  </ul>
9603
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
9887
+ <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
9604
9888
  <ul>
9605
9889
  <li><a href="https://github.com/nautobot/nautobot/issues/5083">#5083</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
9606
9890
  <li><a href="https://github.com/nautobot/nautobot/issues/5086">#5086</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
9607
9891
  <li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
9608
9892
  </ul>
9609
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
9893
+ <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
9610
9894
  <ul>
9611
9895
  <li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Added a link to the <code>cookiecutter-nautobot-app</code> project in the App developer documentation.</li>
9612
9896
  </ul>
9613
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
9897
+ <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
9614
9898
  <ul>
9615
9899
  <li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Added automatic superuser creation environment variables to docker development environment.</li>
9616
9900
  <li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Updated VS Code Dev Containers configuration and documentation.</li>
@@ -9620,20 +9904,20 @@
9620
9904
  <li><a href="https://github.com/nautobot/nautobot/issues/5118">#5118</a> - Updated PR template to encourage inclusion of screenshots.</li>
9621
9905
  </ul>
9622
9906
  <h2 id="v211-2024-01-08">v2.1.1 (2024-01-08)<a class="headerlink" href="#v211-2024-01-08" title="Permanent link">&para;</a></h2>
9623
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
9907
+ <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
9624
9908
  <ul>
9625
9909
  <li><a href="https://github.com/nautobot/nautobot/issues/5046">#5046</a> - Updated the LocationType clone process to pre-populate the original object's parent, nestable and content type fields.</li>
9626
9910
  </ul>
9627
- <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
9911
+ <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
9628
9912
  <ul>
9629
9913
  <li><a href="https://github.com/nautobot/nautobot/issues/4992">#4992</a> - Added change-logging (ObjectChange support) for the ObjectPermission model.</li>
9630
9914
  </ul>
9631
- <h3 id="removed_4">Removed<a class="headerlink" href="#removed_4" title="Permanent link">&para;</a></h3>
9915
+ <h3 id="removed_5">Removed<a class="headerlink" href="#removed_5" title="Permanent link">&para;</a></h3>
9632
9916
  <ul>
9633
9917
  <li><a href="https://github.com/nautobot/nautobot/issues/5033">#5033</a> - Removed alpha UI from the main code base for now (it still exists in a prototype branch) to reduce the burden of maintaining its dependencies in the meantime.</li>
9634
9918
  <li><a href="https://github.com/nautobot/nautobot/issues/5035">#5035</a> - Removed nodesource apt repository from Dockerfile.</li>
9635
9919
  </ul>
9636
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
9920
+ <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
9637
9921
  <ul>
9638
9922
  <li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed an error when attempting to "Save Changes" to an existing GraphQL saved query via the GraphiQL UI.</li>
9639
9923
  <li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed incorrect positioning of the "Save Changes" button in the "Queries" menu in the GraphiQL UI.</li>
@@ -9642,14 +9926,14 @@
9642
9926
  <li><a href="https://github.com/nautobot/nautobot/issues/5005">#5005</a> - Fixed missing schema field in config context create/edit forms.</li>
9643
9927
  <li><a href="https://github.com/nautobot/nautobot/issues/5020">#5020</a> - Fixed display of secrets when editing a SecretsGroup.</li>
9644
9928
  </ul>
9645
- <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
9929
+ <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
9646
9930
  <ul>
9647
9931
  <li><a href="https://github.com/nautobot/nautobot/issues/5019">#5019</a> - Updated the documentation on the usage of the <code>nautobot-server runjob</code> management command.</li>
9648
9932
  <li><a href="https://github.com/nautobot/nautobot/issues/5023">#5023</a> - Fixed some typos in the 2.1.0 release notes.</li>
9649
9933
  <li><a href="https://github.com/nautobot/nautobot/issues/5027">#5027</a> - Fixed typo in Device Redundancy Group docs.</li>
9650
9934
  <li><a href="https://github.com/nautobot/nautobot/issues/5044">#5044</a> - Updated the documentation on <code>nautobot_database_ready</code> signal handlers with a warning.</li>
9651
9935
  </ul>
9652
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
9936
+ <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
9653
9937
  <ul>
9654
9938
  <li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Updated <code>ruff</code> development dependency to <code>~0.1.10</code>.</li>
9655
9939
  <li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Removed <code>black</code> and <code>flake8</code> as development dependencies as they're fully replaced by <code>ruff</code> now.</li>
@@ -9664,13 +9948,13 @@
9664
9948
  <li><a href="https://github.com/nautobot/nautobot/issues/5055">#5055</a> - Removed <code>isort</code> as a development dependency as it's fully replaced by <code>ruff</code> now.</li>
9665
9949
  </ul>
9666
9950
  <h2 id="v210-2023-12-22">v2.1.0 (2023-12-22)<a class="headerlink" href="#v210-2023-12-22" title="Permanent link">&para;</a></h2>
9667
- <h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">&para;</a></h3>
9951
+ <h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">&para;</a></h3>
9668
9952
  <ul>
9669
9953
  <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>
9670
9954
  <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>
9671
9955
  <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>
9672
9956
  </ul>
9673
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
9957
+ <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
9674
9958
  <ul>
9675
9959
  <li><a href="https://github.com/nautobot/nautobot/issues/2149">#2149</a> - Added customizable panels on the homepage.</li>
9676
9960
  <li><a href="https://github.com/nautobot/nautobot/issues/4708">#4708</a> - Added VRF to interface bulk edit form.</li>
@@ -9684,7 +9968,7 @@
9684
9968
  <li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Added <code>JOB_CREATE_FILE_MAX_SIZE</code> setting.</li>
9685
9969
  <li><a href="https://github.com/nautobot/nautobot/issues/4989">#4989</a> - Added a link to the Advanced tab on detail views to easily open the object in the API browser.</li>
9686
9970
  </ul>
9687
- <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
9971
+ <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
9688
9972
  <ul>
9689
9973
  <li><a href="https://github.com/nautobot/nautobot/issues/4884">#4884</a> - Added Bootstrap tooltips for all HTML elements with a <code>title</code> attribute.</li>
9690
9974
  <li><a href="https://github.com/nautobot/nautobot/issues/4888">#4888</a> - Moved username and user actions menu from the top of the nav bar to the bottom.</li>
@@ -9695,12 +9979,12 @@
9695
9979
  <li><a href="https://github.com/nautobot/nautobot/issues/4996">#4996</a> - Changed the order and help text of fields in the External Integration create and edit forms.</li>
9696
9980
  <li><a href="https://github.com/nautobot/nautobot/issues/5003">#5003</a> - Updated gifs to showcase new Nautobot 2.1 interface.</li>
9697
9981
  </ul>
9698
- <h3 id="removed_5">Removed<a class="headerlink" href="#removed_5" title="Permanent link">&para;</a></h3>
9982
+ <h3 id="removed_6">Removed<a class="headerlink" href="#removed_6" title="Permanent link">&para;</a></h3>
9699
9983
  <ul>
9700
9984
  <li><a href="https://github.com/nautobot/nautobot/issues/4757">#4757</a> - Dropped support for PostgreSQL versions before 12.0.</li>
9701
9985
  <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>
9702
9986
  </ul>
9703
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
9987
+ <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
9704
9988
  <ul>
9705
9989
  <li><a href="https://github.com/nautobot/nautobot/issues/4620">#4620</a> - Ensure UI build directory is created on init of nautobot-server.</li>
9706
9990
  <li><a href="https://github.com/nautobot/nautobot/issues/4627">#4627</a> - Fixed JSON custom field being returned as a <code>repr()</code> string when using GraphQL.</li>
@@ -9713,14 +9997,14 @@
9713
9997
  <li><a href="https://github.com/nautobot/nautobot/issues/4968">#4968</a> - Fixed some cases in which the <code>ipam.0025</code> data migration might throw an exception due to invalid data.</li>
9714
9998
  <li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
9715
9999
  </ul>
9716
- <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
10000
+ <h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">&para;</a></h3>
9717
10001
  <ul>
9718
10002
  <li><a href="https://github.com/nautobot/nautobot/issues/4735">#4735</a> - Documented Django Admin Log Entries in v2.1 Release Overview.</li>
9719
10003
  <li><a href="https://github.com/nautobot/nautobot/issues/4736">#4736</a> - Documented <code>isnull</code> filter expression in v2.1 Release Overview.</li>
9720
10004
  <li><a href="https://github.com/nautobot/nautobot/issues/4766">#4766</a> - Updated documentation for registering tab views.</li>
9721
10005
  <li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Fixed up docstrings for a number of Job-related classes and methods.</li>
9722
10006
  </ul>
9723
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
10007
+ <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
9724
10008
  <ul>
9725
10009
  <li><a href="https://github.com/nautobot/nautobot/issues/4647">#4647</a> - Added DeviceFactory.</li>
9726
10010
  <li><a href="https://github.com/nautobot/nautobot/issues/4896">#4896</a> - Added <code>/theme-preview/</code> view (only when <code>settings.DEBUG</code> is enabled) to preview various UI elements and layouts.</li>
@@ -9728,7 +10012,7 @@
9728
10012
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
9729
10013
  </ul>
9730
10014
  <h2 id="v210-beta1-2023-11-30">v2.1.0-beta.1 (2023-11-30)<a class="headerlink" href="#v210-beta1-2023-11-30" title="Permanent link">&para;</a></h2>
9731
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
10015
+ <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
9732
10016
  <ul>
9733
10017
  <li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Added the ability to automatically apply <code>isnull</code> filters when model field is nullable.</li>
9734
10018
  <li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Enhanced <code>status</code> filters to support filtering by ID (UUID) as an alternative to filtering by <code>name</code>.</li>
@@ -9748,7 +10032,7 @@
9748
10032
  <li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added listing of related <code>files</code> to the <code>/api/extras/job-results/</code> REST API.</li>
9749
10033
  <li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added read-only REST API for the FileProxy model (files generated by a Job run), including a <code>/download/</code> endpoint for downloading the file content.</li>
9750
10034
  </ul>
9751
- <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
10035
+ <h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">&para;</a></h3>
9752
10036
  <ul>
9753
10037
  <li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized nautobot UI bootstrap theme with LESS variables.</li>
9754
10038
  <li><a href="https://github.com/nautobot/nautobot/issues/4745">#4745</a> - Changed object export (CSV, YAML, export-template) to run as a background task, avoiding HTTP timeouts when exporting thousands of objects in a single operation.</li>
@@ -9757,12 +10041,12 @@
9757
10041
  <li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Lightened table row background color in dark mode.</li>
9758
10042
  <li><a href="https://github.com/nautobot/nautobot/issues/4808">#4808</a> - Make NavItem link text margin-right slightly larger.</li>
9759
10043
  </ul>
9760
- <h3 id="removed_6">Removed<a class="headerlink" href="#removed_6" title="Permanent link">&para;</a></h3>
10044
+ <h3 id="removed_7">Removed<a class="headerlink" href="#removed_7" title="Permanent link">&para;</a></h3>
9761
10045
  <ul>
9762
10046
  <li><a href="https://github.com/nautobot/nautobot/issues/4765">#4765</a> - Removed "Import" buttons from navbar dropdown menus.</li>
9763
10047
  <li><a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a> - Removed support for <code>HIDE_RESTRICTED_UI</code>. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</li>
9764
10048
  </ul>
9765
- <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
10049
+ <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
9766
10050
  <ul>
9767
10051
  <li><a href="https://github.com/nautobot/nautobot/issues/4646">#4646</a> - Fixed a bug in <code>ObjectPermission</code> where <code>users.user</code> permissions could not be created.</li>
9768
10052
  <li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Fixed default button background color in dark mode.</li>
@@ -9770,7 +10054,7 @@
9770
10054
  <li><a href="https://github.com/nautobot/nautobot/issues/4862">#4862</a> - Fixes issues with uninstalled apps &amp; lingering contenttypes referenced in changelog.</li>
9771
10055
  <li><a href="https://github.com/nautobot/nautobot/issues/4882">#4882</a> - Fixed a regression in the rendering of the Jobs table view.</li>
9772
10056
  </ul>
9773
- <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
10057
+ <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
9774
10058
  <ul>
9775
10059
  <li><a href="https://github.com/nautobot/nautobot/issues/3352">#3352</a> - Added a shared <code>media_root</code> volume to developer Docker Compose environment.</li>
9776
10060
  <li><a href="https://github.com/nautobot/nautobot/issues/4781">#4781</a> - Added Gherkin writeups for "Locations" and "Prefixes" feature workflows.</li>
@@ -9919,9 +10203,9 @@
9919
10203
  <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>
9920
10204
 
9921
10205
 
9922
- <script src="../assets/javascripts/bundle.8fd75fb4.min.js"></script>
10206
+ <script src="../assets/javascripts/bundle.bd41221c.min.js"></script>
9923
10207
 
9924
- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
10208
+ <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
9925
10209
 
9926
10210
 
9927
10211
  </body>