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
 
@@ -8855,54 +8972,54 @@
8855
8972
  <ul class="md-nav__list">
8856
8973
 
8857
8974
  <li class="md-nav__item">
8858
- <a href="#security" class="md-nav__link">
8975
+ <a href="#security-in-v1310" class="md-nav__link">
8859
8976
  <span class="md-ellipsis">
8860
- Security
8977
+ Security in v1.3.10
8861
8978
  </span>
8862
8979
  </a>
8863
8980
 
8864
8981
  </li>
8865
8982
 
8866
8983
  <li class="md-nav__item">
8867
- <a href="#added_1" class="md-nav__link">
8984
+ <a href="#added-in-v1310" class="md-nav__link">
8868
8985
  <span class="md-ellipsis">
8869
- Added
8986
+ Added in v1.3.10
8870
8987
  </span>
8871
8988
  </a>
8872
8989
 
8873
8990
  </li>
8874
8991
 
8875
8992
  <li class="md-nav__item">
8876
- <a href="#changed_1" class="md-nav__link">
8993
+ <a href="#changed-in-v1310" class="md-nav__link">
8877
8994
  <span class="md-ellipsis">
8878
- Changed
8995
+ Changed in v1.3.10
8879
8996
  </span>
8880
8997
  </a>
8881
8998
 
8882
8999
  </li>
8883
9000
 
8884
9001
  <li class="md-nav__item">
8885
- <a href="#fixed" class="md-nav__link">
9002
+ <a href="#fixed-in-v1310" class="md-nav__link">
8886
9003
  <span class="md-ellipsis">
8887
- Fixed
9004
+ Fixed in v1.3.10
8888
9005
  </span>
8889
9006
  </a>
8890
9007
 
8891
9008
  </li>
8892
9009
 
8893
9010
  <li class="md-nav__item">
8894
- <a href="#dependencies" class="md-nav__link">
9011
+ <a href="#dependencies-in-v1310" class="md-nav__link">
8895
9012
  <span class="md-ellipsis">
8896
- Dependencies
9013
+ Dependencies in v1.3.10
8897
9014
  </span>
8898
9015
  </a>
8899
9016
 
8900
9017
  </li>
8901
9018
 
8902
9019
  <li class="md-nav__item">
8903
- <a href="#housekeeping" class="md-nav__link">
9020
+ <a href="#housekeeping-in-v1310" class="md-nav__link">
8904
9021
  <span class="md-ellipsis">
8905
- Housekeeping
9022
+ Housekeeping in v1.3.10
8906
9023
  </span>
8907
9024
  </a>
8908
9025
 
@@ -8924,36 +9041,36 @@
8924
9041
  <ul class="md-nav__list">
8925
9042
 
8926
9043
  <li class="md-nav__item">
8927
- <a href="#added_2" class="md-nav__link">
9044
+ <a href="#added-in-v139" class="md-nav__link">
8928
9045
  <span class="md-ellipsis">
8929
- Added
9046
+ Added in v1.3.9
8930
9047
  </span>
8931
9048
  </a>
8932
9049
 
8933
9050
  </li>
8934
9051
 
8935
9052
  <li class="md-nav__item">
8936
- <a href="#changed_2" class="md-nav__link">
9053
+ <a href="#changed-in-v139" class="md-nav__link">
8937
9054
  <span class="md-ellipsis">
8938
- Changed
9055
+ Changed in v1.3.9
8939
9056
  </span>
8940
9057
  </a>
8941
9058
 
8942
9059
  </li>
8943
9060
 
8944
9061
  <li class="md-nav__item">
8945
- <a href="#fixed_1" class="md-nav__link">
9062
+ <a href="#fixed-in-v139" class="md-nav__link">
8946
9063
  <span class="md-ellipsis">
8947
- Fixed
9064
+ Fixed in v1.3.9
8948
9065
  </span>
8949
9066
  </a>
8950
9067
 
8951
9068
  </li>
8952
9069
 
8953
9070
  <li class="md-nav__item">
8954
- <a href="#documentation" class="md-nav__link">
9071
+ <a href="#documentation-in-v139" class="md-nav__link">
8955
9072
  <span class="md-ellipsis">
8956
- Documentation
9073
+ Documentation in v1.3.9
8957
9074
  </span>
8958
9075
  </a>
8959
9076
 
@@ -8975,54 +9092,54 @@
8975
9092
  <ul class="md-nav__list">
8976
9093
 
8977
9094
  <li class="md-nav__item">
8978
- <a href="#security_1" class="md-nav__link">
9095
+ <a href="#security-in-v138" class="md-nav__link">
8979
9096
  <span class="md-ellipsis">
8980
- Security
9097
+ Security in v1.3.8
8981
9098
  </span>
8982
9099
  </a>
8983
9100
 
8984
9101
  </li>
8985
9102
 
8986
9103
  <li class="md-nav__item">
8987
- <a href="#added_3" class="md-nav__link">
9104
+ <a href="#added-in-v138" class="md-nav__link">
8988
9105
  <span class="md-ellipsis">
8989
- Added
9106
+ Added in v1.3.8
8990
9107
  </span>
8991
9108
  </a>
8992
9109
 
8993
9110
  </li>
8994
9111
 
8995
9112
  <li class="md-nav__item">
8996
- <a href="#changed_3" class="md-nav__link">
9113
+ <a href="#changed-in-v138" class="md-nav__link">
8997
9114
  <span class="md-ellipsis">
8998
- Changed
9115
+ Changed in v1.3.8
8999
9116
  </span>
9000
9117
  </a>
9001
9118
 
9002
9119
  </li>
9003
9120
 
9004
9121
  <li class="md-nav__item">
9005
- <a href="#fixed_2" class="md-nav__link">
9122
+ <a href="#fixed-in-v138" class="md-nav__link">
9006
9123
  <span class="md-ellipsis">
9007
- Fixed
9124
+ Fixed in v1.3.8
9008
9125
  </span>
9009
9126
  </a>
9010
9127
 
9011
9128
  </li>
9012
9129
 
9013
9130
  <li class="md-nav__item">
9014
- <a href="#dependencies_1" class="md-nav__link">
9131
+ <a href="#dependencies-in-v138" class="md-nav__link">
9015
9132
  <span class="md-ellipsis">
9016
- Dependencies
9133
+ Dependencies in v1.3.8
9017
9134
  </span>
9018
9135
  </a>
9019
9136
 
9020
9137
  </li>
9021
9138
 
9022
9139
  <li class="md-nav__item">
9023
- <a href="#housekeeping_1" class="md-nav__link">
9140
+ <a href="#housekeeping-in-v138" class="md-nav__link">
9024
9141
  <span class="md-ellipsis">
9025
- Housekeeping
9142
+ Housekeeping in v1.3.8
9026
9143
  </span>
9027
9144
  </a>
9028
9145
 
@@ -9044,45 +9161,45 @@
9044
9161
  <ul class="md-nav__list">
9045
9162
 
9046
9163
  <li class="md-nav__item">
9047
- <a href="#added_4" class="md-nav__link">
9164
+ <a href="#added-in-v137" class="md-nav__link">
9048
9165
  <span class="md-ellipsis">
9049
- Added
9166
+ Added in v1.3.7
9050
9167
  </span>
9051
9168
  </a>
9052
9169
 
9053
9170
  </li>
9054
9171
 
9055
9172
  <li class="md-nav__item">
9056
- <a href="#changed_4" class="md-nav__link">
9173
+ <a href="#changed-in-v137" class="md-nav__link">
9057
9174
  <span class="md-ellipsis">
9058
- Changed
9175
+ Changed in v1.3.7
9059
9176
  </span>
9060
9177
  </a>
9061
9178
 
9062
9179
  </li>
9063
9180
 
9064
9181
  <li class="md-nav__item">
9065
- <a href="#fixed_3" class="md-nav__link">
9182
+ <a href="#fixed-in-v137" class="md-nav__link">
9066
9183
  <span class="md-ellipsis">
9067
- Fixed
9184
+ Fixed in v1.3.7
9068
9185
  </span>
9069
9186
  </a>
9070
9187
 
9071
9188
  </li>
9072
9189
 
9073
9190
  <li class="md-nav__item">
9074
- <a href="#documentation_1" class="md-nav__link">
9191
+ <a href="#documentation-in-v137" class="md-nav__link">
9075
9192
  <span class="md-ellipsis">
9076
- Documentation
9193
+ Documentation in v1.3.7
9077
9194
  </span>
9078
9195
  </a>
9079
9196
 
9080
9197
  </li>
9081
9198
 
9082
9199
  <li class="md-nav__item">
9083
- <a href="#housekeeping_2" class="md-nav__link">
9200
+ <a href="#housekeeping-in-v137" class="md-nav__link">
9084
9201
  <span class="md-ellipsis">
9085
- Housekeeping
9202
+ Housekeeping in v1.3.7
9086
9203
  </span>
9087
9204
  </a>
9088
9205
 
@@ -9104,27 +9221,27 @@
9104
9221
  <ul class="md-nav__list">
9105
9222
 
9106
9223
  <li class="md-nav__item">
9107
- <a href="#fixed_4" class="md-nav__link">
9224
+ <a href="#fixed-in-v136" class="md-nav__link">
9108
9225
  <span class="md-ellipsis">
9109
- Fixed
9226
+ Fixed in v1.3.6
9110
9227
  </span>
9111
9228
  </a>
9112
9229
 
9113
9230
  </li>
9114
9231
 
9115
9232
  <li class="md-nav__item">
9116
- <a href="#documentation_2" class="md-nav__link">
9233
+ <a href="#documentation-in-v136" class="md-nav__link">
9117
9234
  <span class="md-ellipsis">
9118
- Documentation
9235
+ Documentation in v1.3.6
9119
9236
  </span>
9120
9237
  </a>
9121
9238
 
9122
9239
  </li>
9123
9240
 
9124
9241
  <li class="md-nav__item">
9125
- <a href="#housekeeping_3" class="md-nav__link">
9242
+ <a href="#housekeeping-in-v136" class="md-nav__link">
9126
9243
  <span class="md-ellipsis">
9127
- Housekeeping
9244
+ Housekeeping in v1.3.6
9128
9245
  </span>
9129
9246
  </a>
9130
9247
 
@@ -9146,36 +9263,36 @@
9146
9263
  <ul class="md-nav__list">
9147
9264
 
9148
9265
  <li class="md-nav__item">
9149
- <a href="#security_2" class="md-nav__link">
9266
+ <a href="#security-in-v135" class="md-nav__link">
9150
9267
  <span class="md-ellipsis">
9151
- Security
9268
+ Security in v1.3.5
9152
9269
  </span>
9153
9270
  </a>
9154
9271
 
9155
9272
  </li>
9156
9273
 
9157
9274
  <li class="md-nav__item">
9158
- <a href="#fixed_5" class="md-nav__link">
9275
+ <a href="#fixed-in-v135" class="md-nav__link">
9159
9276
  <span class="md-ellipsis">
9160
- Fixed
9277
+ Fixed in v1.3.5
9161
9278
  </span>
9162
9279
  </a>
9163
9280
 
9164
9281
  </li>
9165
9282
 
9166
9283
  <li class="md-nav__item">
9167
- <a href="#documentation_3" class="md-nav__link">
9284
+ <a href="#documentation-in-v135" class="md-nav__link">
9168
9285
  <span class="md-ellipsis">
9169
- Documentation
9286
+ Documentation in v1.3.5
9170
9287
  </span>
9171
9288
  </a>
9172
9289
 
9173
9290
  </li>
9174
9291
 
9175
9292
  <li class="md-nav__item">
9176
- <a href="#housekeeping_4" class="md-nav__link">
9293
+ <a href="#housekeeping-in-v135" class="md-nav__link">
9177
9294
  <span class="md-ellipsis">
9178
- Housekeeping
9295
+ Housekeeping in v1.3.5
9179
9296
  </span>
9180
9297
  </a>
9181
9298
 
@@ -9197,36 +9314,36 @@
9197
9314
  <ul class="md-nav__list">
9198
9315
 
9199
9316
  <li class="md-nav__item">
9200
- <a href="#security_3" class="md-nav__link">
9317
+ <a href="#security-in-v134" class="md-nav__link">
9201
9318
  <span class="md-ellipsis">
