nautobot 2.4.0b1__py3-none-any.whl → 2.4.2__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (668) hide show
  1. nautobot/apps/__init__.py +1 -1
  2. nautobot/apps/api.py +8 -8
  3. nautobot/apps/change_logging.py +2 -2
  4. nautobot/apps/choices.py +4 -4
  5. nautobot/apps/events.py +3 -3
  6. nautobot/apps/factory.py +2 -2
  7. nautobot/apps/filters.py +1 -1
  8. nautobot/apps/forms.py +20 -20
  9. nautobot/apps/graphql.py +2 -2
  10. nautobot/apps/jobs.py +8 -8
  11. nautobot/apps/models.py +19 -19
  12. nautobot/apps/tables.py +1 -1
  13. nautobot/apps/testing.py +10 -10
  14. nautobot/apps/ui.py +2 -2
  15. nautobot/apps/utils.py +7 -7
  16. nautobot/apps/views.py +7 -7
  17. nautobot/circuits/api/serializers.py +1 -0
  18. nautobot/circuits/api/views.py +4 -8
  19. nautobot/circuits/tables.py +2 -1
  20. nautobot/circuits/templates/circuits/circuit_create.html +1 -7
  21. nautobot/circuits/tests/integration/test_circuits_bulk_operations.py +43 -0
  22. nautobot/circuits/tests/integration/test_relationships.py +1 -1
  23. nautobot/circuits/views.py +3 -3
  24. nautobot/cloud/api/views.py +6 -10
  25. nautobot/cloud/models.py +1 -1
  26. nautobot/cloud/views.py +0 -16
  27. nautobot/core/api/constants.py +11 -0
  28. nautobot/core/api/fields.py +5 -5
  29. nautobot/core/api/filter_backends.py +3 -9
  30. nautobot/core/api/schema.py +13 -2
  31. nautobot/core/api/serializers.py +40 -34
  32. nautobot/core/api/views.py +56 -4
  33. nautobot/core/apps/__init__.py +0 -5
  34. nautobot/core/celery/log.py +4 -4
  35. nautobot/core/celery/schedulers.py +2 -2
  36. nautobot/core/choices.py +2 -2
  37. nautobot/core/events/__init__.py +3 -3
  38. nautobot/core/filters.py +67 -35
  39. nautobot/core/forms/__init__.py +19 -19
  40. nautobot/core/forms/fields.py +14 -11
  41. nautobot/core/forms/forms.py +33 -2
  42. nautobot/core/graphql/types.py +1 -1
  43. nautobot/core/jobs/__init__.py +28 -7
  44. nautobot/core/jobs/bulk_actions.py +285 -0
  45. nautobot/core/jobs/cleanup.py +48 -12
  46. nautobot/core/jobs/groups.py +1 -1
  47. nautobot/core/management/commands/validate_models.py +1 -1
  48. nautobot/core/models/__init__.py +3 -1
  49. nautobot/core/models/query_functions.py +2 -2
  50. nautobot/core/models/tree_queries.py +6 -3
  51. nautobot/core/settings.py +29 -2
  52. nautobot/core/settings.yaml +21 -0
  53. nautobot/core/tables.py +79 -61
  54. nautobot/core/templates/about.html +67 -0
  55. nautobot/core/templates/generic/object_bulk_destroy.html +1 -1
  56. nautobot/core/templates/inc/media.html +3 -0
  57. nautobot/core/templates/inc/nav_menu.html +1 -0
  58. nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
  59. nautobot/core/templates/inc/tenant_table_row.html +11 -0
  60. nautobot/core/templates/nautobot_config.py.j2 +13 -0
  61. nautobot/core/templates/search.html +7 -0
  62. nautobot/core/templates/utilities/render_jinja2.html +1 -1
  63. nautobot/core/templates/utilities/templatetags/tag.html +1 -1
  64. nautobot/core/templates/utilities/theme_preview.html +7 -0
  65. nautobot/core/templatetags/helpers.py +11 -2
  66. nautobot/core/testing/__init__.py +8 -8
  67. nautobot/core/testing/api.py +170 -15
  68. nautobot/core/testing/filters.py +45 -10
  69. nautobot/core/testing/forms.py +2 -0
  70. nautobot/core/testing/integration.py +514 -5
  71. nautobot/core/testing/mixins.py +7 -2
  72. nautobot/core/testing/views.py +44 -29
  73. nautobot/core/tests/integration/test_app_home.py +0 -1
  74. nautobot/core/tests/integration/test_app_navbar.py +0 -1
  75. nautobot/core/tests/integration/test_filters.py +0 -2
  76. nautobot/core/tests/integration/test_home.py +0 -1
  77. nautobot/core/tests/integration/test_navbar.py +0 -1
  78. nautobot/core/tests/integration/test_view_authentication.py +1 -0
  79. nautobot/core/tests/runner.py +1 -1
  80. nautobot/core/tests/test_api.py +98 -1
  81. nautobot/core/tests/test_csv.py +25 -3
  82. nautobot/core/tests/test_filters.py +209 -246
  83. nautobot/core/tests/test_forms.py +1 -0
  84. nautobot/core/tests/test_jobs.py +492 -1
  85. nautobot/core/tests/test_models.py +9 -0
  86. nautobot/core/tests/test_settings_schema.py +7 -0
  87. nautobot/core/tests/test_tables.py +100 -0
  88. nautobot/core/tests/test_utils.py +63 -1
  89. nautobot/core/tests/test_views.py +30 -3
  90. nautobot/core/ui/nav.py +1 -0
  91. nautobot/core/ui/object_detail.py +15 -1
  92. nautobot/core/urls.py +11 -0
  93. nautobot/core/utils/git.py +7 -2
  94. nautobot/core/utils/lookup.py +11 -8
  95. nautobot/core/utils/querysets.py +64 -0
  96. nautobot/core/utils/requests.py +24 -9
  97. nautobot/core/views/__init__.py +42 -0
  98. nautobot/core/views/generic.py +131 -197
  99. nautobot/core/views/mixins.py +136 -41
  100. nautobot/core/views/renderers.py +6 -6
  101. nautobot/core/views/utils.py +2 -2
  102. nautobot/dcim/api/serializers.py +56 -64
  103. nautobot/dcim/api/views.py +47 -113
  104. nautobot/dcim/constants.py +6 -13
  105. nautobot/dcim/factory.py +6 -1
  106. nautobot/dcim/filters/__init__.py +31 -2
  107. nautobot/dcim/forms.py +48 -17
  108. nautobot/dcim/graphql/types.py +2 -2
  109. nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
  110. nautobot/dcim/models/__init__.py +1 -1
  111. nautobot/dcim/models/device_component_templates.py +2 -2
  112. nautobot/dcim/models/device_components.py +22 -20
  113. nautobot/dcim/models/devices.py +10 -1
  114. nautobot/dcim/models/locations.py +3 -3
  115. nautobot/dcim/models/power.py +6 -5
  116. nautobot/dcim/models/racks.py +4 -4
  117. nautobot/dcim/tables/__init__.py +3 -3
  118. nautobot/dcim/tables/devices.py +9 -6
  119. nautobot/dcim/tables/devicetypes.py +2 -2
  120. nautobot/dcim/tables/racks.py +1 -1
  121. nautobot/dcim/templates/dcim/cable.html +1 -1
  122. nautobot/dcim/templates/dcim/controller_create.html +1 -7
  123. nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
  124. nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
  125. nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
  126. nautobot/dcim/templates/dcim/device/base.html +1 -1
  127. nautobot/dcim/templates/dcim/device.html +3 -11
  128. nautobot/dcim/templates/dcim/device_component.html +1 -1
  129. nautobot/dcim/templates/dcim/device_edit.html +36 -37
  130. nautobot/dcim/templates/dcim/devicetype.html +1 -1
  131. nautobot/dcim/templates/dcim/location.html +2 -10
  132. nautobot/dcim/templates/dcim/location_edit.html +1 -7
  133. nautobot/dcim/templates/dcim/locationtype.html +1 -1
  134. nautobot/dcim/templates/dcim/locationtype_retrieve.html +1 -1
  135. nautobot/dcim/templates/dcim/manufacturer.html +1 -1
  136. nautobot/dcim/templates/dcim/platform.html +1 -1
  137. nautobot/dcim/templates/dcim/powerfeed.html +1 -1
  138. nautobot/dcim/templates/dcim/powerpanel.html +1 -1
  139. nautobot/dcim/templates/dcim/rack.html +2 -10
  140. nautobot/dcim/templates/dcim/rack_edit.html +1 -7
  141. nautobot/dcim/templates/dcim/rackgroup.html +1 -1
  142. nautobot/dcim/templates/dcim/rackreservation.html +3 -11
  143. nautobot/dcim/templates/dcim/virtualchassis.html +1 -1
  144. nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -9
  145. nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
  146. nautobot/dcim/tests/integration/test_controller.py +62 -0
  147. nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
  148. nautobot/dcim/tests/integration/test_device_bulk_operations.py +30 -0
  149. nautobot/dcim/tests/integration/test_location_bulk_operations.py +43 -0
  150. nautobot/dcim/tests/test_api.py +16 -5
  151. nautobot/dcim/tests/test_filters.py +33 -0
  152. nautobot/dcim/tests/test_forms.py +51 -2
  153. nautobot/dcim/tests/test_graphql.py +52 -0
  154. nautobot/dcim/tests/test_jobs.py +118 -0
  155. nautobot/dcim/tests/test_models.py +52 -9
  156. nautobot/dcim/tests/test_views.py +30 -84
  157. nautobot/dcim/views.py +13 -28
  158. nautobot/extras/api/customfields.py +2 -2
  159. nautobot/extras/api/serializers.py +123 -85
  160. nautobot/extras/api/views.py +33 -30
  161. nautobot/extras/constants.py +3 -0
  162. nautobot/extras/datasources/git.py +125 -0
  163. nautobot/extras/filters/__init__.py +8 -6
  164. nautobot/extras/forms/base.py +2 -2
  165. nautobot/extras/forms/forms.py +139 -31
  166. nautobot/extras/forms/mixins.py +14 -6
  167. nautobot/extras/group_sync.py +3 -3
  168. nautobot/extras/health_checks.py +1 -2
  169. nautobot/extras/jobs.py +85 -18
  170. nautobot/extras/managers.py +3 -1
  171. nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
  172. nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
  173. nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
  174. nautobot/extras/migrations/0122_add_graphqlquery_owner_content_type.py +34 -0
  175. nautobot/extras/models/__init__.py +1 -1
  176. nautobot/extras/models/contacts.py +1 -1
  177. nautobot/extras/models/customfields.py +41 -23
  178. nautobot/extras/models/datasources.py +85 -0
  179. nautobot/extras/models/groups.py +11 -9
  180. nautobot/extras/models/jobs.py +23 -4
  181. nautobot/extras/models/models.py +17 -2
  182. nautobot/extras/models/relationships.py +17 -5
  183. nautobot/extras/plugins/__init__.py +13 -2
  184. nautobot/extras/plugins/marketplace_manifest.yml +84 -79
  185. nautobot/extras/plugins/tables.py +16 -14
  186. nautobot/extras/plugins/views.py +65 -69
  187. nautobot/extras/registry.py +1 -1
  188. nautobot/extras/secrets/__init__.py +2 -2
  189. nautobot/extras/signals.py +15 -1
  190. nautobot/extras/tables.py +7 -5
  191. nautobot/extras/templates/extras/computedfield.html +1 -1
  192. nautobot/extras/templates/extras/configcontext.html +1 -1
  193. nautobot/extras/templates/extras/configcontextschema.html +1 -1
  194. nautobot/extras/templates/extras/customfield.html +1 -1
  195. nautobot/extras/templates/extras/customlink.html +1 -1
  196. nautobot/extras/templates/extras/dynamicgroup.html +2 -10
  197. nautobot/extras/templates/extras/exporttemplate.html +1 -1
  198. nautobot/extras/templates/extras/gitrepository.html +1 -1
  199. nautobot/extras/templates/extras/graphqlquery.html +1 -1
  200. nautobot/extras/templates/extras/job_detail.html +17 -1
  201. nautobot/extras/templates/extras/job_edit.html +1 -0
  202. nautobot/extras/templates/extras/jobbutton_retrieve.html +1 -1
  203. nautobot/extras/templates/extras/jobhook.html +1 -1
  204. nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
  205. nautobot/extras/templates/extras/jobresult.html +1 -1
  206. nautobot/extras/templates/extras/marketplace.html +29 -11
  207. nautobot/extras/templates/extras/objectchange.html +1 -1
  208. nautobot/extras/templates/extras/plugin_detail.html +33 -16
  209. nautobot/extras/templates/extras/plugins_tiles.html +21 -10
  210. nautobot/extras/templates/extras/relationship.html +1 -63
  211. nautobot/extras/templates/extras/role_retrieve.html +1 -1
  212. nautobot/extras/templates/extras/scheduledjob.html +1 -1
  213. nautobot/extras/templates/extras/secret.html +1 -1
  214. nautobot/extras/templates/extras/secretsgroup.html +1 -1
  215. nautobot/extras/templates/extras/status.html +1 -1
  216. nautobot/extras/templates/extras/tag.html +1 -1
  217. nautobot/extras/templates/extras/webhook.html +1 -1
  218. nautobot/extras/templatetags/job_buttons.py +4 -4
  219. nautobot/extras/test_jobs/api_test_job.py +1 -1
  220. nautobot/extras/test_jobs/atomic_transaction.py +2 -2
  221. nautobot/extras/test_jobs/dry_run.py +1 -1
  222. nautobot/extras/test_jobs/fail.py +5 -5
  223. nautobot/extras/test_jobs/file_output.py +1 -1
  224. nautobot/extras/test_jobs/file_upload_fail.py +1 -1
  225. nautobot/extras/test_jobs/file_upload_pass.py +1 -1
  226. nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
  227. nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
  228. nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
  229. nautobot/extras/test_jobs/log_redaction.py +1 -1
  230. nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
  231. nautobot/extras/test_jobs/modify_db.py +1 -1
  232. nautobot/extras/test_jobs/object_var_optional.py +1 -1
  233. nautobot/extras/test_jobs/object_var_required.py +1 -1
  234. nautobot/extras/test_jobs/object_vars.py +1 -1
  235. nautobot/extras/test_jobs/pass.py +3 -3
  236. nautobot/extras/test_jobs/profiling.py +1 -1
  237. nautobot/extras/test_jobs/relative_import.py +3 -3
  238. nautobot/extras/test_jobs/singleton.py +16 -0
  239. nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
  240. nautobot/extras/test_jobs/task_queues.py +1 -1
  241. nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_interfaces.gql +8 -0
  242. nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_names.gql +5 -0
  243. nautobot/extras/tests/git_data/02-invalid-files/graphql_queries/bad_device_names.gql +5 -0
  244. nautobot/extras/tests/git_helper.py +9 -1
  245. nautobot/extras/tests/integration/__init__.py +29 -16
  246. nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
  247. nautobot/extras/tests/test_api.py +19 -13
  248. nautobot/extras/tests/test_customfields.py +50 -52
  249. nautobot/extras/tests/test_datasources.py +29 -1
  250. nautobot/extras/tests/test_dynamicgroups.py +1 -1
  251. nautobot/extras/tests/test_filters.py +6 -6
  252. nautobot/extras/tests/test_forms.py +33 -1
  253. nautobot/extras/tests/test_jobs.py +178 -32
  254. nautobot/extras/tests/test_models.py +299 -10
  255. nautobot/extras/tests/test_plugins.py +62 -9
  256. nautobot/extras/tests/test_relationships.py +120 -9
  257. nautobot/extras/tests/test_utils.py +22 -1
  258. nautobot/extras/tests/test_views.py +56 -194
  259. nautobot/extras/utils.py +20 -10
  260. nautobot/extras/views.py +85 -110
  261. nautobot/ipam/api/fields.py +3 -3
  262. nautobot/ipam/api/serializers.py +41 -33
  263. nautobot/ipam/api/views.py +68 -117
  264. nautobot/ipam/factory.py +1 -1
  265. nautobot/ipam/filters.py +3 -2
  266. nautobot/ipam/lookups.py +101 -62
  267. nautobot/ipam/models.py +74 -18
  268. nautobot/ipam/querysets.py +2 -2
  269. nautobot/ipam/tables.py +25 -9
  270. nautobot/ipam/templates/ipam/ipaddress.html +2 -10
  271. nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
  272. nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
  273. nautobot/ipam/templates/ipam/prefix.html +2 -10
  274. nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
  275. nautobot/ipam/templates/ipam/rir.html +1 -1
  276. nautobot/ipam/templates/ipam/routetarget.html +1 -1
  277. nautobot/ipam/templates/ipam/service.html +1 -1
  278. nautobot/ipam/templates/ipam/vlan.html +2 -10
  279. nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
  280. nautobot/ipam/templates/ipam/vlangroup.html +1 -1
  281. nautobot/ipam/templates/ipam/vrf.html +1 -1
  282. nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
  283. nautobot/ipam/tests/test_api.py +436 -3
  284. nautobot/ipam/tests/test_forms.py +49 -47
  285. nautobot/ipam/tests/test_migrations.py +30 -30
  286. nautobot/ipam/tests/test_models.py +119 -34
  287. nautobot/ipam/tests/test_querysets.py +63 -1
  288. nautobot/ipam/tests/test_utils.py +41 -2
  289. nautobot/ipam/tests/test_views.py +3 -0
  290. nautobot/ipam/utils/__init__.py +54 -17
  291. nautobot/ipam/views.py +61 -87
  292. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
  293. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
  294. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
  295. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
  296. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
  297. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
  298. nautobot/project-static/docs/404.html +131 -14
  299. nautobot/project-static/docs/apps/index.html +131 -14
  300. nautobot/project-static/docs/apps/nautobot-apps.html +132 -16
  301. nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
  302. nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.60a45f97.min.js} +2 -2
  303. nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.60a45f97.min.js.map} +2 -2
  304. nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js → search.f8cc74c7.min.js} +1 -1
  305. nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js.map → search.f8cc74c7.min.js.map} +1 -1
  306. nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css → main.a40c8224.min.css} +1 -1
  307. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +147 -20
  308. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +144 -17
  309. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +459 -132
  310. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +175 -28
  311. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +180 -31
  312. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +138 -16
  313. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +137 -15
  314. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +164 -27
  315. nautobot/project-static/docs/code-reference/nautobot/apps/events.html +187 -38
  316. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +193 -31
  317. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +216 -48
  318. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +324 -75
  319. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +666 -175
  320. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +194 -46
  321. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +538 -177
  322. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +578 -221
  323. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +145 -18
  324. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +156 -25
  325. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +492 -65
  326. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +705 -215
  327. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +943 -422
  328. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +144 -17
  329. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +619 -200
  330. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +474 -159
  331. nautobot/project-static/docs/development/apps/api/configuration-view.html +131 -14
  332. nautobot/project-static/docs/development/apps/api/database-backend-config.html +131 -14
  333. nautobot/project-static/docs/development/apps/api/models/django-admin.html +131 -14
  334. nautobot/project-static/docs/development/apps/api/models/global-search.html +131 -14
  335. nautobot/project-static/docs/development/apps/api/models/graphql.html +131 -14
  336. nautobot/project-static/docs/development/apps/api/models/index.html +131 -14
  337. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +131 -14
  338. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +131 -14
  339. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +131 -14
  340. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +131 -14
  341. nautobot/project-static/docs/development/apps/api/platform-features/index.html +131 -14
  342. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +131 -14
  343. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +131 -14
  344. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +131 -14
  345. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +131 -14
  346. nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +153 -17
  347. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +131 -14
  348. nautobot/project-static/docs/development/apps/api/prometheus.html +131 -14
  349. nautobot/project-static/docs/development/apps/api/setup.html +131 -14
  350. nautobot/project-static/docs/development/apps/api/testing.html +131 -14
  351. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +131 -14
  352. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +131 -14
  353. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +131 -14
  354. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +131 -14
  355. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +131 -14
  356. nautobot/project-static/docs/development/apps/api/views/base-template.html +131 -14
  357. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +131 -14
  358. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +131 -14
  359. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +131 -14
  360. nautobot/project-static/docs/development/apps/api/views/index.html +131 -14
  361. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +131 -14
  362. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +131 -14
  363. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +131 -14
  364. nautobot/project-static/docs/development/apps/api/views/notes.html +131 -14
  365. nautobot/project-static/docs/development/apps/api/views/rest-api.html +137 -16
  366. nautobot/project-static/docs/development/apps/api/views/urls.html +131 -14
  367. nautobot/project-static/docs/development/apps/index.html +131 -14
  368. nautobot/project-static/docs/development/apps/migration/code-updates.html +131 -14
  369. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +131 -14
  370. nautobot/project-static/docs/development/apps/migration/from-v1.html +131 -14
  371. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +131 -14
  372. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +131 -14
  373. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +131 -14
  374. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +131 -14
  375. nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +135 -18
  376. nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +131 -14
  377. nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +297 -25
  378. nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +131 -14
  379. nautobot/project-static/docs/development/apps/porting-from-netbox.html +131 -14
  380. nautobot/project-static/docs/development/core/application-registry.html +131 -14
  381. nautobot/project-static/docs/development/core/best-practices.html +131 -14
  382. nautobot/project-static/docs/development/core/bootstrap-ui.html +131 -14
  383. nautobot/project-static/docs/development/core/caching.html +131 -14
  384. nautobot/project-static/docs/development/core/controllers.html +131 -14
  385. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +158 -84
  386. nautobot/project-static/docs/development/core/generic-views.html +131 -14
  387. nautobot/project-static/docs/development/core/getting-started.html +334 -234
  388. nautobot/project-static/docs/development/core/homepage.html +134 -17
  389. nautobot/project-static/docs/development/core/index.html +131 -14
  390. nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +9829 -0
  391. nautobot/project-static/docs/development/core/model-checklist.html +141 -22
  392. nautobot/project-static/docs/development/core/model-features.html +131 -14
  393. nautobot/project-static/docs/development/core/natural-keys.html +131 -14
  394. nautobot/project-static/docs/development/core/navigation-menu.html +131 -14
  395. nautobot/project-static/docs/development/core/release-checklist.html +134 -17
  396. nautobot/project-static/docs/development/core/role-internals.html +131 -14
  397. nautobot/project-static/docs/development/core/settings.html +131 -14
  398. nautobot/project-static/docs/development/core/style-guide.html +134 -17
  399. nautobot/project-static/docs/development/core/templates.html +132 -15
  400. nautobot/project-static/docs/development/core/testing.html +131 -14
  401. nautobot/project-static/docs/development/core/ui-component-framework.html +454 -283
  402. nautobot/project-static/docs/development/core/user-preferences.html +131 -14
  403. nautobot/project-static/docs/development/index.html +131 -14
  404. nautobot/project-static/docs/development/jobs/index.html +301 -132
  405. nautobot/project-static/docs/development/jobs/migration/from-v1.html +131 -14
  406. nautobot/project-static/docs/index.html +139 -33
  407. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
  408. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
  409. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
  410. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
  411. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
  412. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
  413. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
  414. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
  415. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
  416. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
  417. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
  418. nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
  419. nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
  420. nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
  421. nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
  422. nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
  423. nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
  424. nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
  425. nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
  426. nautobot/project-static/docs/objects.inv +0 -0
  427. nautobot/project-static/docs/overview/application_stack.html +132 -17
  428. nautobot/project-static/docs/overview/design_philosophy.html +131 -14
  429. nautobot/project-static/docs/release-notes/index.html +137 -22
  430. nautobot/project-static/docs/release-notes/version-1.0.html +319 -203
  431. nautobot/project-static/docs/release-notes/version-1.1.html +316 -200
  432. nautobot/project-static/docs/release-notes/version-1.2.html +391 -275
  433. nautobot/project-static/docs/release-notes/version-1.3.html +417 -301
  434. nautobot/project-static/docs/release-notes/version-1.4.html +502 -387
  435. nautobot/project-static/docs/release-notes/version-1.5.html +690 -576
  436. nautobot/project-static/docs/release-notes/version-1.6.html +989 -457
  437. nautobot/project-static/docs/release-notes/version-2.0.html +613 -499
  438. nautobot/project-static/docs/release-notes/version-2.1.html +448 -334
  439. nautobot/project-static/docs/release-notes/version-2.2.html +441 -327
  440. nautobot/project-static/docs/release-notes/version-2.3.html +1171 -451
  441. nautobot/project-static/docs/release-notes/version-2.4.html +800 -111
  442. nautobot/project-static/docs/requirements.txt +2 -2
  443. nautobot/project-static/docs/search/search_index.json +1 -1
  444. nautobot/project-static/docs/sitemap.xml +303 -287
  445. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  446. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +131 -14
  447. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +131 -14
  448. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +133 -16
  449. nautobot/project-static/docs/user-guide/administration/configuration/index.html +131 -14
  450. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +131 -14
  451. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +195 -18
  452. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +131 -14
  453. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +134 -17
  454. nautobot/project-static/docs/user-guide/administration/guides/docker.html +131 -14
  455. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +131 -14
  456. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +131 -14
  457. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -14
  458. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +131 -14
  459. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +131 -14
  460. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +133 -16
  461. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +131 -14
  462. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +131 -14
  463. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +131 -14
  464. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +151 -18
  465. nautobot/project-static/docs/user-guide/administration/installation/index.html +131 -14
  466. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +132 -15
  467. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +131 -14
  468. nautobot/project-static/docs/user-guide/administration/installation/services.html +131 -14
  469. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +131 -14
  470. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +131 -14
  471. nautobot/project-static/docs/user-guide/administration/security/index.html +9420 -0
  472. nautobot/project-static/docs/user-guide/administration/security/notices.html +9843 -0
  473. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +131 -14
  474. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +131 -14
  475. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +131 -14
  476. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +131 -14
  477. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +131 -14
  478. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +131 -14
  479. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +131 -14
  480. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +134 -18
  481. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +131 -14
  482. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +131 -14
  483. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +131 -14
  484. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +131 -14
  485. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +131 -14
  486. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +131 -14
  487. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +131 -14
  488. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +131 -14
  489. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +131 -14
  490. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +131 -14
  491. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +131 -14
  492. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +131 -14
  493. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +131 -14
  494. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +131 -14
  495. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +131 -14
  496. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +131 -14
  497. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +131 -14
  498. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +131 -14
  499. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +131 -14
  500. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +131 -14
  501. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +131 -14
  502. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +131 -14
  503. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +131 -14
  504. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +131 -14
  505. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +131 -14
  506. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +131 -14
  507. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +131 -14
  508. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +131 -14
  509. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +131 -14
  510. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +131 -14
  511. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +131 -14
  512. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +131 -14
  513. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +131 -14
  514. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +131 -14
  515. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +131 -14
  516. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +131 -14
  517. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +131 -14
  518. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +131 -14
  519. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +131 -14
  520. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +131 -14
  521. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +131 -14
  522. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +131 -14
  523. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +131 -14
  524. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +131 -14
  525. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +131 -14
  526. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +131 -14
  527. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +131 -14
  528. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +131 -14
  529. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +131 -14
  530. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +131 -14
  531. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +131 -14
  532. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +131 -14
  533. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +131 -14
  534. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +131 -14
  535. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +131 -14
  536. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +131 -14
  537. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +131 -14
  538. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +135 -22
  539. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +131 -14
  540. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +131 -14
  541. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +131 -14
  542. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +131 -14
  543. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +131 -14
  544. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +131 -14
  545. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +131 -14
  546. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +131 -14
  547. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +131 -14
  548. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +131 -14
  549. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +131 -14
  550. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +131 -14
  551. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +134 -17
  552. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +131 -14
  553. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +131 -14
  554. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +131 -14
  555. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +131 -14
  556. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +131 -14
  557. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +131 -14
  558. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +131 -14
  559. nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +131 -14
  560. nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +131 -14
  561. nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +131 -14
  562. nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +131 -14
  563. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +131 -14
  564. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +131 -14
  565. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +131 -14
  566. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +131 -14
  567. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +134 -17
  568. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +131 -14
  569. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +131 -14
  570. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +131 -14
  571. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +131 -14
  572. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +131 -14
  573. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +131 -14
  574. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +236 -34
  575. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +131 -14
  576. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
  577. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
  578. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
  579. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
  580. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
  581. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
  582. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
  583. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
  584. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
  585. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
  586. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
  587. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
  588. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
  589. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +131 -14
  590. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +131 -14
  591. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +134 -17
  592. nautobot/project-static/docs/{development/core/local-k8s.html → user-guide/feature-guides/wireless-networks-and-controllers.html} +632 -566
  593. nautobot/project-static/docs/user-guide/index.html +131 -14
  594. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +131 -14
  595. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +135 -18
  596. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +131 -14
  597. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +131 -14
  598. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +131 -14
  599. nautobot/project-static/docs/user-guide/platform-functionality/events.html +131 -14
  600. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +131 -14
  601. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +131 -14
  602. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +451 -16
  603. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +131 -14
  604. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +131 -14
  605. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +131 -14
  606. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +135 -17
  607. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +131 -14
  608. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +134 -17
  609. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +131 -14
  610. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +131 -14
  611. nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9797 -0
  612. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +131 -14
  613. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +131 -14
  614. nautobot/project-static/docs/user-guide/platform-functionality/note.html +131 -14
  615. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +131 -14
  616. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +132 -15
  617. nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +131 -14
  618. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +131 -14
  619. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +179 -35
  620. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +159 -15
  621. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +131 -14
  622. nautobot/project-static/docs/user-guide/platform-functionality/role.html +131 -14
  623. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +131 -14
  624. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +131 -14
  625. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +131 -14
  626. nautobot/project-static/docs/user-guide/platform-functionality/status.html +131 -14
  627. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +131 -14
  628. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +131 -14
  629. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +131 -14
  630. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +131 -14
  631. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +131 -14
  632. nautobot/project-static/js/forms.js +1 -1
  633. nautobot/tenancy/api/views.py +9 -13
  634. nautobot/tenancy/templates/tenancy/tenant.html +1 -2
  635. nautobot/tenancy/templates/tenancy/tenantgroup.html +1 -1
  636. nautobot/tenancy/views.py +4 -2
  637. nautobot/users/admin.py +1 -1
  638. nautobot/users/api/serializers.py +5 -4
  639. nautobot/users/api/views.py +3 -3
  640. nautobot/virtualization/api/serializers.py +4 -4
  641. nautobot/virtualization/api/views.py +5 -24
  642. nautobot/virtualization/filters.py +20 -3
  643. nautobot/virtualization/models.py +1 -1
  644. nautobot/virtualization/tables.py +2 -2
  645. nautobot/virtualization/templates/virtualization/cluster.html +1 -1
  646. nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
  647. nautobot/virtualization/templates/virtualization/clustergroup.html +1 -1
  648. nautobot/virtualization/templates/virtualization/clustertype.html +1 -1
  649. nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -10
  650. nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
  651. nautobot/virtualization/templates/virtualization/vminterface.html +1 -1
  652. nautobot/virtualization/tests/test_filters.py +17 -0
  653. nautobot/wireless/filters.py +2 -2
  654. nautobot/wireless/forms.py +1 -1
  655. nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
  656. nautobot/wireless/tests/integration/__init__.py +0 -0
  657. nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
  658. nautobot/wireless/tests/test_filters.py +29 -1
  659. nautobot/wireless/tests/test_views.py +22 -1
  660. nautobot/wireless/views.py +0 -10
  661. {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/METADATA +9 -9
  662. {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/RECORD +667 -610
  663. {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/WHEEL +1 -1
  664. nautobot/core/fixtures/user-data.json +0 -59
  665. /nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css.map → main.a40c8224.min.css.map} +0 -0
  666. {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/LICENSE.txt +0 -0
  667. {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/NOTICE +0 -0
  668. {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/entry_points.txt +0 -0
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
  <link rel="icon" href="../assets/favicon.ico">
21
- <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.46">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.50">
22
22
 
23
23
 
24
24
 
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- <link rel="stylesheet" href="../assets/stylesheets/main.6f8fc17f.min.css">
29
+ <link rel="stylesheet" href="../assets/stylesheets/main.a40c8224.min.css">
30
30
 
31
31
 
32
32
  <link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
@@ -38,7 +38,7 @@
38
38
 
39
39
 
40
40
 
41
- <style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1"/></svg>');}</style>
41
+ <style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1"/></svg>');}</style>
42
42
 
43
43
 
44
44
 
@@ -217,7 +217,7 @@
217
217
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
218
218
  <div class="md-source__icon md-icon">
219
219
 
220
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
220
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
221
221
  </div>
222
222
  <div class="md-source__repository">
223
223
  GitHub
@@ -377,7 +377,7 @@
377
377
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
378
378
  <div class="md-source__icon md-icon">
379
379
 
380
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
380
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
381
381
  </div>
382
382
  <div class="md-source__repository">
383
383
  GitHub
@@ -1697,6 +1697,81 @@
1697
1697
 
1698
1698
 
1699
1699
 
1700
+
1701
+
1702
+
1703
+
1704
+
1705
+
1706
+
1707
+
1708
+
1709
+
1710
+
1711
+
1712
+
1713
+ <li class="md-nav__item md-nav__item--nested">
1714
+
1715
+
1716
+
1717
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_7" >
1718
+
1719
+
1720
+
1721
+ <div class="md-nav__link md-nav__container">
1722
+ <a href="../user-guide/administration/security/index.html" class="md-nav__link ">
1723
+
1724
+
1725
+ <span class="md-ellipsis">
1726
+ Security
1727
+ </span>
1728
+
1729
+
1730
+ </a>
1731
+
1732
+
1733
+ <label class="md-nav__link " for="__nav_2_1_7" id="__nav_2_1_7_label" tabindex="0">
1734
+ <span class="md-nav__icon md-icon"></span>
1735
+ </label>
1736
+
1737
+ </div>
1738
+
1739
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_7_label" aria-expanded="false">
1740
+ <label class="md-nav__title" for="__nav_2_1_7">
1741
+ <span class="md-nav__icon md-icon"></span>
1742
+ Security
1743
+ </label>
1744
+ <ul class="md-nav__list" data-md-scrollfix>
1745
+
1746
+
1747
+
1748
+
1749
+
1750
+
1751
+
1752
+ <li class="md-nav__item">
1753
+ <a href="../user-guide/administration/security/notices.html" class="md-nav__link">
1754
+
1755
+
1756
+ <span class="md-ellipsis">
1757
+ Notices
1758
+ </span>
1759
+
1760
+
1761
+ </a>
1762
+ </li>
1763
+
1764
+
1765
+
1766
+
1767
+ </ul>
1768
+ </nav>
1769
+
1770
+ </li>
1771
+
1772
+
1773
+
1774
+
1700
1775
  </ul>
1701
1776
  </nav>
1702
1777
 
@@ -2112,6 +2187,27 @@
2112
2187
 
2113
2188
 
2114
2189
 
2190
+
2191
+
2192
+
2193
+
2194
+
2195
+
2196
+ <li class="md-nav__item">
2197
+ <a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
2198
+
2199
+
2200
+ <span class="md-ellipsis">
2201
+ Wireless Networks and Controllers
2202
+ </span>
2203
+
2204
+
2205
+ </a>
2206
+ </li>
2207
+
2208
+
2209
+
2210
+
2115
2211
  </ul>
2116
2212
  </nav>
2117
2213
 
@@ -5131,6 +5227,27 @@
5131
5227
 
5132
5228
 
5133
5229
 
5230
+ <li class="md-nav__item">
5231
+ <a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
5232
+
5233
+
5234
+ <span class="md-ellipsis">
5235
+ Kubernetes Job Support
5236
+ </span>
5237
+
5238
+
5239
+ </a>
5240
+ </li>
5241
+
5242
+
5243
+
5244
+
5245
+
5246
+
5247
+
5248
+
5249
+
5250
+
5134
5251
  <li class="md-nav__item">
5135
5252
  <a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
5136
5253
 
@@ -8055,11 +8172,11 @@
8055
8172
 
8056
8173
 
8057
8174
  <li class="md-nav__item">
8058
- <a href="../development/core/local-k8s.html" class="md-nav__link">
8175
+ <a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
8059
8176
 
8060
8177
 
8061
8178
  <span class="md-ellipsis">
8062
- Local Kubernetes Cluster
8179
+ Minikube Dev Environment for K8s Jobs
8063
8180
  </span>
8064
8181
 
8065
8182
 
@@ -8642,72 +8759,72 @@
8642
8759
  <ul class="md-nav__list">
8643
8760
 
8644
8761
  <li class="md-nav__item">
8645
- <a href="#security" class="md-nav__link">
8762
+ <a href="#security-in-v219" class="md-nav__link">
8646
8763
  <span class="md-ellipsis">
8647
- Security
8764
+ Security in v2.1.9
8648
8765
  </span>
8649
8766
  </a>
8650
8767
 
8651
8768
  </li>
8652
8769
 
8653
8770
  <li class="md-nav__item">
8654
- <a href="#added_1" class="md-nav__link">
8771
+ <a href="#added-in-v219" class="md-nav__link">
8655
8772
  <span class="md-ellipsis">
8656
- Added
8773
+ Added in v2.1.9
8657
8774
  </span>
8658
8775
  </a>
8659
8776
 
8660
8777
  </li>
8661
8778
 
8662
8779
  <li class="md-nav__item">
8663
- <a href="#changed_1" class="md-nav__link">
8780
+ <a href="#changed-in-v219" class="md-nav__link">
8664
8781
  <span class="md-ellipsis">
8665
- Changed
8782
+ Changed in v2.1.9
8666
8783
  </span>
8667
8784
  </a>
8668
8785
 
8669
8786
  </li>
8670
8787
 
8671
8788
  <li class="md-nav__item">
8672
- <a href="#removed_1" class="md-nav__link">
8789
+ <a href="#removed-in-v219" class="md-nav__link">
8673
8790
  <span class="md-ellipsis">
8674
- Removed
8791
+ Removed in v2.1.9
8675
8792
  </span>
8676
8793
  </a>
8677
8794
 
8678
8795
  </li>
8679
8796
 
8680
8797
  <li class="md-nav__item">
8681
- <a href="#fixed" class="md-nav__link">
8798
+ <a href="#fixed-in-v219" class="md-nav__link">
8682
8799
  <span class="md-ellipsis">
8683
- Fixed
8800
+ Fixed in v2.1.9
8684
8801
  </span>
8685
8802
  </a>
8686
8803
 
8687
8804
  </li>
8688
8805
 
8689
8806
  <li class="md-nav__item">
8690
- <a href="#dependencies" class="md-nav__link">
8807
+ <a href="#dependencies-in-v219" class="md-nav__link">
8691
8808
  <span class="md-ellipsis">
8692
- Dependencies
8809
+ Dependencies in v2.1.9
8693
8810
  </span>
8694
8811
  </a>
8695
8812
 
8696
8813
  </li>
8697
8814
 
8698
8815
  <li class="md-nav__item">
8699
- <a href="#documentation" class="md-nav__link">
8816
+ <a href="#documentation-in-v219" class="md-nav__link">
8700
8817
  <span class="md-ellipsis">
8701
- Documentation
8818
+ Documentation in v2.1.9
8702
8819
  </span>
8703
8820
  </a>
8704
8821
 
8705
8822
  </li>
8706
8823
 
8707
8824
  <li class="md-nav__item">
8708
- <a href="#housekeeping" class="md-nav__link">
8825
+ <a href="#housekeeping-in-v219" class="md-nav__link">
8709
8826
  <span class="md-ellipsis">
8710
- Housekeeping
8827
+ Housekeeping in v2.1.9
8711
8828
  </span>
8712
8829
  </a>
8713
8830
 
@@ -8729,54 +8846,54 @@
8729
8846
  <ul class="md-nav__list">
8730
8847
 
8731
8848
  <li class="md-nav__item">
8732
- <a href="#added_2" class="md-nav__link">
8849
+ <a href="#added-in-v218" class="md-nav__link">
8733
8850
  <span class="md-ellipsis">
8734
- Added
8851
+ Added in v2.1.8
8735
8852
  </span>
8736
8853
  </a>
8737
8854
 
8738
8855
  </li>
8739
8856
 
8740
8857
  <li class="md-nav__item">
8741
- <a href="#changed_2" class="md-nav__link">
8858
+ <a href="#changed-in-v218" class="md-nav__link">
8742
8859
  <span class="md-ellipsis">
8743
- Changed
8860
+ Changed in v2.1.8
8744
8861
  </span>
8745
8862
  </a>
8746
8863
 
8747
8864
  </li>
8748
8865
 
8749
8866
  <li class="md-nav__item">
8750
- <a href="#removed_2" class="md-nav__link">
8867
+ <a href="#removed-in-v218" class="md-nav__link">
8751
8868
  <span class="md-ellipsis">
8752
- Removed
8869
+ Removed in v2.1.8
8753
8870
  </span>
8754
8871
  </a>
8755
8872
 
8756
8873
  </li>
8757
8874
 
8758
8875
  <li class="md-nav__item">
8759
- <a href="#fixed_1" class="md-nav__link">
8876
+ <a href="#fixed-in-v218" class="md-nav__link">
8760
8877
  <span class="md-ellipsis">
8761
- Fixed
8878
+ Fixed in v2.1.8
8762
8879
  </span>
8763
8880
  </a>
8764
8881
 
8765
8882
  </li>
8766
8883
 
8767
8884
  <li class="md-nav__item">
8768
- <a href="#documentation_1" class="md-nav__link">
8885
+ <a href="#documentation-in-v218" class="md-nav__link">
8769
8886
  <span class="md-ellipsis">
8770
- Documentation
8887
+ Documentation in v2.1.8
8771
8888
  </span>
8772
8889
  </a>
8773
8890
 
8774
8891
  </li>
8775
8892
 
8776
8893
  <li class="md-nav__item">
8777
- <a href="#housekeeping_1" class="md-nav__link">
8894
+ <a href="#housekeeping-in-v218" class="md-nav__link">
8778
8895
  <span class="md-ellipsis">
8779
- Housekeeping
8896
+ Housekeeping in v2.1.8
8780
8897
  </span>
8781
8898
  </a>
8782
8899
 
@@ -8798,9 +8915,9 @@
8798
8915
  <ul class="md-nav__list">
8799
8916
 
8800
8917
  <li class="md-nav__item">
8801
- <a href="#fixed_2" class="md-nav__link">
8918
+ <a href="#fixed-in-v217" class="md-nav__link">
8802
8919
  <span class="md-ellipsis">
8803
- Fixed
8920
+ Fixed in v2.1.7
8804
8921
  </span>
8805
8922
  </a>
8806
8923
 
@@ -8822,45 +8939,45 @@
8822
8939
  <ul class="md-nav__list">
8823
8940
 
8824
8941
  <li class="md-nav__item">
8825
- <a href="#security_1" class="md-nav__link">
8942
+ <a href="#security-in-v216" class="md-nav__link">
8826
8943
  <span class="md-ellipsis">
8827
- Security
8944
+ Security in v2.1.6
8828
8945
  </span>
8829
8946
  </a>
8830
8947
 
8831
8948
  </li>
8832
8949
 
8833
8950
  <li class="md-nav__item">
8834
- <a href="#added_3" class="md-nav__link">
8951
+ <a href="#added-in-v216" class="md-nav__link">
8835
8952
  <span class="md-ellipsis">
8836
- Added
8953
+ Added in v2.1.6
8837
8954
  </span>
8838
8955
  </a>
8839
8956
 
8840
8957
  </li>
8841
8958
 
8842
8959
  <li class="md-nav__item">
8843
- <a href="#changed_3" class="md-nav__link">
8960
+ <a href="#changed-in-v216" class="md-nav__link">
8844
8961
  <span class="md-ellipsis">
8845
- Changed
8962
+ Changed in v2.1.6
8846
8963
  </span>
8847
8964
  </a>
8848
8965
 
8849
8966
  </li>
8850
8967
 
8851
8968
  <li class="md-nav__item">
8852
- <a href="#fixed_3" class="md-nav__link">
8969
+ <a href="#fixed-in-v216" class="md-nav__link">
8853
8970
  <span class="md-ellipsis">
8854
- Fixed
8971
+ Fixed in v2.1.6
8855
8972
  </span>
8856
8973
  </a>
8857
8974
 
8858
8975
  </li>
8859
8976
 
8860
8977
  <li class="md-nav__item">
8861
- <a href="#documentation_2" class="md-nav__link">
8978
+ <a href="#documentation-in-v216" class="md-nav__link">
8862
8979
  <span class="md-ellipsis">
8863
- Documentation
8980
+ Documentation in v2.1.6
8864
8981
  </span>
8865
8982
  </a>
8866
8983
 
@@ -8882,54 +8999,54 @@
8882
8999
  <ul class="md-nav__list">
8883
9000
 
8884
9001
  <li class="md-nav__item">
8885
- <a href="#security_2" class="md-nav__link">
9002
+ <a href="#security-in-v215" class="md-nav__link">
8886
9003
  <span class="md-ellipsis">
8887
- Security
9004
+ Security in v2.1.5
8888
9005
  </span>
8889
9006
  </a>
8890
9007
 
8891
9008
  </li>
8892
9009
 
8893
9010
  <li class="md-nav__item">
8894
- <a href="#added_4" class="md-nav__link">
9011
+ <a href="#added-in-v215" class="md-nav__link">
8895
9012
  <span class="md-ellipsis">
8896
- Added
9013
+ Added in v2.1.5
8897
9014
  </span>
8898
9015
  </a>
8899
9016
 
8900
9017
  </li>
8901
9018
 
8902
9019
  <li class="md-nav__item">
8903
- <a href="#changed_4" class="md-nav__link">
9020
+ <a href="#changed-in-v215" class="md-nav__link">
8904
9021
  <span class="md-ellipsis">
8905
- Changed
9022
+ Changed in v2.1.5
8906
9023
  </span>
8907
9024
  </a>
8908
9025
 
8909
9026
  </li>
8910
9027
 
8911
9028
  <li class="md-nav__item">
8912
- <a href="#fixed_4" class="md-nav__link">
9029
+ <a href="#fixed-in-v215" class="md-nav__link">
8913
9030
  <span class="md-ellipsis">
8914
- Fixed
9031
+ Fixed in v2.1.5
8915
9032
  </span>
8916
9033
  </a>
8917
9034
 
8918
9035
  </li>
8919
9036
 
8920
9037
  <li class="md-nav__item">
8921
- <a href="#documentation_3" class="md-nav__link">
9038
+ <a href="#documentation-in-v215" class="md-nav__link">
8922
9039
  <span class="md-ellipsis">
8923
- Documentation
9040
+ Documentation in v2.1.5
8924
9041
  </span>
8925
9042
  </a>
8926
9043
 
8927
9044
  </li>
8928
9045
 
8929
9046
  <li class="md-nav__item">
8930
- <a href="#housekeeping_2" class="md-nav__link">
9047
+ <a href="#housekeeping-in-v215" class="md-nav__link">
8931
9048
  <span class="md-ellipsis">
8932
- Housekeeping
9049
+ Housekeeping in v2.1.5
8933
9050
  </span>
8934
9051
  </a>
8935
9052
 
@@ -8951,36 +9068,36 @@
8951
9068
  <ul class="md-nav__list">
8952
9069
 
8953
9070
  <li class="md-nav__item">
8954
- <a href="#security_3" class="md-nav__link">
9071
+ <a href="#security-in-v214" class="md-nav__link">
8955
9072
  <span class="md-ellipsis">
8956
- Security
9073
+ Security in v2.1.4
8957
9074
  </span>
8958
9075
  </a>
8959
9076
 
8960
9077
  </li>
8961
9078
 
8962
9079
  <li class="md-nav__item">
8963
- <a href="#fixed_5" class="md-nav__link">
9080
+ <a href="#fixed-in-v214" class="md-nav__link">
8964
9081
  <span class="md-ellipsis">
8965
- Fixed
9082
+ Fixed in v2.1.4
8966
9083
  </span>
8967
9084
  </a>
8968
9085
 
8969
9086
  </li>
8970
9087
 
8971
9088
  <li class="md-nav__item">
8972
- <a href="#documentation_4" class="md-nav__link">
9089
+ <a href="#documentation-in-v214" class="md-nav__link">
8973
9090
  <span class="md-ellipsis">
8974
- Documentation
9091
+ Documentation in v2.1.4
8975
9092
  </span>
8976
9093
  </a>
8977
9094
 
8978
9095
  </li>
8979
9096
 
8980
9097
  <li class="md-nav__item">
8981
- <a href="#housekeeping_3" class="md-nav__link">
9098
+ <a href="#housekeeping-in-v214" class="md-nav__link">
8982
9099
  <span class="md-ellipsis">
8983
- Housekeeping
9100
+ Housekeeping in v2.1.4
8984
9101
  </span>
8985
9102
  </a>
8986
9103
 
@@ -9002,63 +9119,63 @@
9002
9119
  <ul class="md-nav__list">
9003
9120
 
9004
9121
  <li class="md-nav__item">
9005
- <a href="#security_4" class="md-nav__link">
9122
+ <a href="#security-in-v213" class="md-nav__link">
9006
9123
  <span class="md-ellipsis">
9007
- Security
9124
+ Security in v2.1.3
9008
9125
  </span>
9009
9126
  </a>
9010
9127
 
9011
9128
  </li>
9012
9129
 
9013
9130
  <li class="md-nav__item">
9014
- <a href="#added_5" class="md-nav__link">
9131
+ <a href="#added-in-v213" class="md-nav__link">
9015
9132
  <span class="md-ellipsis">
9016
- Added
9133
+ Added in v2.1.3
9017
9134
  </span>
9018
9135
  </a>
9019
9136
 
9020
9137
  </li>
9021
9138
 
9022
9139
  <li class="md-nav__item">
9023
- <a href="#changed_5" class="md-nav__link">
9140
+ <a href="#changed-in-v213" class="md-nav__link">
9024
9141
  <span class="md-ellipsis">
9025
- Changed
9142
+ Changed in v2.1.3
9026
9143
  </span>
9027
9144
  </a>
9028
9145
 
9029
9146
  </li>
9030
9147
 
9031
9148
  <li class="md-nav__item">
9032
- <a href="#removed_3" class="md-nav__link">
9149
+ <a href="#removed-in-v213" class="md-nav__link">
9033
9150
  <span class="md-ellipsis">
9034
- Removed
9151
+ Removed in v2.1.3
9035
9152
  </span>
9036
9153
  </a>
9037
9154
 
9038
9155
  </li>
9039
9156
 
9040
9157
  <li class="md-nav__item">
9041
- <a href="#fixed_6" class="md-nav__link">
9158
+ <a href="#fixed-in-v213" class="md-nav__link">
9042
9159
  <span class="md-ellipsis">
9043
- Fixed
9160
+ Fixed in v2.1.3
9044
9161
  </span>
9045
9162
  </a>
9046
9163
 
9047
9164
  </li>
9048
9165
 
9049
9166
  <li class="md-nav__item">
9050
- <a href="#dependencies_1" class="md-nav__link">
9167
+ <a href="#dependencies-in-v213" class="md-nav__link">
9051
9168
  <span class="md-ellipsis">
9052
- Dependencies
9169
+ Dependencies in v2.1.3
9053
9170
  </span>
9054
9171
  </a>
9055
9172
 
9056
9173
  </li>
9057
9174
 
9058
9175
  <li class="md-nav__item">
9059
- <a href="#housekeeping_4" class="md-nav__link">
9176
+ <a href="#housekeeping-in-v213" class="md-nav__link">
9060
9177
  <span class="md-ellipsis">
9061
- Housekeeping
9178
+ Housekeeping in v2.1.3
9062
9179
  </span>
9063
9180
  </a>
9064
9181
 
@@ -9080,72 +9197,72 @@
9080
9197
  <ul class="md-nav__list">
9081
9198
 
9082
9199
  <li class="md-nav__item">
9083
- <a href="#security_5" class="md-nav__link">
9200
+ <a href="#security-in-v212" class="md-nav__link">
9084
9201
  <span class="md-ellipsis">
9085
- Security
9202
+ Security in v2.1.2
9086
9203
  </span>
9087
9204
  </a>
9088
9205
 
9089
9206
  </li>
9090
9207
 
9091
9208
  <li class="md-nav__item">
9092
- <a href="#added_6" class="md-nav__link">
9209
+ <a href="#added-in-v212" class="md-nav__link">
9093
9210
  <span class="md-ellipsis">
9094
- Added
9211
+ Added in v2.1.2
9095
9212
  </span>
9096
9213
  </a>
9097
9214
 
9098
9215
  </li>
9099
9216
 
9100
9217
  <li class="md-nav__item">
9101
- <a href="#changed_6" class="md-nav__link">
9218
+ <a href="#changed-in-v212" class="md-nav__link">
9102
9219
  <span class="md-ellipsis">
9103
- Changed
9220
+ Changed in v2.1.2
9104
9221
  </span>
9105
9222
  </a>
9106
9223
 
9107
9224
  </li>
9108
9225
 
9109
9226
  <li class="md-nav__item">
9110
- <a href="#removed_4" class="md-nav__link">
9227
+ <a href="#removed-in-v212" class="md-nav__link">
9111
9228
  <span class="md-ellipsis">
9112
- Removed
9229
+ Removed in v2.1.2
9113
9230
  </span>
9114
9231
  </a>
9115
9232
 
9116
9233
  </li>
9117
9234
 
9118
9235
  <li class="md-nav__item">
9119
- <a href="#fixed_7" class="md-nav__link">
9236
+ <a href="#fixed-in-v212" class="md-nav__link">
9120
9237
  <span class="md-ellipsis">
9121
- Fixed
9238
+ Fixed in v2.1.2
9122
9239
  </span>
9123
9240
  </a>
9124
9241
 
9125
9242
  </li>
9126
9243
 
9127
9244
  <li class="md-nav__item">
9128
- <a href="#dependencies_2" class="md-nav__link">
9245
+ <a href="#dependencies-in-v212" class="md-nav__link">
9129
9246
  <span class="md-ellipsis">
9130
- Dependencies
9247
+ Dependencies in v2.1.2
9131
9248
  </span>
9132
9249
  </a>
9133
9250
 
9134
9251
  </li>
9135
9252
 
9136
9253
  <li class="md-nav__item">
9137
- <a href="#documentation_5" class="md-nav__link">
9254
+ <a href="#documentation-in-v212" class="md-nav__link">
9138
9255
  <span class="md-ellipsis">
9139
- Documentation
9256
+ Documentation in v2.1.2
9140
9257
  </span>
9141
9258
  </a>
9142
9259
 
9143
9260
  </li>
9144
9261
 
9145
9262
  <li class="md-nav__item">
9146
- <a href="#housekeeping_5" class="md-nav__link">
9263
+ <a href="#housekeeping-in-v212" class="md-nav__link">
9147
9264
  <span class="md-ellipsis">
9148
- Housekeeping
9265
+ Housekeeping in v2.1.2
9149
9266
  </span>
9150
9267
  </a>
9151
9268
 
@@ -9167,54 +9284,54 @@
9167
9284
  <ul class="md-nav__list">
9168
9285
 
9169
9286
  <li class="md-nav__item">
9170
- <a href="#added_7" class="md-nav__link">
9287
+ <a href="#added-in-v211" class="md-nav__link">
9171
9288
  <span class="md-ellipsis">
9172
- Added
9289
+ Added in v2.1.1
9173
9290
  </span>
9174
9291
  </a>
9175
9292
 
9176
9293
  </li>
9177
9294
 
9178
9295
  <li class="md-nav__item">
9179
- <a href="#changed_7" class="md-nav__link">
9296
+ <a href="#changed-in-v211" class="md-nav__link">
9180
9297
  <span class="md-ellipsis">
9181
- Changed
9298
+ Changed in v2.1.1
9182
9299
  </span>
9183
9300
  </a>
9184
9301
 
9185
9302
  </li>
9186
9303
 
9187
9304
  <li class="md-nav__item">
9188
- <a href="#removed_5" class="md-nav__link">
9305
+ <a href="#removed-in-v211" class="md-nav__link">
9189
9306
  <span class="md-ellipsis">
9190
- Removed
9307
+ Removed in v2.1.1
9191
9308
  </span>
9192
9309
  </a>
9193
9310
 
9194
9311
  </li>
9195
9312
 
9196
9313
  <li class="md-nav__item">
9197
- <a href="#fixed_8" class="md-nav__link">
9314
+ <a href="#fixed-in-v211" class="md-nav__link">
9198
9315
  <span class="md-ellipsis">
9199
- Fixed
9316
+ Fixed in v2.1.1
9200
9317
  </span>
9201
9318
  </a>
9202
9319
 
9203
9320
  </li>
9204
9321
 
9205
9322
  <li class="md-nav__item">
9206
- <a href="#documentation_6" class="md-nav__link">
9323
+ <a href="#documentation-in-v211" class="md-nav__link">
9207
9324
  <span class="md-ellipsis">
9208
- Documentation
9325
+ Documentation in v2.1.1
9209
9326
  </span>
9210
9327
  </a>
9211
9328
 
9212
9329
  </li>
9213
9330
 
9214
9331
  <li class="md-nav__item">
9215
- <a href="#housekeeping_6" class="md-nav__link">
9332
+ <a href="#housekeeping-in-v211" class="md-nav__link">
9216
9333
  <span class="md-ellipsis">
9217
- Housekeeping
9334
+ Housekeeping in v2.1.1
9218
9335
  </span>
9219
9336
  </a>
9220
9337
 
@@ -9236,63 +9353,63 @@
9236
9353
  <ul class="md-nav__list">
9237
9354
 
9238
9355
  <li class="md-nav__item">
9239
- <a href="#security_6" class="md-nav__link">
9356
+ <a href="#security-in-v210" class="md-nav__link">
9240
9357
  <span class="md-ellipsis">
9241
- Security
9358
+ Security in v2.1.0
9242
9359
  </span>
9243
9360
  </a>
9244
9361
 
9245
9362
  </li>
9246
9363
 
9247
9364
  <li class="md-nav__item">
9248
- <a href="#added_8" class="md-nav__link">
9365
+ <a href="#added-in-v210" class="md-nav__link">
9249
9366
  <span class="md-ellipsis">
9250
- Added
9367
+ Added in v2.1.0
9251
9368
  </span>
9252
9369
  </a>
9253
9370
 
9254
9371
  </li>
9255
9372
 
9256
9373
  <li class="md-nav__item">
9257
- <a href="#changed_8" class="md-nav__link">
9374
+ <a href="#changed-in-v210" class="md-nav__link">
9258
9375
  <span class="md-ellipsis">
9259
- Changed
9376
+ Changed in v2.1.0
9260
9377
  </span>
9261
9378
  </a>
9262
9379
 
9263
9380
  </li>
9264
9381
 
9265
9382
  <li class="md-nav__item">
9266
- <a href="#removed_6" class="md-nav__link">
9383
+ <a href="#removed-in-v210" class="md-nav__link">
9267
9384
  <span class="md-ellipsis">
9268
- Removed
9385
+ Removed in v2.1.0
9269
9386
  </span>
9270
9387
  </a>
9271
9388
 
9272
9389
  </li>
9273
9390
 
9274
9391
  <li class="md-nav__item">
9275
- <a href="#fixed_9" class="md-nav__link">
9392
+ <a href="#fixed-in-v210" class="md-nav__link">
9276
9393
  <span class="md-ellipsis">
9277
- Fixed
9394
+ Fixed in v2.1.0
9278
9395
  </span>
9279
9396
  </a>
9280
9397
 
9281
9398
  </li>
9282
9399
 
9283
9400
  <li class="md-nav__item">
9284
- <a href="#documentation_7" class="md-nav__link">
9401
+ <a href="#documentation-in-v210" class="md-nav__link">
9285
9402
  <span class="md-ellipsis">
9286
- Documentation
9403
+ Documentation in v2.1.0
9287
9404
  </span>
9288
9405
  </a>
9289
9406
 
9290
9407
  </li>
9291
9408
 
9292
9409
  <li class="md-nav__item">
9293
- <a href="#housekeeping_7" class="md-nav__link">
9410
+ <a href="#housekeeping-in-v210" class="md-nav__link">
9294
9411
  <span class="md-ellipsis">
9295
- Housekeeping
9412
+ Housekeeping in v2.1.0
9296
9413
  </span>
9297
9414
  </a>
9298
9415
 
@@ -9314,45 +9431,45 @@
9314
9431
  <ul class="md-nav__list">
9315
9432
 
9316
9433
  <li class="md-nav__item">
9317
- <a href="#added_9" class="md-nav__link">
9434
+ <a href="#added-in-v210-beta1" class="md-nav__link">
9318
9435
  <span class="md-ellipsis">
9319
- Added
9436
+ Added in v2.1.0-beta.1
9320
9437
  </span>
9321
9438
  </a>
9322
9439
 
9323
9440
  </li>
9324
9441
 
9325
9442
  <li class="md-nav__item">
9326
- <a href="#changed_9" class="md-nav__link">
9443
+ <a href="#changed-in-v210-beta1" class="md-nav__link">
9327
9444
  <span class="md-ellipsis">
9328
- Changed
9445
+ Changed in v2.1.0-beta.1
9329
9446
  </span>
9330
9447
  </a>
9331
9448
 
9332
9449
  </li>
9333
9450
 
9334
9451
  <li class="md-nav__item">
9335
- <a href="#removed_7" class="md-nav__link">
9452
+ <a href="#removed-in-v210-beta1" class="md-nav__link">
9336
9453
  <span class="md-ellipsis">
9337
- Removed
9454
+ Removed in v2.1.0-beta.1
9338
9455
  </span>
9339
9456
  </a>
9340
9457
 
9341
9458
  </li>
9342
9459
 
9343
9460
  <li class="md-nav__item">
9344
- <a href="#fixed_10" class="md-nav__link">
9461
+ <a href="#fixed-in-v210-beta1" class="md-nav__link">
9345
9462
  <span class="md-ellipsis">
9346
- Fixed
9463
+ Fixed in v2.1.0-beta.1
9347
9464
  </span>
9348
9465
  </a>
9349
9466
 
9350
9467
  </li>
9351
9468
 
9352
9469
  <li class="md-nav__item">
9353
- <a href="#housekeeping_8" class="md-nav__link">
9470
+ <a href="#housekeeping-in-v210-beta1" class="md-nav__link">
9354
9471
  <span class="md-ellipsis">
9355
- Housekeeping
9472
+ Housekeeping in v2.1.0-beta.1
9356
9473
  </span>
9357
9474
  </a>
9358
9475
 
@@ -10063,72 +10180,72 @@
10063
10180
  <ul class="md-nav__list">
10064
10181
 
10065
10182
  <li class="md-nav__item">
10066
- <a href="#security" class="md-nav__link">
10183
+ <a href="#security-in-v219" class="md-nav__link">
10067
10184
  <span class="md-ellipsis">
10068
- Security
10185
+ Security in v2.1.9
10069
10186
  </span>
10070
10187
  </a>
10071
10188
 
10072
10189
  </li>
10073
10190
 
10074
10191
  <li class="md-nav__item">
10075
- <a href="#added_1" class="md-nav__link">
10192
+ <a href="#added-in-v219" class="md-nav__link">
10076
10193
  <span class="md-ellipsis">
10077
- Added
10194
+ Added in v2.1.9
10078
10195
  </span>
10079
10196
  </a>
10080
10197
 
10081
10198
  </li>
10082
10199
 
10083
10200
  <li class="md-nav__item">
10084
- <a href="#changed_1" class="md-nav__link">
10201
+ <a href="#changed-in-v219" class="md-nav__link">
10085
10202
  <span class="md-ellipsis">
10086
- Changed
10203
+ Changed in v2.1.9
10087
10204
  </span>
10088
10205
  </a>
10089
10206
 
10090
10207
  </li>
10091
10208
 
10092
10209
  <li class="md-nav__item">
10093
- <a href="#removed_1" class="md-nav__link">
10210
+ <a href="#removed-in-v219" class="md-nav__link">
10094
10211
  <span class="md-ellipsis">
10095
- Removed
10212
+ Removed in v2.1.9
10096
10213
  </span>
10097
10214
  </a>
10098
10215
 
10099
10216
  </li>
10100
10217
 
10101
10218
  <li class="md-nav__item">
10102
- <a href="#fixed" class="md-nav__link">
10219
+ <a href="#fixed-in-v219" class="md-nav__link">
10103
10220
  <span class="md-ellipsis">
10104
- Fixed
10221
+ Fixed in v2.1.9
10105
10222
  </span>
10106
10223
  </a>
10107
10224
 
10108
10225
  </li>
10109
10226
 
10110
10227
  <li class="md-nav__item">
10111
- <a href="#dependencies" class="md-nav__link">
10228
+ <a href="#dependencies-in-v219" class="md-nav__link">
10112
10229
  <span class="md-ellipsis">
10113
- Dependencies
10230
+ Dependencies in v2.1.9
10114
10231
  </span>
10115
10232
  </a>
10116
10233
 
10117
10234
  </li>
10118
10235
 
10119
10236
  <li class="md-nav__item">
10120
- <a href="#documentation" class="md-nav__link">
10237
+ <a href="#documentation-in-v219" class="md-nav__link">
10121
10238
  <span class="md-ellipsis">
10122
- Documentation
10239
+ Documentation in v2.1.9
10123
10240
  </span>
10124
10241
  </a>
10125
10242
 
10126
10243
  </li>
10127
10244
 
10128
10245
  <li class="md-nav__item">
10129
- <a href="#housekeeping" class="md-nav__link">
10246
+ <a href="#housekeeping-in-v219" class="md-nav__link">
10130
10247
  <span class="md-ellipsis">
10131
- Housekeeping
10248
+ Housekeeping in v2.1.9
10132
10249
  </span>
10133
10250
  </a>
10134
10251
 
@@ -10150,54 +10267,54 @@
10150
10267
  <ul class="md-nav__list">
10151
10268
 
10152
10269
  <li class="md-nav__item">
10153
- <a href="#added_2" class="md-nav__link">
10270
+ <a href="#added-in-v218" class="md-nav__link">
10154
10271
  <span class="md-ellipsis">
10155
- Added
10272
+ Added in v2.1.8
10156
10273
  </span>
10157
10274
  </a>
10158
10275
 
10159
10276
  </li>
10160
10277
 
10161
10278
  <li class="md-nav__item">
10162
- <a href="#changed_2" class="md-nav__link">
10279
+ <a href="#changed-in-v218" class="md-nav__link">
10163
10280
  <span class="md-ellipsis">
10164
- Changed
10281
+ Changed in v2.1.8
10165
10282
  </span>
10166
10283
  </a>
10167
10284
 
10168
10285
  </li>
10169
10286
 
10170
10287
  <li class="md-nav__item">
10171
- <a href="#removed_2" class="md-nav__link">
10288
+ <a href="#removed-in-v218" class="md-nav__link">
10172
10289
  <span class="md-ellipsis">
10173
- Removed
10290
+ Removed in v2.1.8
10174
10291
  </span>
10175
10292
  </a>
10176
10293
 
10177
10294
  </li>
10178
10295
 
10179
10296
  <li class="md-nav__item">
10180
- <a href="#fixed_1" class="md-nav__link">
10297
+ <a href="#fixed-in-v218" class="md-nav__link">
10181
10298
  <span class="md-ellipsis">
10182
- Fixed
10299
+ Fixed in v2.1.8
10183
10300
  </span>
10184
10301
  </a>
10185
10302
 
10186
10303
  </li>
10187
10304
 
10188
10305
  <li class="md-nav__item">
10189
- <a href="#documentation_1" class="md-nav__link">
10306
+ <a href="#documentation-in-v218" class="md-nav__link">
10190
10307
  <span class="md-ellipsis">
10191
- Documentation
10308
+ Documentation in v2.1.8
10192
10309
  </span>
10193
10310
  </a>
10194
10311
 
10195
10312
  </li>
10196
10313
 
10197
10314
  <li class="md-nav__item">
10198
- <a href="#housekeeping_1" class="md-nav__link">
10315
+ <a href="#housekeeping-in-v218" class="md-nav__link">
10199
10316
  <span class="md-ellipsis">
10200
- Housekeeping
10317
+ Housekeeping in v2.1.8
10201
10318
  </span>
10202
10319
  </a>
10203
10320
 
@@ -10219,9 +10336,9 @@
10219
10336
  <ul class="md-nav__list">
10220
10337
 
10221
10338
  <li class="md-nav__item">
10222
- <a href="#fixed_2" class="md-nav__link">
10339
+ <a href="#fixed-in-v217" class="md-nav__link">
10223
10340
  <span class="md-ellipsis">
10224
- Fixed
10341
+ Fixed in v2.1.7
10225
10342
  </span>
10226
10343
  </a>
10227
10344
 
@@ -10243,45 +10360,45 @@
10243
10360
  <ul class="md-nav__list">
10244
10361
 
10245
10362
  <li class="md-nav__item">
10246
- <a href="#security_1" class="md-nav__link">
10363
+ <a href="#security-in-v216" class="md-nav__link">
10247
10364
  <span class="md-ellipsis">
10248
- Security
10365
+ Security in v2.1.6
10249
10366
  </span>
10250
10367
  </a>
10251
10368
 
10252
10369
  </li>
10253
10370
 
10254
10371
  <li class="md-nav__item">
10255
- <a href="#added_3" class="md-nav__link">
10372
+ <a href="#added-in-v216" class="md-nav__link">
10256
10373
  <span class="md-ellipsis">
10257
- Added
10374
+ Added in v2.1.6
10258
10375
  </span>
10259
10376
  </a>
10260
10377
 
10261
10378
  </li>
10262
10379
 
10263
10380
  <li class="md-nav__item">
10264
- <a href="#changed_3" class="md-nav__link">
10381
+ <a href="#changed-in-v216" class="md-nav__link">
10265
10382
  <span class="md-ellipsis">
10266
- Changed
10383
+ Changed in v2.1.6
10267
10384
  </span>
10268
10385
  </a>
10269
10386
 
10270
10387
  </li>
10271
10388
 
10272
10389
  <li class="md-nav__item">
10273
- <a href="#fixed_3" class="md-nav__link">
10390
+ <a href="#fixed-in-v216" class="md-nav__link">
10274
10391
  <span class="md-ellipsis">
10275
- Fixed
10392
+ Fixed in v2.1.6
10276
10393
  </span>
10277
10394
  </a>
10278
10395
 
10279
10396
  </li>
10280
10397
 
10281
10398
  <li class="md-nav__item">
10282
- <a href="#documentation_2" class="md-nav__link">
10399
+ <a href="#documentation-in-v216" class="md-nav__link">
10283
10400
  <span class="md-ellipsis">
10284
- Documentation
10401
+ Documentation in v2.1.6
10285
10402
  </span>
10286
10403
  </a>
10287
10404
 
@@ -10303,54 +10420,54 @@
10303
10420
  <ul class="md-nav__list">
10304
10421
 
10305
10422
  <li class="md-nav__item">
10306
- <a href="#security_2" class="md-nav__link">
10423
+ <a href="#security-in-v215" class="md-nav__link">
10307
10424
  <span class="md-ellipsis">
10308
- Security
10425
+ Security in v2.1.5
10309
10426
  </span>
10310
10427
  </a>
10311
10428
 
10312
10429
  </li>
10313
10430
 
10314
10431
  <li class="md-nav__item">
10315
- <a href="#added_4" class="md-nav__link">
10432
+ <a href="#added-in-v215" class="md-nav__link">
10316
10433
  <span class="md-ellipsis">
10317
- Added
10434
+ Added in v2.1.5
10318
10435
  </span>
10319
10436
  </a>
10320
10437
 
10321
10438
  </li>
10322
10439
 
10323
10440
  <li class="md-nav__item">
10324
- <a href="#changed_4" class="md-nav__link">
10441
+ <a href="#changed-in-v215" class="md-nav__link">
10325
10442
  <span class="md-ellipsis">
10326
- Changed
10443
+ Changed in v2.1.5
10327
10444
  </span>
10328
10445
  </a>
10329
10446
 
10330
10447
  </li>
10331
10448
 
10332
10449
  <li class="md-nav__item">
10333
- <a href="#fixed_4" class="md-nav__link">
10450
+ <a href="#fixed-in-v215" class="md-nav__link">
10334
10451
  <span class="md-ellipsis">
10335
- Fixed
10452
+ Fixed in v2.1.5
10336
10453
  </span>
10337
10454
  </a>
10338
10455
 
10339
10456
  </li>
10340
10457
 
10341
10458
  <li class="md-nav__item">
10342
- <a href="#documentation_3" class="md-nav__link">
10459
+ <a href="#documentation-in-v215" class="md-nav__link">
10343
10460
  <span class="md-ellipsis">
10344
- Documentation
10461
+ Documentation in v2.1.5
10345
10462
  </span>
10346
10463
  </a>
10347
10464
 
10348
10465
  </li>
10349
10466
 
10350
10467
  <li class="md-nav__item">
10351
- <a href="#housekeeping_2" class="md-nav__link">
10468
+ <a href="#housekeeping-in-v215" class="md-nav__link">
10352
10469
  <span class="md-ellipsis">
10353
- Housekeeping
10470
+ Housekeeping in v2.1.5
10354
10471
  </span>
10355
10472
  </a>
10356
10473
 
@@ -10372,36 +10489,36 @@
10372
10489
  <ul class="md-nav__list">
10373
10490
 
10374
10491
  <li class="md-nav__item">
10375
- <a href="#security_3" class="md-nav__link">
10492
+ <a href="#security-in-v214" class="md-nav__link">
10376
10493
  <span class="md-ellipsis">
10377
- Security
10494
+ Security in v2.1.4
10378
10495
  </span>
10379
10496
  </a>
10380
10497
 
10381
10498
  </li>
10382
10499
 
10383
10500
  <li class="md-nav__item">
10384
- <a href="#fixed_5" class="md-nav__link">
10501
+ <a href="#fixed-in-v214" class="md-nav__link">
10385
10502
  <span class="md-ellipsis">
10386
- Fixed
10503
+ Fixed in v2.1.4
10387
10504
  </span>
10388
10505
  </a>
10389
10506
 
10390
10507
  </li>
10391
10508
 
10392
10509
  <li class="md-nav__item">
10393
- <a href="#documentation_4" class="md-nav__link">
10510
+ <a href="#documentation-in-v214" class="md-nav__link">
10394
10511
  <span class="md-ellipsis">
10395
- Documentation
10512
+ Documentation in v2.1.4
10396
10513
  </span>
10397
10514
  </a>
10398
10515
 
10399
10516
  </li>
10400
10517
 
10401
10518
  <li class="md-nav__item">
10402
- <a href="#housekeeping_3" class="md-nav__link">
10519
+ <a href="#housekeeping-in-v214" class="md-nav__link">
10403
10520
  <span class="md-ellipsis">
10404
- Housekeeping
10521
+ Housekeeping in v2.1.4
10405
10522
  </span>
10406
10523
  </a>
10407
10524
 
@@ -10423,63 +10540,63 @@
10423
10540
  <ul class="md-nav__list">
10424
10541
 
10425
10542
  <li class="md-nav__item">
10426
- <a href="#security_4" class="md-nav__link">
10543
+ <a href="#security-in-v213" class="md-nav__link">
10427
10544
  <span class="md-ellipsis">
10428
- Security
10545
+ Security in v2.1.3
10429
10546
  </span>
10430
10547
  </a>
10431
10548
 
10432
10549
  </li>
10433
10550
 
10434
10551
  <li class="md-nav__item">
10435
- <a href="#added_5" class="md-nav__link">
10552
+ <a href="#added-in-v213" class="md-nav__link">
10436
10553
  <span class="md-ellipsis">
10437
- Added
10554
+ Added in v2.1.3
10438
10555
  </span>
10439
10556
  </a>
10440
10557
 
10441
10558
  </li>
10442
10559
 
10443
10560
  <li class="md-nav__item">
10444
- <a href="#changed_5" class="md-nav__link">
10561
+ <a href="#changed-in-v213" class="md-nav__link">
10445
10562
  <span class="md-ellipsis">
10446
- Changed
10563
+ Changed in v2.1.3
10447
10564
  </span>
10448
10565
  </a>
10449
10566
 
10450
10567
  </li>
10451
10568
 
10452
10569
  <li class="md-nav__item">
10453
- <a href="#removed_3" class="md-nav__link">
10570
+ <a href="#removed-in-v213" class="md-nav__link">
10454
10571
  <span class="md-ellipsis">
10455
- Removed
10572
+ Removed in v2.1.3
10456
10573
  </span>
10457
10574
  </a>
10458
10575
 
10459
10576
  </li>
10460
10577
 
10461
10578
  <li class="md-nav__item">
10462
- <a href="#fixed_6" class="md-nav__link">
10579
+ <a href="#fixed-in-v213" class="md-nav__link">
10463
10580
  <span class="md-ellipsis">
10464
- Fixed
10581
+ Fixed in v2.1.3
10465
10582
  </span>
10466
10583
  </a>
10467
10584
 
10468
10585
  </li>
10469
10586
 
10470
10587
  <li class="md-nav__item">
10471
- <a href="#dependencies_1" class="md-nav__link">
10588
+ <a href="#dependencies-in-v213" class="md-nav__link">
10472
10589
  <span class="md-ellipsis">
10473
- Dependencies
10590
+ Dependencies in v2.1.3
10474
10591
  </span>
10475
10592
  </a>
10476
10593
 
10477
10594
  </li>
10478
10595
 
10479
10596
  <li class="md-nav__item">
10480
- <a href="#housekeeping_4" class="md-nav__link">
10597
+ <a href="#housekeeping-in-v213" class="md-nav__link">
10481
10598
  <span class="md-ellipsis">
10482
- Housekeeping
10599
+ Housekeeping in v2.1.3
10483
10600
  </span>
10484
10601
  </a>
10485
10602
 
@@ -10501,72 +10618,72 @@
10501
10618
  <ul class="md-nav__list">
10502
10619
 
10503
10620
  <li class="md-nav__item">
10504
- <a href="#security_5" class="md-nav__link">
10621
+ <a href="#security-in-v212" class="md-nav__link">
10505
10622
  <span class="md-ellipsis">
10506
- Security
10623
+ Security in v2.1.2
10507
10624
  </span>
10508
10625
  </a>
10509
10626
 
10510
10627
  </li>
10511
10628
 
10512
10629
  <li class="md-nav__item">
10513
- <a href="#added_6" class="md-nav__link">
10630
+ <a href="#added-in-v212" class="md-nav__link">
10514
10631
  <span class="md-ellipsis">
10515
- Added
10632
+ Added in v2.1.2
10516
10633
  </span>
10517
10634
  </a>
10518
10635
 
10519
10636
  </li>
10520
10637
 
10521
10638
  <li class="md-nav__item">
10522
- <a href="#changed_6" class="md-nav__link">
10639
+ <a href="#changed-in-v212" class="md-nav__link">
10523
10640
  <span class="md-ellipsis">
10524
- Changed
10641
+ Changed in v2.1.2
10525
10642
  </span>
10526
10643
  </a>
10527
10644
 
10528
10645
  </li>
10529
10646
 
10530
10647
  <li class="md-nav__item">
10531
- <a href="#removed_4" class="md-nav__link">
10648
+ <a href="#removed-in-v212" class="md-nav__link">
10532
10649
  <span class="md-ellipsis">
10533
- Removed
10650
+ Removed in v2.1.2
10534
10651
  </span>
10535
10652
  </a>
10536
10653
 
10537
10654
  </li>
10538
10655
 
10539
10656
  <li class="md-nav__item">
10540
- <a href="#fixed_7" class="md-nav__link">
10657
+ <a href="#fixed-in-v212" class="md-nav__link">
10541
10658
  <span class="md-ellipsis">
10542
- Fixed
10659
+ Fixed in v2.1.2
10543
10660
  </span>
10544
10661
  </a>
10545
10662
 
10546
10663
  </li>
10547
10664
 
10548
10665
  <li class="md-nav__item">
10549
- <a href="#dependencies_2" class="md-nav__link">
10666
+ <a href="#dependencies-in-v212" class="md-nav__link">
10550
10667
  <span class="md-ellipsis">
10551
- Dependencies
10668
+ Dependencies in v2.1.2
10552
10669
  </span>
10553
10670
  </a>
10554
10671
 
10555
10672
  </li>
10556
10673
 
10557
10674
  <li class="md-nav__item">
10558
- <a href="#documentation_5" class="md-nav__link">
10675
+ <a href="#documentation-in-v212" class="md-nav__link">
10559
10676
  <span class="md-ellipsis">
10560
- Documentation
10677
+ Documentation in v2.1.2
10561
10678
  </span>
10562
10679
  </a>
10563
10680
 
10564
10681
  </li>
10565
10682
 
10566
10683
  <li class="md-nav__item">
10567
- <a href="#housekeeping_5" class="md-nav__link">
10684
+ <a href="#housekeeping-in-v212" class="md-nav__link">
10568
10685
  <span class="md-ellipsis">
10569
- Housekeeping
10686
+ Housekeeping in v2.1.2
10570
10687
  </span>
10571
10688
  </a>
10572
10689
 
@@ -10588,54 +10705,54 @@
10588
10705
  <ul class="md-nav__list">
10589
10706
 
10590
10707
  <li class="md-nav__item">
10591
- <a href="#added_7" class="md-nav__link">
10708
+ <a href="#added-in-v211" class="md-nav__link">
10592
10709
  <span class="md-ellipsis">
10593
- Added
10710
+ Added in v2.1.1
10594
10711
  </span>
10595
10712
  </a>
10596
10713
 
10597
10714
  </li>
10598
10715
 
10599
10716
  <li class="md-nav__item">
10600
- <a href="#changed_7" class="md-nav__link">
10717
+ <a href="#changed-in-v211" class="md-nav__link">
10601
10718
  <span class="md-ellipsis">
10602
- Changed
10719
+ Changed in v2.1.1
10603
10720
  </span>
10604
10721
  </a>
10605
10722
 
10606
10723
  </li>
10607
10724
 
10608
10725
  <li class="md-nav__item">
10609
- <a href="#removed_5" class="md-nav__link">
10726
+ <a href="#removed-in-v211" class="md-nav__link">
10610
10727
  <span class="md-ellipsis">
10611
- Removed
10728
+ Removed in v2.1.1
10612
10729
  </span>
10613
10730
  </a>
10614
10731
 
10615
10732
  </li>
10616
10733
 
10617
10734
  <li class="md-nav__item">
10618
- <a href="#fixed_8" class="md-nav__link">
10735
+ <a href="#fixed-in-v211" class="md-nav__link">
10619
10736
  <span class="md-ellipsis">
10620
- Fixed
10737
+ Fixed in v2.1.1
10621
10738
  </span>
10622
10739
  </a>
10623
10740
 
10624
10741
  </li>
10625
10742
 
10626
10743
  <li class="md-nav__item">
10627
- <a href="#documentation_6" class="md-nav__link">
10744
+ <a href="#documentation-in-v211" class="md-nav__link">
10628
10745
  <span class="md-ellipsis">
10629
- Documentation
10746
+ Documentation in v2.1.1
10630
10747
  </span>
10631
10748
  </a>
10632
10749
 
10633
10750
  </li>
10634
10751
 
10635
10752
  <li class="md-nav__item">
10636
- <a href="#housekeeping_6" class="md-nav__link">
10753
+ <a href="#housekeeping-in-v211" class="md-nav__link">
10637
10754
  <span class="md-ellipsis">
10638
- Housekeeping
10755
+ Housekeeping in v2.1.1
10639
10756
  </span>
10640
10757
  </a>
10641
10758
 
@@ -10657,63 +10774,63 @@
10657
10774
  <ul class="md-nav__list">
10658
10775
 
10659
10776
  <li class="md-nav__item">
10660
- <a href="#security_6" class="md-nav__link">
10777
+ <a href="#security-in-v210" class="md-nav__link">
10661
10778
  <span class="md-ellipsis">
10662
- Security
10779
+ Security in v2.1.0
10663
10780
  </span>
10664
10781
  </a>
10665
10782
 
10666
10783
  </li>
10667
10784
 
10668
10785
  <li class="md-nav__item">
10669
- <a href="#added_8" class="md-nav__link">
10786
+ <a href="#added-in-v210" class="md-nav__link">
10670
10787
  <span class="md-ellipsis">
10671
- Added
10788
+ Added in v2.1.0
10672
10789
  </span>
10673
10790
  </a>
10674
10791
 
10675
10792
  </li>
10676
10793
 
10677
10794
  <li class="md-nav__item">
10678
- <a href="#changed_8" class="md-nav__link">
10795
+ <a href="#changed-in-v210" class="md-nav__link">
10679
10796
  <span class="md-ellipsis">
10680
- Changed
10797
+ Changed in v2.1.0
10681
10798
  </span>
10682
10799
  </a>
10683
10800
 
10684
10801
  </li>
10685
10802
 
10686
10803
  <li class="md-nav__item">
10687
- <a href="#removed_6" class="md-nav__link">
10804
+ <a href="#removed-in-v210" class="md-nav__link">
10688
10805
  <span class="md-ellipsis">
10689
- Removed
10806
+ Removed in v2.1.0
10690
10807
  </span>
10691
10808
  </a>
10692
10809
 
10693
10810
  </li>
10694
10811
 
10695
10812
  <li class="md-nav__item">
10696
- <a href="#fixed_9" class="md-nav__link">
10813
+ <a href="#fixed-in-v210" class="md-nav__link">
10697
10814
  <span class="md-ellipsis">
10698
- Fixed
10815
+ Fixed in v2.1.0
10699
10816
  </span>
10700
10817
  </a>
10701
10818
 
10702
10819
  </li>
10703
10820
 
10704
10821
  <li class="md-nav__item">
10705
- <a href="#documentation_7" class="md-nav__link">
10822
+ <a href="#documentation-in-v210" class="md-nav__link">
10706
10823
  <span class="md-ellipsis">
10707
- Documentation
10824
+ Documentation in v2.1.0
10708
10825
  </span>
10709
10826
  </a>
10710
10827
 
10711
10828
  </li>
10712
10829
 
10713
10830
  <li class="md-nav__item">
10714
- <a href="#housekeeping_7" class="md-nav__link">
10831
+ <a href="#housekeeping-in-v210" class="md-nav__link">
10715
10832
  <span class="md-ellipsis">
10716
- Housekeeping
10833
+ Housekeeping in v2.1.0
10717
10834
  </span>
10718
10835
  </a>
10719
10836
 
@@ -10735,45 +10852,45 @@
10735
10852
  <ul class="md-nav__list">
10736
10853
 
10737
10854
  <li class="md-nav__item">
10738
- <a href="#added_9" class="md-nav__link">
10855
+ <a href="#added-in-v210-beta1" class="md-nav__link">
10739
10856
  <span class="md-ellipsis">
10740
- Added
10857
+ Added in v2.1.0-beta.1
10741
10858
  </span>
10742
10859
  </a>
10743
10860
 
10744
10861
  </li>
10745
10862
 
10746
10863
  <li class="md-nav__item">
10747
- <a href="#changed_9" class="md-nav__link">
10864
+ <a href="#changed-in-v210-beta1" class="md-nav__link">
10748
10865
  <span class="md-ellipsis">
10749
- Changed
10866
+ Changed in v2.1.0-beta.1
10750
10867
  </span>
10751
10868
  </a>
10752
10869
 
10753
10870
  </li>
10754
10871
 
10755
10872
  <li class="md-nav__item">
10756
- <a href="#removed_7" class="md-nav__link">
10873
+ <a href="#removed-in-v210-beta1" class="md-nav__link">
10757
10874
  <span class="md-ellipsis">
10758
- Removed
10875
+ Removed in v2.1.0-beta.1
10759
10876
  </span>
10760
10877
  </a>
10761
10878
 
10762
10879
  </li>
10763
10880
 
10764
10881
  <li class="md-nav__item">
10765
- <a href="#fixed_10" class="md-nav__link">
10882
+ <a href="#fixed-in-v210-beta1" class="md-nav__link">
10766
10883
  <span class="md-ellipsis">
10767
- Fixed
10884
+ Fixed in v2.1.0-beta.1
10768
10885
  </span>
10769
10886
  </a>
10770
10887
 
10771
10888
  </li>
10772
10889
 
10773
10890
  <li class="md-nav__item">
10774
- <a href="#housekeeping_8" class="md-nav__link">
10891
+ <a href="#housekeeping-in-v210-beta1" class="md-nav__link">
10775
10892
  <span class="md-ellipsis">
10776
- Housekeeping
10893
+ Housekeeping in v2.1.0-beta.1
10777
10894
  </span>
10778
10895
  </a>
10779
10896
 
@@ -10802,8 +10919,6 @@
10802
10919
 
10803
10920
 
10804
10921
 
10805
- <!-- markdownlint-disable MD024 -->
10806
-
10807
10922
  <h1 id="nautobot-v21">Nautobot v2.1<a class="headerlink" href="#nautobot-v21" title="Permanent link">&para;</a></h1>
10808
10923
  <p>This document describes all new features and changes in Nautobot 2.1.</p>
10809
10924
  <h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">&para;</a></h2>
@@ -10852,9 +10967,8 @@
10852
10967
  <p>Support for versions of PostgreSQL prior to 12.0 has been removed as these versions are no longer maintained and contain bugs that prevent migrations from running in certain scenarios. The <code>nautobot-server migrate</code> or <code>nautobot-server post_upgrade</code> commands will now abort when detecting an unsupported PostgreSQL version.</p>
10853
10968
  <h4 id="remove-hide_restricted_ui-toggle-4787">Remove <code>HIDE_RESTRICTED_UI</code> Toggle (<a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a>)<a class="headerlink" href="#remove-hide_restricted_ui-toggle-4787" title="Permanent link">&para;</a></h4>
10854
10969
  <p>Support for <code>HIDE_RESTRICTED_UI</code> has been removed. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</p>
10855
- <!-- towncrier release notes start -->
10856
10970
  <h2 id="v219-2024-03-25">v2.1.9 (2024-03-25)<a class="headerlink" href="#v219-2024-03-25" title="Permanent link">&para;</a></h2>
10857
- <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
10971
+ <h3 id="security-in-v219">Security in v2.1.9<a class="headerlink" href="#security-in-v219" title="Permanent link">&para;</a></h3>
10858
10972
  <ul>
10859
10973
  <li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
10860
10974
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/&lt;uuid:pk&gt;/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
@@ -10866,21 +10980,21 @@
10866
10980
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/&lt;uuid&gt;/dynamic-groups/</code>, <code>/dcim/devices/&lt;uuid&gt;/dynamic-groups/</code>, <code>/ipam/prefixes/&lt;uuid&gt;/dynamic-groups/</code>, <code>/ipam/ip-addresses/&lt;uuid&gt;/dynamic-groups/</code>, <code>/virtualization/clusters/&lt;uuid&gt;/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/&lt;uuid&gt;/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10867
10981
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/&lt;str:provider_slug&gt;/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
10868
10982
  </ul>
10869
- <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
10983
+ <h3 id="added-in-v219">Added in v2.1.9<a class="headerlink" href="#added-in-v219" title="Permanent link">&para;</a></h3>
10870
10984
  <ul>
10871
10985
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
10872
10986
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
10873
10987
  </ul>
10874
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10988
+ <h3 id="changed-in-v219">Changed in v2.1.9<a class="headerlink" href="#changed-in-v219" title="Permanent link">&para;</a></h3>
10875
10989
  <ul>
10876
10990
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added support for <code>view_name</code> and <code>view_description</code> optional parameters when instantiating a <code>nautobot.apps.api.OrderedDefaultRouter</code>. Specifying these parameters is to be preferred over defining a custom <code>APIRootView</code> subclass when defining App API URLs.</li>
10877
10991
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication by default on the <code>nautobot.apps.api.APIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
10878
10992
  </ul>
10879
- <h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">&para;</a></h3>
10993
+ <h3 id="removed-in-v219">Removed in v2.1.9<a class="headerlink" href="#removed-in-v219" title="Permanent link">&para;</a></h3>
10880
10994
  <ul>
10881
10995
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Removed the URL endpoints <code>/api/users/users/my-profile/</code>, <code>/api/users/users/session/</code>, <code>/api/users/tokens/authenticate/</code>, and <code>/api/users/tokens/logout/</code> as they are unused at this time.</li>
10882
10996
  </ul>
10883
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10997
+ <h3 id="fixed-in-v219">Fixed in v2.1.9<a class="headerlink" href="#fixed-in-v219" title="Permanent link">&para;</a></h3>
10884
10998
  <ul>
10885
10999
  <li><a href="https://github.com/nautobot/nautobot/issues/5413">#5413</a> - Updated Device "LLDP Neighbors" detail panel to handle LLDP neighbors with MAC address as port-id.</li>
10886
11000
  <li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for GraphiQL page <code>/graphql</code>.</li>
@@ -10890,16 +11004,16 @@
10890
11004
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Fixed a 500 error when accessing any of the <code>/dcim/&lt;port-type&gt;/&lt;uuid&gt;/connect/&lt;termination_b_type&gt;/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
10891
11005
  <li><a href="https://github.com/nautobot/nautobot/issues/5466">#5466</a> - Remove duplicated location param in vlan table.</li>
10892
11006
  </ul>
10893
- <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
11007
+ <h3 id="dependencies-in-v219">Dependencies in v2.1.9<a class="headerlink" href="#dependencies-in-v219" title="Permanent link">&para;</a></h3>
10894
11008
  <ul>
10895
11009
  <li><a href="https://github.com/nautobot/nautobot/issues/5296">#5296</a> - Fixed bug in pyproject.toml that added <code>coverage</code> as a nautobot dependency instead of a development dependency.</li>
10896
11010
  </ul>
10897
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
11011
+ <h3 id="documentation-in-v219">Documentation in v2.1.9<a class="headerlink" href="#documentation-in-v219" title="Permanent link">&para;</a></h3>
10898
11012
  <ul>
10899
11013
  <li><a href="https://github.com/nautobot/nautobot/issues/5340">#5340</a> - Added installation documentation about recommended health-checks for Docker Compose and Kubernetes.</li>
10900
11014
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
10901
11015
  </ul>
10902
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
11016
+ <h3 id="housekeeping-in-v219">Housekeeping in v2.1.9<a class="headerlink" href="#housekeeping-in-v219" title="Permanent link">&para;</a></h3>
10903
11017
  <ul>
10904
11018
  <li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/core/api/routers.py#21</code> with with a plain <code>dict</code> instance.</li>
10905
11019
  <li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/dcim/models/racks.py#275</code> with a plain <code>dict</code> instance.</li>
@@ -10908,7 +11022,7 @@
10908
11022
  <li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
10909
11023
  </ul>
10910
11024
  <h2 id="v218-2024-03-18">v2.1.8 (2024-03-18)<a class="headerlink" href="#v218-2024-03-18" title="Permanent link">&para;</a></h2>
10911
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
11025
+ <h3 id="added-in-v218">Added in v2.1.8<a class="headerlink" href="#added-in-v218" title="Permanent link">&para;</a></h3>
10912
11026
  <ul>
10913
11027
  <li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
10914
11028
  <li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Added the option to configure and enforce <code>validation_minimum</code> and <code>validation_maximum</code> as length constraints on a Custom Field of type <code>Text</code>, <code>URL</code>, <code>JSON</code>, <code>Markdown</code>, <code>Selection</code>, or <code>Multiple Selection</code>.</li>
@@ -10918,16 +11032,16 @@
10918
11032
  <li><a href="https://github.com/nautobot/nautobot/issues/5402">#5402</a> - Added interface types <code>CXP (100GE)</code>, <code>DSFP (100GE)</code>, <code>SFP-DD (100GE)</code>, <code>QSFP-DD (100GE)</code>, <code>QSFP-DD (200GE)</code>, <code>CFP2 (400GE)</code>, <code>OSFP-RHS (400GE)</code>, <code>CDFP (400GE)</code>, <code>CPF8 (400GE)</code>, <code>SFP+ (32GFC)</code>, <code>SFP-DD (64GFC)</code>, and <code>SFP+ (64GFC)</code>.</li>
10919
11033
  <li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
10920
11034
  </ul>
10921
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
11035
+ <h3 id="changed-in-v218">Changed in v2.1.8<a class="headerlink" href="#changed-in-v218" title="Permanent link">&para;</a></h3>
10922
11036
  <ul>
10923
11037
  <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Changed uses of <code>functools.lru_cache</code> to use django-redis cache instead.</li>
10924
11038
  <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the django-redis cache.</li>
10925
11039
  </ul>
10926
- <h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">&para;</a></h3>
11040
+ <h3 id="removed-in-v218">Removed in v2.1.8<a class="headerlink" href="#removed-in-v218" title="Permanent link">&para;</a></h3>
10927
11041
  <ul>
10928
11042
  <li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Removed the hard-coded 255-character limit on custom fields of type <code>Text</code>.</li>
10929
11043
  </ul>
10930
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
11044
+ <h3 id="fixed-in-v218">Fixed in v2.1.8<a class="headerlink" href="#fixed-in-v218" title="Permanent link">&para;</a></h3>
10931
11045
  <ul>
10932
11046
  <li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
10933
11047
  <li><a href="https://github.com/nautobot/nautobot/issues/5380">#5380</a> - Fixed incorrect permission for "Add Tenant" button in the navigation menu.</li>
@@ -10935,28 +11049,28 @@
10935
11049
  <li><a href="https://github.com/nautobot/nautobot/issues/5395">#5395</a> - Fixed incorrect permission for "Roles" link in the navigation menu.</li>
10936
11050
  <li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Fixed an issue with stale CustomField, ComputedField, Relationship, and TreeModel caches that caused incorrect data at times.</li>
10937
11051
  </ul>
10938
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
11052
+ <h3 id="documentation-in-v218">Documentation in v2.1.8<a class="headerlink" href="#documentation-in-v218" title="Permanent link">&para;</a></h3>
10939
11053
  <ul>
10940
11054
  <li><a href="https://github.com/nautobot/nautobot/issues/5437">#5437</a> - Added release-note for version 1.6.15.</li>
10941
11055
  <li><a href="https://github.com/nautobot/nautobot/issues/5421">#5421</a> - Added release-notes for versions 1.6.11 through 1.6.14.</li>
10942
11056
  </ul>
10943
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
11057
+ <h3 id="housekeeping-in-v218">Housekeeping in v2.1.8<a class="headerlink" href="#housekeeping-in-v218" title="Permanent link">&para;</a></h3>
10944
11058
  <ul>
10945
11059
  <li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
10946
11060
  <li><a href="https://github.com/nautobot/nautobot/issues/3213">#3213</a> - Removed redundant filter tests for related boolean filters.</li>
10947
11061
  <li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
10948
11062
  </ul>
10949
11063
  <h2 id="v217-2024-03-05">v2.1.7 (2024-03-05)<a class="headerlink" href="#v217-2024-03-05" title="Permanent link">&para;</a></h2>
10950
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
11064
+ <h3 id="fixed-in-v217">Fixed in v2.1.7<a class="headerlink" href="#fixed-in-v217" title="Permanent link">&para;</a></h3>
10951
11065
  <ul>
10952
11066
  <li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
10953
11067
  </ul>
10954
11068
  <h2 id="v216-2024-03-04">v2.1.6 (2024-03-04)<a class="headerlink" href="#v216-2024-03-04" title="Permanent link">&para;</a></h2>
10955
- <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
11069
+ <h3 id="security-in-v216">Security in v2.1.6<a class="headerlink" href="#security-in-v216" title="Permanent link">&para;</a></h3>
10956
11070
  <ul>
10957
11071
  <li><a href="https://github.com/nautobot/nautobot/issues/5319">#5319</a> - Updated <code>cryptography</code> to 42.0.4 due to CVE-2024-26130. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
10958
11072
  </ul>
10959
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
11073
+ <h3 id="added-in-v216">Added in v2.1.6<a class="headerlink" href="#added-in-v216" title="Permanent link">&para;</a></h3>
10960
11074
  <ul>
10961
11075
  <li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Collapse Capable Side Navbar: Side Navbar is now able to be expanded and collapsed</li>
10962
11076
  <li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Expandable Main Content: The Main Content part of the UI grows as the Side Navbar collapses and shrinks as the Side Navbar expands.</li>
@@ -10965,11 +11079,11 @@
10965
11079
  <li><a href="https://github.com/nautobot/nautobot/issues/5329">#5329</a> - Added caching of <code>ChangeLoggedModelsQuery().as_queryset()</code> to improve performance when saving many objects in a change-logged context.</li>
10966
11080
  <li><a href="https://github.com/nautobot/nautobot/issues/5361">#5361</a> - Added <code>nautobot.core.testing.forms.FormTestCases</code> base class and added it to <code>nautobot.apps.testing</code> as well.</li>
10967
11081
  </ul>
10968
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
11082
+ <h3 id="changed-in-v216">Changed in v2.1.6<a class="headerlink" href="#changed-in-v216" title="Permanent link">&para;</a></h3>
10969
11083
  <ul>
10970
11084
  <li><a href="https://github.com/nautobot/nautobot/issues/5082">#5082</a> - Adjusted Edit / Create panels to occupy more page width on medium and large screens.</li>
10971
11085
  </ul>
10972
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
11086
+ <h3 id="fixed-in-v216">Fixed in v2.1.6<a class="headerlink" href="#fixed-in-v216" title="Permanent link">&para;</a></h3>
10973
11087
  <ul>
10974
11088
  <li><a href="https://github.com/nautobot/nautobot/issues/4106">#4106</a> - Fixed inefficient query in VirtualMachine create form.</li>
10975
11089
  <li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Fixed Brand Icon mouseover Background: Fix for mouseover effect on the Brand / Icon (was flashing white background vs being transparent) when in dark mode.</li>
@@ -10986,7 +11100,7 @@
10986
11100
  <li><a href="https://github.com/nautobot/nautobot/issues/5346">#5346</a> - Fixed device LLDP view to work when interface names include a space.</li>
10987
11101
  <li><a href="https://github.com/nautobot/nautobot/issues/5365">#5365</a> - Fixed <code>invalidate_max_depth_cache</code> itself calculating <code>max_depth</code> on querysets without tree fields.</li>
10988
11102
  </ul>
10989
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
11103
+ <h3 id="documentation-in-v216">Documentation in v2.1.6<a class="headerlink" href="#documentation-in-v216" title="Permanent link">&para;</a></h3>
10990
11104
  <ul>
10991
11105
  <li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation on <code>nautobot.apps</code> import locations.</li>
10992
11106
  <li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation about the supported public interfaces.</li>
@@ -11000,24 +11114,24 @@
11000
11114
  <li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
11001
11115
  </ul>
11002
11116
  <h2 id="v215-2024-02-21">v2.1.5 (2024-02-21)<a class="headerlink" href="#v215-2024-02-21" title="Permanent link">&para;</a></h2>
11003
- <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
11117
+ <h3 id="security-in-v215">Security in v2.1.5<a class="headerlink" href="#security-in-v215" title="Permanent link">&para;</a></h3>
11004
11118
  <ul>
11005
11119
  <li><a href="https://github.com/nautobot/nautobot/pull/5303">#5303</a> - Updated <code>cryptography</code> to 42.0.2 due to CVE-2024-0727. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
11006
11120
  </ul>
11007
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
11121
+ <h3 id="added-in-v215">Added in v2.1.5<a class="headerlink" href="#added-in-v215" title="Permanent link">&para;</a></h3>
11008
11122
  <ul>
11009
11123
  <li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Added <code>latest</code> and <code>latest-py&lt;version&gt;</code> tags to the <code>nautobot</code> Docker images published for the latest stable release of Nautobot.</li>
11010
11124
  <li><a href="https://github.com/nautobot/nautobot/issues/5210">#5210</a> - Added <code>METRICS_AUTHENTICATED</code> setting to control authentication for the HTTP endpoint <code>/metrics</code>.</li>
11011
- <li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting display_field on DynamicModelChoiceField to nested values in suggested choices list.</li>
11125
+ <li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting <code>display_field</code> on DynamicModelChoiceField to nested values in suggested choices list.</li>
11012
11126
  </ul>
11013
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
11127
+ <h3 id="changed-in-v215">Changed in v2.1.5<a class="headerlink" href="#changed-in-v215" title="Permanent link">&para;</a></h3>
11014
11128
  <ul>
11015
11129
  <li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Changed the tagging of <code>nautobot-dev</code> Docker images to reserve the <code>latest</code> and <code>latest-py&lt;version&gt;</code> tags for the latest stable release of Nautobot, rather than the latest build from the <code>develop</code> branch.</li>
11016
11130
  <li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
11017
11131
  <li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
11018
11132
  <li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Updated navbar user dropdown with chevron.</li>
11019
11133
  </ul>
11020
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
11134
+ <h3 id="fixed-in-v215">Fixed in v2.1.5<a class="headerlink" href="#fixed-in-v215" title="Permanent link">&para;</a></h3>
11021
11135
  <ul>
11022
11136
  <li><a href="https://github.com/nautobot/nautobot/issues/5058">#5058</a> - Changed more filter parameters from <code>location_id</code> to <code>location</code> in <code>virtualization/forms.py</code>.</li>
11023
11137
  <li><a href="https://github.com/nautobot/nautobot/issues/5121">#5121</a> - Fixed an issue where deleting a git repository resulted in a job result stuck in running state.</li>
@@ -11026,38 +11140,38 @@
11026
11140
  <li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Fixed button spacing when there are multiple buttons in navbar.</li>
11027
11141
  <li><a href="https://github.com/nautobot/nautobot/issues/5283">#5283</a> - Fixed inconsistent ordering of IP addresses in various tables.</li>
11028
11142
  </ul>
11029
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
11143
+ <h3 id="documentation-in-v215">Documentation in v2.1.5<a class="headerlink" href="#documentation-in-v215" title="Permanent link">&para;</a></h3>
11030
11144
  <ul>
11031
- <li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the TIME_ZONE setting consistent on Nautobot web servers and Celery Beat servers.</li>
11145
+ <li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the <code>TIME_ZONE</code> setting consistent on Nautobot web servers and Celery Beat servers.</li>
11032
11146
  <li><a href="https://github.com/nautobot/nautobot/issues/5297">#5297</a> - Updated the low level application stack diagram to orient user traffic coming from the top.</li>
11033
11147
  </ul>
11034
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
11148
+ <h3 id="housekeeping-in-v215">Housekeeping in v2.1.5<a class="headerlink" href="#housekeeping-in-v215" title="Permanent link">&para;</a></h3>
11035
11149
  <ul>
11036
11150
  <li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Reorganized navbar css rules in <code>base.css</code>.</li>
11037
11151
  </ul>
11038
11152
  <h2 id="v214-2024-02-08">v2.1.4 (2024-02-08)<a class="headerlink" href="#v214-2024-02-08" title="Permanent link">&para;</a></h2>
11039
- <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
11153
+ <h3 id="security-in-v214">Security in v2.1.4<a class="headerlink" href="#security-in-v214" title="Permanent link">&para;</a></h3>
11040
11154
  <ul>
11041
11155
  <li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
11042
11156
  </ul>
11043
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
11157
+ <h3 id="fixed-in-v214">Fixed in v2.1.4<a class="headerlink" href="#fixed-in-v214" title="Permanent link">&para;</a></h3>
11044
11158
  <ul>
11045
11159
  <li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Fixed <code>TypeError</code> and similar exceptions thrown when rendering certain App data tables in v2.1.3.</li>
11046
11160
  </ul>
11047
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
11161
+ <h3 id="documentation-in-v214">Documentation in v2.1.4<a class="headerlink" href="#documentation-in-v214" title="Permanent link">&para;</a></h3>
11048
11162
  <ul>
11049
11163
  <li><a href="https://github.com/nautobot/nautobot/issues/4778">#4778</a> - Added troubleshooting documentation for PostgreSQL databases with unsupported encoding settings.</li>
11050
11164
  </ul>
11051
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
11165
+ <h3 id="housekeeping-in-v214">Housekeeping in v2.1.4<a class="headerlink" href="#housekeeping-in-v214" title="Permanent link">&para;</a></h3>
11052
11166
  <ul>
11053
11167
  <li><a href="https://github.com/nautobot/nautobot/issues/5240">#5240</a> - Changed test config to use <code>constance.backends.memory.MemoryBackend</code> to avoid intermittent failures in parallel tests.</li>
11054
11168
  </ul>
11055
11169
  <h2 id="v213-2024-02-05">v2.1.3 (2024-02-05)<a class="headerlink" href="#v213-2024-02-05" title="Permanent link">&para;</a></h2>
11056
- <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
11170
+ <h3 id="security-in-v213">Security in v2.1.3<a class="headerlink" href="#security-in-v213" title="Permanent link">&para;</a></h3>
11057
11171
  <ul>
11058
11172
  <li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
11059
11173
  </ul>
11060
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
11174
+ <h3 id="added-in-v213">Added in v2.1.3<a class="headerlink" href="#added-in-v213" title="Permanent link">&para;</a></h3>
11061
11175
  <ul>
11062
11176
  <li><a href="https://github.com/nautobot/nautobot/issues/4981">#4981</a> - Add serial types to InterfaceTypeChoices.</li>
11063
11177
  <li><a href="https://github.com/nautobot/nautobot/issues/5012">#5012</a> - Added database indexes to the ObjectChange model to improve performance when filtering by <code>user_name</code>, <code>changed_object</code>, or <code>related_object</code>, and also by <code>changed_object</code> in combination with <code>user</code> or <code>user_name</code>.</li>
@@ -11065,7 +11179,7 @@
11065
11179
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added Navbar dropdown arrow rotation on open/close.</li>
11066
11180
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added behavior of resetting navbar state when the "home" link is clicked.</li>
11067
11181
  </ul>
11068
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
11182
+ <h3 id="changed-in-v213">Changed in v2.1.3<a class="headerlink" href="#changed-in-v213" title="Permanent link">&para;</a></h3>
11069
11183
  <ul>
11070
11184
  <li><a href="https://github.com/nautobot/nautobot/issues/5149">#5149</a> - Updated the Job List to show Job Hook Receiver and Job Button Receiver Jobs, which were previously being hidden from view.</li>
11071
11185
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown link behavior to turn orange when active/clicked; state is saved.</li>
@@ -11074,12 +11188,12 @@
11074
11188
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown to use chevron icon instead of carets.</li>
11075
11189
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Aligned navbar dropdown icons to the right.</li>
11076
11190
  </ul>
11077
- <h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">&para;</a></h3>
11191
+ <h3 id="removed-in-v213">Removed in v2.1.3<a class="headerlink" href="#removed-in-v213" title="Permanent link">&para;</a></h3>
11078
11192
  <ul>
11079
11193
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed unneeded tooltip of dropdown title.</li>
11080
11194
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed navbar dropdown links underlining.</li>
11081
11195
  </ul>
11082
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
11196
+ <h3 id="fixed-in-v213">Fixed in v2.1.3<a class="headerlink" href="#fixed-in-v213" title="Permanent link">&para;</a></h3>
11083
11197
  <ul>
11084
11198
  <li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
11085
11199
  <li><a href="https://github.com/nautobot/nautobot/issues/4898">#4898</a> - Improved automatic query optimization when rendering object list views.</li>
@@ -11093,14 +11207,14 @@
11093
11207
  <li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Fixed navbar dropdown links alignment and spacing.</li>
11094
11208
  <li><a href="https://github.com/nautobot/nautobot/issues/5198">#5198</a> - Fixed error in device and rack dropdowns when attempting to add an Interface to an InterfaceRedundancyGroup.</li>
11095
11209
  </ul>
11096
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
11210
+ <h3 id="dependencies-in-v213">Dependencies in v2.1.3<a class="headerlink" href="#dependencies-in-v213" title="Permanent link">&para;</a></h3>
11097
11211
  <ul>
11098
11212
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>MarkupSafe</code> dependency to 2.1.5.</li>
11099
11213
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mysqlclient</code> dependency to 2.2.3.</li>
11100
11214
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>python-slugify</code> dependency to 8.0.3.</li>
11101
11215
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>pyuwsgi</code> dependency to 2.0.23.</li>
11102
11216
  </ul>
11103
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
11217
+ <h3 id="housekeeping-in-v213">Housekeeping in v2.1.3<a class="headerlink" href="#housekeeping-in-v213" title="Permanent link">&para;</a></h3>
11104
11218
  <ul>
11105
11219
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mkdocs-section-index</code> documentation dependency to 0.3.8.</li>
11106
11220
  <li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>ruff</code> development dependency to 0.1.15.</li>
@@ -11112,30 +11226,30 @@
11112
11226
  <li><a href="https://github.com/nautobot/nautobot/issues/5206">#5206</a> - Added q filter test for ExternalIntegration.</li>
11113
11227
  </ul>
11114
11228
  <h2 id="v212-2024-01-22">v2.1.2 (2024-01-22)<a class="headerlink" href="#v212-2024-01-22" title="Permanent link">&para;</a></h2>
11115
- <h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">&para;</a></h3>
11229
+ <h3 id="security-in-v212">Security in v2.1.2<a class="headerlink" href="#security-in-v212" title="Permanent link">&para;</a></h3>
11116
11230
  <ul>
11117
11231
  <li><a href="https://github.com/nautobot/nautobot/issues/5054">#5054</a> - Added validation of redirect URLs to the "Add a new IP Address" and "Assign an IP Address" views.</li>
11118
11232
  <li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
11119
11233
  <li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
11120
11234
  </ul>
11121
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
11235
+ <h3 id="added-in-v212">Added in v2.1.2<a class="headerlink" href="#added-in-v212" title="Permanent link">&para;</a></h3>
11122
11236
  <ul>
11123
11237
  <li><a href="https://github.com/nautobot/nautobot/issues/3877">#3877</a> - Added global filtering to Job Result log table, enabling search across all pages.</li>
11124
11238
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Enhanced the <code>sanitize</code> function to also handle sanitization of lists and tuples of strings.</li>
11125
11239
  <li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
11126
11240
  </ul>
11127
- <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
11241
+ <h3 id="changed-in-v212">Changed in v2.1.2<a class="headerlink" href="#changed-in-v212" title="Permanent link">&para;</a></h3>
11128
11242
  <ul>
11129
11243
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested user has permission to run the requested job.</li>
11130
11244
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested job is installed and enabled.</li>
11131
11245
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether a Celery worker is running when invoked without the <code>--local</code> flag.</li>
11132
11246
  <li><a href="https://github.com/nautobot/nautobot/issues/5131">#5131</a> - Improved the performance of the <code>/api/dcim/locations/</code> REST API.</li>
11133
11247
  </ul>
11134
- <h3 id="removed_4">Removed<a class="headerlink" href="#removed_4" title="Permanent link">&para;</a></h3>
11248
+ <h3 id="removed-in-v212">Removed in v2.1.2<a class="headerlink" href="#removed-in-v212" title="Permanent link">&para;</a></h3>
11135
11249
  <ul>
11136
11250
  <li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Removed <code>nautobot-server startplugin</code> management command.</li>
11137
11251
  </ul>
11138
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
11252
+ <h3 id="fixed-in-v212">Fixed in v2.1.2<a class="headerlink" href="#fixed-in-v212" title="Permanent link">&para;</a></h3>
11139
11253
  <ul>
11140
11254
  <li><a href="https://github.com/nautobot/nautobot/issues/4075">#4075</a> - Fixed sorting of Device Bays list view by installed device status.</li>
11141
11255
  <li><a href="https://github.com/nautobot/nautobot/issues/4444">#4444</a> - Fixed Sync Git Repository requires non-matching permissions for UI vs API.</li>
@@ -11161,17 +11275,17 @@
11161
11275
  <li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Fixed incorrect JobResult data when using <code>nautobot-server runjob --local</code> or <code>JobResult.execute_job()</code>.</li>
11162
11276
  <li><a href="https://github.com/nautobot/nautobot/issues/5111">#5111</a> - Fixed rack group and rack filtering by the location selected in the device bulk edit form.</li>
11163
11277
  </ul>
11164
- <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
11278
+ <h3 id="dependencies-in-v212">Dependencies in v2.1.2<a class="headerlink" href="#dependencies-in-v212" title="Permanent link">&para;</a></h3>
11165
11279
  <ul>
11166
11280
  <li><a href="https://github.com/nautobot/nautobot/issues/5083">#5083</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
11167
11281
  <li><a href="https://github.com/nautobot/nautobot/issues/5086">#5086</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
11168
11282
  <li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
11169
11283
  </ul>
11170
- <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
11284
+ <h3 id="documentation-in-v212">Documentation in v2.1.2<a class="headerlink" href="#documentation-in-v212" title="Permanent link">&para;</a></h3>
11171
11285
  <ul>
11172
11286
  <li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Added a link to the <code>cookiecutter-nautobot-app</code> project in the App developer documentation.</li>
11173
11287
  </ul>
11174
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
11288
+ <h3 id="housekeeping-in-v212">Housekeeping in v2.1.2<a class="headerlink" href="#housekeeping-in-v212" title="Permanent link">&para;</a></h3>
11175
11289
  <ul>
11176
11290
  <li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Added automatic superuser creation environment variables to docker development environment.</li>
11177
11291
  <li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Updated VS Code Dev Containers configuration and documentation.</li>
@@ -11181,20 +11295,20 @@
11181
11295
  <li><a href="https://github.com/nautobot/nautobot/issues/5118">#5118</a> - Updated PR template to encourage inclusion of screenshots.</li>
11182
11296
  </ul>
11183
11297
  <h2 id="v211-2024-01-08">v2.1.1 (2024-01-08)<a class="headerlink" href="#v211-2024-01-08" title="Permanent link">&para;</a></h2>
11184
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
11298
+ <h3 id="added-in-v211">Added in v2.1.1<a class="headerlink" href="#added-in-v211" title="Permanent link">&para;</a></h3>
11185
11299
  <ul>
11186
11300
  <li><a href="https://github.com/nautobot/nautobot/issues/5046">#5046</a> - Updated the LocationType clone process to pre-populate the original object's parent, nestable and content type fields.</li>
11187
11301
  </ul>
11188
- <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
11302
+ <h3 id="changed-in-v211">Changed in v2.1.1<a class="headerlink" href="#changed-in-v211" title="Permanent link">&para;</a></h3>
11189
11303
  <ul>
11190
11304
  <li><a href="https://github.com/nautobot/nautobot/issues/4992">#4992</a> - Added change-logging (ObjectChange support) for the ObjectPermission model.</li>
11191
11305
  </ul>
11192
- <h3 id="removed_5">Removed<a class="headerlink" href="#removed_5" title="Permanent link">&para;</a></h3>
11306
+ <h3 id="removed-in-v211">Removed in v2.1.1<a class="headerlink" href="#removed-in-v211" title="Permanent link">&para;</a></h3>
11193
11307
  <ul>
11194
11308
  <li><a href="https://github.com/nautobot/nautobot/issues/5033">#5033</a> - Removed alpha UI from the main code base for now (it still exists in a prototype branch) to reduce the burden of maintaining its dependencies in the meantime.</li>
11195
11309
  <li><a href="https://github.com/nautobot/nautobot/issues/5035">#5035</a> - Removed nodesource apt repository from Dockerfile.</li>
11196
11310
  </ul>
11197
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
11311
+ <h3 id="fixed-in-v211">Fixed in v2.1.1<a class="headerlink" href="#fixed-in-v211" title="Permanent link">&para;</a></h3>
11198
11312
  <ul>
11199
11313
  <li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed an error when attempting to "Save Changes" to an existing GraphQL saved query via the GraphiQL UI.</li>
11200
11314
  <li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed incorrect positioning of the "Save Changes" button in the "Queries" menu in the GraphiQL UI.</li>
@@ -11203,14 +11317,14 @@
11203
11317
  <li><a href="https://github.com/nautobot/nautobot/issues/5005">#5005</a> - Fixed missing schema field in config context create/edit forms.</li>
11204
11318
  <li><a href="https://github.com/nautobot/nautobot/issues/5020">#5020</a> - Fixed display of secrets when editing a SecretsGroup.</li>
11205
11319
  </ul>
11206
- <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
11320
+ <h3 id="documentation-in-v211">Documentation in v2.1.1<a class="headerlink" href="#documentation-in-v211" title="Permanent link">&para;</a></h3>
11207
11321
  <ul>
11208
11322
  <li><a href="https://github.com/nautobot/nautobot/issues/5019">#5019</a> - Updated the documentation on the usage of the <code>nautobot-server runjob</code> management command.</li>
11209
11323
  <li><a href="https://github.com/nautobot/nautobot/issues/5023">#5023</a> - Fixed some typos in the 2.1.0 release notes.</li>
11210
11324
  <li><a href="https://github.com/nautobot/nautobot/issues/5027">#5027</a> - Fixed typo in Device Redundancy Group docs.</li>
11211
11325
  <li><a href="https://github.com/nautobot/nautobot/issues/5044">#5044</a> - Updated the documentation on <code>nautobot_database_ready</code> signal handlers with a warning.</li>
11212
11326
  </ul>
11213
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
11327
+ <h3 id="housekeeping-in-v211">Housekeeping in v2.1.1<a class="headerlink" href="#housekeeping-in-v211" title="Permanent link">&para;</a></h3>
11214
11328
  <ul>
11215
11329
  <li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Updated <code>ruff</code> development dependency to <code>~0.1.10</code>.</li>
11216
11330
  <li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Removed <code>black</code> and <code>flake8</code> as development dependencies as they're fully replaced by <code>ruff</code> now.</li>
@@ -11225,13 +11339,13 @@
11225
11339
  <li><a href="https://github.com/nautobot/nautobot/issues/5055">#5055</a> - Removed <code>isort</code> as a development dependency as it's fully replaced by <code>ruff</code> now.</li>
11226
11340
  </ul>
11227
11341
  <h2 id="v210-2023-12-22">v2.1.0 (2023-12-22)<a class="headerlink" href="#v210-2023-12-22" title="Permanent link">&para;</a></h2>
11228
- <h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">&para;</a></h3>
11342
+ <h3 id="security-in-v210">Security in v2.1.0<a class="headerlink" href="#security-in-v210" title="Permanent link">&para;</a></h3>
11229
11343
  <ul>
11230
11344
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
11231
11345
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
11232
11346
  <li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
11233
11347
  </ul>
11234
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
11348
+ <h3 id="added-in-v210">Added in v2.1.0<a class="headerlink" href="#added-in-v210" title="Permanent link">&para;</a></h3>
11235
11349
  <ul>
11236
11350
  <li><a href="https://github.com/nautobot/nautobot/issues/2149">#2149</a> - Added customizable panels on the homepage.</li>
11237
11351
  <li><a href="https://github.com/nautobot/nautobot/issues/4708">#4708</a> - Added VRF to interface bulk edit form.</li>
@@ -11245,7 +11359,7 @@
11245
11359
  <li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Added <code>JOB_CREATE_FILE_MAX_SIZE</code> setting.</li>
11246
11360
  <li><a href="https://github.com/nautobot/nautobot/issues/4989">#4989</a> - Added a link to the Advanced tab on detail views to easily open the object in the API browser.</li>
11247
11361
  </ul>
11248
- <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
11362
+ <h3 id="changed-in-v210">Changed in v2.1.0<a class="headerlink" href="#changed-in-v210" title="Permanent link">&para;</a></h3>
11249
11363
  <ul>
11250
11364
  <li><a href="https://github.com/nautobot/nautobot/issues/4884">#4884</a> - Added Bootstrap tooltips for all HTML elements with a <code>title</code> attribute.</li>
11251
11365
  <li><a href="https://github.com/nautobot/nautobot/issues/4888">#4888</a> - Moved username and user actions menu from the top of the nav bar to the bottom.</li>
@@ -11256,12 +11370,12 @@
11256
11370
  <li><a href="https://github.com/nautobot/nautobot/issues/4996">#4996</a> - Changed the order and help text of fields in the External Integration create and edit forms.</li>
11257
11371
  <li><a href="https://github.com/nautobot/nautobot/issues/5003">#5003</a> - Updated gifs to showcase new Nautobot 2.1 interface.</li>
11258
11372
  </ul>
11259
- <h3 id="removed_6">Removed<a class="headerlink" href="#removed_6" title="Permanent link">&para;</a></h3>
11373
+ <h3 id="removed-in-v210">Removed in v2.1.0<a class="headerlink" href="#removed-in-v210" title="Permanent link">&para;</a></h3>
11260
11374
  <ul>
11261
11375
  <li><a href="https://github.com/nautobot/nautobot/issues/4757">#4757</a> - Dropped support for PostgreSQL versions before 12.0.</li>
11262
11376
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/&lt;uuid&gt;/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/&lt;uuid&gt;/run/</code> endpoint like any other job.</li>
11263
11377
  </ul>
11264
- <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
11378
+ <h3 id="fixed-in-v210">Fixed in v2.1.0<a class="headerlink" href="#fixed-in-v210" title="Permanent link">&para;</a></h3>
11265
11379
  <ul>
11266
11380
  <li><a href="https://github.com/nautobot/nautobot/issues/4620">#4620</a> - Ensure UI build directory is created on init of nautobot-server.</li>
11267
11381
  <li><a href="https://github.com/nautobot/nautobot/issues/4627">#4627</a> - Fixed JSON custom field being returned as a <code>repr()</code> string when using GraphQL.</li>
@@ -11274,14 +11388,14 @@
11274
11388
  <li><a href="https://github.com/nautobot/nautobot/issues/4968">#4968</a> - Fixed some cases in which the <code>ipam.0025</code> data migration might throw an exception due to invalid data.</li>
11275
11389
  <li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
11276
11390
  </ul>
11277
- <h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">&para;</a></h3>
11391
+ <h3 id="documentation-in-v210">Documentation in v2.1.0<a class="headerlink" href="#documentation-in-v210" title="Permanent link">&para;</a></h3>
11278
11392
  <ul>
11279
11393
  <li><a href="https://github.com/nautobot/nautobot/issues/4735">#4735</a> - Documented Django Admin Log Entries in v2.1 Release Overview.</li>
11280
11394
  <li><a href="https://github.com/nautobot/nautobot/issues/4736">#4736</a> - Documented <code>isnull</code> filter expression in v2.1 Release Overview.</li>
11281
11395
  <li><a href="https://github.com/nautobot/nautobot/issues/4766">#4766</a> - Updated documentation for registering tab views.</li>
11282
11396
  <li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Fixed up docstrings for a number of Job-related classes and methods.</li>
11283
11397
  </ul>
11284
- <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
11398
+ <h3 id="housekeeping-in-v210">Housekeeping in v2.1.0<a class="headerlink" href="#housekeeping-in-v210" title="Permanent link">&para;</a></h3>
11285
11399
  <ul>
11286
11400
  <li><a href="https://github.com/nautobot/nautobot/issues/4647">#4647</a> - Added DeviceFactory.</li>
11287
11401
  <li><a href="https://github.com/nautobot/nautobot/issues/4896">#4896</a> - Added <code>/theme-preview/</code> view (only when <code>settings.DEBUG</code> is enabled) to preview various UI elements and layouts.</li>
@@ -11289,7 +11403,7 @@
11289
11403
  <li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
11290
11404
  </ul>
11291
11405
  <h2 id="v210-beta1-2023-11-30">v2.1.0-beta.1 (2023-11-30)<a class="headerlink" href="#v210-beta1-2023-11-30" title="Permanent link">&para;</a></h2>
11292
- <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
11406
+ <h3 id="added-in-v210-beta1">Added in v2.1.0-beta.1<a class="headerlink" href="#added-in-v210-beta1" title="Permanent link">&para;</a></h3>
11293
11407
  <ul>
11294
11408
  <li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Added the ability to automatically apply <code>isnull</code> filters when model field is nullable.</li>
11295
11409
  <li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Enhanced <code>status</code> filters to support filtering by ID (UUID) as an alternative to filtering by <code>name</code>.</li>
@@ -11309,7 +11423,7 @@
11309
11423
  <li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added listing of related <code>files</code> to the <code>/api/extras/job-results/</code> REST API.</li>
11310
11424
  <li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added read-only REST API for the FileProxy model (files generated by a Job run), including a <code>/download/</code> endpoint for downloading the file content.</li>
11311
11425
  </ul>
11312
- <h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">&para;</a></h3>
11426
+ <h3 id="changed-in-v210-beta1">Changed in v2.1.0-beta.1<a class="headerlink" href="#changed-in-v210-beta1" title="Permanent link">&para;</a></h3>
11313
11427
  <ul>
11314
11428
  <li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized nautobot UI bootstrap theme with LESS variables.</li>
11315
11429
  <li><a href="https://github.com/nautobot/nautobot/issues/4745">#4745</a> - Changed object export (CSV, YAML, export-template) to run as a background task, avoiding HTTP timeouts when exporting thousands of objects in a single operation.</li>
@@ -11318,12 +11432,12 @@
11318
11432
  <li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Lightened table row background color in dark mode.</li>
11319
11433
  <li><a href="https://github.com/nautobot/nautobot/issues/4808">#4808</a> - Make NavItem link text margin-right slightly larger.</li>
11320
11434
  </ul>
11321
- <h3 id="removed_7">Removed<a class="headerlink" href="#removed_7" title="Permanent link">&para;</a></h3>
11435
+ <h3 id="removed-in-v210-beta1">Removed in v2.1.0-beta.1<a class="headerlink" href="#removed-in-v210-beta1" title="Permanent link">&para;</a></h3>
11322
11436
  <ul>
11323
11437
  <li><a href="https://github.com/nautobot/nautobot/issues/4765">#4765</a> - Removed "Import" buttons from navbar dropdown menus.</li>
11324
11438
  <li><a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a> - Removed support for <code>HIDE_RESTRICTED_UI</code>. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</li>
11325
11439
  </ul>
11326
- <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
11440
+ <h3 id="fixed-in-v210-beta1">Fixed in v2.1.0-beta.1<a class="headerlink" href="#fixed-in-v210-beta1" title="Permanent link">&para;</a></h3>
11327
11441
  <ul>
11328
11442
  <li><a href="https://github.com/nautobot/nautobot/issues/4646">#4646</a> - Fixed a bug in <code>ObjectPermission</code> where <code>users.user</code> permissions could not be created.</li>
11329
11443
  <li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Fixed default button background color in dark mode.</li>
@@ -11331,7 +11445,7 @@
11331
11445
  <li><a href="https://github.com/nautobot/nautobot/issues/4862">#4862</a> - Fixes issues with uninstalled apps &amp; lingering contenttypes referenced in changelog.</li>
11332
11446
  <li><a href="https://github.com/nautobot/nautobot/issues/4882">#4882</a> - Fixed a regression in the rendering of the Jobs table view.</li>
11333
11447
  </ul>
11334
- <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
11448
+ <h3 id="housekeeping-in-v210-beta1">Housekeeping in v2.1.0-beta.1<a class="headerlink" href="#housekeeping-in-v210-beta1" title="Permanent link">&para;</a></h3>
11335
11449
  <ul>
11336
11450
  <li><a href="https://github.com/nautobot/nautobot/issues/3352">#3352</a> - Added a shared <code>media_root</code> volume to developer Docker Compose environment.</li>
11337
11451
  <li><a href="https://github.com/nautobot/nautobot/issues/4781">#4781</a> - Added Gherkin writeups for "Locations" and "Prefixes" feature workflows.</li>
@@ -11432,7 +11546,7 @@
11432
11546
 
11433
11547
 
11434
11548
  <a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
11435
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
11549
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
11436
11550
  </a>
11437
11551
 
11438
11552
 
@@ -11440,7 +11554,7 @@
11440
11554
 
11441
11555
 
11442
11556
  <a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
11443
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
11557
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
11444
11558
  </a>
11445
11559
 
11446
11560
 
@@ -11448,7 +11562,7 @@
11448
11562
 
11449
11563
 
11450
11564
  <a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
11451
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
11565
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
11452
11566
  </a>
11453
11567
 
11454
11568
 
@@ -11456,7 +11570,7 @@
11456
11570
 
11457
11571
 
11458
11572
  <a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
11459
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
11573
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
11460
11574
  </a>
11461
11575
 
11462
11576
 
@@ -11464,7 +11578,7 @@
11464
11578
 
11465
11579
 
11466
11580
  <a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
11467
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>
11581
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>
11468
11582
  </a>
11469
11583
 
11470
11584
  </div>
@@ -11479,10 +11593,10 @@
11479
11593
  </div>
11480
11594
 
11481
11595
 
11482
- <script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
11596
+ <script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.f8cc74c7.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>
11483
11597
 
11484
11598
 
11485
- <script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
11599
+ <script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
11486
11600
 
11487
11601
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
11488
11602