nautobot 2.2.0b1__py3-none-any.whl → 2.2.1__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 (425) 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 +44 -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 +20 -6
  47. nautobot/core/views/mixins.py +7 -1
  48. nautobot/core/views/renderers.py +11 -6
  49. nautobot/dcim/api/serializers.py +4 -4
  50. nautobot/dcim/api/urls.py +2 -3
  51. nautobot/dcim/api/views.py +7 -18
  52. nautobot/dcim/apps.py +8 -4
  53. nautobot/dcim/elevations.py +5 -1
  54. nautobot/dcim/factory.py +7 -7
  55. nautobot/dcim/filters/__init__.py +16 -17
  56. nautobot/dcim/forms.py +61 -45
  57. nautobot/dcim/homepage.py +11 -3
  58. nautobot/dcim/management/commands/migrate_location_contacts.py +218 -0
  59. nautobot/dcim/migrations/0057_controller_models.py +11 -70
  60. nautobot/dcim/models/__init__.py +2 -2
  61. nautobot/dcim/models/devices.py +14 -16
  62. nautobot/dcim/models/racks.py +1 -3
  63. nautobot/dcim/navigation.py +23 -31
  64. nautobot/dcim/signals.py +6 -6
  65. nautobot/dcim/tables/__init__.py +2 -2
  66. nautobot/dcim/tables/devices.py +13 -16
  67. nautobot/dcim/tables/template_code.py +1 -1
  68. nautobot/dcim/templates/dcim/controller_create.html +70 -0
  69. nautobot/dcim/templates/dcim/controller_retrieve.html +35 -18
  70. nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +88 -0
  71. nautobot/dcim/templates/dcim/device/lldp_neighbors.html +75 -43
  72. nautobot/dcim/templates/dcim/device.html +11 -3
  73. nautobot/dcim/templates/dcim/device_edit.html +1 -1
  74. nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
  75. nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
  76. nautobot/dcim/tests/test_api.py +47 -6
  77. nautobot/dcim/tests/test_filters.py +92 -81
  78. nautobot/dcim/tests/test_graphql.py +11 -1
  79. nautobot/dcim/tests/test_models.py +15 -15
  80. nautobot/dcim/tests/test_signals.py +3 -1
  81. nautobot/dcim/tests/test_views.py +24 -12
  82. nautobot/dcim/urls.py +1 -1
  83. nautobot/dcim/views.py +25 -15
  84. nautobot/extras/api/serializers.py +20 -1
  85. nautobot/extras/api/urls.py +1 -2
  86. nautobot/extras/api/views.py +0 -10
  87. nautobot/extras/apps.py +7 -0
  88. nautobot/extras/context_managers.py +15 -4
  89. nautobot/extras/filters/__init__.py +53 -2
  90. nautobot/extras/filters/customfields.py +14 -9
  91. nautobot/extras/filters/mixins.py +6 -1
  92. nautobot/extras/forms/contacts.py +7 -0
  93. nautobot/extras/health_checks.py +1 -0
  94. nautobot/extras/jobs.py +1 -0
  95. nautobot/extras/managers.py +15 -2
  96. nautobot/extras/models/contacts.py +1 -0
  97. nautobot/extras/models/customfields.py +25 -2
  98. nautobot/extras/models/datasources.py +1 -0
  99. nautobot/extras/models/mixins.py +1 -0
  100. nautobot/extras/navigation.py +71 -65
  101. nautobot/extras/plugins/__init__.py +2 -1
  102. nautobot/extras/plugins/views.py +7 -11
  103. nautobot/extras/querysets.py +1 -2
  104. nautobot/extras/secrets/providers.py +1 -0
  105. nautobot/extras/signals.py +15 -5
  106. nautobot/extras/tasks.py +70 -17
  107. nautobot/extras/tests/test_api.py +2 -4
  108. nautobot/extras/tests/test_customfields.py +72 -9
  109. nautobot/extras/tests/test_dynamicgroups.py +2 -0
  110. nautobot/extras/tests/test_filters.py +89 -4
  111. nautobot/extras/tests/test_models.py +9 -0
  112. nautobot/extras/tests/test_relationships.py +10 -1
  113. nautobot/extras/tests/test_views.py +112 -1
  114. nautobot/extras/views.py +18 -17
  115. nautobot/ipam/api/serializers.py +10 -0
  116. nautobot/ipam/api/urls.py +1 -2
  117. nautobot/ipam/api/views.py +0 -11
  118. nautobot/ipam/apps.py +3 -2
  119. nautobot/ipam/tables.py +2 -22
  120. nautobot/ipam/tests/test_graphql.py +2 -3
  121. nautobot/ipam/tests/test_tables.py +42 -0
  122. nautobot/ipam/tests/test_views.py +1 -0
  123. nautobot/ipam/views.py +9 -9
  124. nautobot/project-static/css/base.css +1 -0
  125. nautobot/project-static/docs/404.html +126 -73
  126. nautobot/project-static/docs/apps/index.html +127 -71
  127. nautobot/project-static/docs/apps/nautobot-apps.html +127 -71
  128. nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
  129. nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
  130. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
  131. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
  132. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +127 -71
  133. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +127 -71
  134. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +167 -73
  135. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +165 -72
  136. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +127 -71
  137. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +127 -71
  138. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +127 -71
  139. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +127 -71
  140. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +127 -71
  141. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +127 -71
  142. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +127 -71
  143. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +127 -71
  144. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +127 -71
  145. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +127 -71
  146. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +127 -71
  147. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +127 -71
  148. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +127 -71
  149. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +127 -71
  150. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +128 -72
  151. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +127 -71
  152. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +127 -71
  153. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +345 -71
  154. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +172 -73
  155. nautobot/project-static/docs/development/apps/api/configuration-view.html +127 -71
  156. nautobot/project-static/docs/development/apps/api/database-backend-config.html +127 -71
  157. nautobot/project-static/docs/development/apps/api/models/django-admin.html +127 -71
  158. nautobot/project-static/docs/development/apps/api/models/global-search.html +127 -71
  159. nautobot/project-static/docs/development/apps/api/models/graphql.html +127 -71
  160. nautobot/project-static/docs/development/apps/api/models/index.html +127 -71
  161. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +127 -71
  162. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +127 -71
  163. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +127 -71
  164. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +127 -71
  165. nautobot/project-static/docs/development/apps/api/platform-features/index.html +127 -71
  166. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +127 -71
  167. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +127 -71
  168. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +127 -71
  169. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +127 -71
  170. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +127 -71
  171. nautobot/project-static/docs/development/apps/api/prometheus.html +127 -71
  172. nautobot/project-static/docs/development/apps/api/setup.html +127 -71
  173. nautobot/project-static/docs/development/apps/api/testing.html +127 -71
  174. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +127 -71
  175. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +127 -71
  176. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +127 -71
  177. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +127 -71
  178. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +127 -71
  179. nautobot/project-static/docs/development/apps/api/views/base-template.html +127 -71
  180. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +141 -80
  181. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +144 -83
  182. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +127 -71
  183. nautobot/project-static/docs/development/apps/api/views/index.html +127 -71
  184. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +127 -71
  185. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +127 -71
  186. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +127 -71
  187. nautobot/project-static/docs/development/apps/api/views/notes.html +127 -71
  188. nautobot/project-static/docs/development/apps/api/views/rest-api.html +127 -71
  189. nautobot/project-static/docs/development/apps/api/views/urls.html +127 -71
  190. nautobot/project-static/docs/development/apps/index.html +127 -71
  191. nautobot/project-static/docs/development/apps/migration/code-updates.html +127 -71
  192. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +127 -71
  193. nautobot/project-static/docs/development/apps/migration/from-v1.html +127 -71
  194. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +127 -71
  195. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +127 -71
  196. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +127 -71
  197. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +127 -71
  198. nautobot/project-static/docs/development/apps/porting-from-netbox.html +127 -71
  199. nautobot/project-static/docs/development/core/application-registry.html +127 -71
  200. nautobot/project-static/docs/development/core/best-practices.html +145 -79
  201. nautobot/project-static/docs/development/core/bootstrap-ui.html +127 -71
  202. nautobot/project-static/docs/development/core/caching.html +127 -71
  203. nautobot/project-static/docs/development/core/controllers.html +141 -275
  204. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +127 -71
  205. nautobot/project-static/docs/development/core/extending-models.html +13 -8166
  206. nautobot/project-static/docs/development/core/generic-views.html +142 -86
  207. nautobot/project-static/docs/development/core/getting-started.html +146 -81
  208. nautobot/project-static/docs/development/core/homepage.html +145 -89
  209. nautobot/project-static/docs/development/core/index.html +127 -71
  210. nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
  211. nautobot/project-static/docs/development/core/model-features.html +130 -74
  212. nautobot/project-static/docs/development/core/natural-keys.html +127 -71
  213. nautobot/project-static/docs/development/core/navigation-menu.html +127 -71
  214. nautobot/project-static/docs/development/core/release-checklist.html +127 -71
  215. nautobot/project-static/docs/development/core/role-internals.html +127 -71
  216. nautobot/project-static/docs/development/core/settings.html +127 -71
  217. nautobot/project-static/docs/development/core/style-guide.html +127 -71
  218. nautobot/project-static/docs/development/core/templates.html +127 -71
  219. nautobot/project-static/docs/development/core/testing.html +127 -71
  220. nautobot/project-static/docs/development/core/user-preferences.html +127 -71
  221. nautobot/project-static/docs/development/extending-models.html +3 -3
  222. nautobot/project-static/docs/development/index.html +127 -71
  223. nautobot/project-static/docs/development/jobs/index.html +128 -72
  224. nautobot/project-static/docs/development/jobs/migration/from-v1.html +127 -71
  225. nautobot/project-static/docs/index.html +126 -73
  226. nautobot/project-static/docs/models/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +3 -3
  227. nautobot/project-static/docs/objects.inv +0 -0
  228. nautobot/project-static/docs/release-notes/index.html +127 -71
  229. nautobot/project-static/docs/release-notes/version-1.0.html +127 -71
  230. nautobot/project-static/docs/release-notes/version-1.1.html +127 -71
  231. nautobot/project-static/docs/release-notes/version-1.2.html +127 -71
  232. nautobot/project-static/docs/release-notes/version-1.3.html +127 -71
  233. nautobot/project-static/docs/release-notes/version-1.4.html +127 -71
  234. nautobot/project-static/docs/release-notes/version-1.5.html +127 -71
  235. nautobot/project-static/docs/release-notes/version-1.6.html +127 -71
  236. nautobot/project-static/docs/release-notes/version-2.0.html +127 -71
  237. nautobot/project-static/docs/release-notes/version-2.1.html +538 -254
  238. nautobot/project-static/docs/release-notes/version-2.2.html +520 -101
  239. nautobot/project-static/docs/requirements.txt +3 -3
  240. nautobot/project-static/docs/search/search_index.json +1 -1
  241. nautobot/project-static/docs/sitemap.xml +264 -259
  242. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  243. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +127 -71
  244. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +127 -71
  245. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +127 -71
  246. nautobot/project-static/docs/user-guide/administration/configuration/index.html +127 -71
  247. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +192 -71
  248. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +127 -71
  249. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +127 -71
  250. nautobot/project-static/docs/user-guide/administration/guides/caching.html +127 -71
  251. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +127 -71
  252. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +127 -71
  253. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +127 -71
  254. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -71
  255. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +127 -71
  256. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +127 -71
  257. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +130 -74
  258. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +127 -71
  259. nautobot/project-static/docs/user-guide/administration/installation/docker.html +134 -74
  260. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +127 -71
  261. nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +8616 -0
  262. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +127 -71
  263. nautobot/project-static/docs/user-guide/administration/installation/index.html +127 -71
  264. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +127 -71
  265. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +127 -71
  266. nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +130 -74
  267. nautobot/project-static/docs/user-guide/administration/installation/services.html +127 -71
  268. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +127 -71
  269. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +127 -71
  270. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +127 -71
  271. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +127 -71
  272. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +127 -71
  273. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +127 -71
  274. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +127 -71
  275. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +127 -71
  276. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +127 -71
  277. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +127 -71
  278. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +127 -71
  279. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +127 -71
  280. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +127 -71
  281. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +127 -71
  282. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +127 -71
  283. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +127 -71
  284. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +127 -71
  285. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +127 -71
  286. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +127 -71
  287. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +127 -71
  288. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +127 -71
  289. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +127 -71
  290. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +127 -71
  291. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +362 -79
  292. nautobot/project-static/docs/user-guide/core-data-model/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +210 -85
  293. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +127 -71
  294. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +127 -71
  295. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +127 -71
  296. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +127 -71
  297. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +127 -71
  298. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +127 -71
  299. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +127 -71
  300. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +127 -71
  301. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +127 -71
  302. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +127 -71
  303. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +127 -71
  304. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +127 -71
  305. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +127 -71
  306. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +127 -71
  307. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +127 -71
  308. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +127 -71
  309. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +127 -71
  310. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +127 -71
  311. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +127 -71
  312. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +127 -71
  313. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +127 -71
  314. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +127 -71
  315. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +127 -71
  316. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +127 -71
  317. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +127 -71
  318. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +127 -71
  319. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +127 -71
  320. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +127 -71
  321. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +127 -71
  322. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +127 -71
  323. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +130 -74
  324. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +127 -71
  325. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +138 -71
  326. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +138 -71
  327. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +127 -71
  328. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +127 -71
  329. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +127 -71
  330. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +127 -71
  331. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +127 -71
  332. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +127 -71
  333. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +127 -71
  334. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +127 -71
  335. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +127 -71
  336. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +127 -71
  337. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +127 -71
  338. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +127 -71
  339. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +127 -71
  340. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +127 -71
  341. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +127 -71
  342. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +127 -71
  343. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +127 -71
  344. nautobot/project-static/docs/user-guide/feature-guides/{contact-and-team.html → contacts-and-teams.html} +128 -72
  345. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +129 -73
  346. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +127 -71
  347. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +127 -71
  348. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +127 -71
  349. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +127 -71
  350. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +127 -71
  351. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +127 -71
  352. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +129 -73
  353. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +127 -71
  354. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +127 -71
  355. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +127 -71
  356. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +127 -71
  357. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +127 -71
  358. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +127 -71
  359. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +127 -71
  360. nautobot/project-static/docs/user-guide/index.html +127 -71
  361. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +127 -71
  362. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +127 -71
  363. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +127 -71
  364. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +127 -71
  365. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +127 -71
  366. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +127 -71
  367. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +127 -71
  368. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +127 -71
  369. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +127 -71
  370. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +127 -71
  371. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +127 -71
  372. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +127 -71
  373. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +127 -71
  374. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +127 -71
  375. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +127 -71
  376. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +127 -71
  377. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +127 -71
  378. nautobot/project-static/docs/user-guide/platform-functionality/note.html +127 -71
  379. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +127 -71
  380. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +127 -71
  381. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +127 -71
  382. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +127 -71
  383. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +127 -71
  384. nautobot/project-static/docs/user-guide/platform-functionality/role.html +127 -71
  385. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +127 -71
  386. nautobot/project-static/docs/user-guide/platform-functionality/status.html +127 -71
  387. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +127 -71
  388. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +127 -71
  389. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +127 -71
  390. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +127 -71
  391. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +127 -71
  392. nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
  393. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
  394. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
  395. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
  396. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
  397. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
  398. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
  399. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
  400. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
  401. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
  402. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
  403. nautobot/tenancy/api/urls.py +1 -2
  404. nautobot/tenancy/api/views.py +0 -12
  405. nautobot/tenancy/tables.py +1 -1
  406. nautobot/tenancy/tests/test_views.py +1 -0
  407. nautobot/users/api/urls.py +1 -2
  408. nautobot/users/api/views.py +2 -65
  409. nautobot/users/views.py +8 -8
  410. nautobot/virtualization/api/urls.py +1 -2
  411. nautobot/virtualization/api/views.py +0 -12
  412. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/METADATA +24 -24
  413. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/RECORD +418 -412
  414. nautobot/dcim/templates/dcim/controllerdevicegroup_create.html +0 -43
  415. nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
  416. nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
  417. nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
  418. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
  419. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
  420. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
  421. /nautobot/dcim/templates/dcim/{controllerdevicegroup_retrieve.html → controllermanageddevicegroup_retrieve.html} +0 -0
  422. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/LICENSE.txt +0 -0
  423. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/NOTICE +0 -0
  424. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/WHEEL +0 -0
  425. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.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