9202
- Security
9319
+ Security in v1.3.4
9203
9320
  </span>
9204
9321
  </a>
9205
9322
 
9206
9323
  </li>
9207
9324
 
9208
9325
  <li class="md-nav__item">
9209
- <a href="#added_5" class="md-nav__link">
9326
+ <a href="#added-in-v134" class="md-nav__link">
9210
9327
  <span class="md-ellipsis">
9211
- Added
9328
+ Added in v1.3.4
9212
9329
  </span>
9213
9330
  </a>
9214
9331
 
9215
9332
  </li>
9216
9333
 
9217
9334
  <li class="md-nav__item">
9218
- <a href="#fixed_6" class="md-nav__link">
9335
+ <a href="#fixed-in-v134" class="md-nav__link">
9219
9336
  <span class="md-ellipsis">
9220
- Fixed
9337
+ Fixed in v1.3.4
9221
9338
  </span>
9222
9339
  </a>
9223
9340
 
9224
9341
  </li>
9225
9342
 
9226
9343
  <li class="md-nav__item">
9227
- <a href="#documentation_4" class="md-nav__link">
9344
+ <a href="#documentation-in-v134" class="md-nav__link">
9228
9345
  <span class="md-ellipsis">
9229
- Documentation
9346
+ Documentation in v1.3.4
9230
9347
  </span>
9231
9348
  </a>
9232
9349
 
@@ -9248,54 +9365,54 @@
9248
9365
  <ul class="md-nav__list">
9249
9366
 
9250
9367
  <li class="md-nav__item">
9251
- <a href="#added_6" class="md-nav__link">
9368
+ <a href="#added-in-v133" class="md-nav__link">
9252
9369
  <span class="md-ellipsis">
9253
- Added
9370
+ Added in v1.3.3
9254
9371
  </span>
9255
9372
  </a>
9256
9373
 
9257
9374
  </li>
9258
9375
 
9259
9376
  <li class="md-nav__item">
9260
- <a href="#changed_5" class="md-nav__link">
9377
+ <a href="#changed-in-v133" class="md-nav__link">
9261
9378
  <span class="md-ellipsis">
9262
- Changed
9379
+ Changed in v1.3.3
9263
9380
  </span>
9264
9381
  </a>
9265
9382
 
9266
9383
  </li>
9267
9384
 
9268
9385
  <li class="md-nav__item">
9269
- <a href="#fixed_7" class="md-nav__link">
9386
+ <a href="#fixed-in-v133" class="md-nav__link">
9270
9387
  <span class="md-ellipsis">
9271
- Fixed
9388
+ Fixed in v1.3.3
9272
9389
  </span>
9273
9390
  </a>
9274
9391
 
9275
9392
  </li>
9276
9393
 
9277
9394
  <li class="md-nav__item">
9278
- <a href="#dependencies_2" class="md-nav__link">
9395
+ <a href="#dependencies-in-v133" class="md-nav__link">
9279
9396
  <span class="md-ellipsis">
9280
- Dependencies
9397
+ Dependencies in v1.3.3
9281
9398
  </span>
9282
9399
  </a>
9283
9400
 
9284
9401
  </li>
9285
9402
 
9286
9403
  <li class="md-nav__item">
9287
- <a href="#documentation_5" class="md-nav__link">
9404
+ <a href="#documentation-in-v133" class="md-nav__link">
9288
9405
  <span class="md-ellipsis">
9289
- Documentation
9406
+ Documentation in v1.3.3
9290
9407
  </span>
9291
9408
  </a>
9292
9409
 
9293
9410
  </li>
9294
9411
 
9295
9412
  <li class="md-nav__item">
9296
- <a href="#housekeeping_5" class="md-nav__link">
9413
+ <a href="#housekeeping-in-v133" class="md-nav__link">
9297
9414
  <span class="md-ellipsis">
9298
- Housekeeping
9415
+ Housekeeping in v1.3.3
9299
9416
  </span>
9300
9417
  </a>
9301
9418
 
@@ -9317,54 +9434,54 @@
9317
9434
  <ul class="md-nav__list">
9318
9435
 
9319
9436
  <li class="md-nav__item">
9320
- <a href="#security_4" class="md-nav__link">
9437
+ <a href="#security-in-v132" class="md-nav__link">
9321
9438
  <span class="md-ellipsis">
9322
- Security
9439
+ Security in v1.3.2
9323
9440
  </span>
9324
9441
  </a>
9325
9442
 
9326
9443
  </li>
9327
9444
 
9328
9445
  <li class="md-nav__item">
9329
- <a href="#added_7" class="md-nav__link">
9446
+ <a href="#added-in-v132" class="md-nav__link">
9330
9447
  <span class="md-ellipsis">
9331
- Added
9448
+ Added in v1.3.2
9332
9449
  </span>
9333
9450
  </a>
9334
9451
 
9335
9452
  </li>
9336
9453
 
9337
9454
  <li class="md-nav__item">
9338
- <a href="#changed_6" class="md-nav__link">
9455
+ <a href="#changed-in-v132" class="md-nav__link">
9339
9456
  <span class="md-ellipsis">
9340
- Changed
9457
+ Changed in v1.3.2
9341
9458
  </span>
9342
9459
  </a>
9343
9460
 
9344
9461
  </li>
9345
9462
 
9346
9463
  <li class="md-nav__item">
9347
- <a href="#fixed_8" class="md-nav__link">
9464
+ <a href="#fixed-in-v132" class="md-nav__link">
9348
9465
  <span class="md-ellipsis">
9349
- Fixed
9466
+ Fixed in v1.3.2
9350
9467
  </span>
9351
9468
  </a>
9352
9469
 
9353
9470
  </li>
9354
9471
 
9355
9472
  <li class="md-nav__item">
9356
- <a href="#documentation_6" class="md-nav__link">
9473
+ <a href="#documentation-in-v132" class="md-nav__link">
9357
9474
  <span class="md-ellipsis">
9358
- Documentation
9475
+ Documentation in v1.3.2
9359
9476
  </span>
9360
9477
  </a>
9361
9478
 
9362
9479
  </li>
9363
9480
 
9364
9481
  <li class="md-nav__item">
9365
- <a href="#housekeeping_6" class="md-nav__link">
9482
+ <a href="#housekeeping-in-v132" class="md-nav__link">
9366
9483
  <span class="md-ellipsis">
9367
- Housekeeping
9484
+ Housekeeping in v1.3.2
9368
9485
  </span>
9369
9486
  </a>
9370
9487
 
@@ -9386,18 +9503,18 @@
9386
9503
  <ul class="md-nav__list">
9387
9504
 
9388
9505
  <li class="md-nav__item">
9389
- <a href="#changed_7" class="md-nav__link">
9506
+ <a href="#changed-in-v131" class="md-nav__link">
9390
9507
  <span class="md-ellipsis">
9391
- Changed
9508
+ Changed in v1.3.1
9392
9509
  </span>
9393
9510
  </a>
9394
9511
 
9395
9512
  </li>
9396
9513
 
9397
9514
  <li class="md-nav__item">
9398
- <a href="#fixed_9" class="md-nav__link">
9515
+ <a href="#fixed-in-v131" class="md-nav__link">
9399
9516
  <span class="md-ellipsis">
9400
- Fixed
9517
+ Fixed in v1.3.1
9401
9518
  </span>
9402
9519
  </a>
9403
9520
 
@@ -9419,45 +9536,45 @@
9419
9536
  <ul class="md-nav__list">
9420
9537
 
9421
9538
  <li class="md-nav__item">
9422
- <a href="#added_8" class="md-nav__link">
9539
+ <a href="#added-in-v130" class="md-nav__link">
9423
9540
  <span class="md-ellipsis">
9424
- Added
9541
+ Added in v1.3.0
9425
9542
  </span>
9426
9543
  </a>
9427
9544
 
9428
9545
  </li>
9429
9546
 
9430
9547
  <li class="md-nav__item">
9431
- <a href="#changed_8" class="md-nav__link">
9548
+ <a href="#changed-in-v130" class="md-nav__link">
9432
9549
  <span class="md-ellipsis">
9433
- Changed
9550
+ Changed in v1.3.0
9434
9551
  </span>
9435
9552
  </a>
9436
9553
 
9437
9554
  </li>
9438
9555
 
9439
9556
  <li class="md-nav__item">
9440
- <a href="#fixed_10" class="md-nav__link">
9557
+ <a href="#fixed-in-v130" class="md-nav__link">
9441
9558
  <span class="md-ellipsis">
9442
- Fixed
9559
+ Fixed in v1.3.0
9443
9560
  </span>
9444
9561
  </a>
9445
9562
 
9446
9563
  </li>
9447
9564
 
9448
9565
  <li class="md-nav__item">
9449
- <a href="#documentation_7" class="md-nav__link">
9566
+ <a href="#documentation-in-v130" class="md-nav__link">
9450
9567
  <span class="md-ellipsis">
9451
- Documentation
9568
+ Documentation in v1.3.0
9452
9569
  </span>
9453
9570
  </a>
9454
9571
 
9455
9572
  </li>
9456
9573
 
9457
9574
  <li class="md-nav__item">
9458
- <a href="#housekeeping_7" class="md-nav__link">
9575
+ <a href="#housekeeping-in-v130" class="md-nav__link">
9459
9576
  <span class="md-ellipsis">
9460
- Housekeeping
9577
+ Housekeeping in v1.3.0
9461
9578
  </span>
9462
9579
  </a>
9463
9580
 
@@ -9479,54 +9596,54 @@
9479
9596
  <ul class="md-nav__list">
9480
9597
 
9481
9598
  <li class="md-nav__item">
9482
- <a href="#added_9" class="md-nav__link">
9599
+ <a href="#added-in-v130b1" class="md-nav__link">
9483
9600
  <span class="md-ellipsis">
9484
- Added
9601
+ Added in v1.3.0b1
9485
9602
  </span>
9486
9603
  </a>
9487
9604
 
9488
9605
  </li>
9489
9606
 
9490
9607
  <li class="md-nav__item">
9491
- <a href="#changed_9" class="md-nav__link">
9608
+ <a href="#changed-in-v130b1" class="md-nav__link">
9492
9609
  <span class="md-ellipsis">
9493
- Changed
9610
+ Changed in v1.3.0b1
9494
9611
  </span>
9495
9612
  </a>
9496
9613
 
9497
9614
  </li>
9498
9615
 
9499
9616
  <li class="md-nav__item">
9500
- <a href="#removed_1" class="md-nav__link">
9617
+ <a href="#removed-in-v130b1" class="md-nav__link">
9501
9618
  <span class="md-ellipsis">
9502
- Removed
9619
+ Removed in v1.3.0b1
9503
9620
  </span>
9504
9621
  </a>
9505
9622
 
9506
9623
  </li>
9507
9624
 
9508
9625
  <li class="md-nav__item">
9509
- <a href="#fixed_11" class="md-nav__link">
9626
+ <a href="#fixed-in-v130b1" class="md-nav__link">
9510
9627
  <span class="md-ellipsis">
9511
- Fixed
9628
+ Fixed in v1.3.0b1
9512
9629
  </span>
9513
9630
  </a>
9514
9631
 
9515
9632
  </li>
9516
9633
 
9517
9634
  <li class="md-nav__item">
9518
- <a href="#dependencies_3" class="md-nav__link">
9635
+ <a href="#dependencies-in-v130b1" class="md-nav__link">
9519
9636
  <span class="md-ellipsis">
9520
- Dependencies
9637
+ Dependencies in v1.3.0b1
9521
9638
  </span>
9522
9639
  </a>
9523
9640
 
9524
9641
  </li>
9525
9642
 
9526
9643
  <li class="md-nav__item">
9527
- <a href="#housekeeping_8" class="md-nav__link">
9644
+ <a href="#housekeeping-in-v130b1" class="md-nav__link">
9528
9645
  <span class="md-ellipsis">
9529
- Housekeeping
9646
+ Housekeeping in v1.3.0b1
9530
9647
  </span>
9531
9648
  </a>
9532
9649
 
@@ -10240,54 +10357,54 @@
10240
10357
  <ul class="md-nav__list">
10241
10358
 
10242
10359
  <li class="md-nav__item">
10243
- <a href="#security" class="md-nav__link">
10360
+ <a href="#security-in-v1310" class="md-nav__link">
10244
10361
  <span class="md-ellipsis">
10245
- Security
10362
+ Security in v1.3.10
10246
10363
  </span>
10247
10364
  </a>
10248
10365
 
10249
10366
  </li>
10250
10367
 
10251
10368
  <li class="md-nav__item">
10252
- <a href="#added_1" class="md-nav__link">
10369
+ <a href="#added-in-v1310" class="md-nav__link">
10253
10370
  <span class="md-ellipsis">
10254
- Added
10371
+ Added in v1.3.10
10255
10372
  </span>
10256
10373
  </a>
10257
10374
 
10258
10375
  </li>
10259
10376
 
10260
10377
  <li class="md-nav__item">
10261
- <a href="#changed_1" class="md-nav__link">
10378
+ <a href="#changed-in-v1310" class="md-nav__link">
10262
10379
  <span class="md-ellipsis">
10263
- Changed
10380
+ Changed in v1.3.10
10264
10381
  </span>
10265
10382
  </a>
10266
10383
 
10267
10384
  </li>
10268
10385
 
10269
10386
  <li class="md-nav__item">
10270
- <a href="#fixed" class="md-nav__link">
10387
+ <a href="#fixed-in-v1310" class="md-nav__link">
10271
10388
  <span class="md-ellipsis">
10272
- Fixed
10389
+ Fixed in v1.3.10
10273
10390
  </span>
10274
10391
  </a>
10275
10392
 
10276
10393
  </li>
10277
10394
 
10278
10395
  <li class="md-nav__item">
10279
- <a href="#dependencies" class="md-nav__link">
10396
+ <a href="#dependencies-in-v1310" class="md-nav__link">
10280
10397
  <span class="md-ellipsis">
10281
- Dependencies
10398
+ Dependencies in v1.3.10
10282
10399
  </span>
10283
10400
  </a>
10284
10401
 
10285
10402
  </li>
10286
10403
 
10287
10404
  <li class="md-nav__item">
10288
- <a href="#housekeeping" class="md-nav__link">
10405
+ <a href="#housekeeping-in-v1310" class="md-nav__link">
10289
10406
  <span class="md-ellipsis">
10290
- Housekeeping
10407
+ Housekeeping in v1.3.10
10291
10408
  </span>
10292
10409
  </a>
10293
10410
 
@@ -10309,36 +10426,36 @@
10309
10426
  <ul class="md-nav__list">
10310
10427
 
10311
10428
  <li class="md-nav__item">
10312
- <a href="#added_2" class="md-nav__link">
10429
+ <a href="#added-in-v139" class="md-nav__link">
10313
10430
  <span class="md-ellipsis">
10314
- Added
10431
+ Added in v1.3.9
10315
10432
  </span>
10316
10433
  </a>
10317
10434
 
10318
10435
  </li>
10319
10436
 
10320
10437
  <li class="md-nav__item">
10321
- <a href="#changed_2" class="md-nav__link">
10438
+ <a href="#changed-in-v139" class="md-nav__link">
10322
10439
  <span class="md-ellipsis">
10323
- Changed
10440
+ Changed in v1.3.9
10324
10441
  </span>
10325
10442
  </a>
10326
10443
 
10327
10444
  </li>
10328
10445
 
10329
10446
  <li class="md-nav__item">
10330
- <a href="#fixed_1" class="md-nav__link">
10447
+ <a href="#fixed-in-v139" class="md-nav__link">
10331
10448
  <span class="md-ellipsis">
10332
- Fixed
10449
+ Fixed in v1.3.9
10333
10450
  </span>
10334
10451
  </a>
10335
10452
 
10336
10453
  </li>
10337
10454
 
10338
10455
  <li class="md-nav__item">
10339
- <a href="#documentation" class="md-nav__link">
10456
+ <a href="#documentation-in-v139" class="md-nav__link">
10340
10457
  <span class="md-ellipsis">
10341
- Documentation
10458
+ Documentation in v1.3.9
10342
10459
  </span>
10343
10460
  </a>
10344
10461
 
@@ -10360,54 +10477,54 @@
10360
10477
  <ul class="md-nav__list">
10361
10478
 
10362
10479
  <li class="md-nav__item">
10363
- <a href="#security_1" class="md-nav__link">
10480
+ <a href="#security-in-v138" class="md-nav__link">
10364
10481
  <span class="md-ellipsis">
10365
- Security
10482
+ Security in v1.3.8
10366
10483
  </span>
10367
10484
  </a>
10368
10485
 
10369
10486
  </li>
10370
10487
 
10371
10488
  <li class="md-nav__item">
10372
- <a href="#added_3" class="md-nav__link">
10489
+ <a href="#added-in-v138" class="md-nav__link">
10373
10490
  <span class="md-ellipsis">
10374
- Added
10491
+ Added in v1.3.8
10375
10492
  </span>
10376
10493
  </a>
10377
10494
 
10378
10495
  </li>
10379
10496
 
10380
10497
  <li class="md-nav__item">
10381
- <a href="#changed_3" class="md-nav__link">
10498
+ <a href="#changed-in-v138" class="md-nav__link">
10382
10499
  <span class="md-ellipsis">
10383
- Changed
10500
+ Changed in v1.3.8
10384
10501
  </span>
10385
10502
  </a>
10386
10503
 
10387
10504
  </li>
10388
10505
 
10389
10506
  <li class="md-nav__item">
10390
- <a href="#fixed_2" class="md-nav__link">
10507
+ <a href="#fixed-in-v138" class="md-nav__link">
10391
10508
  <span class="md-ellipsis">
10392
- Fixed
10509
+ Fixed in v1.3.8
10393
10510
  </span>
10394
10511
  </a>
10395
10512
 
10396
10513
  </li>
10397
10514
 
10398
10515
  <li class="md-nav__item">
10399
- <a href="#dependencies_1" class="md-nav__link">
10516
+ <a href="#dependencies-in-v138" class="md-nav__link">
10400
10517
  <span class="md-ellipsis">
10401
- Dependencies
10518
+ Dependencies in v1.3.8
10402
10519
  </span>
10403
10520
  </a>
10404
10521
 
10405
10522
  </li>
10406
10523
 
10407
10524
  <li class="md-nav__item">
10408
- <a href="#housekeeping_1" class="md-nav__link">
10525
+ <a href="#housekeeping-in-v138" class="md-nav__link">
10409
10526
  <span class="md-ellipsis">
10410
- Housekeeping
10527
+ Housekeeping in v1.3.8
10411
10528
  </span>
10412
10529
  </a>
10413
10530
 
@@ -10429,45 +10546,45 @@
10429
10546
  <ul class="md-nav__list">
10430
10547
 
10431
10548
  <li class="md-nav__item">
10432
- <a href="#added_4" class="md-nav__link">
10549
+ <a href="#added-in-v137" class="md-nav__link">
10433
10550
  <span class="md-ellipsis">
10434
- Added
10551
+ Added in v1.3.7
10435
10552
  </span>
10436
10553
  </a>
10437
10554
 
10438
10555
  </li>
10439
10556
 
10440
10557
  <li class="md-nav__item">
10441
- <a href="#changed_4" class="md-nav__link">
10558
+ <a href="#changed-in-v137" class="md-nav__link">
10442
10559
  <span class="md-ellipsis">
10443
- Changed
10560
+ Changed in v1.3.7
10444
10561
  </span>
10445
10562
  </a>
10446
10563
 
10447
10564
  </li>
10448
10565
 
10449
10566
  <li class="md-nav__item">
10450
- <a href="#fixed_3" class="md-nav__link">
10567
+ <a href="#fixed-in-v137" class="md-nav__link">
10451
10568
  <span class="md-ellipsis">
10452
- Fixed
10569
+ Fixed in v1.3.7
10453
10570
  </span>
10454
10571
  </a>
10455
10572
 
10456
10573
  </li>
10457
10574
 
10458
10575
  <li class="md-nav__item">
10459
- <a href="#documentation_1" class="md-nav__link">
10576
+ <a href="#documentation-in-v137" class="md-nav__link">
10460
10577
  <span class="md-ellipsis">
10461
- Documentation
10578
+ Documentation in v1.3.7
10462
10579
  </span>
10463
10580
  </a>
10464
10581
 
10465
10582
  </li>
10466
10583
 
10467
10584
  <li class="md-nav__item">
10468
- <a href="#housekeeping_2" class="md-nav__link">
10585
+ <a href="#housekeeping-in-v137" class="md-nav__link">
10469
10586
  <span class="md-ellipsis">
10470
- Housekeeping
10587
+ Housekeeping in v1.3.7
10471
10588
  </span>
10472
10589
  </a>
10473
10590
 
@@ -10489,27 +10606,27 @@
10489
10606
  <ul class="md-nav__list">
10490
10607
 
10491
10608
  <li class="md-nav__item">
10492
- <a href="#fixed_4" class="md-nav__link">
10609
+ <a href="#fixed-in-v136" class="md-nav__link">
10493
10610
  <span class="md-ellipsis">
10494
- Fixed
10611
+ Fixed in v1.3.6
10495
10612
  </span>
10496
10613
  </a>
10497
10614
 
10498
10615
  </li>
10499
10616
 
10500
10617
  <li class="md-nav__item">
10501
- <a href="#documentation_2" class="md-nav__link">
10618
+ <a href="#documentation-in-v136" class="md-nav__link">
10502
10619
  <span class="md-ellipsis">
10503
- Documentation
10620
+ Documentation in v1.3.6
10504
10621
  </span>
10505
10622
  </a>
10506
10623
 
10507
10624
  </li>
10508
10625
 
10509
10626
  <li class="md-nav__item">
10510
- <a href="#housekeeping_3" class="md-nav__link">
10627
+ <a href="#housekeeping-in-v136" class="md-nav__link">
10511
10628
  <span class="md-ellipsis">
10512
- Housekeeping
10629
+ Housekeeping in v1.3.6
10513
10630
  </span>
10514
10631
  </a>
10515
10632
 
@@ -10531,36 +10648,36 @@
10531
10648
  <ul class="md-nav__list">
10532
10649
 
10533
10650
  <li class="md-nav__item">
10534
- <a href="#security_2" class="md-nav__link">
10651
+ <a href="#security-in-v135" class="md-nav__link">
10535
10652
  <span class="md-ellipsis">
10536
- Security
10653
+ Security in v1.3.5
10537
10654
  </span>
10538
10655
  </a>
10539
10656
 
10540
10657
  </li>
10541
10658
 
10542
10659
  <li class="md-nav__item">
10543
- <a href="#fixed_5" class="md-nav__link">
10660
+ <a href="#fixed-in-v135" class="md-nav__link">
10544
10661
  <span class="md-ellipsis">
10545
- Fixed
10662
+ Fixed in v1.3.5
10546
10663
  </span>
10547
10664
  </a>
10548
10665
 
10549
10666
  </li>
10550
10667
 
10551
10668
  <li class="md-nav__item">
10552
- <a href="#documentation_3" class="md-nav__link">
10669
+ <a href="#documentation-in-v135" class="md-nav__link">
10553
10670
  <span class="md-ellipsis">
10554
- Documentation
10671
+ Documentation in v1.3.5
10555
10672
  </span>
10556
10673
  </a>
10557
10674
 
10558
10675
  </li>
10559
10676
 
10560
10677
  <li class="md-nav__item">
10561
- <a href="#housekeeping_4" class="md-nav__link">
10678
+ <a href="#housekeeping-in-v135" class="md-nav__link">
10562
10679
  <span class="md-ellipsis">
10563
- Housekeeping
10680
+ Housekeeping in v1.3.5
10564
10681
  </span>
10565
10682
  </a>
10566
10683
 
@@ -10582,36 +10699,36 @@
10582
10699
  <ul class="md-nav__list">
10583
10700
 
10584
10701
  <li class="md-nav__item">
10585
- <a href="#security_3" class="md-nav__link">
10702
+ <a href="#security-in-v134" class="md-nav__link">
10586
10703
  <span class="md-ellipsis">