-
7094
+
7095
+
7096
+
7040
7097
 
7041
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
 
@@ -7176,7 +7233,7 @@
7176
7233
  <li class="md-nav__item">
7177
7234
  <a href="#jobs-tile-view-5129" class="md-nav__link">
7178
7235
  <span class="md-ellipsis">
7179
- Jobs tile view (#5129)
7236
+ Jobs Tile View (#5129)
7180
7237
  </span>
7181
7238
  </a>
7182
7239
 
@@ -7203,7 +7260,7 @@
7203
7260
  <li class="md-nav__item">
7204
7261
  <a href="#syntax-highlighting-5098" class="md-nav__link">
7205
7262
  <span class="md-ellipsis">
7206
- Syntax highlighting (#5098)
7263
+ Syntax Highlighting (#5098)
7207
7264
  </span>
7208
7265
  </a>
7209
7266
 
@@ -7259,6 +7316,144 @@
7259
7316
  </ul>
7260
7317
  </nav>
7261
7318
 
7319
+ </li>
7320
+
7321
+ <li class="md-nav__item">
7322
+ <a href="#v221-2024-04-15" class="md-nav__link">
7323
+ <span class="md-ellipsis">
7324
+ v2.2.1 (2024-04-15)
7325
+ </span>
7326
+ </a>
7327
+
7328
+ <nav class="md-nav" aria-label="v2.2.1 (2024-04-15)">
7329
+ <ul class="md-nav__list">
7330
+
7331
+ <li class="md-nav__item">
7332
+ <a href="#security" class="md-nav__link">
7333
+ <span class="md-ellipsis">
7334
+ Security
7335
+ </span>
7336
+ </a>
7337
+
7338
+ </li>
7339
+
7340
+ <li class="md-nav__item">
7341
+ <a href="#added_1" class="md-nav__link">
7342
+ <span class="md-ellipsis">
7343
+ Added
7344
+ </span>
7345
+ </a>
7346
+
7347
+ </li>
7348
+
7349
+ <li class="md-nav__item">
7350
+ <a href="#changed_1" class="md-nav__link">
7351
+ <span class="md-ellipsis">
7352
+ Changed
7353
+ </span>
7354
+ </a>
7355
+
7356
+ </li>
7357
+
7358
+ <li class="md-nav__item">
7359
+ <a href="#fixed" class="md-nav__link">
7360
+ <span class="md-ellipsis">
7361
+ Fixed
7362
+ </span>
7363
+ </a>
7364
+
7365
+ </li>
7366
+
7367
+ <li class="md-nav__item">
7368
+ <a href="#dependencies" class="md-nav__link">
7369
+ <span class="md-ellipsis">
7370
+ Dependencies
7371
+ </span>
7372
+ </a>
7373
+
7374
+ </li>
7375
+
7376
+ <li class="md-nav__item">
7377
+ <a href="#documentation" class="md-nav__link">
7378
+ <span class="md-ellipsis">
7379
+ Documentation
7380
+ </span>
7381
+ </a>
7382
+
7383
+ </li>
7384
+
7385
+ <li class="md-nav__item">
7386
+ <a href="#housekeeping" class="md-nav__link">
7387
+ <span class="md-ellipsis">
7388
+ Housekeeping
7389
+ </span>
7390
+ </a>
7391
+
7392
+ </li>
7393
+
7394
+ </ul>
7395
+ </nav>
7396
+
7397
+ </li>
7398
+
7399
+ <li class="md-nav__item">
7400
+ <a href="#v220-2024-03-29" class="md-nav__link">
7401
+ <span class="md-ellipsis">
7402
+ v2.2.0 (2024-03-29)
7403
+ </span>
7404
+ </a>
7405
+
7406
+ <nav class="md-nav" aria-label="v2.2.0 (2024-03-29)">
7407
+ <ul class="md-nav__list">
7408
+
7409
+ <li class="md-nav__item">
7410
+ <a href="#added_2" class="md-nav__link">
7411
+ <span class="md-ellipsis">
7412
+ Added
7413
+ </span>
7414
+ </a>
7415
+
7416
+ </li>
7417
+
7418
+ <li class="md-nav__item">
7419
+ <a href="#changed_2" class="md-nav__link">
7420
+ <span class="md-ellipsis">
7421
+ Changed
7422
+ </span>
7423
+ </a>
7424
+
7425
+ </li>
7426
+
7427
+ <li class="md-nav__item">
7428
+ <a href="#fixed_1" class="md-nav__link">
7429
+ <span class="md-ellipsis">
7430
+ Fixed
7431
+ </span>
7432
+ </a>
7433
+
7434
+ </li>
7435
+
7436
+ <li class="md-nav__item">
7437
+ <a href="#dependencies_1" class="md-nav__link">
7438
+ <span class="md-ellipsis">
7439
+ Dependencies
7440
+ </span>
7441
+ </a>
7442
+
7443
+ </li>
7444
+
7445
+ <li class="md-nav__item">
7446
+ <a href="#housekeeping_1" class="md-nav__link">
7447
+ <span class="md-ellipsis">
7448
+ Housekeeping
7449
+ </span>
7450
+ </a>
7451
+
7452
+ </li>
7453
+
7454
+ </ul>
7455
+ </nav>
7456
+
7262
7457
  </li>
7263
7458
 
7264
7459
  <li class="md-nav__item">
@@ -7272,7 +7467,7 @@
7272
7467
  <ul class="md-nav__list">
7273
7468
 
7274
7469
  <li class="md-nav__item">
7275
- <a href="#added_1" class="md-nav__link">
7470
+ <a href="#added_3" class="md-nav__link">
7276
7471
  <span class="md-ellipsis">
7277
7472
  Added
7278
7473
  </span>
@@ -7281,7 +7476,7 @@
7281
7476
  </li>
7282
7477
 
7283
7478
  <li class="md-nav__item">
7284
- <a href="#changed_1" class="md-nav__link">
7479
+ <a href="#changed_3" class="md-nav__link">
7285
7480
  <span class="md-ellipsis">
7286
7481
  Changed
7287
7482
  </span>
@@ -7308,7 +7503,7 @@
7308
7503
  </li>
7309
7504
 
7310
7505
  <li class="md-nav__item">
7311
- <a href="#fixed" class="md-nav__link">
7506
+ <a href="#fixed_2" class="md-nav__link">
7312
7507
  <span class="md-ellipsis">
7313
7508
  Fixed
7314
7509
  </span>
@@ -7317,7 +7512,7 @@
7317
7512
  </li>
7318
7513
 
7319
7514
  <li class="md-nav__item">
7320
- <a href="#dependencies" class="md-nav__link">
7515
+ <a href="#dependencies_2" class="md-nav__link">
7321
7516
  <span class="md-ellipsis">
7322
7517
  Dependencies
7323
7518
  </span>
@@ -7326,7 +7521,7 @@
7326
7521
  </li>
7327
7522
 
7328
7523
  <li class="md-nav__item">
7329
- <a href="#documentation" class="md-nav__link">
7524
+ <a href="#documentation_1" class="md-nav__link">
7330
7525
  <span class="md-ellipsis">
7331
7526
  Documentation
7332
7527
  </span>
@@ -7335,7 +7530,7 @@
7335
7530
  </li>
7336
7531
 
7337
7532
  <li class="md-nav__item">
7338
- <a href="#housekeeping" class="md-nav__link">
7533
+ <a href="#housekeeping_2" class="md-nav__link">
7339
7534
  <span class="md-ellipsis">
7340
7535
  Housekeeping
7341
7536
  </span>
@@ -7562,16 +7757,14 @@
7562
7757
 
7563
7758
 
7564
7759
 
7565
-
7566
-
7567
7760
 
7568
7761
 
7569
7762
 
7570
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
7763
+
7764
+ <li class="md-nav__item md-nav__item--nested">
7571
7765
 
7572
7766
 
7573
7767
 
7574
-
7575
7768
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
7576
7769
 
7577
7770
 
@@ -7588,7 +7781,7 @@
7588
7781
  </a>
7589
7782
 
7590
7783
 
7591
- <label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
7784
+ <label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
7592
7785
  <span class="md-nav__icon md-icon"></span>
7593
7786
  </label>
7594
7787
 
@@ -7610,13 +7803,14 @@
7610
7803
 
7611
7804
 
7612
7805
 
7806
+
7807
+
7613
7808
 
7614
7809
 
7615
7810
  <li class="md-nav__item md-nav__item--nested">
7616
7811
 
7617
7812
 
7618
7813
 
7619
-
7620
7814
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
7621
7815
 
7622
7816
 
@@ -7959,7 +8153,7 @@
7959
8153
  <li class="md-nav__item">
7960
8154
  <a href="#jobs-tile-view-5129" class="md-nav__link">
7961
8155
  <span class="md-ellipsis">
7962
- Jobs tile view (#5129)
8156
+ Jobs Tile View (#5129)
7963
8157
  </span>
7964
8158
  </a>
7965
8159
 
@@ -7986,7 +8180,7 @@
7986
8180
  <li class="md-nav__item">
7987
8181
  <a href="#syntax-highlighting-5098" class="md-nav__link">
7988
8182
  <span class="md-ellipsis">
7989
- Syntax highlighting (#5098)
8183
+ Syntax Highlighting (#5098)
7990
8184
  </span>
7991
8185
  </a>
7992
8186
 
@@ -8042,6 +8236,144 @@
8042
8236
  </ul>
8043
8237
  </nav>
8044
8238
 
8239
+ </li>
8240
+
8241
+ <li class="md-nav__item">
8242
+ <a href="#v221-2024-04-15" class="md-nav__link">
8243
+ <span class="md-ellipsis">
8244
+ v2.2.1 (2024-04-15)
8245
+ </span>
8246
+ </a>
8247
+
8248
+ <nav class="md-nav" aria-label="v2.2.1 (2024-04-15)">
8249
+ <ul class="md-nav__list">
8250
+
8251
+ <li class="md-nav__item">
8252
+ <a href="#security" class="md-nav__link">
8253
+ <span class="md-ellipsis">
8254
+ Security
8255
+ </span>
8256
+ </a>
8257
+
8258
+ </li>
8259
+
8260
+ <li class="md-nav__item">
8261
+ <a href="#added_1" class="md-nav__link">
8262
+ <span class="md-ellipsis">
8263
+ Added
8264
+ </span>
8265
+ </a>
8266
+
8267
+ </li>
8268
+
8269
+ <li class="md-nav__item">
8270
+ <a href="#changed_1" class="md-nav__link">
8271
+ <span class="md-ellipsis">
8272
+ Changed
8273
+ </span>
8274
+ </a>
8275
+
8276
+ </li>
8277
+
8278
+ <li class="md-nav__item">
8279
+ <a href="#fixed" class="md-nav__link">
8280
+ <span class="md-ellipsis">
8281
+ Fixed
8282
+ </span>
8283
+ </a>
8284
+
8285
+ </li>
8286
+
8287
+ <li class="md-nav__item">
8288
+ <a href="#dependencies" class="md-nav__link">
8289
+ <span class="md-ellipsis">
8290
+ Dependencies
8291
+ </span>
8292
+ </a>
8293
+
8294
+ </li>
8295
+
8296
+ <li class="md-nav__item">
8297
+ <a href="#documentation" class="md-nav__link">
8298
+ <span class="md-ellipsis">
8299
+ Documentation
8300
+ </span>
8301
+ </a>
8302
+
8303
+ </li>
8304
+
8305
+ <li class="md-nav__item">
8306
+ <a href="#housekeeping" class="md-nav__link">
8307
+ <span class="md-ellipsis">
8308
+ Housekeeping
8309
+ </span>
8310
+ </a>
8311
+
8312
+ </li>
8313
+
8314
+ </ul>
8315
+ </nav>
8316
+
8317
+ </li>
8318
+
8319
+ <li class="md-nav__item">
8320
+ <a href="#v220-2024-03-29" class="md-nav__link">
8321
+ <span class="md-ellipsis">
8322
+ v2.2.0 (2024-03-29)
8323
+ </span>
8324
+ </a>
8325
+
8326
+ <nav class="md-nav" aria-label="v2.2.0 (2024-03-29)">
8327
+ <ul class="md-nav__list">
8328
+
8329
+ <li class="md-nav__item">
8330
+ <a href="#added_2" class="md-nav__link">
8331
+ <span class="md-ellipsis">
8332
+ Added
8333
+ </span>
8334
+ </a>
8335
+
8336
+ </li>
8337
+
8338
+ <li class="md-nav__item">
8339
+ <a href="#changed_2" class="md-nav__link">
8340
+ <span class="md-ellipsis">
8341
+ Changed
8342
+ </span>
8343
+ </a>
8344
+
8345
+ </li>
8346
+
8347
+ <li class="md-nav__item">
8348
+ <a href="#fixed_1" class="md-nav__link">
8349
+ <span class="md-ellipsis">
8350
+ Fixed
8351
+ </span>
8352
+ </a>
8353
+
8354
+ </li>
8355
+
8356
+ <li class="md-nav__item">
8357
+ <a href="#dependencies_1" class="md-nav__link">
8358
+ <span class="md-ellipsis">
8359
+ Dependencies
8360
+ </span>
8361
+ </a>
8362
+
8363
+ </li>
8364
+
8365
+ <li class="md-nav__item">
8366
+ <a href="#housekeeping_1" class="md-nav__link">
8367
+ <span class="md-ellipsis">
8368
+ Housekeeping
8369
+ </span>
8370
+ </a>
8371
+
8372
+ </li>
8373
+
8374
+ </ul>
8375
+ </nav>
8376
+
8045
8377
  </li>
8046
8378
 
8047
8379
  <li class="md-nav__item">
@@ -8055,7 +8387,7 @@
8055
8387
  <ul class="md-nav__list">
8056
8388
 
8057
8389
  <li class="md-nav__item">
8058
- <a href="#added_1" class="md-nav__link">
8390
+ <a href="#added_3" class="md-nav__link">
8059
8391
  <span class="md-ellipsis">
8060
8392
  Added
8061
8393
  </span>
@@ -8064,7 +8396,7 @@
8064
8396
  </li>
8065
8397
 
8066
8398
  <li class="md-nav__item">
8067
- <a href="#changed_1" class="md-nav__link">
8399
+ <a href="#changed_3" class="md-nav__link">
8068
8400
  <span class="md-ellipsis">
8069
8401
  Changed
8070
8402
  </span>
@@ -8091,7 +8423,7 @@
8091
8423
  </li>
8092
8424
 
8093
8425
  <li class="md-nav__item">
8094
- <a href="#fixed" class="md-nav__link">
8426
+ <a href="#fixed_2" class="md-nav__link">
8095
8427
  <span class="md-ellipsis">
8096
8428
  Fixed
8097
8429
  </span>
@@ -8100,7 +8432,7 @@
8100
8432
  </li>
8101
8433
 
8102
8434
  <li class="md-nav__item">
8103
- <a href="#dependencies" class="md-nav__link">
8435
+ <a href="#dependencies_2" class="md-nav__link">
8104
8436
  <span class="md-ellipsis">
8105
8437
  Dependencies
8106
8438
  </span>
@@ -8109,7 +8441,7 @@
8109
8441
  </li>
8110
8442
 
8111
8443
  <li class="md-nav__item">
8112
- <a href="#documentation" class="md-nav__link">
8444
+ <a href="#documentation_1" class="md-nav__link">
8113
8445
  <span class="md-ellipsis">
8114
8446
  Documentation
8115
8447
  </span>
@@ -8118,7 +8450,7 @@
8118
8450
  </li>
8119
8451
 
8120
8452
  <li class="md-nav__item">
8121
- <a href="#housekeeping" class="md-nav__link">
8453
+ <a href="#housekeeping_2" class="md-nav__link">
8122
8454
  <span class="md-ellipsis">
8123
8455
  Housekeeping
8124
8456
  </span>
@@ -8156,19 +8488,21 @@
8156
8488
  <h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">&para;</a></h2>
8157
8489
  <h3 id="added">Added<a class="headerlink" href="#added" title="Permanent link">&para;</a></h3>
8158
8490
  <h4 id="contact-and-team-models-230">Contact and Team Models (<a href="https://github.com/nautobot/nautobot/issues/230">#230</a>)<a class="headerlink" href="#contact-and-team-models-230" title="Permanent link">&para;</a></h4>
8159
- <p>Contact and Team are models that represent an individual and a group of individuals who can be linked to an object. Contacts and teams store the necessary information (name, phone number, email, and address) to uniquely identify and contact them. They are added to track ownerships of organizational entities and to manage resources more efficiently in Nautobot. Check out the documentation for <a href="../user-guide/core-data-model/extras/contact.html">contact</a> and <a href="../user-guide/core-data-model/extras/team.html">team</a>. There is also a <a href="../user-guide/feature-guides/contact-and-team.html">user guide</a> available on how to utilize these models.</p>
8491
+ <p>Contact and Team are models that represent an individual and a group of individuals who can be linked to an object. Contacts and teams store the necessary information (name, phone number, email, and address) to uniquely identify and contact them. They are added to track ownerships of organizational entities and to manage resources more efficiently in Nautobot. Check out the documentation for <a href="../user-guide/core-data-model/extras/contact.html">Contact</a> and <a href="../user-guide/core-data-model/extras/team.html">Team</a>. There is also a <a href="../user-guide/feature-guides/contacts-and-teams.html">user guide</a> available on how to utilize these models.</p>
8492
+ <p>A new management command has been introduced to assist with migrating the Location fields <code>contact_name</code>, <code>contact_phone</code> and <code>contact_email</code> to the new Contact and Team models. This command can be invoked with <code>nautobot-server migrate_location_contacts</code> and will present a series of prompts to guide you through migrating Locations that have data in the <code>contact_name</code>, <code>contact_phone</code>, or <code>contact_email</code> fields which are not already associated to a Contact or Team. This command will give you the option to create new Contacts or Teams or, if a similar Contact or Team already exists, to link the Location to the existing Contact or Team. Note that when assigning a Location to an existing Contact or Team that has a blank <code>phone</code> or <code>email</code> field, the value from the Location will be copied to the Contact/Team. After a Location has been associated to a Contact or Team, the <code>contact_name</code>, <code>contact_phone</code>, and <code>contact_email</code> fields will be cleared from the Location.</p>
8160
8493
  <h4 id="controller-model-3111">Controller Model (<a href="https://github.com/nautobot/nautobot/issues/3111">#3111</a>)<a class="headerlink" href="#controller-model-3111" title="Permanent link">&para;</a></h4>
8161
- <p>A Controller in Nautobot is an abstraction meant to represent network or SDN (Software-Defined Networking) controllers. These may include, but are not limited to, wireless controllers, cloud-based network management systems, and other forms of central network control mechanisms. See more details in the model <a href="../user-guide/core-data-model/dcim/controller.html">documentation</a>.</p>
8494
+ <p>Controller models have been added to the <code>dcim</code> app. A Controller in Nautobot is an abstraction meant to represent network or SDN (Software-Defined Networking) controllers. These may include, but are not limited to, wireless controllers, cloud-based network management systems, and other forms of central network control mechanisms.</p>
8495
+ <p>For more details, refer to the user guide for a <a href="../user-guide/core-data-model/dcim/controller.html"><code>Controller</code> model</a>, a <a href="../user-guide/core-data-model/dcim/controllermanageddevicegroup.html"><code>ControllerManagedDeviceGroup</code> model</a>, or developer documentation for <a href="../development/core/controllers.html">Controllers</a>.</p>
8162
8496
  <h4 id="devicefamily-model-3559">DeviceFamily Model (<a href="https://github.com/nautobot/nautobot/issues/3559">#3559</a>)<a class="headerlink" href="#devicefamily-model-3559" title="Permanent link">&para;</a></h4>
8163
- <p>A <a href="../user-guide/core-data-model/dcim/devicefamily.html">device family</a> represents a group of related <a href="../user-guide/core-data-model/dcim/devicetype.html">device types</a>. A device type can be optionally assigned to a device family. Each device family must have a unique name and may have a description assigned to it.</p>
8164
- <h4 id="jobs-tile-view-5129">Jobs tile view (<a href="https://github.com/nautobot/nautobot/issues/5129">#5129</a>)<a class="headerlink" href="#jobs-tile-view-5129" title="Permanent link">&para;</a></h4>
8497
+ <p>A <a href="../user-guide/core-data-model/dcim/devicefamily.html">Device Family</a> represents a group of related <a href="../user-guide/core-data-model/dcim/devicetype.html">Device Types</a>. A Device Type can be optionally assigned to a Device Family. Each Device Family must have a unique name and may have a description assigned to it.</p>
8498
+ <h4 id="jobs-tile-view-5129">Jobs Tile View (<a href="https://github.com/nautobot/nautobot/issues/5129">#5129</a>)<a class="headerlink" href="#jobs-tile-view-5129" title="Permanent link">&para;</a></h4>
8165
8499
  <p>Job list is now available in two display variants: list and tiles. List is a standard table view with no major changes introduced. Tiles is a new type of view displaying jobs in a two-dimensional grid.</p>
8166
8500
  <h4 id="prefix-and-vlan-many-locations-4334-4412">Prefix and VLAN Many Locations (<a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a>, <a href="https://github.com/nautobot/nautobot/issues/4412">#4412</a>)<a class="headerlink" href="#prefix-and-vlan-many-locations-4334-4412" title="Permanent link">&para;</a></h4>
8167
- <p>The Prefix and VLAN models have replaced their single <code>location</code> foreign-key field with a many-to-many <code>locations</code> field, allowing multiple Locations to be attached to a single Prefix or VLAN. To ensure backwards compatibility with pre-2.2 code, these models now have a <code>location</code> property which can be get or set for the case of a single associated Location, but will raise a <code>MultipleObjectsReturned</code> exception if the Prefix or VLAN in question has more than one associated Location. REST API versions 2.0 and 2.1 similarly still have a <code>location</code> field, while REST API version 2.2 and later replace this with <code>locations</code>.</p>
8501
+ <p>The Prefix and VLAN models have replaced their single <code>location</code> foreign-key field with a many-to-many <code>locations</code> field, allowing multiple Locations to be attached to a single Prefix or VLAN. To ensure backwards compatibility with pre-2.2 code, these models now have a <code>location</code> property which can be retrieved or set for the case of a single associated Location, but will raise a <code>MultipleObjectsReturned</code> exception if the Prefix or VLAN in question has more than one associated Location. REST API versions 2.0 and 2.1 similarly still have a <code>location</code> field, while REST API version 2.2 and later replace this with <code>locations</code>.</p>
8168
8502
  <h4 id="software-image-file-and-software-version-models-1">Software Image File and Software Version models (<a href="https://github.com/nautobot/nautobot/issues/1">#1</a>)<a class="headerlink" href="#software-image-file-and-software-version-models-1" title="Permanent link">&para;</a></h4>
8169
- <p>New models have been added for software image files and software versions. These models are used to track the software versions of devices, inventory items and virtual machines and their associated image files. These models have been ported from the <a href="https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/">Device Lifecycle Management App</a> and a future update to that app will migrate all existing data from the <code>nautobot_device_lifecycle_mgmt.SoftwareImageLCM</code> and <code>nautobot_device_lifecycle_mgmt.SoftwareLCM</code> models to the <code>dcim.SoftwareImageFile</code> and <code>dcim.SoftwareVersion</code> models added here.</p>
8170
- <p>Software versions must be associated to a platform. Software image files must be associated to one software version and may be associated to one or more device types. Devices, inventory items and virtual machines may be associated to one software version to track their current version. See the documentation for <a href="../user-guide/core-data-model/dcim/softwareimagefile.html">software image file</a> and <a href="../user-guide/core-data-model/dcim/softwareversion.html">software version</a>. There is also a <a href="../user-guide/feature-guides/software-image-files-and-versions.html">user guide</a> with instructions on how to create these models.</p>
8171
- <h4 id="syntax-highlighting-5098">Syntax highlighting (<a href="https://github.com/nautobot/nautobot/issues/5098">#5098</a>)<a class="headerlink" href="#syntax-highlighting-5098" title="Permanent link">&para;</a></h4>
8503
+ <p>New models have been added for Software Image Files and Software Versions. These models are used to track the software versions of Devices, Inventory Items and Virtual Machines and their associated image files. These models have been ported from the <a href="https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/">Device Lifecycle Management App</a> and a future update to that app will migrate all existing data from the <code>nautobot_device_lifecycle_mgmt.SoftwareImageLCM</code> and <code>nautobot_device_lifecycle_mgmt.SoftwareLCM</code> models to the <code>dcim.SoftwareImageFile</code> and <code>dcim.SoftwareVersion</code> models added here.</p>
8504
+ <p>Software Versions must be associated to a Platform. Software Image Files must be associated to one Software Version and may be associated to one or more Device Types. Devices, Inventory Items and Virtual Machines may be associated to one Software Version to track their current version. See the documentation for <a href="../user-guide/core-data-model/dcim/softwareimagefile.html">Software Image File</a> and <a href="../user-guide/core-data-model/dcim/softwareversion.html">Software Version</a>. There is also a <a href="../user-guide/feature-guides/software-image-files-and-versions.html">user guide</a> with instructions on how to create these models.</p>
8505
+ <h4 id="syntax-highlighting-5098">Syntax Highlighting (<a href="https://github.com/nautobot/nautobot/issues/5098">#5098</a>)<a class="headerlink" href="#syntax-highlighting-5098" title="Permanent link">&para;</a></h4>
8172
8506
  <p>Language syntax highlighting for GraphQL, JSON, XML and YAML is now supported in the UI via JavaScript. To enable the feature, a code snippet has to be wrapped in the following HTML structure:</p>
8173
8507
  <div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="p">&lt;</span><span class="nt">pre</span><span class="p">&gt;&lt;</span><span class="nt">code</span> <span class="na">class</span><span class="o">=</span><span class="s">&quot;language-{graphql,json,xml,yaml}&quot;</span><span class="p">&gt;</span>...<span class="p">&lt;/</span><span class="nt">code</span><span class="p">&gt;&lt;/</span><span class="nt">pre</span><span class="p">&gt;</span>
8174
8508
  </code></pre></div>
@@ -8185,9 +8519,94 @@
8185
8519
  <h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">&para;</a></h4>
8186
8520
  <p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
8187
8521
  <!-- towncrier release notes start -->
8188
- <h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">&para;</a></h2>
8522
+ <h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">&para;</a></h2>
8523
+ <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
8524
+ <ul>
8525
+ <li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
8526
+ <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
8527
+ <li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
8528
+ </ul>
8189
8529
  <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
8190
8530
  <ul>
8531
+ <li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
8532
+ <li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
8533
+ <li><a href="https://github.com/nautobot/nautobot/issues/5493">#5493</a> - Added a configuration setting <code>METRICS_DISABLED_APPS</code> to disable app metrics for specific apps.</li>
8534
+ <li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
8535
+ </ul>
8536
+ <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
8537
+ <ul>
8538
+ <li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
8539
+ </ul>
8540
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
8541
+ <ul>
8542
+ <li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
8543
+ <li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
8544
+ <li><a href="https://github.com/nautobot/nautobot/issues/5502">#5502</a> - Fixed off-by-one error in generic filter testing helper <code>BaseFilterTestCase.get_filterset_test_values</code>.</li>
8545
+ <li><a href="https://github.com/nautobot/nautobot/issues/5511">#5511</a> - Fixed contact tab disappearing when accessing dynamic groups tab.</li>
8546
+ <li><a href="https://github.com/nautobot/nautobot/issues/5515">#5515</a> - Fixed javascript exception thrown in the Device LLDP neighbors view for neighbors without configured devices/interfaces.</li>
8547
+ <li><a href="https://github.com/nautobot/nautobot/issues/5527">#5527</a> - Fixed incorrect "members" links in Virtual Chassis list view.</li>
8548
+ <li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Re-added <code>nautobot.setup()</code> function mistakenly removed in 2.2.0.</li>
8549
+ </ul>
8550
+ <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
8551
+ <ul>
8552
+ <li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed jsonschema version constraint from <code>&gt;=4.7.0,&lt;4.19.0</code> to <code>^4.7.0</code>.</li>
8553
+ <li><a href="https://github.com/nautobot/nautobot/issues/5517">#5517</a> - Updated <code>djangorestframework</code> to <code>~3.15.1</code>.</li>
8554
+ <li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
8555
+ <li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
8556
+ </ul>
8557
+ <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
8558
+ <ul>
8559
+ <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
8560
+ <li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
8561
+ <li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
8562
+ </ul>
8563
+ <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
8564
+ <ul>
8565
+ <li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
8566
+ <li><a href="https://github.com/nautobot/nautobot/issues/5547">#5547</a> - Fixed TransactionTestCase inheritance order so that <code>test.client</code> works in test cases using this class.</li>
8567
+ </ul>
8568
+ <h2 id="v220-2024-03-29">v2.2.0 (2024-03-29)<a class="headerlink" href="#v220-2024-03-29" title="Permanent link">&para;</a></h2>
8569
+ <div class="admonition warning">
8570
+ <p class="admonition-title">Warning</p>
8571
+ <p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
8572
+ </div>
8573
+ <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
8574
+ <ul>
8575
+ <li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
8576
+ <li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
8577
+ </ul>
8578
+ <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
8579
+ <ul>
8580
+ <li><a href="https://github.com/nautobot/nautobot/issues/5452">#5452</a> - Changed the behavior of Prefix table: now they are sortable, and after sorting is applied, all hierarchy indentations are removed.</li>
8581
+ <li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Changed one-to-many links from Controller to <code>PROTECT</code> against deleting.</li>
8582
+ <li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Renamed <code>ControllerDeviceGroup</code> to <code>ControllerManagedDeviceGroup</code>.</li>
8583
+ <li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Renamed <code>Controller.deployed_controller_device</code> to <code>Controller.controller_device</code>.</li>
8584
+ <li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Renamed <code>Controller.deployed_controller_group</code> to <code>Controller.controller_device_redundancy_group</code>.</li>
8585
+ <li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Renamed <code>Device.controller_device_group</code> to <code>Device.controller_managed_device_group</code>.</li>
8586
+ <li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Removed ConfigContext from ControllerManagedDeviceGroup.</li>
8587
+ <li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Removed ConfigContext from Controller.</li>
8588
+ <li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
8589
+ <li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
8590
+ </ul>
8591
+ <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
8592
+ <ul>
8593
+ <li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
8594
+ <li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
8595
+ <li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Providers API response containing duplicate entries when filtering on more than one <code>location</code> value.</li>
8596
+ <li><a href="https://github.com/nautobot/nautobot/issues/5440">#5440</a> - Fixed <code>Cannot resolve keyword 'task_id' into field</code> error when calling <code>nautobot-server celery result &lt;task_id&gt;</code>.</li>
8597
+ </ul>
8598
+ <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
8599
+ <ul>
8600
+ <li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> &amp; it's dependency on <code>ecdsa</code>.</li>
8601
+ </ul>
8602
+ <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
8603
+ <ul>
8604
+ <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
8605
+ <li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
8606
+ </ul>
8607
+ <h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">&para;</a></h2>
8608
+ <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
8609
+ <ul>
8191
8610
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
8192
8611
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
8193
8612
  <li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>DeviceType</code> to <code>SoftwareImageFile</code>.</li>
@@ -8225,7 +8644,7 @@
8225
8644
  <li><a href="https://github.com/nautobot/nautobot/issues/5347">#5347</a> - Added an option to the Job-based CSV import to make atomic transactions optional.</li>
8226
8645
  <li><a href="https://github.com/nautobot/nautobot/issues/5349">#5349</a> - Added REST API for vlan-to-location and prefix-to-location M2M.</li>
8227
8646
  </ul>
8228
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
8647
+ <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
8229
8648
  <ul>
8230
8649
  <li><a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a> - Increased <code>max_length</code> on all CharFields to at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</li>
8231
8650
  <li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Changed <code>Prefix.location</code> to <code>Prefix.locations</code> allowing multiple Locations to be associated with a given Prefix.</li>
@@ -8255,7 +8674,7 @@
8255
8674
  <li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
8256
8675
  <li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
8257
8676
  </ul>
8258
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
8677
+ <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
8259
8678
  <ul>
8260
8679
  <li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
8261
8680
  <li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
@@ -8268,18 +8687,18 @@
8268
8687
  <li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a <code>ValidationError</code> that was being thrown when a user logged out.</li>
8269
8688
  <li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a case where viewing a completed JobResult that was missing a <code>date_done</code> value would cause the JobResult view to repeatedly refresh.</li>
8270
8689
  </ul>
8271
- <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
8690
+ <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
8272
8691
  <ul>
8273
8692
  <li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
8274
8693
  </ul>
8275
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
8694
+ <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
8276
8695
  <ul>
8277
8696
  <li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
8278
8697
  <li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>
8279
8698
  <li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Removed source code excerpts from the "App Developer Guide &gt; Code Reference" section of the documentation.</li>
8280
8699
  <li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
8281
8700
  </ul>
8282
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
8701
+ <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
8283
8702
  <ul>
8284
8703
  <li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Added <code>mkdocs-macros-plugin</code> as a development/documentation-rendering dependency.</li>
8285
8704
  <li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Refactored documentation in <code>optional-settings</code> and <code>required-settings</code> to be generated automatically from <code>settings.yaml</code> schema.</li>
@@ -8446,9 +8865,9 @@
8446
8865
  <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>
8447
8866
 
8448
8867
 
8449
- <script src="../assets/javascripts/bundle.8fd75fb4.min.js"></script>
8868
+ <script src="../assets/javascripts/bundle.bd41221c.min.js"></script>
8450
8869
 
8451
- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
8870
+ <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
8452
8871
 
8453
8872
 
8454
8873
  </body>