10587
- Security
10704
+ Security in v1.3.4
10588
10705
  </span>
10589
10706
  </a>
10590
10707
 
10591
10708
  </li>
10592
10709
 
10593
10710
  <li class="md-nav__item">
10594
- <a href="#added_5" class="md-nav__link">
10711
+ <a href="#added-in-v134" class="md-nav__link">
10595
10712
  <span class="md-ellipsis">
10596
- Added
10713
+ Added in v1.3.4
10597
10714
  </span>
10598
10715
  </a>
10599
10716
 
10600
10717
  </li>
10601
10718
 
10602
10719
  <li class="md-nav__item">
10603
- <a href="#fixed_6" class="md-nav__link">
10720
+ <a href="#fixed-in-v134" class="md-nav__link">
10604
10721
  <span class="md-ellipsis">
10605
- Fixed
10722
+ Fixed in v1.3.4
10606
10723
  </span>
10607
10724
  </a>
10608
10725
 
10609
10726
  </li>
10610
10727
 
10611
10728
  <li class="md-nav__item">
10612
- <a href="#documentation_4" class="md-nav__link">
10729
+ <a href="#documentation-in-v134" class="md-nav__link">
10613
10730
  <span class="md-ellipsis">
10614
- Documentation
10731
+ Documentation in v1.3.4
10615
10732
  </span>
10616
10733
  </a>
10617
10734
 
@@ -10633,54 +10750,54 @@
10633
10750
  <ul class="md-nav__list">
10634
10751
 
10635
10752
  <li class="md-nav__item">
10636
- <a href="#added_6" class="md-nav__link">
10753
+ <a href="#added-in-v133" class="md-nav__link">
10637
10754
  <span class="md-ellipsis">
10638
- Added
10755
+ Added in v1.3.3
10639
10756
  </span>
10640
10757
  </a>
10641
10758
 
10642
10759
  </li>
10643
10760
 
10644
10761
  <li class="md-nav__item">
10645
- <a href="#changed_5" class="md-nav__link">
10762
+ <a href="#changed-in-v133" class="md-nav__link">
10646
10763
  <span class="md-ellipsis">
10647
- Changed
10764
+ Changed in v1.3.3
10648
10765
  </span>
10649
10766
  </a>
10650
10767
 
10651
10768
  </li>
10652
10769
 
10653
10770
  <li class="md-nav__item">
10654
- <a href="#fixed_7" class="md-nav__link">
10771
+ <a href="#fixed-in-v133" class="md-nav__link">
10655
10772
  <span class="md-ellipsis">
10656
- Fixed
10773
+ Fixed in v1.3.3
10657
10774
  </span>
10658
10775
  </a>
10659
10776
 
10660
10777
  </li>
10661
10778
 
10662
10779
  <li class="md-nav__item">
10663
- <a href="#dependencies_2" class="md-nav__link">
10780
+ <a href="#dependencies-in-v133" class="md-nav__link">
10664
10781
  <span class="md-ellipsis">
10665
- Dependencies
10782
+ Dependencies in v1.3.3
10666
10783
  </span>
10667
10784
  </a>
10668
10785
 
10669
10786
  </li>
10670
10787
 
10671
10788
  <li class="md-nav__item">
10672
- <a href="#documentation_5" class="md-nav__link">
10789
+ <a href="#documentation-in-v133" class="md-nav__link">
10673
10790
  <span class="md-ellipsis">
10674
- Documentation
10791
+ Documentation in v1.3.3
10675
10792
  </span>
10676
10793
  </a>
10677
10794
 
10678
10795
  </li>
10679
10796
 
10680
10797
  <li class="md-nav__item">
10681
- <a href="#housekeeping_5" class="md-nav__link">
10798
+ <a href="#housekeeping-in-v133" class="md-nav__link">
10682
10799
  <span class="md-ellipsis">
10683
- Housekeeping
10800
+ Housekeeping in v1.3.3
10684
10801
  </span>
10685
10802
  </a>
10686
10803
 
@@ -10702,54 +10819,54 @@
10702
10819
  <ul class="md-nav__list">
10703
10820
 
10704
10821
  <li class="md-nav__item">
10705
- <a href="#security_4" class="md-nav__link">
10822
+ <a href="#security-in-v132" class="md-nav__link">
10706
10823
  <span class="md-ellipsis">
10707
- Security
10824
+ Security in v1.3.2
10708
10825
  </span>
10709
10826
  </a>
10710
10827
 
10711
10828
  </li>
10712
10829
 
10713
10830
  <li class="md-nav__item">
10714
- <a href="#added_7" class="md-nav__link">
10831
+ <a href="#added-in-v132" class="md-nav__link">
10715
10832
  <span class="md-ellipsis">
10716
- Added
10833
+ Added in v1.3.2
10717
10834
  </span>
10718
10835
  </a>
10719
10836
 
10720
10837
  </li>
10721
10838
 
10722
10839
  <li class="md-nav__item">
10723
- <a href="#changed_6" class="md-nav__link">
10840
+ <a href="#changed-in-v132" class="md-nav__link">
10724
10841
  <span class="md-ellipsis">
10725
- Changed
10842
+ Changed in v1.3.2
10726
10843
  </span>
10727
10844
  </a>
10728
10845
 
10729
10846
  </li>
10730
10847
 
10731
10848
  <li class="md-nav__item">
10732
- <a href="#fixed_8" class="md-nav__link">
10849
+ <a href="#fixed-in-v132" class="md-nav__link">
10733
10850
  <span class="md-ellipsis">
10734
- Fixed
10851
+ Fixed in v1.3.2
10735
10852
  </span>
10736
10853
  </a>
10737
10854
 
10738
10855
  </li>
10739
10856
 
10740
10857
  <li class="md-nav__item">
10741
- <a href="#documentation_6" class="md-nav__link">
10858
+ <a href="#documentation-in-v132" class="md-nav__link">
10742
10859
  <span class="md-ellipsis">
10743
- Documentation
10860
+ Documentation in v1.3.2
10744
10861
  </span>
10745
10862
  </a>
10746
10863
 
10747
10864
  </li>
10748
10865
 
10749
10866
  <li class="md-nav__item">
10750
- <a href="#housekeeping_6" class="md-nav__link">
10867
+ <a href="#housekeeping-in-v132" class="md-nav__link">
10751
10868
  <span class="md-ellipsis">
10752
- Housekeeping
10869
+ Housekeeping in v1.3.2
10753
10870
  </span>
10754
10871
  </a>
10755
10872
 
@@ -10771,18 +10888,18 @@
10771
10888
  <ul class="md-nav__list">
10772
10889
 
10773
10890
  <li class="md-nav__item">
10774
- <a href="#changed_7" class="md-nav__link">
10891
+ <a href="#changed-in-v131" class="md-nav__link">
10775
10892
  <span class="md-ellipsis">
10776
- Changed
10893
+ Changed in v1.3.1
10777
10894
  </span>
10778
10895
  </a>
10779
10896
 
10780
10897
  </li>
10781
10898
 
10782
10899
  <li class="md-nav__item">
10783
- <a href="#fixed_9" class="md-nav__link">
10900
+ <a href="#fixed-in-v131" class="md-nav__link">
10784
10901
  <span class="md-ellipsis">
10785
- Fixed
10902
+ Fixed in v1.3.1
10786
10903
  </span>
10787
10904
  </a>
10788
10905
 
@@ -10804,45 +10921,45 @@
10804
10921
  <ul class="md-nav__list">
10805
10922
 
10806
10923
  <li class="md-nav__item">
10807
- <a href="#added_8" class="md-nav__link">
10924
+ <a href="#added-in-v130" class="md-nav__link">
10808
10925
  <span class="md-ellipsis">
10809
- Added
10926
+ Added in v1.3.0
10810
10927
  </span>
10811
10928
  </a>
10812
10929
 
10813
10930
  </li>
10814
10931
 
10815
10932
  <li class="md-nav__item">
10816
- <a href="#changed_8" class="md-nav__link">
10933
+ <a href="#changed-in-v130" class="md-nav__link">
10817
10934
  <span class="md-ellipsis">
10818
- Changed
10935
+ Changed in v1.3.0
10819
10936
  </span>
10820
10937
  </a>
10821
10938
 
10822
10939
  </li>
10823
10940
 
10824
10941
  <li class="md-nav__item">
10825
- <a href="#fixed_10" class="md-nav__link">
10942
+ <a href="#fixed-in-v130" class="md-nav__link">
10826
10943
  <span class="md-ellipsis">
10827
- Fixed
10944
+ Fixed in v1.3.0
10828
10945
  </span>
10829
10946
  </a>
10830
10947
 
10831
10948
  </li>
10832
10949
 
10833
10950
  <li class="md-nav__item">
10834
- <a href="#documentation_7" class="md-nav__link">
10951
+ <a href="#documentation-in-v130" class="md-nav__link">
10835
10952
  <span class="md-ellipsis">
10836
- Documentation
10953
+ Documentation in v1.3.0
10837
10954
  </span>
10838
10955
  </a>
10839
10956
 
10840
10957
  </li>
10841
10958
 
10842
10959
  <li class="md-nav__item">
10843
- <a href="#housekeeping_7" class="md-nav__link">
10960
+ <a href="#housekeeping-in-v130" class="md-nav__link">
10844
10961
  <span class="md-ellipsis">
10845
- Housekeeping
10962
+ Housekeeping in v1.3.0
10846
10963
  </span>
10847
10964
  </a>
10848
10965
 
@@ -10864,54 +10981,54 @@
10864
10981
  <ul class="md-nav__list">
10865
10982
 
10866
10983
  <li class="md-nav__item">
10867
- <a href="#added_9" class="md-nav__link">
10984
+ <a href="#added-in-v130b1" class="md-nav__link">
10868
10985
  <span class="md-ellipsis">
10869
- Added
10986
+ Added in v1.3.0b1
10870
10987
  </span>
10871
10988
  </a>
10872
10989
 
10873
10990
  </li>
10874
10991
 
10875
10992
  <li class="md-nav__item">
10876
- <a href="#changed_9" class="md-nav__link">
10993
+ <a href="#changed-in-v130b1" class="md-nav__link">
10877
10994
  <span class="md-ellipsis">
10878
- Changed
10995
+ Changed in v1.3.0b1
10879
10996
  </span>
10880
10997
  </a>
10881
10998
 
10882
10999
  </li>
10883
11000
 
10884
11001
  <li class="md-nav__item">
10885
- <a href="#removed_1" class="md-nav__link">
11002
+ <a href="#removed-in-v130b1" class="md-nav__link">
10886
11003
  <span class="md-ellipsis">
10887
- Removed
11004
+ Removed in v1.3.0b1
10888
11005
  </span>
10889
11006
  </a>
10890
11007
 
10891
11008
  </li>
10892
11009
 
10893
11010
  <li class="md-nav__item">
10894
- <a href="#fixed_11" class="md-nav__link">
11011
+ <a href="#fixed-in-v130b1" class="md-nav__link">
10895
11012
  <span class="md-ellipsis">
10896
- Fixed
11013
+ Fixed in v1.3.0b1
10897
11014
  </span>
10898
11015
  </a>
10899
11016
 
10900
11017
  </li>
10901
11018
 
10902
11019
  <li class="md-nav__item">
10903
- <a href="#dependencies_3" class="md-nav__link">
11020
+ <a href="#dependencies-in-v130b1" class="md-nav__link">
10904
11021
  <span class="md-ellipsis">
10905
- Dependencies
11022
+ Dependencies in v1.3.0b1
10906
11023
  </span>
10907
11024
  </a>
10908
11025
 
10909
11026
  </li>
10910
11027
 
10911
11028
  <li class="md-nav__item">
10912
- <a href="#housekeeping_8" class="md-nav__link">
11029
+ <a href="#housekeeping-in-v130b1" class="md-nav__link">
10913
11030
  <span class="md-ellipsis">
10914
- Housekeeping
11031
+ Housekeeping in v1.3.0b1
10915
11032
  </span>
10916
11033
  </a>
10917
11034
 
@@ -10940,7 +11057,6 @@
10940
11057
 
10941
11058
 
10942
11059
 
10943
- <!-- markdownlint-disable MD024 -->
10944
11060
  <h1 id="nautobot-v13">Nautobot v1.3<a class="headerlink" href="#nautobot-v13" title="Permanent link">&para;</a></h1>
10945
11061
  <p>This document describes all new features and changes in Nautobot 1.3.</p>
10946
11062
  <p>If you are a user migrating from NetBox to Nautobot, please refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation.</p>
@@ -10996,7 +11112,7 @@
10996
11112
  <p><a href="../user-guide/platform-functionality/rest-api/filtering.html#string-fields">New lookup expressions for using regular expressions</a> to filter objects by string (char) fields in the API have been added to all core filters.</p>
10997
11113
  <p>The expressions <code>re</code> (regex), <code>nre</code> (negated regex), <code>ire</code> (case-insensitive regex), and <code>nire</code> (negated case-insensitive regex) lookup expressions are now dynamically-generated for filter fields inherited by subclasses of <code>nautobot.utilities.filters.BaseFilterSet</code>.</p>
10998
11114
  <h4 id="remove-stale-scheduled-jobs-2091">Remove Stale Scheduled Jobs (<a href="https://github.com/nautobot/nautobot/issues/2091">#2091</a>)<a class="headerlink" href="#remove-stale-scheduled-jobs-2091" title="Permanent link">&para;</a></h4>
10999
- <p><a href="../user-guide/administration/tools/nautobot-server.html#remove_stale_scheduled_jobs">remove_stale_scheduled_jobs</a> management command has been added to delete non-recurring scheduled jobs that were scheduled to run more than a specified days ago.</p>
11115
+ <p><a href="../user-guide/administration/tools/nautobot-server.html#remove_stale_scheduled_jobs"><code>remove_stale_scheduled_jobs</code></a> management command has been added to delete non-recurring scheduled jobs that were scheduled to run more than a specified days ago.</p>
11000
11116
  <h4 id="rest-api-token-provisioning-1374">REST API Token Provisioning (<a href="https://github.com/nautobot/nautobot/issues/1374">#1374</a>)<a class="headerlink" href="#rest-api-token-provisioning-1374" title="Permanent link">&para;</a></h4>
11001
11117
  <p>Nautobot now has an <code>/api/users/tokens/</code> REST API endpoint where a user can provision a new REST API token. This allows a user to gain REST API access without needing to first create a token via the web UI.</p>
11002
11118
  <div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>curl<span class="w"> </span>-X<span class="w"> </span>POST<span class="w"> </span><span class="se">\</span>
@@ -11045,7 +11161,7 @@
11045
11161
  <h4 id="python-36-no-longer-supported-1268">Python 3.6 No Longer Supported (<a href="https://github.com/nautobot/nautobot/issues/1268">#1268</a>)<a class="headerlink" href="#python-36-no-longer-supported-1268" title="Permanent link">&para;</a></h4>
11046
11162
  <p>As Python 3.6 has reached end-of-life, and many of Nautobot's dependencies have already dropped support for Python 3.6 as a consequence, Nautobot 1.3 and later do not support installation under Python 3.6.</p>
11047
11163
  <h2 id="v1310-2022-08-08">v1.3.10 (2022-08-08)<a class="headerlink" href="#v1310-2022-08-08" title="Permanent link">&para;</a></h2>
11048
- <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
11164
+ <h3 id="security-in-v1310">Security in v1.3.10<a class="headerlink" href="#security-in-v1310" title="Permanent link">&para;</a></h3>
11049
11165
  <div class="admonition important">
11050
11166
  <p class="admonition-title">Important</p>
11051
11167
  <p>With introducing the <code>has_sensitive_variables</code> flag on Job classes and model (see: <a href="https://github.com/nautobot/nautobot/issues/2091">#2091</a>), jobs can be prevented from storing their inputs in the database. Due to the nature of queuing or scheduling jobs, the desired inputs must be stored for future use.</p>
@@ -11055,7 +11171,7 @@
11055
11171
  <p>A new management command exists (<code>remove_stale_scheduled_jobs</code>) which will aid in cleaning up schedules to past jobs which may still have sensitive data stored in the database. This command is not exhaustive nor intended to clean up sensitive values stored in the database. You should review the <code>extras_scheduledjob</code> table for any further cleanup.</p>
11056
11172
  <p><strong>Note:</strong> Leveraging the Secrets and Secret Groups features in Jobs does not need to be considered a sensitive variable. Secrets are retrieved by reference at run time, which means no secret value is stored directly in the database.</p>
11057
11173
  </div>
11058
- <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
11174
+ <h3 id="added-in-v1310">Added in v1.3.10<a class="headerlink" href="#added-in-v1310" title="Permanent link">&para;</a></h3>
11059
11175
  <ul>
11060
11176
  <li><a href="https://github.com/nautobot/nautobot/issues/1226">#1226</a> - Added custom job intervals package management.</li>
11061
11177
  <li><a href="https://github.com/nautobot/nautobot/pull/2073">#2073</a> - Added <code>--local</code> option to <code>nautobot-server runjob</code> command.</li>
@@ -11063,38 +11179,38 @@
11063
11179
  <li><a href="https://github.com/nautobot/nautobot/issues/2091">#2091</a> - Added <code>remove_stale_scheduled_jobs</code> management command which removes all stale scheduled jobs and also added <code>has_sensitive_variables</code> field to Job model which prevents the job's input parameters from being saved to the database.</li>
11064
11180
  <li><a href="https://github.com/nautobot/nautobot/pull/2143">#2143</a> - Scheduled Job detail view now includes details of any custom interval.</li>
11065
11181
  </ul>
11066
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
11182
+ <h3 id="changed-in-v1310">Changed in v1.3.10<a class="headerlink" href="#changed-in-v1310" title="Permanent link">&para;</a></h3>
11067
11183
  <ul>
11068
11184
  <li><a href="https://github.com/nautobot/nautobot/issues/2114">#2114</a> - Home page now redirects to the login page when <code>HIDE_RESTRICTED_UI</code> is enabled and user is not authenticated.</li>
11069
11185
  </ul>
11070
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
11186
+ <h3 id="fixed-in-v1310">Fixed in v1.3.10<a class="headerlink" href="#fixed-in-v1310" title="Permanent link">&para;</a></h3>
11071
11187
  <ul>
11072
11188
  <li><a href="https://github.com/nautobot/nautobot/issues/1739">#1739</a> - Fixed paginator not enforcing <code>max_page_size</code> setting in web UI views.</li>
11073
11189
  <li><a href="https://github.com/nautobot/nautobot/issues/2060">#2060</a> - Fixed relationship <code>peer_id</code> filter non-existent error on relationship association page.</li>
11074
11190
  <li><a href="https://github.com/nautobot/nautobot/issues/2095">#2095</a> - Fixed health check failing with Redis Sentinel, TLS configuration.</li>
11075
11191
  </ul>
11076
- <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
11192
+ <h3 id="dependencies-in-v1310">Dependencies in v1.3.10<a class="headerlink" href="#dependencies-in-v1310" title="Permanent link">&para;</a></h3>
11077
11193
  <ul>
11078
11194
  <li><a href="https://github.com/nautobot/nautobot/pull/2115">#2115</a> - Patch updates to <code>mkdocs</code>, <code>svgwrite</code>.</li>
11079
11195
  </ul>
11080
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
11196
+ <h3 id="housekeeping-in-v1310">Housekeeping in v1.3.10<a class="headerlink" href="#housekeeping-in-v1310" title="Permanent link">&para;</a></h3>
11081
11197
  <ul>
11082
11198
  <li><a href="https://github.com/nautobot/nautobot/pull/2025">#2025</a> - Tweak Renovate config for automated package management.</li>
11083
11199
  <li><a href="https://github.com/nautobot/nautobot/pull/2119">#2119</a> - Fixed flaky integration test for cable connection UI.</li>
11084
11200
  </ul>
11085
11201
  <h2 id="v139-2022-07-25">v1.3.9 (2022-07-25)<a class="headerlink" href="#v139-2022-07-25" title="Permanent link">&para;</a></h2>
11086
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
11202
+ <h3 id="added-in-v139">Added in v1.3.9<a class="headerlink" href="#added-in-v139" title="Permanent link">&para;</a></h3>
11087
11203
  <ul>
11088
11204
  <li><a href="https://github.com/nautobot/nautobot/issues/1595">#1595</a> - Add ability to specify uWSGI buffer size via environment variable.</li>
11089
11205
  <li><a href="https://github.com/nautobot/nautobot/issues/1757">#1757</a> - Added nullable face, position to Device bulk edit form to provided desired behavior to bulk assigning to a new rack.</li>
11090
11206
  </ul>
11091
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
11207
+ <h3 id="changed-in-v139">Changed in v1.3.9<a class="headerlink" href="#changed-in-v139" title="Permanent link">&para;</a></h3>
11092
11208
  <ul>
11093
11209
  <li><a href="https://github.com/nautobot/nautobot/issues/386">#386</a> - Clarified messaging in API for rack position occupied.</li>
11094
11210
  <li><a href="https://github.com/nautobot/nautobot/issues/1356">#1356</a> - Virtual chassis master device interface list is less confusing.</li>
11095
11211
  <li><a href="https://github.com/nautobot/nautobot/pull/2045">#2045</a> - Clarified Job authoring around proper class inheritance.</li>
11096
11212
  </ul>
11097
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
11213
+ <h3 id="fixed-in-v139">Fixed in v1.3.9<a class="headerlink" href="#fixed-in-v139" title="Permanent link">&para;</a></h3>
11098
11214
  <ul>
11099
11215
  <li><a href="https://github.com/nautobot/nautobot/issues/1035">#1035</a> - Fix assertion raised if SLAAC Status is missing when creating <code>IPAddress</code> objects</li>
11100
11216
  <li><a href="https://github.com/nautobot/nautobot/issues/1694">#1694</a> - Fixed CablePath not found error when disconnects/delete action performed on a cable</li>
@@ -11107,13 +11223,13 @@
11107
11223
  <li><a href="https://github.com/nautobot/nautobot/issues/2077">#2077</a> - Fixed an error when viewing object detail pages after uninstalling a plugin but still having RelationshipAssociations involving the plugin's models.</li>
11108
11224
  <li><a href="https://github.com/nautobot/nautobot/issues/2081">#2081</a> - Fixed error raised if status connected not found when creating a cable</li>
11109
11225
  </ul>
11110
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
11226
+ <h3 id="documentation-in-v139">Documentation in v1.3.9<a class="headerlink" href="#documentation-in-v139" title="Permanent link">&para;</a></h3>
11111
11227
  <ul>
11112
11228
  <li><a href="https://github.com/nautobot/nautobot/issues/860">#860</a> - Added documentation that adding device component to device type does not modify existing device instances</li>
11113
11229
  <li><a href="https://github.com/nautobot/nautobot/pull/2036">#2036</a> - Fixed outdated UI navigation references in documentation.</li>
11114
11230
  </ul>
11115
11231
  <h2 id="v138-2022-07-11">v1.3.8 (2022-07-11)<a class="headerlink" href="#v138-2022-07-11" title="Permanent link">&para;</a></h2>
11116
- <h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">&para;</a></h3>
11232
+ <h3 id="security-in-v138">Security in v1.3.8<a class="headerlink" href="#security-in-v138" title="Permanent link">&para;</a></h3>
11117
11233
  <div class="admonition important">
11118
11234
  <p class="admonition-title">Important</p>
11119
11235
  <p>CVE in Django versions <code>&gt;= 3.2, &lt; 3.2.14</code>. This update upgrades Django to <code>3.2.14</code>.</p>
@@ -11121,56 +11237,56 @@
11121
11237
  <ul>
11122
11238
  <li><a href="https://github.com/nautobot/nautobot/pull/2004">#2004</a> - Bump Django from 3.2.13 to 3.2.14 for for <a href="https://github.com/advisories/GHSA-p64x-8rxx-wf6q">CVE-2022-34265</a>.</li>
11123
11239
  </ul>
11124
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
11240
+ <h3 id="added-in-v138">Added in v1.3.8<a class="headerlink" href="#added-in-v138" title="Permanent link">&para;</a></h3>
11125
11241
  <ul>
11126
11242
  <li><a href="https://github.com/nautobot/nautobot/issues/1464">#1464</a> - Added "Continue with SSO" link on login page.</li>
11127
11243
  </ul>
11128
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
11244
+ <h3 id="changed-in-v138">Changed in v1.3.8<a class="headerlink" href="#changed-in-v138" title="Permanent link">&para;</a></h3>
11129
11245
  <ul>
11130
11246
  <li><a href="https://github.com/nautobot/nautobot/issues/1407">#1407</a> - Changed custom field export column headings to prefix with <code>cf_</code>.</li>
11131
11247
  <li><a href="https://github.com/nautobot/nautobot/issues/1603">#1603</a> - Changed GraphQL schema generation to call time for GraphQL API.</li>
11132
11248
  </ul>
11133
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
11249
+ <h3 id="fixed-in-v138">Fixed in v1.3.8<a class="headerlink" href="#fixed-in-v138" title="Permanent link">&para;</a></h3>
11134
11250
  <ul>
11135
11251
  <li><a href="https://github.com/nautobot/nautobot/issues/1838">#1838</a> - Fixed job result to show latest not oldest.</li>
11136
11252
  <li><a href="https://github.com/nautobot/nautobot/issues/1874">#1874</a> - Fixed Git repo sync issue with Sentinel with deprecated <code>rq_count</code> check.</li>
11137
11253
  </ul>
11138
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
11254
+ <h3 id="dependencies-in-v138">Dependencies in v1.3.8<a class="headerlink" href="#dependencies-in-v138" title="Permanent link">&para;</a></h3>
11139
11255
  <ul>
11140
11256
  <li><a href="https://github.com/nautobot/nautobot/pull/2020">#2020</a> - Updated <code>celery &gt;= 5.2.7</code>, <code>django-jinja &gt;= 2.10.2</code>, and <code>mysqlclient &gt;= 2.1.1</code> versions in lock file (patch updates).</li>
11141
11257
  </ul>
11142
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
11258
+ <h3 id="housekeeping-in-v138">Housekeeping in v1.3.8<a class="headerlink" href="#housekeeping-in-v138" title="Permanent link">&para;</a></h3>
11143
11259
  <ul>
11144
11260
  <li><a href="https://github.com/nautobot/nautobot/pull/1977">#1977</a> - Updated Renovate config to batch updates (additional PRs included to further refine config).</li>
11145
11261
  </ul>
11146
11262
  <h2 id="v137-2022-06-27">v1.3.7 (2022-06-27)<a class="headerlink" href="#v137-2022-06-27" title="Permanent link">&para;</a></h2>
11147
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
11263
+ <h3 id="added-in-v137">Added in v1.3.7<a class="headerlink" href="#added-in-v137" title="Permanent link">&para;</a></h3>
11148
11264
  <ul>
11149
11265
  <li><a href="https://github.com/nautobot/nautobot/issues/1900">#1900</a> - Added ability to filter Git repository table based on provided contents.</li>
11150
11266
  </ul>
11151
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
11267
+ <h3 id="changed-in-v137">Changed in v1.3.7<a class="headerlink" href="#changed-in-v137" title="Permanent link">&para;</a></h3>
11152
11268
  <ul>
11153
11269
  <li><a href="https://github.com/nautobot/nautobot/issues/1645">#1645</a> - Hide search bar for unauthenticated users if <code>HIDE_RESTRICTED_UI</code> is True</li>
11154
11270
  <li><a href="https://github.com/nautobot/nautobot/pull/1946">#1946</a> - Increase character limit on <code>FileAttachment.mimetype</code> to 255 to allow for all mime types to be used.</li>
11155
11271
  </ul>
11156
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
11272
+ <h3 id="fixed-in-v137">Fixed in v1.3.7<a class="headerlink" href="#fixed-in-v137" title="Permanent link">&para;</a></h3>
11157
11273
  <ul>
11158
11274
  <li><a href="https://github.com/nautobot/nautobot/issues/1677">#1677</a> - Fixed default values of custom fields on device components (such as Interface) not being applied upon Device creation.</li>
11159
11275
  <li><a href="https://github.com/nautobot/nautobot/issues/1769">#1769</a> - Resolve missing menu 'General / Installed Plugins' in navbar if <code>HIDE_RESTRICTED_UI</code> is activated</li>
11160
11276
  <li><a href="https://github.com/nautobot/nautobot/issues/1836">#1836</a> - Fixed incorrect pre-population of custom field filters in table views.</li>
11161
11277
  <li><a href="https://github.com/nautobot/nautobot/issues/1870">#1870</a> - Fixed cable <code>_abs_length</code> validation error.</li>
11162
11278
  </ul>
11163
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
11279
+ <h3 id="documentation-in-v137">Documentation in v1.3.7<a class="headerlink" href="#documentation-in-v137" title="Permanent link">&para;</a></h3>
11164
11280
  <ul>
11165
11281
  <li><a href="https://github.com/nautobot/nautobot/pull/1941">#1941</a> - Fixed uWSGI config example, development environment links in Docker section of docs.</li>
11166
11282
  </ul>
11167
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
11283
+ <h3 id="housekeeping-in-v137">Housekeeping in v1.3.7<a class="headerlink" href="#housekeeping-in-v137" title="Permanent link">&para;</a></h3>
11168
11284
  <ul>
11169
11285
  <li><a href="https://github.com/nautobot/nautobot/pull/1856">#1896</a> - Added Renovate Bot configuration, targeting <code>next</code>.</li>
11170
11286
  <li><a href="https://github.com/nautobot/nautobot/issues/1948">#1948</a> - Switched Renovate Bot configuration to bump lock-file only on patch releases instead of bumping in <code>pyproject.toml</code>.</li>
11171
11287
  </ul>
11172
11288
  <h2 id="v136-2022-06-13">v1.3.6 (2022-06-13)<a class="headerlink" href="#v136-2022-06-13" title="Permanent link">&para;</a></h2>
11173
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
11289
+ <h3 id="fixed-in-v136">Fixed in v1.3.6<a class="headerlink" href="#fixed-in-v136" title="Permanent link">&para;</a></h3>
11174
11290
  <ul>
11175
11291
  <li><a href="https://github.com/nautobot/nautobot/issues/1409">#1409</a> - Fixed page title on device status (NAPALM) page template.</li>
11176
11292
  <li><a href="https://github.com/nautobot/nautobot/issues/1524">#1524</a> - Fixed valid "None" option removed from search field upon display.</li>
@@ -11181,20 +11297,20 @@
11181
11297
  <li><a href="https://github.com/nautobot/nautobot/issues/1841">#1841</a> - Fixed incorrect display of boolean values in Git Repository view.</li>
11182
11298
  <li><a href="https://github.com/nautobot/nautobot/pull/1850">#1850</a> - Added <code>{{block.super}}</code> to negate the override from the js block in rack.html. This change fixed the issue of unable to navigate away from rack changelog tab.</li>
11183
11299
  </ul>
11184
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
11300
+ <h3 id="documentation-in-v136">Documentation in v1.3.6<a class="headerlink" href="#documentation-in-v136" title="Permanent link">&para;</a></h3>
11185
11301
  <ul>
11186
11302
  <li><a href="https://github.com/nautobot/nautobot/issues/207">#207</a> - Update permissions documentation to add assigning permissions section.</li>
11187
11303
  <li><a href="https://github.com/nautobot/nautobot/issues/1763">#1763</a> - Job testing documentation updated to include details around enabling jobs. Job logs database added to <code>TransactionTestCase</code>.</li>
11188
11304
  <li><a href="https://github.com/nautobot/nautobot/pull/1856">#1856</a> - Updated links to Slack community.</li>
11189
11305
  <li><a href="https://github.com/nautobot/nautobot/pull/1868">#1868</a> - Updated link to advanced Docker compose use in getting started guide.</li>
11190
11306
  </ul>
11191
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
11307
+ <h3 id="housekeeping-in-v136">Housekeeping in v1.3.6<a class="headerlink" href="#housekeeping-in-v136" title="Permanent link">&para;</a></h3>
11192
11308
  <ul>
11193
11309
  <li><a href="https://github.com/nautobot/nautobot/pull/1829">#1829</a> - Change Docker build GitHub Action to cache with matrix awareness.</li>
11194
11310
  <li><a href="https://github.com/nautobot/nautobot/pull/1848">#1848</a> - Fix Poetry cache issue in CI causing version tests to fail in <code>next</code>.</li>
11195
11311
  </ul>
11196
11312
  <h2 id="v135-2022-05-30">v1.3.5 (2022-05-30)<a class="headerlink" href="#v135-2022-05-30" title="Permanent link">&para;</a></h2>
11197
- <h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">&para;</a></h3>
11313
+ <h3 id="security-in-v135">Security in v1.3.5<a class="headerlink" href="#security-in-v135" title="Permanent link">&para;</a></h3>
11198
11314
  <div class="admonition attention">
11199
11315
  <p class="admonition-title">Attention</p>
11200
11316
  <p><code>PyJWT</code> - Nautobot does not directly depend on <code>PyJWT</code> so your upgrading Nautobot via <code>pip</code> or other package management tools may not pick up the patched version (we are not pinning this dependency). However some tools support an "eager" upgrade policy as an option. For example, <code>pip install --upgrade --upgrade-strategy eager nautobot</code> will upgrade Nautobot and all it's dependencies to their latest compatible version. This may not work for all use cases so it may be safer to update Nautobot then perform <code>pip install --upgrade PyJWT</code>.</p>
@@ -11203,7 +11319,7 @@
11203
11319
  <ul>
11204
11320
  <li><a href="https://github.com/nautobot/nautobot/pull/1808">#1808</a> - Bump PyJWT from 2.3.0 to 2.4.0</li>
11205
11321
  </ul>
11206
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
11322
+ <h3 id="fixed-in-v135">Fixed in v1.3.5<a class="headerlink" href="#fixed-in-v135" title="Permanent link">&para;</a></h3>
11207
11323
  <ul>
11208
11324
  <li><a href="https://github.com/nautobot/nautobot/issues/895">#895</a> - Fixed validation when creating <code>Interface</code> and <code>VMInterface</code> objects via the REST API while specifying <code>untagged_vlan</code> without <code>mode</code> also set in the payload. A 400 error will now be raised as expected.</li>
11209
11325
  <li><a href="https://github.com/nautobot/nautobot/issues/1289">#1289</a> - Fixed issue where job result live pagination would reset to page 1 on refresh. The currently selected page will now persist until the job run completes.</li>
@@ -11215,28 +11331,28 @@
11215
11331
  <li><a href="https://github.com/nautobot/nautobot/issues/1772">#1772</a> - Fix RelationshipAssociationSerializer not triggering model clean method.</li>
11216
11332
  <li><a href="https://github.com/nautobot/nautobot/issues/1784">#1784</a> - Fix <code>nautobot-server dumpdata</code> not working due to <code>django_rq</code> update. Updated documentation.</li>
11217
11333
  </ul>
11218
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
11334
+ <h3 id="documentation-in-v135">Documentation in v1.3.5<a class="headerlink" href="#documentation-in-v135" title="Permanent link">&para;</a></h3>
11219
11335
  <ul>
11220
11336
  <li><a href="https://github.com/nautobot/nautobot/issues/1606">#1606</a> - Added best practices for working with FilterSet classes to developer documentation.</li>
11221
11337
  <li><a href="https://github.com/nautobot/nautobot/issues/1796">#1796</a> - Added documentation for using Git Repositories behind/via proxies.</li>
11222
11338
  </ul>
11223
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
11339
+ <h3 id="housekeeping-in-v135">Housekeeping in v1.3.5<a class="headerlink" href="#housekeeping-in-v135" title="Permanent link">&para;</a></h3>
11224
11340
  <ul>
11225
11341
  <li><a href="https://github.com/nautobot/nautobot/pull/1805">#1805</a> - Fix git pre-commit hook incompatibility with dash shell and add warning on skipped tests.</li>
11226
11342
  <li><a href="https://github.com/nautobot/nautobot/pull/1811">#1811</a> - Added developer Docker container for running mkdocs instead of locally.</li>
11227
11343
  <li><a href="https://github.com/nautobot/nautobot/pull/1818">#1818</a> - Changed README.md to link to correct build status workflows.</li>
11228
11344
  </ul>
11229
11345
  <h2 id="v134-2022-05-16">v1.3.4 (2022-05-16)<a class="headerlink" href="#v134-2022-05-16" title="Permanent link">&para;</a></h2>
11230
- <h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">&para;</a></h3>
11346
+ <h3 id="security-in-v134">Security in v1.3.4<a class="headerlink" href="#security-in-v134" title="Permanent link">&para;</a></h3>
11231
11347
  <ul>
11232
11348
  <li><a href="https://github.com/nautobot/nautobot/issues/1715">#1715</a> - Add <a href="../user-guide/administration/configuration/settings.html#sanitizer_patterns"><code>SANITIZER_PATTERNS</code> optional setting</a> and <code>nautobot.utilities.logging.sanitize</code> function and use it for redaction of Job log entries.</li>
11233
11349
  </ul>
11234
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
11350
+ <h3 id="added-in-v134">Added in v1.3.4<a class="headerlink" href="#added-in-v134" title="Permanent link">&para;</a></h3>
11235
11351
  <ul>
11236
11352
  <li><a href="https://github.com/nautobot/nautobot/pull/1766">#1766</a> - Added configuration for downloaded filename branding.</li>
11237
11353
  <li><a href="https://github.com/nautobot/nautobot/pull/1752">#1752</a> - Added a new <code>SearchFilter</code> that is now used on all core filtersets to provide the <code>q=</code> search parameter for basic searching in list view of objects.</li>
11238
11354
  </ul>
11239
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
11355
+ <h3 id="fixed-in-v134">Fixed in v1.3.4<a class="headerlink" href="#fixed-in-v134" title="Permanent link">&para;</a></h3>
11240
11356
  <ul>
11241
11357
  <li><a href="https://github.com/nautobot/nautobot/issues/1263">#1263</a> - Rack device image toggle added back to detail UI.</li>
11242
11358
  <li><a href="https://github.com/nautobot/nautobot/issues/1449">#1449</a> - Fixed a performance bug in <code>/api/dcim/devices/</code> and <code>/api/virtualization/virtual-machines/</code> relating to configuration contexts.</li>
@@ -11244,23 +11360,23 @@
11244
11360
  <li><a href="https://github.com/nautobot/nautobot/issues/1712">#1712</a> - Fixed circuit termination detail view getting 500 response when it's a provider network.</li>
11245
11361
  <li><a href="https://github.com/nautobot/nautobot/issues/1755">#1755</a> - Fixed "Select All" helper widget from taking full UI height.</li>
11246
11362
  </ul>
11247
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
11363
+ <h3 id="documentation-in-v134">Documentation in v1.3.4<a class="headerlink" href="#documentation-in-v134" title="Permanent link">&para;</a></h3>
11248
11364
  <ul>
11249
11365
  <li><a href="https://github.com/nautobot/nautobot/issues/1744">#1744</a> - Updated REST API token provisioning docs to include added in version.</li>
11250
11366
  <li><a href="https://github.com/nautobot/nautobot/pull/1751">#1751</a> - Updated secrets documentation advisory notes.</li>
11251
11367
  <li><a href="https://github.com/nautobot/nautobot/pull/1761">#1761</a> - Fixed typo in upgrading documentation.</li>
11252
11368
  </ul>
11253
11369
  <h2 id="v133-2022-05-02">v1.3.3 (2022-05-02)<a class="headerlink" href="#v133-2022-05-02" title="Permanent link">&para;</a></h2>
11254
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
11370
+ <h3 id="added-in-v133">Added in v1.3.3<a class="headerlink" href="#added-in-v133" title="Permanent link">&para;</a></h3>
11255
11371
  <ul>
11256
11372
  <li><a href="https://github.com/nautobot/nautobot/issues/1481">#1481</a> - Pre-Generate Docs, Add Support for Plugin-Provided Docs</li>
11257
11373
  <li><a href="https://github.com/nautobot/nautobot/pull/1617">#1617</a> - Added <code>run_job_for_testing</code> helper method for testing Jobs in plugins, internally.</li>
11258
11374
  </ul>
11259
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
11375
+ <h3 id="changed-in-v133">Changed in v1.3.3<a class="headerlink" href="#changed-in-v133" title="Permanent link">&para;</a></h3>
11260
11376
  <ul>
11261
11377
  <li><a href="https://github.com/nautobot/nautobot/issues/1481">#1481</a> - Docs link in footer now opens link to bundled documentation instead of Read the Docs.</li>
11262
11378
  </ul>
11263
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
11379
+ <h3 id="fixed-in-v133">Fixed in v1.3.3<a class="headerlink" href="#fixed-in-v133" title="Permanent link">&para;</a></h3>
11264
11380
  <ul>
11265
11381
  <li><a href="https://github.com/nautobot/nautobot/issues/473">#473</a> - Fix <code>get_return_url</code> for plugin reverse URLs.</li>
11266
11382
  <li><a href="https://github.com/nautobot/nautobot/issues/1430">#1430</a> - Fix not being able to print Job results, related IPs.</li>
@@ -11273,21 +11389,21 @@
11273
11389
  <li><a href="https://github.com/nautobot/nautobot/pull/1701">#1701</a> - Fix static file serving of drf-spectacular-sidecar assets when using alternative <code>STATICFILES_STORAGE</code> settings.</li>
11274
11390
  <li><a href="https://github.com/nautobot/nautobot/pull/1705">#1705</a> - Fix <code>NestedVMInterfaceSerializer</code> referencing the wrong model.</li>
11275
11391
  </ul>
11276
- <h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">&para;</a></h3>
11392
+ <h3 id="dependencies-in-v133">Dependencies in v1.3.3<a class="headerlink" href="#dependencies-in-v133" title="Permanent link">&para;</a></h3>
11277
11393
  <ul>
11278
11394
  <li><a href="https://github.com/nautobot/nautobot/pull/1680">#1680</a> - Bump netutils dependency to 1.1.0.</li>
11279
11395
  <li><a href="https://github.com/nautobot/nautobot/pull/1700">#1700</a> - Revert vendoring <code>drf-spectacular</code>.</li>
11280
11396
  </ul>
11281
- <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
11397
+ <h3 id="documentation-in-v133">Documentation in v1.3.3<a class="headerlink" href="#documentation-in-v133" title="Permanent link">&para;</a></h3>
11282
11398
  <ul>
11283
11399
  <li><a href="https://github.com/nautobot/nautobot/pull/1697">#1697</a> - Fix docs incorrectly stating Celery Redis URLs defaulting from CACHES.</li>
11284
11400
  </ul>
11285
- <h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">&para;</a></h3>
11401
+ <h3 id="housekeeping-in-v133">Housekeeping in v1.3.3<a class="headerlink" href="#housekeeping-in-v133" title="Permanent link">&para;</a></h3>
11286
11402
  <ul>
11287
11403
  <li><a href="https://github.com/nautobot/nautobot/issues/1685">#1685</a> - Fix Hadolint issue of <code>docker/Dockerfile</code>.</li>
11288
11404
  </ul>
11289
11405
  <h2 id="v132-2022-04-22">v1.3.2 (2022-04-22)<a class="headerlink" href="#v132-2022-04-22" title="Permanent link">&para;</a></h2>
11290
- <h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">&para;</a></h3>
11406
+ <h3 id="security-in-v132">Security in v1.3.2<a class="headerlink" href="#security-in-v132" title="Permanent link">&para;</a></h3>
11291
11407
  <div class="admonition important">
11292
11408
  <p class="admonition-title">Important</p>
11293
11409
  <p>Critical CVEs in Django versions <code>&gt;= 3.2, &lt; 3.2.13</code>. This update upgrades Django to <code>3.2.13</code>.</p>
@@ -11295,41 +11411,41 @@
11295
11411
  <ul>
11296
11412
  <li><a href="https://github.com/nautobot/nautobot/pull/1686">#1686</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-w24h-v9qh-8gxj">CVE-2022-28347</a> and <a href="https://github.com/advisories/GHSA-2gwj-7jmv-h26r">CVE-2022-28346</a> to require Django &gt;=3.2.13.</li>
11297
11413
  </ul>
11298
- <h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">&para;</a></h3>
11414
+ <h3 id="added-in-v132">Added in v1.3.2<a class="headerlink" href="#added-in-v132" title="Permanent link">&para;</a></h3>
11299
11415
  <ul>
11300
11416
  <li><a href="https://github.com/nautobot/nautobot/pull/1219">#1219</a> - Add ARM64 support (alpha).</li>
11301
11417
  </ul>
11302
- <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
11418
+ <h3 id="changed-in-v132">Changed in v1.3.2<a class="headerlink" href="#changed-in-v132" title="Permanent link">&para;</a></h3>
11303
11419
  <ul>
11304
11420
  <li><a href="https://github.com/nautobot/nautobot/pull/1670">#1670</a> - Configure drf-spectacular schema to more closely match drf-yasg (related to: <a href="https://github.com/nautobot/nautobot-ansible/pull/135">nautobot-ansible#135</a>).</li>
11305
11421
  </ul>
11306
- <h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">&para;</a></h3>
11422
+ <h3 id="fixed-in-v132">Fixed in v1.3.2<a class="headerlink" href="#fixed-in-v132" title="Permanent link">&para;</a></h3>
11307
11423
  <ul>
11308
11424
  <li><a href="https://github.com/nautobot/nautobot/issues/1682">#1682</a> - Fixed Nautobot health checks failing if Redis Sentinel password is required.</li>
11309
11425
  </ul>
11310
- <h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">&para;</a></h3>
11426
+ <h3 id="documentation-in-v132">Documentation in v1.3.2<a class="headerlink" href="#documentation-in-v132" title="Permanent link">&para;</a></h3>
11311
11427
  <ul>
11312
11428
  <li><a href="https://github.com/nautobot/nautobot/issues/1426">#1426</a> - Added plugin development documentation around using ObjectListView.</li>
11313
11429
  <li><a href="https://github.com/nautobot/nautobot/pull/1659">#1659</a> - Added some missing test/lint commands to the <a href="../development/core/getting-started.html">development getting-started</a> documentation, and made <code>invoke cli</code> parameters match <code>invoke start/stop</code>.</li>
11314
11430
  <li><a href="https://github.com/nautobot/nautobot/pull/1666">#1666</a> - Fixed errors in documentation with incomplete import statements.</li>
11315
11431
  <li><a href="https://github.com/nautobot/nautobot/issues/1667">#1667</a> - Updated README.md screenshots.</li>
11316
11432
  </ul>
11317
- <h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">&para;</a></h3>
11433
+ <h3 id="housekeeping-in-v132">Housekeeping in v1.3.2<a class="headerlink" href="#housekeeping-in-v132" title="Permanent link">&para;</a></h3>
11318
11434
  <ul>
11319
11435
  <li><a href="https://github.com/nautobot/nautobot/pull/1674">#1674</a> - Added flag in Dockerfile, tasks.py to enable Poetry install parallelization.</li>
11320
11436
  </ul>
11321
11437
  <h2 id="v131-2022-04-19">v1.3.1 (2022-04-19)<a class="headerlink" href="#v131-2022-04-19" title="Permanent link">&para;</a></h2>
11322
- <h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">&para;</a></h3>
11438
+ <h3 id="changed-in-v131">Changed in v1.3.1<a class="headerlink" href="#changed-in-v131" title="Permanent link">&para;</a></h3>
11323
11439
  <ul>
11324
11440
  <li><a href="https://github.com/nautobot/nautobot/pull/1647">#1647</a> - Changed class inheritance of JobViewSet to be simpler and more self-consistent.</li>
11325
11441
  </ul>
11326
- <h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">&para;</a></h3>
11442
+ <h3 id="fixed-in-v131">Fixed in v1.3.1<a class="headerlink" href="#fixed-in-v131" title="Permanent link">&para;</a></h3>
11327
11443
  <ul>
11328
11444
  <li><a href="https://github.com/nautobot/nautobot/issues/1278">#1278</a> - Fixed several different errors that could be raised when working with RelationshipAssociations.</li>
11329
11445
  <li><a href="https://github.com/nautobot/nautobot/issues/1662">#1662</a> - Fixed <code>nat_outside</code> prefetch on Device API view, and displaying multiple <code>nat_outside</code> entries on VM detail view.</li>
11330
11446
  </ul>
11331
11447
  <h2 id="v130-2022-04-18">v1.3.0 (2022-04-18)<a class="headerlink" href="#v130-2022-04-18" title="Permanent link">&para;</a></h2>
11332
- <h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">&para;</a></h3>
11448
+ <h3 id="added-in-v130">Added in v1.3.0<a class="headerlink" href="#added-in-v130" title="Permanent link">&para;</a></h3>
11333
11449
  <ul>
11334
11450
  <li><a href="https://github.com/nautobot/nautobot/issues/630">#630</a> - Added support for multiple NAT outside IP addresses.</li>
11335
11451
  <li><a href="https://github.com/nautobot/nautobot/issues/872">#872</a> - Added ability to scope tags to content types.</li>
@@ -11340,7 +11456,7 @@
11340
11456
  <li><a href="https://github.com/nautobot/nautobot/issues/1525">#1525</a> - Implemented support for regex lookup expressions for <code>BaseFilterSet</code> filter fields in the API.</li>
11341
11457
  <li><a href="https://github.com/nautobot/nautobot/issues/1638">#1638</a> - Implemented numerous indexes on models natural lookup fields as well as some index togethers for <code>ObjectChange</code>.</li>
11342
11458
  </ul>
11343
- <h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">&para;</a></h3>
11459
+ <h3 id="changed-in-v130">Changed in v1.3.0<a class="headerlink" href="#changed-in-v130" title="Permanent link">&para;</a></h3>
11344
11460
  <ul>
11345
11461
  <li><a href="https://github.com/nautobot/nautobot/issues/595">#595</a> - Migrated from <code>drf-yasg</code> (OpenAPI 2.0) to <code>drf-spectacular</code> (OpenAPI 3.0) for REST API interactive Swagger documentation.</li>
11346
11462
  <li><a href="https://github.com/nautobot/nautobot/issues/792">#792</a> - Poetry-installed dependencies are now identical between <code>dev</code> and <code>final</code> images.</li>
@@ -11349,7 +11465,7 @@
11349
11465
  <li><a href="https://github.com/nautobot/nautobot/issues/1502">#1502</a> Finalized Dynamic Groups implementation for 1.3 release (including documentation and integration tests).</li>
11350
11466
  <li><a href="https://github.com/nautobot/nautobot/pull/1521">#1521</a> - Consolidated Job REST API endpoints, taking advantage of REST API versioning.</li>
11351
11467
  </ul>
11352
- <h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">&para;</a></h3>
11468
+ <h3 id="fixed-in-v130">Fixed in v1.3.0<a class="headerlink" href="#fixed-in-v130" title="Permanent link">&para;</a></h3>
11353
11469
  <ul>
11354
11470
  <li><a href="https://github.com/nautobot/nautobot/issues/794">#794</a> - Fixed health check issue when using Redis Sentinel for caching with Cacheops. The Redis health check backend is now aware of Redis Sentinel.</li>
11355
11471
  <li><a href="https://github.com/nautobot/nautobot/issues/1311">#1311</a> - Fixed where it was not possible to set the rack height to <code>0</code> when performing a bulk edit of device types.</li>
@@ -11362,20 +11478,20 @@
11362
11478
  <li><a href="https://github.com/nautobot/nautobot/pull/1632">#1632</a> - Fixed issue accessing request attributes when request may be None.</li>
11363
11479
  <li><a href="https://github.com/nautobot/nautobot/pull/1637">#1637</a> - Fixed warnings logged during REST API schema generation.</li>
11364
11480
  </ul>
11365
- <h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">&para;</a></h3>
11481
+ <h3 id="documentation-in-v130">Documentation in v1.3.0<a class="headerlink" href="#documentation-in-v130" title="Permanent link">&para;</a></h3>
11366
11482
  <ul>
11367
11483
  <li><a href="https://github.com/nautobot/nautobot/issues/814">#814</a> - Extended documentation for configuring Celery for use Redis Sentinel clustering.</li>
11368
11484
  <li><a href="https://github.com/nautobot/nautobot/issues/1479">#1479</a> - Updated Jobs documentation regarding the concrete Job database model.</li>
11369
11485
  <li><a href="https://github.com/nautobot/nautobot/issues/1556">#1556</a> - Cleaned up typos and formatting issues across docs, few code spots.</li>
11370
11486
  </ul>
11371
- <h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">&para;</a></h3>
11487
+ <h3 id="housekeeping-in-v130">Housekeeping in v1.3.0<a class="headerlink" href="#housekeeping-in-v130" title="Permanent link">&para;</a></h3>
11372
11488
  <ul>
11373
11489
  <li><a href="https://github.com/nautobot/nautobot/issues/1385">#1385</a> - Added MarkdownLint validation and enforcement to CI.</li>
11374
11490
  <li><a href="https://github.com/nautobot/nautobot/issues/1417">#1417</a> - CI scope improvements for streamlined performance.</li>
11375
11491
  <li><a href="https://github.com/nautobot/nautobot/issues/1516">#1516</a> - Fixed MySQL unit tests running in Docker environment and revised recommended MySQL encoding settings.</li>
11376
11492
  </ul>
11377
11493
  <h2 id="v130b1-2022-03-11">v1.3.0b1 (2022-03-11)<a class="headerlink" href="#v130b1-2022-03-11" title="Permanent link">&para;</a></h2>
11378
- <h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">&para;</a></h3>
11494
+ <h3 id="added-in-v130b1">Added in v1.3.0b1<a class="headerlink" href="#added-in-v130b1" title="Permanent link">&para;</a></h3>
11379
11495
  <ul>
11380
11496
  <li><a href="https://github.com/nautobot/nautobot/issues/5">#5</a> - Added the option to perform a "dry run" of Git repository syncing.</li>
11381
11497
  <li><a href="https://github.com/nautobot/nautobot/issues/330">#330</a> - Added pre-/post-change data to WebHooks leveraging snapshots.</li>
@@ -11396,7 +11512,7 @@
11396
11512
  <li><a href="https://github.com/nautobot/nautobot/pull/1457">#1457</a> - Added new Jobs REST API, added control logic to use JobModel rather than JobClass where appropriate; improved permissions enforcement for Jobs.</li>
11397
11513
  <li><a href="https://github.com/nautobot/nautobot/issues/1470">#1470</a> - Added plugin framework for extending FilterSets and Filter Forms.</li>
11398
11514
  </ul>
11399
- <h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">&para;</a></h3>
11515
+ <h3 id="changed-in-v130b1">Changed in v1.3.0b1<a class="headerlink" href="#changed-in-v130b1" title="Permanent link">&para;</a></h3>
11400
11516
  <ul>
11401
11517
  <li><a href="https://github.com/nautobot/nautobot/issues/368">#368</a> - Added <code>nautobot.extras.forms.NautobotModelForm</code> and <code>nautobot.extras.filters.NautobotFilterSet</code> base classes. All form classes which inherited from all three of (<code>BootstrapMixin</code>, <code>CustomFieldModelForm</code>, and <code>RelationshipModelForm</code>) now inherit from <code>NautobotModelForm</code> as their base class. All filterset classes which inherited from all three of (<code>BaseFilterSet</code>, <code>CreatedUpdatedFilterSet</code>, and <code>CustomFieldModelFilterSet</code>) now inherit from <code>NautobotFilterSet</code> as their base class.</li>
11402
11518
  <li><a href="https://github.com/nautobot/nautobot/issues/591">#591</a> - All uses of <code>type()</code> are now refactored to use <code>isinstance()</code> where applicable.</li>
@@ -11407,15 +11523,15 @@
11407
11523
  <li><a href="https://github.com/nautobot/nautobot/pull/1252">#1252</a> - As Python 3.6 has reached end-of-life, the default Docker images published for this release (i.e. <code>1.3.0</code>, <code>stable</code>, <code>latest</code>) have been updated to use Python 3.7 instead.</li>
11408
11524
  <li><a href="https://github.com/nautobot/nautobot/pull/1367">#1367</a> - Extracted Job-related models to submodule <code>nautobot.extras.models.jobs</code>; refined Job testing best practices.</li>
11409
11525
  </ul>
11410
- <h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">&para;</a></h3>
11526
+ <h3 id="removed-in-v130b1">Removed in v1.3.0b1<a class="headerlink" href="#removed-in-v130b1" title="Permanent link">&para;</a></h3>
11411
11527
  <ul>
11412
11528
  <li><a href="https://github.com/nautobot/nautobot/issues/1268">#1268</a> - Drop Support for Python 3.6.</li>
11413
11529
  </ul>
11414
- <h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">&para;</a></h3>
11530
+ <h3 id="fixed-in-v130b1">Fixed in v1.3.0b1<a class="headerlink" href="#fixed-in-v130b1" title="Permanent link">&para;</a></h3>
11415
11531
  <ul>
11416
11532
  <li><a href="https://github.com/nautobot/nautobot/issues/1440">#1440</a> - Handle models missing serializer methods, dependent from adding pre-/post-change data to WebHooks.</li>
11417
11533
  </ul>
11418
- <h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">&para;</a></h3>
11534
+ <h3 id="dependencies-in-v130b1">Dependencies in v1.3.0b1<a class="headerlink" href="#dependencies-in-v130b1" title="Permanent link">&para;</a></h3>
11419
11535
  <ul>
11420
11536
  <li><a href="https://github.com/nautobot/nautobot/issues/1277">#1277</a> - Updated Django dependency to 3.2.X LTS.</li>
11421
11537
  <li><a href="https://github.com/nautobot/nautobot/pull/1307">#1307</a> - Updated various Python package dependencies to their latest compatible versions.</li>
@@ -11423,7 +11539,7 @@
11423
11539
  <li><a href="https://github.com/nautobot/nautobot/issues/1391">#1391</a> - Updated Jinja2 dependency to 3.0.X.</li>
11424
11540
  <li><a href="https://github.com/nautobot/nautobot/issues/1435">#1435</a> - Update to Selenium 4.X.</li>
11425
11541
  </ul>
11426
- <h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">&para;</a></h3>
11542
+ <h3 id="housekeeping-in-v130b1">Housekeeping in v1.3.0b1<a class="headerlink" href="#housekeeping-in-v130b1" title="Permanent link">&para;</a></h3>
11427
11543
  <ul>
11428
11544
  <li><a href="https://github.com/nautobot/nautobot/issues/443">#443</a> - The provided "Dummy Plugin" has been renamed to "Example Plugin".</li>
11429
11545
  <li><a href="https://github.com/nautobot/nautobot/pull/1314">#1314</a> - Updated various development-only Python package dependencies to their latest compatible versions.</li>
@@ -11524,7 +11640,7 @@
11524
11640
 
11525
11641
 
11526
11642
  <a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
11527
- <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>
11643
+ <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>
11528
11644
  </a>
11529
11645
 
11530
11646
 
@@ -11532,7 +11648,7 @@
11532
11648
 
11533
11649
 
11534
11650
  <a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
11535
- <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>
11651
+ <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>
11536
11652
  </a>
11537
11653
 
11538
11654
 
@@ -11540,7 +11656,7 @@
11540
11656
 
11541
11657
 
11542
11658
  <a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
11543
- <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>
11659
+ <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>
11544
11660
  </a>
11545
11661
 
11546
11662
 
@@ -11548,7 +11664,7 @@
11548
11664
 
11549
11665
 
11550
11666
  <a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
11551
- <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>
11667
+ <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>
11552
11668
  </a>
11553
11669
 
11554
11670
 
@@ -11556,7 +11672,7 @@
11556
11672
 
11557
11673
 
11558
11674
  <a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
11559
- <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>
11675
+ <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>
11560
11676
  </a>
11561
11677
 
11562
11678
  </div>
@@ -11571,10 +11687,10 @@
11571
11687
  </div>
11572
11688
 
11573
11689
 
11574
- <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>
11690
+ <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>
11575
11691
 
11576
11692
 
11577
- <script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
11693
+ <script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
11578
11694
 
11579
11695
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
11580
11696