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

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

Potentially problematic release.


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

Files changed (601) 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/views.py +3 -3
  22. nautobot/cloud/api/views.py +6 -10
  23. nautobot/cloud/models.py +1 -1
  24. nautobot/cloud/views.py +0 -16
  25. nautobot/core/api/constants.py +11 -0
  26. nautobot/core/api/fields.py +5 -5
  27. nautobot/core/api/filter_backends.py +3 -9
  28. nautobot/core/api/schema.py +13 -2
  29. nautobot/core/api/serializers.py +40 -34
  30. nautobot/core/api/views.py +56 -4
  31. nautobot/core/celery/log.py +4 -4
  32. nautobot/core/celery/schedulers.py +2 -2
  33. nautobot/core/choices.py +2 -2
  34. nautobot/core/events/__init__.py +3 -3
  35. nautobot/core/filters.py +67 -35
  36. nautobot/core/forms/__init__.py +19 -19
  37. nautobot/core/forms/fields.py +14 -11
  38. nautobot/core/forms/forms.py +33 -2
  39. nautobot/core/graphql/types.py +1 -1
  40. nautobot/core/jobs/__init__.py +28 -7
  41. nautobot/core/jobs/bulk_actions.py +285 -0
  42. nautobot/core/jobs/cleanup.py +48 -12
  43. nautobot/core/jobs/groups.py +1 -1
  44. nautobot/core/management/commands/validate_models.py +1 -1
  45. nautobot/core/models/__init__.py +3 -1
  46. nautobot/core/models/query_functions.py +2 -2
  47. nautobot/core/models/tree_queries.py +6 -3
  48. nautobot/core/settings.py +29 -2
  49. nautobot/core/settings.yaml +21 -0
  50. nautobot/core/tables.py +79 -61
  51. nautobot/core/templates/about.html +67 -0
  52. nautobot/core/templates/inc/media.html +3 -0
  53. nautobot/core/templates/inc/nav_menu.html +1 -0
  54. nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
  55. nautobot/core/templates/inc/tenant_table_row.html +11 -0
  56. nautobot/core/templates/nautobot_config.py.j2 +13 -0
  57. nautobot/core/templates/search.html +7 -0
  58. nautobot/core/templates/utilities/render_jinja2.html +1 -1
  59. nautobot/core/templates/utilities/templatetags/tag.html +1 -1
  60. nautobot/core/templates/utilities/theme_preview.html +7 -0
  61. nautobot/core/templatetags/helpers.py +11 -2
  62. nautobot/core/testing/__init__.py +8 -8
  63. nautobot/core/testing/api.py +170 -15
  64. nautobot/core/testing/filters.py +45 -10
  65. nautobot/core/testing/forms.py +2 -0
  66. nautobot/core/testing/integration.py +86 -4
  67. nautobot/core/testing/mixins.py +7 -2
  68. nautobot/core/testing/views.py +44 -29
  69. nautobot/core/tests/integration/test_app_home.py +0 -1
  70. nautobot/core/tests/integration/test_app_navbar.py +0 -1
  71. nautobot/core/tests/integration/test_filters.py +0 -2
  72. nautobot/core/tests/integration/test_home.py +0 -1
  73. nautobot/core/tests/integration/test_navbar.py +0 -1
  74. nautobot/core/tests/integration/test_view_authentication.py +1 -0
  75. nautobot/core/tests/runner.py +1 -1
  76. nautobot/core/tests/test_api.py +98 -1
  77. nautobot/core/tests/test_csv.py +25 -3
  78. nautobot/core/tests/test_filters.py +209 -246
  79. nautobot/core/tests/test_forms.py +1 -0
  80. nautobot/core/tests/test_jobs.py +460 -1
  81. nautobot/core/tests/test_models.py +9 -0
  82. nautobot/core/tests/test_settings_schema.py +7 -0
  83. nautobot/core/tests/test_tables.py +100 -0
  84. nautobot/core/tests/test_utils.py +63 -1
  85. nautobot/core/tests/test_views.py +30 -3
  86. nautobot/core/ui/nav.py +1 -0
  87. nautobot/core/ui/object_detail.py +15 -1
  88. nautobot/core/urls.py +11 -0
  89. nautobot/core/utils/lookup.py +11 -8
  90. nautobot/core/utils/querysets.py +64 -0
  91. nautobot/core/utils/requests.py +24 -9
  92. nautobot/core/views/__init__.py +42 -0
  93. nautobot/core/views/generic.py +131 -197
  94. nautobot/core/views/mixins.py +126 -38
  95. nautobot/core/views/renderers.py +6 -6
  96. nautobot/dcim/api/serializers.py +56 -64
  97. nautobot/dcim/api/views.py +47 -113
  98. nautobot/dcim/constants.py +6 -13
  99. nautobot/dcim/factory.py +6 -1
  100. nautobot/dcim/filters/__init__.py +31 -2
  101. nautobot/dcim/forms.py +36 -17
  102. nautobot/dcim/graphql/types.py +2 -2
  103. nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
  104. nautobot/dcim/models/__init__.py +1 -1
  105. nautobot/dcim/models/device_component_templates.py +2 -2
  106. nautobot/dcim/models/device_components.py +22 -20
  107. nautobot/dcim/models/devices.py +10 -1
  108. nautobot/dcim/models/locations.py +3 -3
  109. nautobot/dcim/models/power.py +6 -5
  110. nautobot/dcim/models/racks.py +4 -4
  111. nautobot/dcim/tables/__init__.py +3 -3
  112. nautobot/dcim/tables/devices.py +7 -5
  113. nautobot/dcim/tables/devicetypes.py +2 -2
  114. nautobot/dcim/tables/racks.py +1 -1
  115. nautobot/dcim/templates/dcim/controller_create.html +1 -7
  116. nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
  117. nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
  118. nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
  119. nautobot/dcim/templates/dcim/device.html +1 -9
  120. nautobot/dcim/templates/dcim/device_edit.html +36 -37
  121. nautobot/dcim/templates/dcim/location.html +1 -9
  122. nautobot/dcim/templates/dcim/location_edit.html +1 -7
  123. nautobot/dcim/templates/dcim/rack.html +1 -9
  124. nautobot/dcim/templates/dcim/rack_edit.html +1 -7
  125. nautobot/dcim/templates/dcim/rackreservation.html +1 -9
  126. nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -9
  127. nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
  128. nautobot/dcim/tests/integration/test_controller.py +62 -0
  129. nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
  130. nautobot/dcim/tests/integration/test_device_bulk_delete.py +189 -0
  131. nautobot/dcim/tests/integration/test_device_bulk_edit.py +181 -0
  132. nautobot/dcim/tests/test_api.py +16 -5
  133. nautobot/dcim/tests/test_filters.py +33 -0
  134. nautobot/dcim/tests/test_forms.py +51 -2
  135. nautobot/dcim/tests/test_graphql.py +52 -0
  136. nautobot/dcim/tests/test_jobs.py +118 -0
  137. nautobot/dcim/tests/test_models.py +52 -9
  138. nautobot/dcim/tests/test_views.py +21 -83
  139. nautobot/dcim/views.py +1 -13
  140. nautobot/extras/api/customfields.py +2 -2
  141. nautobot/extras/api/serializers.py +90 -85
  142. nautobot/extras/api/views.py +22 -27
  143. nautobot/extras/constants.py +2 -0
  144. nautobot/extras/filters/__init__.py +8 -6
  145. nautobot/extras/forms/base.py +2 -2
  146. nautobot/extras/forms/forms.py +139 -31
  147. nautobot/extras/forms/mixins.py +14 -6
  148. nautobot/extras/group_sync.py +3 -3
  149. nautobot/extras/health_checks.py +1 -2
  150. nautobot/extras/jobs.py +85 -18
  151. nautobot/extras/managers.py +3 -1
  152. nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
  153. nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
  154. nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
  155. nautobot/extras/models/__init__.py +1 -1
  156. nautobot/extras/models/contacts.py +1 -1
  157. nautobot/extras/models/customfields.py +12 -11
  158. nautobot/extras/models/groups.py +11 -9
  159. nautobot/extras/models/jobs.py +23 -4
  160. nautobot/extras/models/models.py +2 -2
  161. nautobot/extras/plugins/__init__.py +13 -2
  162. nautobot/extras/plugins/marketplace_manifest.yml +84 -79
  163. nautobot/extras/plugins/tables.py +16 -14
  164. nautobot/extras/plugins/views.py +65 -69
  165. nautobot/extras/registry.py +1 -1
  166. nautobot/extras/secrets/__init__.py +2 -2
  167. nautobot/extras/tables.py +7 -5
  168. nautobot/extras/templates/extras/dynamicgroup.html +1 -9
  169. nautobot/extras/templates/extras/job_detail.html +16 -0
  170. nautobot/extras/templates/extras/job_edit.html +1 -0
  171. nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
  172. nautobot/extras/templates/extras/marketplace.html +29 -11
  173. nautobot/extras/templates/extras/plugin_detail.html +32 -15
  174. nautobot/extras/templates/extras/plugins_tiles.html +21 -10
  175. nautobot/extras/templatetags/job_buttons.py +4 -4
  176. nautobot/extras/test_jobs/api_test_job.py +1 -1
  177. nautobot/extras/test_jobs/atomic_transaction.py +2 -2
  178. nautobot/extras/test_jobs/dry_run.py +1 -1
  179. nautobot/extras/test_jobs/fail.py +5 -5
  180. nautobot/extras/test_jobs/file_output.py +1 -1
  181. nautobot/extras/test_jobs/file_upload_fail.py +1 -1
  182. nautobot/extras/test_jobs/file_upload_pass.py +1 -1
  183. nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
  184. nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
  185. nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
  186. nautobot/extras/test_jobs/log_redaction.py +1 -1
  187. nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
  188. nautobot/extras/test_jobs/modify_db.py +1 -1
  189. nautobot/extras/test_jobs/object_var_optional.py +1 -1
  190. nautobot/extras/test_jobs/object_var_required.py +1 -1
  191. nautobot/extras/test_jobs/object_vars.py +1 -1
  192. nautobot/extras/test_jobs/pass.py +3 -3
  193. nautobot/extras/test_jobs/profiling.py +1 -1
  194. nautobot/extras/test_jobs/relative_import.py +3 -3
  195. nautobot/extras/test_jobs/singleton.py +16 -0
  196. nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
  197. nautobot/extras/test_jobs/task_queues.py +1 -1
  198. nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
  199. nautobot/extras/tests/test_api.py +13 -13
  200. nautobot/extras/tests/test_customfields.py +1 -1
  201. nautobot/extras/tests/test_datasources.py +2 -1
  202. nautobot/extras/tests/test_dynamicgroups.py +1 -1
  203. nautobot/extras/tests/test_filters.py +6 -6
  204. nautobot/extras/tests/test_forms.py +33 -1
  205. nautobot/extras/tests/test_jobs.py +178 -32
  206. nautobot/extras/tests/test_models.py +16 -10
  207. nautobot/extras/tests/test_plugins.py +62 -9
  208. nautobot/extras/tests/test_relationships.py +120 -9
  209. nautobot/extras/tests/test_views.py +56 -194
  210. nautobot/extras/utils.py +3 -2
  211. nautobot/extras/views.py +30 -98
  212. nautobot/ipam/api/fields.py +3 -3
  213. nautobot/ipam/api/serializers.py +41 -33
  214. nautobot/ipam/api/views.py +68 -117
  215. nautobot/ipam/factory.py +1 -1
  216. nautobot/ipam/filters.py +3 -2
  217. nautobot/ipam/lookups.py +101 -62
  218. nautobot/ipam/models.py +66 -16
  219. nautobot/ipam/querysets.py +2 -2
  220. nautobot/ipam/tables.py +23 -7
  221. nautobot/ipam/templates/ipam/ipaddress.html +1 -9
  222. nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
  223. nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
  224. nautobot/ipam/templates/ipam/prefix.html +1 -9
  225. nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
  226. nautobot/ipam/templates/ipam/vlan.html +1 -9
  227. nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
  228. nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
  229. nautobot/ipam/tests/test_api.py +436 -3
  230. nautobot/ipam/tests/test_forms.py +49 -47
  231. nautobot/ipam/tests/test_migrations.py +30 -30
  232. nautobot/ipam/tests/test_models.py +95 -34
  233. nautobot/ipam/tests/test_querysets.py +63 -1
  234. nautobot/ipam/tests/test_views.py +3 -0
  235. nautobot/ipam/utils/__init__.py +36 -6
  236. nautobot/ipam/views.py +61 -87
  237. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
  238. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
  239. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
  240. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
  241. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
  242. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
  243. nautobot/project-static/docs/404.html +46 -4
  244. nautobot/project-static/docs/apps/index.html +46 -4
  245. nautobot/project-static/docs/apps/nautobot-apps.html +47 -6
  246. nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
  247. nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.88dd0f4e.min.js} +2 -2
  248. nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.88dd0f4e.min.js.map} +2 -2
  249. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +62 -10
  250. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +59 -7
  251. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +374 -122
  252. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +90 -18
  253. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +95 -21
  254. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +53 -6
  255. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +52 -5
  256. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +79 -17
  257. nautobot/project-static/docs/code-reference/nautobot/apps/events.html +102 -28
  258. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +108 -21
  259. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +131 -38
  260. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +239 -65
  261. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +581 -165
  262. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +109 -36
  263. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +453 -167
  264. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +493 -211
  265. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +60 -8
  266. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +71 -15
  267. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +407 -55
  268. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +620 -205
  269. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +858 -412
  270. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +59 -7
  271. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +448 -186
  272. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +365 -147
  273. nautobot/project-static/docs/development/apps/api/configuration-view.html +46 -4
  274. nautobot/project-static/docs/development/apps/api/database-backend-config.html +46 -4
  275. nautobot/project-static/docs/development/apps/api/models/django-admin.html +46 -4
  276. nautobot/project-static/docs/development/apps/api/models/global-search.html +46 -4
  277. nautobot/project-static/docs/development/apps/api/models/graphql.html +46 -4
  278. nautobot/project-static/docs/development/apps/api/models/index.html +46 -4
  279. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +46 -4
  280. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +46 -4
  281. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +46 -4
  282. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +46 -4
  283. nautobot/project-static/docs/development/apps/api/platform-features/index.html +46 -4
  284. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +46 -4
  285. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +46 -4
  286. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +46 -4
  287. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +46 -4
  288. nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +68 -7
  289. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +46 -4
  290. nautobot/project-static/docs/development/apps/api/prometheus.html +46 -4
  291. nautobot/project-static/docs/development/apps/api/setup.html +46 -4
  292. nautobot/project-static/docs/development/apps/api/testing.html +46 -4
  293. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +46 -4
  294. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +46 -4
  295. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +46 -4
  296. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +46 -4
  297. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +46 -4
  298. nautobot/project-static/docs/development/apps/api/views/base-template.html +46 -4
  299. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +46 -4
  300. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +46 -4
  301. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +46 -4
  302. nautobot/project-static/docs/development/apps/api/views/index.html +46 -4
  303. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +46 -4
  304. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +46 -4
  305. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +46 -4
  306. nautobot/project-static/docs/development/apps/api/views/notes.html +46 -4
  307. nautobot/project-static/docs/development/apps/api/views/rest-api.html +52 -6
  308. nautobot/project-static/docs/development/apps/api/views/urls.html +46 -4
  309. nautobot/project-static/docs/development/apps/index.html +46 -4
  310. nautobot/project-static/docs/development/apps/migration/code-updates.html +46 -4
  311. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +46 -4
  312. nautobot/project-static/docs/development/apps/migration/from-v1.html +46 -4
  313. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +46 -4
  314. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +46 -4
  315. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +46 -4
  316. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +46 -4
  317. nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +50 -8
  318. nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +46 -4
  319. nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +211 -14
  320. nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +46 -4
  321. nautobot/project-static/docs/development/apps/porting-from-netbox.html +46 -4
  322. nautobot/project-static/docs/development/core/application-registry.html +46 -4
  323. nautobot/project-static/docs/development/core/best-practices.html +46 -4
  324. nautobot/project-static/docs/development/core/bootstrap-ui.html +46 -4
  325. nautobot/project-static/docs/development/core/caching.html +46 -4
  326. nautobot/project-static/docs/development/core/controllers.html +46 -4
  327. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +73 -74
  328. nautobot/project-static/docs/development/core/generic-views.html +46 -4
  329. nautobot/project-static/docs/development/core/getting-started.html +249 -224
  330. nautobot/project-static/docs/development/core/homepage.html +49 -7
  331. nautobot/project-static/docs/development/core/index.html +46 -4
  332. nautobot/project-static/docs/development/core/{local-k8s.html → minikube-dev-environment-for-k8s-jobs.html} +469 -168
  333. nautobot/project-static/docs/development/core/model-checklist.html +56 -12
  334. nautobot/project-static/docs/development/core/model-features.html +46 -4
  335. nautobot/project-static/docs/development/core/natural-keys.html +46 -4
  336. nautobot/project-static/docs/development/core/navigation-menu.html +46 -4
  337. nautobot/project-static/docs/development/core/release-checklist.html +49 -7
  338. nautobot/project-static/docs/development/core/role-internals.html +46 -4
  339. nautobot/project-static/docs/development/core/settings.html +46 -4
  340. nautobot/project-static/docs/development/core/style-guide.html +49 -7
  341. nautobot/project-static/docs/development/core/templates.html +46 -4
  342. nautobot/project-static/docs/development/core/testing.html +46 -4
  343. nautobot/project-static/docs/development/core/ui-component-framework.html +369 -273
  344. nautobot/project-static/docs/development/core/user-preferences.html +46 -4
  345. nautobot/project-static/docs/development/index.html +46 -4
  346. nautobot/project-static/docs/development/jobs/index.html +216 -122
  347. nautobot/project-static/docs/development/jobs/migration/from-v1.html +46 -4
  348. nautobot/project-static/docs/index.html +54 -23
  349. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
  350. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
  351. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
  352. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
  353. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
  354. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
  355. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
  356. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
  357. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
  358. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
  359. nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
  360. nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
  361. nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
  362. nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
  363. nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
  364. nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
  365. nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
  366. nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
  367. nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
  368. nautobot/project-static/docs/objects.inv +0 -0
  369. nautobot/project-static/docs/overview/application_stack.html +47 -7
  370. nautobot/project-static/docs/overview/design_philosophy.html +46 -4
  371. nautobot/project-static/docs/release-notes/index.html +52 -12
  372. nautobot/project-static/docs/release-notes/version-1.0.html +234 -193
  373. nautobot/project-static/docs/release-notes/version-1.1.html +231 -190
  374. nautobot/project-static/docs/release-notes/version-1.2.html +306 -265
  375. nautobot/project-static/docs/release-notes/version-1.3.html +332 -291
  376. nautobot/project-static/docs/release-notes/version-1.4.html +417 -377
  377. nautobot/project-static/docs/release-notes/version-1.5.html +605 -566
  378. nautobot/project-static/docs/release-notes/version-1.6.html +904 -447
  379. nautobot/project-static/docs/release-notes/version-2.0.html +528 -489
  380. nautobot/project-static/docs/release-notes/version-2.1.html +363 -324
  381. nautobot/project-static/docs/release-notes/version-2.2.html +356 -317
  382. nautobot/project-static/docs/release-notes/version-2.3.html +997 -352
  383. nautobot/project-static/docs/release-notes/version-2.4.html +525 -101
  384. nautobot/project-static/docs/requirements.txt +2 -2
  385. nautobot/project-static/docs/search/search_index.json +1 -1
  386. nautobot/project-static/docs/sitemap.xml +295 -287
  387. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  388. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +46 -4
  389. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +46 -4
  390. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +48 -6
  391. nautobot/project-static/docs/user-guide/administration/configuration/index.html +46 -4
  392. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +46 -4
  393. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +110 -8
  394. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +46 -4
  395. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +46 -4
  396. nautobot/project-static/docs/user-guide/administration/guides/docker.html +46 -4
  397. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +46 -4
  398. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +46 -4
  399. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +46 -4
  400. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +46 -4
  401. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +46 -4
  402. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +48 -6
  403. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +46 -4
  404. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +46 -4
  405. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +46 -4
  406. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +66 -8
  407. nautobot/project-static/docs/user-guide/administration/installation/index.html +46 -4
  408. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +47 -5
  409. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +46 -4
  410. nautobot/project-static/docs/user-guide/administration/installation/services.html +46 -4
  411. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +46 -4
  412. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +46 -4
  413. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +46 -4
  414. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +46 -4
  415. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +46 -4
  416. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +46 -4
  417. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +46 -4
  418. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +46 -4
  419. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +46 -4
  420. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +49 -8
  421. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +46 -4
  422. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +46 -4
  423. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +46 -4
  424. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +46 -4
  425. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +46 -4
  426. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +46 -4
  427. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +46 -4
  428. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +46 -4
  429. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +46 -4
  430. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +46 -4
  431. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +46 -4
  432. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +46 -4
  433. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +46 -4
  434. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +46 -4
  435. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +46 -4
  436. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +46 -4
  437. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +46 -4
  438. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +46 -4
  439. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +46 -4
  440. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +46 -4
  441. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +46 -4
  442. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +46 -4
  443. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +46 -4
  444. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +46 -4
  445. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +46 -4
  446. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +46 -4
  447. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +46 -4
  448. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +46 -4
  449. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +46 -4
  450. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +46 -4
  451. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +46 -4
  452. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +46 -4
  453. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +46 -4
  454. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +46 -4
  455. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +46 -4
  456. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +46 -4
  457. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +46 -4
  458. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +46 -4
  459. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +46 -4
  460. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +46 -4
  461. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +46 -4
  462. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +46 -4
  463. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +46 -4
  464. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +46 -4
  465. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +46 -4
  466. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +46 -4
  467. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +46 -4
  468. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +46 -4
  469. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +46 -4
  470. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +46 -4
  471. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +46 -4
  472. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +46 -4
  473. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +46 -4
  474. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +46 -4
  475. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +46 -4
  476. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +46 -4
  477. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +46 -4
  478. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +50 -12
  479. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +46 -4
  480. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +46 -4
  481. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +46 -4
  482. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +46 -4
  483. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +46 -4
  484. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +46 -4
  485. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +46 -4
  486. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +46 -4
  487. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +46 -4
  488. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +46 -4
  489. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +46 -4
  490. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +46 -4
  491. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +49 -7
  492. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +46 -4
  493. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +46 -4
  494. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +46 -4
  495. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +46 -4
  496. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +46 -4
  497. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +46 -4
  498. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +46 -4
  499. nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +46 -4
  500. nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +46 -4
  501. nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +46 -4
  502. nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +46 -4
  503. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +46 -4
  504. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +46 -4
  505. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +46 -4
  506. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +46 -4
  507. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +46 -4
  508. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +46 -4
  509. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +46 -4
  510. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +46 -4
  511. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +46 -4
  512. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +46 -4
  513. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +46 -4
  514. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +51 -7
  515. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +46 -4
  516. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
  517. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
  518. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
  519. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
  520. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
  521. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
  522. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
  523. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
  524. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
  525. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
  526. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
  527. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
  528. nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
  529. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +46 -4
  530. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +46 -4
  531. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +49 -7
  532. nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +9444 -0
  533. nautobot/project-static/docs/user-guide/index.html +46 -4
  534. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +46 -4
  535. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +50 -8
  536. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +46 -4
  537. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +46 -4
  538. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +46 -4
  539. nautobot/project-static/docs/user-guide/platform-functionality/events.html +46 -4
  540. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +46 -4
  541. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +46 -4
  542. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +46 -4
  543. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +46 -4
  544. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +46 -4
  545. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +46 -4
  546. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +50 -7
  547. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +46 -4
  548. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +49 -7
  549. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +46 -4
  550. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +46 -4
  551. nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9722 -0
  552. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +46 -4
  553. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +46 -4
  554. nautobot/project-static/docs/user-guide/platform-functionality/note.html +46 -4
  555. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +46 -4
  556. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +47 -5
  557. nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +46 -4
  558. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +46 -4
  559. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +94 -25
  560. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +74 -5
  561. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +46 -4
  562. nautobot/project-static/docs/user-guide/platform-functionality/role.html +46 -4
  563. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +46 -4
  564. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +46 -4
  565. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +46 -4
  566. nautobot/project-static/docs/user-guide/platform-functionality/status.html +46 -4
  567. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +46 -4
  568. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +46 -4
  569. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +46 -4
  570. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +46 -4
  571. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +46 -4
  572. nautobot/project-static/js/forms.js +1 -1
  573. nautobot/tenancy/api/views.py +9 -13
  574. nautobot/tenancy/views.py +4 -2
  575. nautobot/users/admin.py +1 -1
  576. nautobot/users/api/serializers.py +5 -4
  577. nautobot/users/api/views.py +3 -3
  578. nautobot/virtualization/api/serializers.py +4 -4
  579. nautobot/virtualization/api/views.py +5 -24
  580. nautobot/virtualization/filters.py +20 -3
  581. nautobot/virtualization/models.py +1 -1
  582. nautobot/virtualization/tables.py +2 -2
  583. nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
  584. nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -9
  585. nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
  586. nautobot/virtualization/tests/test_filters.py +17 -0
  587. nautobot/wireless/filters.py +2 -2
  588. nautobot/wireless/forms.py +1 -1
  589. nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
  590. nautobot/wireless/tests/integration/__init__.py +0 -0
  591. nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
  592. nautobot/wireless/tests/test_filters.py +29 -1
  593. nautobot/wireless/tests/test_views.py +22 -1
  594. nautobot/wireless/views.py +0 -10
  595. {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/METADATA +6 -6
  596. {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/RECORD +600 -550
  597. {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/WHEEL +1 -1
  598. nautobot/core/fixtures/user-data.json +0 -59
  599. {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/LICENSE.txt +0 -0
  600. {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/NOTICE +0 -0
  601. {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/entry_points.txt +0 -0
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
  <link rel="icon" href="../assets/favicon.ico">
21
- <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.46">
21
+ <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.49">
22
22
 
23
23
 
24
24
 
@@ -2112,6 +2112,27 @@
2112
2112
 
2113
2113
 
2114
2114
 
2115
+
2116
+
2117
+
2118
+
2119
+
2120
+
2121
+ <li class="md-nav__item">
2122
+ <a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
2123
+
2124
+
2125
+ <span class="md-ellipsis">
2126
+ Wireless Networks and Controllers
2127
+ </span>
2128
+
2129
+
2130
+ </a>
2131
+ </li>
2132
+
2133
+
2134
+
2135
+
2115
2136
  </ul>
2116
2137
  </nav>
2117
2138
 
@@ -5131,6 +5152,27 @@
5131
5152
 
5132
5153
 
5133
5154
 
5155
+ <li class="md-nav__item">
5156
+ <a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
5157
+
5158
+
5159
+ <span class="md-ellipsis">
5160
+ Kubernetes Job Support
5161
+ </span>
5162
+
5163
+
5164
+ </a>
5165
+ </li>
5166
+
5167
+
5168
+
5169
+
5170
+
5171
+
5172
+
5173
+
5174
+
5175
+
5134
5176
  <li class="md-nav__item">
5135
5177
  <a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
5136
5178
 
@@ -8055,11 +8097,11 @@
8055
8097
 
8056
8098
 
8057
8099
  <li class="md-nav__item">
8058
- <a href="../development/core/local-k8s.html" class="md-nav__link">
8100
+ <a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
8059
8101
 
8060
8102
 
8061
8103
  <span class="md-ellipsis">
8062
- Local Kubernetes Cluster
8104
+ Minikube Dev Environment for K8s Jobs
8063
8105
  </span>
8064
8106
 
8065
8107
 
@@ -8990,54 +9032,54 @@
8990
9032
  <ul class="md-nav__list">
8991
9033
 
8992
9034
  <li class="md-nav__item">
8993
- <a href="#security" class="md-nav__link">
9035
+ <a href="#security-in-v103" class="md-nav__link">
8994
9036
  <span class="md-ellipsis">
8995
- Security
9037
+ Security in v1.0.3
8996
9038
  </span>
8997
9039
  </a>
8998
9040
 
8999
9041
  </li>
9000
9042
 
9001
9043
  <li class="md-nav__item">
9002
- <a href="#added_1" class="md-nav__link">
9044
+ <a href="#added-in-v103" class="md-nav__link">
9003
9045
  <span class="md-ellipsis">
9004
- Added
9046
+ Added in v1.0.3
9005
9047
  </span>
9006
9048
  </a>
9007
9049
 
9008
9050
  </li>
9009
9051
 
9010
9052
  <li class="md-nav__item">
9011
- <a href="#changed_1" class="md-nav__link">
9053
+ <a href="#changed-in-v103" class="md-nav__link">
9012
9054
  <span class="md-ellipsis">
9013
- Changed
9055
+ Changed in v1.0.3
9014
9056
  </span>
9015
9057
  </a>
9016
9058
 
9017
9059
  </li>
9018
9060
 
9019
9061
  <li class="md-nav__item">
9020
- <a href="#fixed" class="md-nav__link">
9062
+ <a href="#fixed-in-v103" class="md-nav__link">
9021
9063
  <span class="md-ellipsis">
9022
- Fixed
9064
+ Fixed in v1.0.3
9023
9065
  </span>
9024
9066
  </a>
9025
9067
 
9026
9068
  </li>
9027
9069
 
9028
9070
  <li class="md-nav__item">
9029
- <a href="#documentation" class="md-nav__link">
9071
+ <a href="#documentation-in-v103" class="md-nav__link">
9030
9072
  <span class="md-ellipsis">
9031
- Documentation
9073
+ Documentation in v1.0.3
9032
9074
  </span>
9033
9075
  </a>
9034
9076
 
9035
9077
  </li>
9036
9078
 
9037
9079
  <li class="md-nav__item">
9038
- <a href="#housekeeping" class="md-nav__link">
9080
+ <a href="#housekeeping-in-v103" class="md-nav__link">
9039
9081
  <span class="md-ellipsis">
9040
- Housekeeping
9082
+ Housekeeping in v1.0.3
9041
9083
  </span>
9042
9084
  </a>
9043
9085
 
@@ -9059,54 +9101,54 @@
9059
9101
  <ul class="md-nav__list">
9060
9102
 
9061
9103
  <li class="md-nav__item">
9062
- <a href="#added_2" class="md-nav__link">
9104
+ <a href="#added-in-v102" class="md-nav__link">
9063
9105
  <span class="md-ellipsis">
9064
- Added
9106
+ Added in v1.0.2
9065
9107
  </span>
9066
9108
  </a>
9067
9109
 
9068
9110
  </li>
9069
9111
 
9070
9112
  <li class="md-nav__item">
9071
- <a href="#changed_2" class="md-nav__link">
9113
+ <a href="#changed-in-v102" class="md-nav__link">
9072
9114
  <span class="md-ellipsis">
9073
- Changed
9115
+ Changed in v1.0.2
9074
9116
  </span>
9075
9117
  </a>
9076
9118
 
9077
9119
  </li>
9078
9120
 
9079
9121
  <li class="md-nav__item">
9080
- <a href="#removed_1" class="md-nav__link">
9122
+ <a href="#removed-in-v102" class="md-nav__link">
9081
9123
  <span class="md-ellipsis">
9082
- Removed
9124
+ Removed in v1.0.2
9083
9125
  </span>
9084
9126
  </a>
9085
9127
 
9086
9128
  </li>
9087
9129
 
9088
9130
  <li class="md-nav__item">
9089
- <a href="#fixed_1" class="md-nav__link">
9131
+ <a href="#fixed-in-v102" class="md-nav__link">
9090
9132
  <span class="md-ellipsis">
9091
- Fixed
9133
+ Fixed in v1.0.2
9092
9134
  </span>
9093
9135
  </a>
9094
9136
 
9095
9137
  </li>
9096
9138
 
9097
9139
  <li class="md-nav__item">
9098
- <a href="#documentation_1" class="md-nav__link">
9140
+ <a href="#documentation-in-v102" class="md-nav__link">
9099
9141
  <span class="md-ellipsis">
9100
- Documentation
9142
+ Documentation in v1.0.2
9101
9143
  </span>
9102
9144
  </a>
9103
9145
 
9104
9146
  </li>
9105
9147
 
9106
9148
  <li class="md-nav__item">
9107
- <a href="#housekeeping_1" class="md-nav__link">
9149
+ <a href="#housekeeping-in-v102" class="md-nav__link">
9108
9150
  <span class="md-ellipsis">
9109
- Housekeeping
9151
+ Housekeeping in v1.0.2
9110
9152
  </span>
9111
9153
  </a>
9112
9154
 
@@ -9128,36 +9170,36 @@
9128
9170
  <ul class="md-nav__list">
9129
9171
 
9130
9172
  <li class="md-nav__item">
9131
- <a href="#added_3" class="md-nav__link">
9173
+ <a href="#added-in-v101" class="md-nav__link">
9132
9174
  <span class="md-ellipsis">
9133
- Added
9175
+ Added in v1.0.1
9134
9176
  </span>
9135
9177
  </a>
9136
9178
 
9137
9179
  </li>
9138
9180
 
9139
9181
  <li class="md-nav__item">
9140
- <a href="#fixed_2" class="md-nav__link">
9182
+ <a href="#fixed-in-v101" class="md-nav__link">
9141
9183
  <span class="md-ellipsis">
9142
- Fixed
9184
+ Fixed in v1.0.1
9143
9185
  </span>
9144
9186
  </a>
9145
9187
 
9146
9188
  </li>
9147
9189
 
9148
9190
  <li class="md-nav__item">
9149
- <a href="#documentation_2" class="md-nav__link">
9191
+ <a href="#documentation-in-v101" class="md-nav__link">
9150
9192
  <span class="md-ellipsis">
9151
- Documentation
9193
+ Documentation in v1.0.1
9152
9194
  </span>
9153
9195
  </a>
9154
9196
 
9155
9197
  </li>
9156
9198
 
9157
9199
  <li class="md-nav__item">
9158
- <a href="#housekeeping_2" class="md-nav__link">
9200
+ <a href="#housekeeping-in-v101" class="md-nav__link">
9159
9201
  <span class="md-ellipsis">
9160
- Housekeeping
9202
+ Housekeeping in v1.0.1
9161
9203
  </span>
9162
9204
  </a>
9163
9205
 
@@ -9179,25 +9221,25 @@
9179
9221
  <ul class="md-nav__list">
9180
9222
 
9181
9223
  <li class="md-nav__item">
9182
- <a href="#added_4" class="md-nav__link">
9224
+ <a href="#added-in-v100" class="md-nav__link">
9183
9225
  <span class="md-ellipsis">
9184
- Added
9226
+ Added in v1.0.0
9185
9227
  </span>
9186
9228
  </a>
9187
9229
 
9188
9230
  </li>
9189
9231
 
9190
9232
  <li class="md-nav__item">
9191
- <a href="#changed_3" class="md-nav__link">
9233
+ <a href="#changed-in-v100" class="md-nav__link">
9192
9234
  <span class="md-ellipsis">
9193
- Changed
9235
+ Changed in v1.0.0
9194
9236
  </span>
9195
9237
  </a>
9196
9238
 
9197
9239
  </li>
9198
9240
 
9199
9241
  <li class="md-nav__item">
9200
- <a href="#fixed_3" class="md-nav__link">
9242
+ <a href="#fixed" class="md-nav__link">
9201
9243
  <span class="md-ellipsis">
9202
9244
  Fixed
9203
9245
  </span>
@@ -9206,9 +9248,9 @@
9206
9248
  </li>
9207
9249
 
9208
9250
  <li class="md-nav__item">
9209
- <a href="#dependencies" class="md-nav__link">
9251
+ <a href="#dependencies-in-v100" class="md-nav__link">
9210
9252
  <span class="md-ellipsis">
9211
- Dependencies
9253
+ Dependencies in v1.0.0
9212
9254
  </span>
9213
9255
  </a>
9214
9256
 
@@ -9230,45 +9272,45 @@
9230
9272
  <ul class="md-nav__list">
9231
9273
 
9232
9274
  <li class="md-nav__item">
9233
- <a href="#changed_4" class="md-nav__link">
9275
+ <a href="#changed-in-v100b4" class="md-nav__link">
9234
9276
  <span class="md-ellipsis">
9235
- Changed
9277
+ Changed in v1.0.0b4
9236
9278
  </span>
9237
9279
  </a>
9238
9280
 
9239
9281
  </li>
9240
9282
 
9241
9283
  <li class="md-nav__item">
9242
- <a href="#fixed_4" class="md-nav__link">
9284
+ <a href="#fixed-in-v100b4" class="md-nav__link">
9243
9285
  <span class="md-ellipsis">
9244
- Fixed
9286
+ Fixed in v1.0.0b4
9245
9287
  </span>
9246
9288
  </a>
9247
9289
 
9248
9290
  </li>
9249
9291
 
9250
9292
  <li class="md-nav__item">
9251
- <a href="#dependencies_1" class="md-nav__link">
9293
+ <a href="#dependencies-in-v100b4" class="md-nav__link">
9252
9294
  <span class="md-ellipsis">
9253
- Dependencies
9295
+ Dependencies in v1.0.0b4
9254
9296
  </span>
9255
9297
  </a>
9256
9298
 
9257
9299
  </li>
9258
9300
 
9259
9301
  <li class="md-nav__item">
9260
- <a href="#documentation_3" class="md-nav__link">
9302
+ <a href="#documentation-in-v100b4" class="md-nav__link">
9261
9303
  <span class="md-ellipsis">
9262
- Documentation
9304
+ Documentation in v1.0.0b4
9263
9305
  </span>
9264
9306
  </a>
9265
9307
 
9266
9308
  </li>
9267
9309
 
9268
9310
  <li class="md-nav__item">
9269
- <a href="#housekeeping_3" class="md-nav__link">
9311
+ <a href="#housekeeping-in-v100b4" class="md-nav__link">
9270
9312
  <span class="md-ellipsis">
9271
- Housekeeping
9313
+ Housekeeping in v1.0.0b4
9272
9314
  </span>
9273
9315
  </a>
9274
9316
 
@@ -9290,54 +9332,54 @@
9290
9332
  <ul class="md-nav__list">
9291
9333
 
9292
9334
  <li class="md-nav__item">
9293
- <a href="#added_5" class="md-nav__link">
9335
+ <a href="#added-in-v100b3" class="md-nav__link">
9294
9336
  <span class="md-ellipsis">
9295
- Added
9337
+ Added in v1.0.0b3
9296
9338
  </span>
9297
9339
  </a>
9298
9340
 
9299
9341
  </li>
9300
9342
 
9301
9343
  <li class="md-nav__item">
9302
- <a href="#changed_5" class="md-nav__link">
9344
+ <a href="#changed-in-v100b3" class="md-nav__link">
9303
9345
  <span class="md-ellipsis">
9304
- Changed
9346
+ Changed in v1.0.0b3
9305
9347
  </span>
9306
9348
  </a>
9307
9349
 
9308
9350
  </li>
9309
9351
 
9310
9352
  <li class="md-nav__item">
9311
- <a href="#removed_2" class="md-nav__link">
9353
+ <a href="#removed-in-v100b3" class="md-nav__link">
9312
9354
  <span class="md-ellipsis">
9313
- Removed
9355
+ Removed in v1.0.0b3
9314
9356
  </span>
9315
9357
  </a>
9316
9358
 
9317
9359
  </li>
9318
9360
 
9319
9361
  <li class="md-nav__item">
9320
- <a href="#fixed_5" class="md-nav__link">
9362
+ <a href="#fixed-in-v100b3" class="md-nav__link">
9321
9363
  <span class="md-ellipsis">
9322
- Fixed
9364
+ Fixed in v1.0.0b3
9323
9365
  </span>
9324
9366
  </a>
9325
9367
 
9326
9368
  </li>
9327
9369
 
9328
9370
  <li class="md-nav__item">
9329
- <a href="#documentation_4" class="md-nav__link">
9371
+ <a href="#documentation-in-v100b3" class="md-nav__link">
9330
9372
  <span class="md-ellipsis">
9331
- Documentation
9373
+ Documentation in v1.0.0b3
9332
9374
  </span>
9333
9375
  </a>
9334
9376
 
9335
9377
  </li>
9336
9378
 
9337
9379
  <li class="md-nav__item">
9338
- <a href="#housekeeping_4" class="md-nav__link">
9380
+ <a href="#housekeeping-in-v100b3" class="md-nav__link">
9339
9381
  <span class="md-ellipsis">
9340
- Housekeeping
9382
+ Housekeeping in v1.0.0b3
9341
9383
  </span>
9342
9384
  </a>
9343
9385
 
@@ -9359,54 +9401,54 @@
9359
9401
  <ul class="md-nav__list">
9360
9402
 
9361
9403
  <li class="md-nav__item">
9362
- <a href="#added_6" class="md-nav__link">
9404
+ <a href="#added-in-v100b2" class="md-nav__link">
9363
9405
  <span class="md-ellipsis">
9364
- Added
9406
+ Added in v1.0.0b2
9365
9407
  </span>
9366
9408
  </a>
9367
9409
 
9368
9410
  </li>
9369
9411
 
9370
9412
  <li class="md-nav__item">
9371
- <a href="#changed_6" class="md-nav__link">
9413
+ <a href="#changed-in-v100b2" class="md-nav__link">
9372
9414
  <span class="md-ellipsis">
9373
- Changed
9415
+ Changed in v1.0.0b2
9374
9416
  </span>
9375
9417
  </a>
9376
9418
 
9377
9419
  </li>
9378
9420
 
9379
9421
  <li class="md-nav__item">
9380
- <a href="#removed_3" class="md-nav__link">
9422
+ <a href="#removed-in-v100b2" class="md-nav__link">
9381
9423
  <span class="md-ellipsis">
9382
- Removed
9424
+ Removed in v1.0.0b2
9383
9425
  </span>
9384
9426
  </a>
9385
9427
 
9386
9428
  </li>
9387
9429
 
9388
9430
  <li class="md-nav__item">
9389
- <a href="#fixed_6" class="md-nav__link">
9431
+ <a href="#fixed-in-v100b2" class="md-nav__link">
9390
9432
  <span class="md-ellipsis">
9391
- Fixed
9433
+ Fixed in v1.0.0b2
9392
9434
  </span>
9393
9435
  </a>
9394
9436
 
9395
9437
  </li>
9396
9438
 
9397
9439
  <li class="md-nav__item">
9398
- <a href="#documentation_5" class="md-nav__link">
9440
+ <a href="#documentation-in-v100b2" class="md-nav__link">
9399
9441
  <span class="md-ellipsis">
9400
- Documentation
9442
+ Documentation in v1.0.0b2
9401
9443
  </span>
9402
9444
  </a>
9403
9445
 
9404
9446
  </li>
9405
9447
 
9406
9448
  <li class="md-nav__item">
9407
- <a href="#housekeeeping" class="md-nav__link">
9449
+ <a href="#housekeeeping-in-v100b2" class="md-nav__link">
9408
9450
  <span class="md-ellipsis">
9409
- Housekeeeping
9451
+ Housekeeeping in v1.0.0b2
9410
9452
  </span>
9411
9453
  </a>
9412
9454
 
@@ -9428,9 +9470,9 @@
9428
9470
  <ul class="md-nav__list">
9429
9471
 
9430
9472
  <li class="md-nav__item">
9431
- <a href="#fixed_7" class="md-nav__link">
9473
+ <a href="#fixed-in-v100b1" class="md-nav__link">
9432
9474
  <span class="md-ellipsis">
9433
- Fixed
9475
+ Fixed in v1.0.0b1
9434
9476
  </span>
9435
9477
  </a>
9436
9478
 
@@ -10153,54 +10195,54 @@
10153
10195
  <ul class="md-nav__list">
10154
10196
 
10155
10197
  <li class="md-nav__item">
10156
- <a href="#security" class="md-nav__link">
10198
+ <a href="#security-in-v103" class="md-nav__link">
10157
10199
  <span class="md-ellipsis">
10158
- Security
10200
+ Security in v1.0.3
10159
10201
  </span>
10160
10202
  </a>
10161
10203
 
10162
10204
  </li>
10163
10205
 
10164
10206
  <li class="md-nav__item">
10165
- <a href="#added_1" class="md-nav__link">
10207
+ <a href="#added-in-v103" class="md-nav__link">
10166
10208
  <span class="md-ellipsis">
10167
- Added
10209
+ Added in v1.0.3
10168
10210
  </span>
10169
10211
  </a>
10170
10212
 
10171
10213
  </li>
10172
10214
 
10173
10215
  <li class="md-nav__item">
10174
- <a href="#changed_1" class="md-nav__link">
10216
+ <a href="#changed-in-v103" class="md-nav__link">
10175
10217
  <span class="md-ellipsis">
10176
- Changed
10218
+ Changed in v1.0.3
10177
10219
  </span>
10178
10220
  </a>
10179
10221
 
10180
10222
  </li>
10181
10223
 
10182
10224
  <li class="md-nav__item">
10183
- <a href="#fixed" class="md-nav__link">
10225
+ <a href="#fixed-in-v103" class="md-nav__link">
10184
10226
  <span class="md-ellipsis">
10185
- Fixed
10227
+ Fixed in v1.0.3
10186
10228
  </span>
10187
10229
  </a>
10188
10230
 
10189
10231
  </li>
10190
10232
 
10191
10233
  <li class="md-nav__item">
10192
- <a href="#documentation" class="md-nav__link">
10234
+ <a href="#documentation-in-v103" class="md-nav__link">
10193
10235
  <span class="md-ellipsis">
10194
- Documentation
10236
+ Documentation in v1.0.3
10195
10237
  </span>
10196
10238
  </a>
10197
10239
 
10198
10240
  </li>
10199
10241
 
10200
10242
  <li class="md-nav__item">
10201
- <a href="#housekeeping" class="md-nav__link">
10243
+ <a href="#housekeeping-in-v103" class="md-nav__link">
10202
10244
  <span class="md-ellipsis">
10203
- Housekeeping
10245
+ Housekeeping in v1.0.3
10204
10246
  </span>
10205
10247
  </a>
10206
10248
 
@@ -10222,54 +10264,54 @@
10222
10264
  <ul class="md-nav__list">
10223
10265
 
10224
10266
  <li class="md-nav__item">
10225
- <a href="#added_2" class="md-nav__link">
10267
+ <a href="#added-in-v102" class="md-nav__link">
10226
10268
  <span class="md-ellipsis">
10227
- Added
10269
+ Added in v1.0.2
10228
10270
  </span>
10229
10271
  </a>
10230
10272
 
10231
10273
  </li>
10232
10274
 
10233
10275
  <li class="md-nav__item">
10234
- <a href="#changed_2" class="md-nav__link">
10276
+ <a href="#changed-in-v102" class="md-nav__link">
10235
10277
  <span class="md-ellipsis">
10236
- Changed
10278
+ Changed in v1.0.2
10237
10279
  </span>
10238
10280
  </a>
10239
10281
 
10240
10282
  </li>
10241
10283
 
10242
10284
  <li class="md-nav__item">
10243
- <a href="#removed_1" class="md-nav__link">
10285
+ <a href="#removed-in-v102" class="md-nav__link">
10244
10286
  <span class="md-ellipsis">
10245
- Removed
10287
+ Removed in v1.0.2
10246
10288
  </span>
10247
10289
  </a>
10248
10290
 
10249
10291
  </li>
10250
10292
 
10251
10293
  <li class="md-nav__item">
10252
- <a href="#fixed_1" class="md-nav__link">
10294
+ <a href="#fixed-in-v102" class="md-nav__link">
10253
10295
  <span class="md-ellipsis">
10254
- Fixed
10296
+ Fixed in v1.0.2
10255
10297
  </span>
10256
10298
  </a>
10257
10299
 
10258
10300
  </li>
10259
10301
 
10260
10302
  <li class="md-nav__item">
10261
- <a href="#documentation_1" class="md-nav__link">
10303
+ <a href="#documentation-in-v102" class="md-nav__link">
10262
10304
  <span class="md-ellipsis">
10263
- Documentation
10305
+ Documentation in v1.0.2
10264
10306
  </span>
10265
10307
  </a>
10266
10308
 
10267
10309
  </li>
10268
10310
 
10269
10311
  <li class="md-nav__item">
10270
- <a href="#housekeeping_1" class="md-nav__link">
10312
+ <a href="#housekeeping-in-v102" class="md-nav__link">
10271
10313
  <span class="md-ellipsis">
10272
- Housekeeping
10314
+ Housekeeping in v1.0.2
10273
10315
  </span>
10274
10316
  </a>
10275
10317
 
@@ -10291,36 +10333,36 @@
10291
10333
  <ul class="md-nav__list">
10292
10334
 
10293
10335
  <li class="md-nav__item">
10294
- <a href="#added_3" class="md-nav__link">
10336
+ <a href="#added-in-v101" class="md-nav__link">
10295
10337
  <span class="md-ellipsis">
10296
- Added
10338
+ Added in v1.0.1
10297
10339
  </span>
10298
10340
  </a>
10299
10341
 
10300
10342
  </li>
10301
10343
 
10302
10344
  <li class="md-nav__item">
10303
- <a href="#fixed_2" class="md-nav__link">
10345
+ <a href="#fixed-in-v101" class="md-nav__link">
10304
10346
  <span class="md-ellipsis">
10305
- Fixed
10347
+ Fixed in v1.0.1
10306
10348
  </span>
10307
10349
  </a>
10308
10350
 
10309
10351
  </li>
10310
10352
 
10311
10353
  <li class="md-nav__item">
10312
- <a href="#documentation_2" class="md-nav__link">
10354
+ <a href="#documentation-in-v101" class="md-nav__link">
10313
10355
  <span class="md-ellipsis">
10314
- Documentation
10356
+ Documentation in v1.0.1
10315
10357
  </span>
10316
10358
  </a>
10317
10359
 
10318
10360
  </li>
10319
10361
 
10320
10362
  <li class="md-nav__item">
10321
- <a href="#housekeeping_2" class="md-nav__link">
10363
+ <a href="#housekeeping-in-v101" class="md-nav__link">
10322
10364
  <span class="md-ellipsis">
10323
- Housekeeping
10365
+ Housekeeping in v1.0.1
10324
10366
  </span>
10325
10367
  </a>
10326
10368
 
@@ -10342,25 +10384,25 @@
10342
10384
  <ul class="md-nav__list">
10343
10385
 
10344
10386
  <li class="md-nav__item">
10345
- <a href="#added_4" class="md-nav__link">
10387
+ <a href="#added-in-v100" class="md-nav__link">
10346
10388
  <span class="md-ellipsis">
10347
- Added
10389
+ Added in v1.0.0
10348
10390
  </span>
10349
10391
  </a>
10350
10392
 
10351
10393
  </li>
10352
10394
 
10353
10395
  <li class="md-nav__item">
10354
- <a href="#changed_3" class="md-nav__link">
10396
+ <a href="#changed-in-v100" class="md-nav__link">
10355
10397
  <span class="md-ellipsis">
10356
- Changed
10398
+ Changed in v1.0.0
10357
10399
  </span>
10358
10400
  </a>
10359
10401
 
10360
10402
  </li>
10361
10403
 
10362
10404
  <li class="md-nav__item">
10363
- <a href="#fixed_3" class="md-nav__link">
10405
+ <a href="#fixed" class="md-nav__link">
10364
10406
  <span class="md-ellipsis">
10365
10407
  Fixed
10366
10408
  </span>
@@ -10369,9 +10411,9 @@
10369
10411
  </li>
10370
10412
 
10371
10413
  <li class="md-nav__item">
10372
- <a href="#dependencies" class="md-nav__link">
10414
+ <a href="#dependencies-in-v100" class="md-nav__link">
10373
10415
  <span class="md-ellipsis">
10374
- Dependencies
10416
+ Dependencies in v1.0.0
10375
10417
  </span>
10376
10418
  </a>
10377
10419
 
@@ -10393,45 +10435,45 @@
10393
10435
  <ul class="md-nav__list">
10394
10436
 
10395
10437
  <li class="md-nav__item">
10396
- <a href="#changed_4" class="md-nav__link">
10438
+ <a href="#changed-in-v100b4" class="md-nav__link">
10397
10439
  <span class="md-ellipsis">
10398
- Changed
10440
+ Changed in v1.0.0b4
10399
10441
  </span>
10400
10442
  </a>
10401
10443
 
10402
10444
  </li>
10403
10445
 
10404
10446
  <li class="md-nav__item">
10405
- <a href="#fixed_4" class="md-nav__link">
10447
+ <a href="#fixed-in-v100b4" class="md-nav__link">
10406
10448
  <span class="md-ellipsis">
10407
- Fixed
10449
+ Fixed in v1.0.0b4
10408
10450
  </span>
10409
10451
  </a>
10410
10452
 
10411
10453
  </li>
10412
10454
 
10413
10455
  <li class="md-nav__item">
10414
- <a href="#dependencies_1" class="md-nav__link">
10456
+ <a href="#dependencies-in-v100b4" class="md-nav__link">
10415
10457
  <span class="md-ellipsis">
10416
- Dependencies
10458
+ Dependencies in v1.0.0b4
10417
10459
  </span>
10418
10460
  </a>
10419
10461
 
10420
10462
  </li>
10421
10463
 
10422
10464
  <li class="md-nav__item">
10423
- <a href="#documentation_3" class="md-nav__link">
10465
+ <a href="#documentation-in-v100b4" class="md-nav__link">
10424
10466
  <span class="md-ellipsis">
10425
- Documentation
10467
+ Documentation in v1.0.0b4
10426
10468
  </span>
10427
10469
  </a>
10428
10470
 
10429
10471
  </li>
10430
10472
 
10431
10473
  <li class="md-nav__item">
10432
- <a href="#housekeeping_3" class="md-nav__link">
10474
+ <a href="#housekeeping-in-v100b4" class="md-nav__link">
10433
10475
  <span class="md-ellipsis">
10434
- Housekeeping
10476
+ Housekeeping in v1.0.0b4
10435
10477
  </span>
10436
10478
  </a>
10437
10479
 
@@ -10453,54 +10495,54 @@
10453
10495
  <ul class="md-nav__list">
10454
10496
 
10455
10497
  <li class="md-nav__item">
10456
- <a href="#added_5" class="md-nav__link">
10498
+ <a href="#added-in-v100b3" class="md-nav__link">
10457
10499
  <span class="md-ellipsis">
10458
- Added
10500
+ Added in v1.0.0b3
10459
10501
  </span>
10460
10502
  </a>
10461
10503
 
10462
10504
  </li>
10463
10505
 
10464
10506
  <li class="md-nav__item">
10465
- <a href="#changed_5" class="md-nav__link">
10507
+ <a href="#changed-in-v100b3" class="md-nav__link">
10466
10508
  <span class="md-ellipsis">
10467
- Changed
10509
+ Changed in v1.0.0b3
10468
10510
  </span>
10469
10511
  </a>
10470
10512
 
10471
10513
  </li>
10472
10514
 
10473
10515
  <li class="md-nav__item">
10474
- <a href="#removed_2" class="md-nav__link">
10516
+ <a href="#removed-in-v100b3" class="md-nav__link">
10475
10517
  <span class="md-ellipsis">
10476
- Removed
10518
+ Removed in v1.0.0b3
10477
10519
  </span>
10478
10520
  </a>
10479
10521
 
10480
10522
  </li>
10481
10523
 
10482
10524
  <li class="md-nav__item">
10483
- <a href="#fixed_5" class="md-nav__link">
10525
+ <a href="#fixed-in-v100b3" class="md-nav__link">
10484
10526
  <span class="md-ellipsis">
10485
- Fixed
10527
+ Fixed in v1.0.0b3
10486
10528
  </span>
10487
10529
  </a>
10488
10530
 
10489
10531
  </li>
10490
10532
 
10491
10533
  <li class="md-nav__item">
10492
- <a href="#documentation_4" class="md-nav__link">
10534
+ <a href="#documentation-in-v100b3" class="md-nav__link">
10493
10535
  <span class="md-ellipsis">
10494
- Documentation
10536
+ Documentation in v1.0.0b3
10495
10537
  </span>
10496
10538
  </a>
10497
10539
 
10498
10540
  </li>
10499
10541
 
10500
10542
  <li class="md-nav__item">
10501
- <a href="#housekeeping_4" class="md-nav__link">
10543
+ <a href="#housekeeping-in-v100b3" class="md-nav__link">
10502
10544
  <span class="md-ellipsis">
10503
- Housekeeping
10545
+ Housekeeping in v1.0.0b3
10504
10546
  </span>
10505
10547
  </a>
10506
10548
 
@@ -10522,54 +10564,54 @@
10522
10564
  <ul class="md-nav__list">
10523
10565
 
10524
10566
  <li class="md-nav__item">
10525
- <a href="#added_6" class="md-nav__link">
10567
+ <a href="#added-in-v100b2" class="md-nav__link">
10526
10568
  <span class="md-ellipsis">
10527
- Added
10569
+ Added in v1.0.0b2
10528
10570
  </span>
10529
10571
  </a>
10530
10572
 
10531
10573
  </li>
10532
10574
 
10533
10575
  <li class="md-nav__item">
10534
- <a href="#changed_6" class="md-nav__link">
10576
+ <a href="#changed-in-v100b2" class="md-nav__link">
10535
10577
  <span class="md-ellipsis">
10536
- Changed
10578
+ Changed in v1.0.0b2
10537
10579
  </span>
10538
10580
  </a>
10539
10581
 
10540
10582
  </li>
10541
10583
 
10542
10584
  <li class="md-nav__item">
10543
- <a href="#removed_3" class="md-nav__link">
10585
+ <a href="#removed-in-v100b2" class="md-nav__link">
10544
10586
  <span class="md-ellipsis">
10545
- Removed
10587
+ Removed in v1.0.0b2
10546
10588
  </span>
10547
10589
  </a>
10548
10590
 
10549
10591
  </li>
10550
10592
 
10551
10593
  <li class="md-nav__item">
10552
- <a href="#fixed_6" class="md-nav__link">
10594
+ <a href="#fixed-in-v100b2" class="md-nav__link">
10553
10595
  <span class="md-ellipsis">
10554
- Fixed
10596
+ Fixed in v1.0.0b2
10555
10597
  </span>
10556
10598
  </a>
10557
10599
 
10558
10600
  </li>
10559
10601
 
10560
10602
  <li class="md-nav__item">
10561
- <a href="#documentation_5" class="md-nav__link">
10603
+ <a href="#documentation-in-v100b2" class="md-nav__link">
10562
10604
  <span class="md-ellipsis">
10563
- Documentation
10605
+ Documentation in v1.0.0b2
10564
10606
  </span>
10565
10607
  </a>
10566
10608
 
10567
10609
  </li>
10568
10610
 
10569
10611
  <li class="md-nav__item">
10570
- <a href="#housekeeeping" class="md-nav__link">
10612
+ <a href="#housekeeeping-in-v100b2" class="md-nav__link">
10571
10613
  <span class="md-ellipsis">
10572
- Housekeeeping
10614
+ Housekeeeping in v1.0.0b2
10573
10615
  </span>
10574
10616
  </a>
10575
10617
 
@@ -10591,9 +10633,9 @@
10591
10633
  <ul class="md-nav__list">
10592
10634
 
10593
10635
  <li class="md-nav__item">
10594
- <a href="#fixed_7" class="md-nav__link">
10636
+ <a href="#fixed-in-v100b1" class="md-nav__link">
10595
10637
  <span class="md-ellipsis">
10596
- Fixed
10638
+ Fixed in v1.0.0b1
10597
10639
  </span>
10598
10640
  </a>
10599
10641
 
@@ -10622,7 +10664,6 @@
10622
10664
 
10623
10665
 
10624
10666
 
10625
- <!-- markdownlint-disable MD024 -->
10626
10667
  <h1 id="nautobot-v10">Nautobot v1.0<a class="headerlink" href="#nautobot-v10" title="Permanent link">&para;</a></h1>
10627
10668
  <p>This document describes all new features and changes in Nautobot 1.0, a divergent fork of NetBox 2.10. For the launch of Nautobot 1.0 and for the purpose of this document, all “new” features or “changes” are referring to the features and changes comparing Nautobot 1.0 coming from NetBox 2.10. All future release notes will only refer to features and changes relative to prior releases of Nautobot.</p>
10628
10669
  <p>Users migrating from NetBox to Nautobot should also refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation as well.</p>
@@ -10717,20 +10758,20 @@
10717
10758
  <h4 id="related-devices">Related Devices<a class="headerlink" href="#related-devices" title="Permanent link">&para;</a></h4>
10718
10759
  <p>The "Related Devices" table has been removed from the detailed Device view.</p>
10719
10760
  <h2 id="v103-2021-06-21">v1.0.3 (2021-06-21)<a class="headerlink" href="#v103-2021-06-21" title="Permanent link">&para;</a></h2>
10720
- <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
10761
+ <h3 id="security-in-v103">Security in v1.0.3<a class="headerlink" href="#security-in-v103" title="Permanent link">&para;</a></h3>
10721
10762
  <ul>
10722
10763
  <li><a href="https://github.com/nautobot/nautobot/issues/418">#418</a> - Removed unused JQuery-UI component flagged by vulnerability scanner (CVE-2020-7729)</li>
10723
10764
  </ul>
10724
- <h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">&para;</a></h3>
10765
+ <h3 id="added-in-v103">Added in v1.0.3<a class="headerlink" href="#added-in-v103" title="Permanent link">&para;</a></h3>
10725
10766
  <ul>
10726
10767
  <li><a href="https://github.com/nautobot/nautobot/issues/143">#143</a> - Added "copy" button on hover to <code>Device</code> detail view for name, primary IP addresses, and serial number.</li>
10727
10768
  <li><a href="https://github.com/nautobot/nautobot/pull/576">#576</a> - <code>JobResult</code> detail views now support custom links and plugin template extensions</li>
10728
10769
  </ul>
10729
- <h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">&para;</a></h3>
10770
+ <h3 id="changed-in-v103">Changed in v1.0.3<a class="headerlink" href="#changed-in-v103" title="Permanent link">&para;</a></h3>
10730
10771
  <ul>
10731
10772
  <li><a href="https://github.com/nautobot/nautobot/issues/537">#537</a> - To mitigate CVE-2021-31542, the minimum supported Django version is now 3.1.12.</li>
10732
10773
  </ul>
10733
- <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10774
+ <h3 id="fixed-in-v103">Fixed in v1.0.3<a class="headerlink" href="#fixed-in-v103" title="Permanent link">&para;</a></h3>
10734
10775
  <ul>
10735
10776
  <li><a href="https://github.com/nautobot/nautobot/issues/342">#342</a> - Fixed inconsistent behavior in <code>Site.time_zone</code> to emit and accept input as a null field if not set when using API</li>
10736
10777
  <li><a href="https://github.com/nautobot/nautobot/issues/389">#389</a> - Fixed incorrect TaggedItem base class that caused tag issues on MySQL.</li>
@@ -10749,7 +10790,7 @@
10749
10790
  <li><a href="https://github.com/nautobot/nautobot/issues/570">#570</a> - Fixed inability to import <code>ExportTemplates</code> for the <code>VLAN</code> model via Git.</li>
10750
10791
  <li><a href="https://github.com/nautobot/nautobot/pull/583">#583</a> - Fixed incorrect rejection of various forms when explicitly selecting a <code>null</code> option. (Port of <a href="https://github.com/netbox-community/netbox/pull/5704">NetBox #5704</a>)</li>
10751
10792
  </ul>
10752
- <h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h3>
10793
+ <h3 id="documentation-in-v103">Documentation in v1.0.3<a class="headerlink" href="#documentation-in-v103" title="Permanent link">&para;</a></h3>
10753
10794
  <ul>
10754
10795
  <li><a href="https://github.com/nautobot/nautobot/issues/220">#220</a> - Added a troubleshooting section to the development guide for issues encountered when using the multi-threaded development server</li>
10755
10796
  <li><a href="https://github.com/nautobot/nautobot/pull/505">#505</a> - Added example of Okta OAuth2 integration to the docs.</li>
@@ -10757,13 +10798,13 @@
10757
10798
  <li><a href="https://github.com/nautobot/nautobot/issues/523">#523</a> - Added instructions for using LDAP TLS Options to SSO documentation</li>
10758
10799
  <li><a href="https://github.com/nautobot/nautobot/pull/542">#542</a> - Fixed incorrect documentation for running <code>nautobot-server test</code> commands.</li>
10759
10800
  </ul>
10760
- <h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">&para;</a></h3>
10801
+ <h3 id="housekeeping-in-v103">Housekeeping in v1.0.3<a class="headerlink" href="#housekeeping-in-v103" title="Permanent link">&para;</a></h3>
10761
10802
  <ul>
10762
10803
  <li><a href="https://github.com/nautobot/nautobot/issues/183">#183</a> - Implemented a baseline integration test suite using Selenium</li>
10763
10804
  <li><a href="https://github.com/nautobot/nautobot/pull/540">#540</a> - Fixed intermittent CI failures due to DockerHub rate limits.</li>
10764
10805
  </ul>
10765
10806
  <h2 id="v102-2021-05-27">v1.0.2 (2021-05-27)<a class="headerlink" href="#v102-2021-05-27" title="Permanent link">&para;</a></h2>
10766
- <h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">&para;</a></h3>
10807
+ <h3 id="added-in-v102">Added in v1.0.2<a class="headerlink" href="#added-in-v102" title="Permanent link">&para;</a></h3>
10767
10808
  <ul>
10768
10809
  <li><a href="https://github.com/nautobot/nautobot/issues/14">#14</a> - Plugins are now officially permitted to use the generic view classes defined in <code>nautobot.core.views.generic</code> and corresponding base templates defined in <code>nautobot/core/templates/generic/</code>.</li>
10769
10810
  <li><a href="https://github.com/nautobot/nautobot/pull/430">#430</a> - GraphQL <code>ip_addresses</code> now includes an <code>assigned_object</code> field</li>
@@ -10773,15 +10814,15 @@
10773
10814
  <li><a href="https://github.com/nautobot/nautobot/issues/451">#451</a> - Added static GraphQL type for VirtualMachine model</li>
10774
10815
  <li><a href="https://github.com/nautobot/nautobot/pull/465">#465</a> - Added Virtual Chassis to the Home Page</li>
10775
10816
  </ul>
10776
- <h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">&para;</a></h3>
10817
+ <h3 id="changed-in-v102">Changed in v1.0.2<a class="headerlink" href="#changed-in-v102" title="Permanent link">&para;</a></h3>
10777
10818
  <ul>
10778
10819
  <li><a href="https://github.com/nautobot/nautobot/issues/448">#448</a> - <code>nautobot-server init</code> no longer provides an option to overwrite the existing configuration files.</li>
10779
10820
  </ul>
10780
- <h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">&para;</a></h3>
10821
+ <h3 id="removed-in-v102">Removed in v1.0.2<a class="headerlink" href="#removed-in-v102" title="Permanent link">&para;</a></h3>
10781
10822
  <ul>
10782
10823
  <li><a href="https://github.com/nautobot/nautobot/issues/456">#456</a> - Removed markdown-include</li>
10783
10824
  </ul>
10784
- <h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">&para;</a></h3>
10825
+ <h3 id="fixed-in-v102">Fixed in v1.0.2<a class="headerlink" href="#fixed-in-v102" title="Permanent link">&para;</a></h3>
10785
10826
  <ul>
10786
10827
  <li><a href="https://github.com/nautobot/nautobot/issues/309">#309</a> - Fixed erroneous termination display when cables are connected to power feeds.</li>
10787
10828
  <li><a href="https://github.com/nautobot/nautobot/issues/396">#396</a> - Fixed <code>ValidationError</code> not being raised when Relationship filters are invalid</li>
@@ -10796,12 +10837,12 @@
10796
10837
  <li><a href="https://github.com/nautobot/nautobot/issues/482">#482</a> - Fixed <code>FieldError</code> from being raised when a <code>JobResult</code> references a model with no <code>name</code> field</li>
10797
10838
  <li><a href="https://github.com/nautobot/nautobot/issues/488">#488</a> - Fix migrations in MySQL by hard-coding the <code>VarbinaryIPField</code> to use <code>varbinary(16)</code></li>
10798
10839
  </ul>
10799
- <h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">&para;</a></h3>
10840
+ <h3 id="documentation-in-v102">Documentation in v1.0.2<a class="headerlink" href="#documentation-in-v102" title="Permanent link">&para;</a></h3>
10800
10841
  <ul>
10801
10842
  <li><a href="https://github.com/nautobot/nautobot/pull/417">#417</a> - Fixed incorrect link to Docker docs from installation docs</li>
10802
10843
  <li><a href="https://github.com/nautobot/nautobot/pull/423">#423</a> - Clarified reference to <code>/config_contexts/</code> folder in Git user guide</li>
10803
10844
  </ul>
10804
- <h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">&para;</a></h3>
10845
+ <h3 id="housekeeping-in-v102">Housekeeping in v1.0.2<a class="headerlink" href="#housekeeping-in-v102" title="Permanent link">&para;</a></h3>
10805
10846
  <ul>
10806
10847
  <li><a href="https://github.com/nautobot/nautobot/issues/162">#162</a> - Added Invoke tasks <code>dumpdata</code> and <code>loaddata</code> for database backup/restoration in the development environment.</li>
10807
10848
  <li><a href="https://github.com/nautobot/nautobot/issues/456">#456</a> - Added mkdocs-include-markdown-plugin as a development dependency.</li>
@@ -10809,12 +10850,12 @@
10809
10850
  <li><a href="https://github.com/nautobot/nautobot/issues/486">#486</a> - Fixed failing Docker builds due to do missing <code>examples</code> development dependency</li>
10810
10851
  </ul>
10811
10852
  <h2 id="v101-2021-05-06">v1.0.1 (2021-05-06)<a class="headerlink" href="#v101-2021-05-06" title="Permanent link">&para;</a></h2>
10812
- <h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">&para;</a></h3>
10853
+ <h3 id="added-in-v101">Added in v1.0.1<a class="headerlink" href="#added-in-v101" title="Permanent link">&para;</a></h3>
10813
10854
  <ul>
10814
10855
  <li><a href="https://github.com/nautobot/nautobot/issues/242">#242</a> - Added a production-ready <code>Dockerfile</code> for clustered deployment</li>
10815
10856
  <li><a href="https://github.com/nautobot/nautobot/issues/356">#356</a> - Added a new <code>nautobot-server startplugin</code> management command to ease plugin development</li>
10816
10857
  </ul>
10817
- <h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">&para;</a></h3>
10858
+ <h3 id="fixed-in-v101">Fixed in v1.0.1<a class="headerlink" href="#fixed-in-v101" title="Permanent link">&para;</a></h3>
10818
10859
  <ul>
10819
10860
  <li><a href="https://github.com/nautobot/nautobot/issues/336">#336</a> - Fixed <code>nautobot.utilities.api.get_serializer_for_model</code> to now support the plugins namespace</li>
10820
10861
  <li><a href="https://github.com/nautobot/nautobot/issues/337">#337</a> - Fixed <code>nautobot.extras.plugins.api.views.PluginsAPIRootView</code> no longer creates null entries when <code>PluginConfig</code> does not define a <code>base_url</code></li>
@@ -10824,28 +10865,28 @@
10824
10865
  <li><a href="https://github.com/nautobot/nautobot/issues/398">#398</a> - Fixed <code>VirtualChassis</code> edit view to now show "Update" button vs. "Create"</li>
10825
10866
  <li><a href="https://github.com/nautobot/nautobot/issues/399">#399</a> - Fixed <code>nautobot.utilities.utils.get_filterset_for_model</code> to now support the plugins namespace</li>
10826
10867
  </ul>
10827
- <h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">&para;</a></h3>
10868
+ <h3 id="documentation-in-v101">Documentation in v1.0.1<a class="headerlink" href="#documentation-in-v101" title="Permanent link">&para;</a></h3>
10828
10869
  <ul>
10829
10870
  <li><a href="https://github.com/nautobot/nautobot/issues/15">#15</a> - Added documentation for plugins using generic models to get change logging using <code>ChangeLoggedModel</code></li>
10830
10871
  <li><a href="https://github.com/nautobot/nautobot/pull/362">#362</a> - Updated sample code in plugin development guide to inherit from <code>BaseModel</code></li>
10831
10872
  <li><a href="https://github.com/nautobot/nautobot/issues/400">#400</a> - Fixed the <code>class_path</code> format for Jobs API usage documentation not being clear enough</li>
10832
10873
  </ul>
10833
- <h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">&para;</a></h3>
10874
+ <h3 id="housekeeping-in-v101">Housekeeping in v1.0.1<a class="headerlink" href="#housekeeping-in-v101" title="Permanent link">&para;</a></h3>
10834
10875
  <ul>
10835
10876
  <li><a href="https://github.com/nautobot/nautobot/pull/366">#366</a> - Added GraphQL filter tests for <code>interfaces</code> queries and added missing unit tests for <code>Interface</code> filtersets</li>
10836
10877
  <li><a href="https://github.com/nautobot/nautobot/issues/402">#402</a> - Docs build requirements will now install <code>markdown-include</code> version from PyPI instead of GitHub</li>
10837
10878
  <li><a href="https://github.com/nautobot/nautobot/pull/409">#409</a> - Fixed misspelling: "Datbase" --&gt; "Database" in <code>nautobot_config.py.j2</code></li>
10838
10879
  </ul>
10839
10880
  <h2 id="v100-2021-04-26">v1.0.0 (2021-04-26)<a class="headerlink" href="#v100-2021-04-26" title="Permanent link">&para;</a></h2>
10840
- <h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">&para;</a></h3>
10881
+ <h3 id="added-in-v100">Added in v1.0.0<a class="headerlink" href="#added-in-v100" title="Permanent link">&para;</a></h3>
10841
10882
  <ul>
10842
10883
  <li><a href="https://github.com/nautobot/nautobot/pull/290">#290</a> - Added REST API endpoint for triggering a Git repository sync</li>
10843
10884
  </ul>
10844
- <h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">&para;</a></h3>
10885
+ <h3 id="changed-in-v100">Changed in v1.0.0<a class="headerlink" href="#changed-in-v100" title="Permanent link">&para;</a></h3>
10845
10886
  <ul>
10846
10887
  <li><a href="https://github.com/nautobot/nautobot/issues/333">#333</a> - Relationships now display the name of the related object type as well as the count</li>
10847
10888
  </ul>
10848
- <h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">&para;</a></h3>
10889
+ <h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">&para;</a></h3>
10849
10890
  <ul>
10850
10891
  <li><a href="https://github.com/nautobot/nautobot/issues/276">#276</a> - Fixed 500 error when creating Rack Reservation with invalid units</li>
10851
10892
  <li><a href="https://github.com/nautobot/nautobot/issues/277">#277</a> - Fixed 500 error when editing/updating IPAM Services with invalid ports</li>
@@ -10855,18 +10896,18 @@
10855
10896
  <li><a href="https://github.com/nautobot/nautobot/issues/359">#359</a> - Fixed incorrect GraphQL filtering of cables by <code>site</code></li>
10856
10897
  <li><a href="https://github.com/nautobot/nautobot/issues/361">#361</a> - Fixed duplicate "tags" field when creating a cable connection</li>
10857
10898
  </ul>
10858
- <h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">&para;</a></h3>
10899
+ <h3 id="dependencies-in-v100">Dependencies in v1.0.0<a class="headerlink" href="#dependencies-in-v100" title="Permanent link">&para;</a></h3>
10859
10900
  <ul>
10860
10901
  <li><a href="https://github.com/nautobot/nautobot/pull/358">#358</a> - Updated Python dependencies to their latest patch versions</li>
10861
10902
  </ul>
10862
10903
  <h2 id="v100b4-2021-04-19">v1.0.0b4 (2021-04-19)<a class="headerlink" href="#v100b4-2021-04-19" title="Permanent link">&para;</a></h2>
10863
- <h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">&para;</a></h3>
10904
+ <h3 id="changed-in-v100b4">Changed in v1.0.0b4<a class="headerlink" href="#changed-in-v100b4" title="Permanent link">&para;</a></h3>
10864
10905
  <ul>
10865
10906
  <li><a href="https://github.com/nautobot/nautobot/pull/217">#217</a> - Replaced JSONB aggregation with custom cross-database implementation that supports PG and MySQL</li>
10866
10907
  <li><a href="https://github.com/nautobot/nautobot/pull/245">#245</a> - Replaced PG-specific "advisory locks" with cross-database distributed Redis lock</li>
10867
10908
  <li><a href="https://github.com/nautobot/nautobot/pull/289">#289</a> - Updated natural unicode-aware sorting for interface/device names to support MySQL</li>
10868
10909
  </ul>
10869
- <h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">&para;</a></h3>
10910
+ <h3 id="fixed-in-v100b4">Fixed in v1.0.0b4<a class="headerlink" href="#fixed-in-v100b4" title="Permanent link">&para;</a></h3>
10870
10911
  <ul>
10871
10912
  <li><a href="https://github.com/nautobot/nautobot/issues/167">#167</a> - Fix to enable to query <code>ip_addresses</code> by parent in GraphQL</li>
10872
10913
  <li><a href="https://github.com/nautobot/nautobot/issues/212">#212</a> - Allow plugins to use built-in buttons</li>
@@ -10895,11 +10936,11 @@
10895
10936
  <li><a href="https://github.com/nautobot/nautobot/issues/326">#326</a> - Fix 404 error when attempting to delete a RelationshipAssociation from the list view</li>
10896
10937
  <li><a href="https://github.com/nautobot/nautobot/pull/373">#373</a> - Fix missing "Bulk Add IP Addresses" tab</li>
10897
10938
  </ul>
10898
- <h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">&para;</a></h3>
10939
+ <h3 id="dependencies-in-v100b4">Dependencies in v1.0.0b4<a class="headerlink" href="#dependencies-in-v100b4" title="Permanent link">&para;</a></h3>
10899
10940
  <ul>
10900
10941
  <li><a href="https://github.com/nautobot/nautobot/pull/273">#273</a> - Update to jQuery 3.6.0</li>
10901
10942
  </ul>
10902
- <h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">&para;</a></h3>
10943
+ <h3 id="documentation-in-v100b4">Documentation in v1.0.0b4<a class="headerlink" href="#documentation-in-v100b4" title="Permanent link">&para;</a></h3>
10903
10944
  <ul>
10904
10945
  <li><a href="https://github.com/nautobot/nautobot/issues/96">#96</a> - Implemented user guide documentation for GraphQL</li>
10905
10946
  <li><a href="https://github.com/nautobot/nautobot/issues/97">#97</a> - Implemented user guide documentation for Git as a Data Source</li>
@@ -10909,7 +10950,7 @@
10909
10950
  <li><a href="https://github.com/nautobot/nautobot/issues/262">#262</a> - Revised Nautobot upgrade and NetBox migration guides</li>
10910
10951
  <li><a href="https://github.com/nautobot/nautobot/issues/264">#264</a> - Fix missing parenthesis in datasources example</li>
10911
10952
  </ul>
10912
- <h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">&para;</a></h3>
10953
+ <h3 id="housekeeping-in-v100b4">Housekeeping in v1.0.0b4<a class="headerlink" href="#housekeeping-in-v100b4" title="Permanent link">&para;</a></h3>
10913
10954
  <ul>
10914
10955
  <li><a href="https://github.com/nautobot/nautobot/pull/211">#211</a> - Travis CI build improvements to simplify entry points and make tests fail faster</li>
10915
10956
  <li><a href="https://github.com/nautobot/nautobot/pull/324">#324</a> - Fix unit test execution on MySQL by changing subquery limiting to list slicing</li>
@@ -10919,14 +10960,14 @@
10919
10960
  <p class="admonition-title">Warning</p>
10920
10961
  <p>v1.0.0b3 introduces several database changes that are <strong>not</strong> backwards-compatible with v1.0.0b2 and earlier. There is no direct upgrade path from v1.0.0b2 to v1.0.0b3 - you <strong>must</strong> create a new database when installing v1.0.0b3!</p>
10921
10962
  </div>
10922
- <h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">&para;</a></h3>
10963
+ <h3 id="added-in-v100b3">Added in v1.0.0b3<a class="headerlink" href="#added-in-v100b3" title="Permanent link">&para;</a></h3>
10923
10964
  <ul>
10924
10965
  <li><a href="https://github.com/nautobot/nautobot/issues/105">#105</a> - Added tooltip with detailed information to utilization graph bars.</li>
10925
10966
  <li><a href="https://github.com/nautobot/nautobot/pull/141">#141</a> - Custom Link UI now includes example usage hints</li>
10926
10967
  <li><a href="https://github.com/nautobot/nautobot/pull/227">#227</a> - Add QFSP+ (64GFC) FiberChannel interface type</li>
10927
10968
  <li><a href="https://github.com/nautobot/nautobot/pull/236">#236</a> - Add <code>post_upgrade</code> to developer docs and add <code>invoke post-upgrade</code></li>
10928
10969
  </ul>
10929
- <h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">&para;</a></h3>
10970
+ <h3 id="changed-in-v100b3">Changed in v1.0.0b3<a class="headerlink" href="#changed-in-v100b3" title="Permanent link">&para;</a></h3>
10930
10971
  <p>Major backwards-incompatible database changes were included in this beta release that are intended are to pave the way for us to support MySQL as a database backend in a future update. Of those changes, these are the most notable:</p>
10931
10972
  <ul>
10932
10973
  <li>All IPAM objects with network field types (<code>ipam.Aggregate</code>, <code>ipam.IPAddress</code>, and <code>ipam.Prefix</code>) are no longer hard-coded to use PostgreSQL-only <code>inet</code> or <code>cidr</code> field types and are now using a custom implementation leveraging SQL-standard <code>varbinary</code> field types</li>
@@ -10950,12 +10991,12 @@
10950
10991
  <li><a href="https://github.com/nautobot/nautobot/pull/208">#208</a> - Custom fields model refactor</li>
10951
10992
  <li><a href="https://github.com/nautobot/nautobot/pull/241">#241</a> - Swap <code>contrib.postgres.fields.JSONField</code> for <code>db.models.JSONField</code></li>
10952
10993
  </ul>
10953
- <h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">&para;</a></h3>
10994
+ <h3 id="removed-in-v100b3">Removed in v1.0.0b3<a class="headerlink" href="#removed-in-v100b3" title="Permanent link">&para;</a></h3>
10954
10995
  <ul>
10955
10996
  <li><a href="https://github.com/nautobot/nautobot/pull/189">#188</a> - Remove <code>CSRF_TRUSTED_ORIGINS</code> from core settings</li>
10956
10997
  <li><a href="https://github.com/nautobot/nautobot/pull/189">#189</a> - Remove all references to <code>settings.BASE_PATH</code></li>
10957
10998
  </ul>
10958
- <h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">&para;</a></h3>
10999
+ <h3 id="fixed-in-v100b3">Fixed in v1.0.0b3<a class="headerlink" href="#fixed-in-v100b3" title="Permanent link">&para;</a></h3>
10959
11000
  <ul>
10960
11001
  <li><a href="https://github.com/nautobot/nautobot/issues/26">#26</a> - <code>nautobot-server runserver</code> does not work using <code>poetry run</code></li>
10961
11002
  <li><a href="https://github.com/nautobot/nautobot/issues/58">#58</a> - GraphQL Device Query - Role filter issue</li>
@@ -10976,7 +11017,7 @@
10976
11017
  <li><a href="https://github.com/nautobot/nautobot/issues/213">#213</a> - Programming Error Exception Value: relation <code>"social_auth_usersocialauth"</code> does not exist</li>
10977
11018
  <li><a href="https://github.com/nautobot/nautobot/issues/224">#224</a> - Edit view for IPAM network objects does not emit the current network address value</li>
10978
11019
  </ul>
10979
- <h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">&para;</a></h3>
11020
+ <h3 id="documentation-in-v100b3">Documentation in v1.0.0b3<a class="headerlink" href="#documentation-in-v100b3" title="Permanent link">&para;</a></h3>
10980
11021
  <ul>
10981
11022
  <li><a href="https://github.com/nautobot/nautobot/issues/84">#84</a> - Revised developer documentation for clarity and current workflows</li>
10982
11023
  <li><a href="https://github.com/nautobot/nautobot/issues/100">#100</a> - Added detailed documentation of the <code>nautobot-server</code> command</li>
@@ -10993,7 +11034,7 @@
10993
11034
  <li><a href="https://github.com/nautobot/nautobot/issues/205">#205</a> - API Documentation shows numeric id instead of UUID</li>
10994
11035
  <li><a href="https://github.com/nautobot/nautobot/pull/235">#235</a> - Update restart docs to include worker</li>
10995
11036
  </ul>
10996
- <h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">&para;</a></h3>
11037
+ <h3 id="housekeeping-in-v100b3">Housekeeping in v1.0.0b3<a class="headerlink" href="#housekeeping-in-v100b3" title="Permanent link">&para;</a></h3>
10997
11038
  <ul>
10998
11039
  <li><a href="https://github.com/nautobot/nautobot/pull/109">#109</a> - Docker development environment build now automatically installs from any present <code>local_requirements.txt</code> file</li>
10999
11040
  <li><a href="https://github.com/nautobot/nautobot/pull/124">#124</a> - Removed incorrect statement from feature request template</li>
@@ -11002,21 +11043,21 @@
11002
11043
  <li><a href="https://github.com/nautobot/nautobot/issues/255">#255</a> - Update docs <code>edit_uri</code> to point to correct path</li>
11003
11044
  </ul>
11004
11045
  <h2 id="v100b2-2021-03-08">v1.0.0b2 (2021-03-08)<a class="headerlink" href="#v100b2-2021-03-08" title="Permanent link">&para;</a></h2>
11005
- <h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">&para;</a></h3>
11046
+ <h3 id="added-in-v100b2">Added in v1.0.0b2<a class="headerlink" href="#added-in-v100b2" title="Permanent link">&para;</a></h3>
11006
11047
  <ul>
11007
11048
  <li><a href="https://github.com/nautobot/nautobot/issues/48">#48</a> - Additional unit testing and bug fixes for Relationships feature.</li>
11008
11049
  <li><a href="https://github.com/nautobot/nautobot/pull/99">#99</a> - Add <code>BASE_PATH</code> to <code>development/nautobot_config.py</code>.</li>
11009
11050
  <li><a href="https://github.com/nautobot/nautobot/pull/107">#107</a> - Add <code>nautobot-server post_upgrade</code> command</li>
11010
11051
  </ul>
11011
- <h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">&para;</a></h3>
11052
+ <h3 id="changed-in-v100b2">Changed in v1.0.0b2<a class="headerlink" href="#changed-in-v100b2" title="Permanent link">&para;</a></h3>
11012
11053
  <ul>
11013
11054
  <li><a href="https://github.com/nautobot/nautobot/issues/88">#88</a> - Replace Gunicorn w/ uWSGI</li>
11014
11055
  </ul>
11015
- <h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">&para;</a></h3>
11056
+ <h3 id="removed-in-v100b2">Removed in v1.0.0b2<a class="headerlink" href="#removed-in-v100b2" title="Permanent link">&para;</a></h3>
11016
11057
  <ul>
11017
11058
  <li><a href="https://github.com/nautobot/nautobot/pull/72">#72</a> - Removed issue template for "Documentation Change"; use "Bug" or "Feature Request" issue templates instead.</li>
11018
11059
  </ul>
11019
- <h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">&para;</a></h3>
11060
+ <h3 id="fixed-in-v100b2">Fixed in v1.0.0b2<a class="headerlink" href="#fixed-in-v100b2" title="Permanent link">&para;</a></h3>
11020
11061
  <ul>
11021
11062
  <li><a href="https://github.com/nautobot/nautobot/pull/41">#41</a> - Incorrect field name in CustomLink Admin page.</li>
11022
11063
  <li><a href="https://github.com/nautobot/nautobot/issues/45">#45</a> - Incorrect button labels when creating/editing an Interface record.</li>
@@ -11024,7 +11065,7 @@
11024
11065
  <li><a href="https://github.com/nautobot/nautobot/issues/81">#81</a> - Unable to change Device rack position after creation.</li>
11025
11066
  <li><a href="https://github.com/nautobot/nautobot/issues/93">#93</a> - Bug when setting <code>CACHEOPS_DEFAULTS</code> timeout value to <code>0</code>.</li>
11026
11067
  </ul>
11027
- <h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">&para;</a></h3>
11068
+ <h3 id="documentation-in-v100b2">Documentation in v1.0.0b2<a class="headerlink" href="#documentation-in-v100b2" title="Permanent link">&para;</a></h3>
11028
11069
  <ul>
11029
11070
  <li><a href="https://github.com/nautobot/nautobot/issues/35">#35</a> - Documentation for troubleshooting Nautobot's interaction with SELinux.</li>
11030
11071
  <li><a href="https://github.com/nautobot/nautobot/pull/36">#36</a> - Broken links to ReadTheDocs pages.</li>
@@ -11043,7 +11084,7 @@
11043
11084
  <li><a href="https://github.com/nautobot/nautobot/issues/101">#101</a> - Complete documentation of <code>NAUTOBOT_ROOT</code></li>
11044
11085
  <li><a href="https://github.com/nautobot/nautobot/pull/106">#106</a> - Revise deployment docs to use <code>$PATH</code> instead of venv activate</li>
11045
11086
  </ul>
11046
- <h3 id="housekeeeping">Housekeeeping<a class="headerlink" href="#housekeeeping" title="Permanent link">&para;</a></h3>
11087
+ <h3 id="housekeeeping-in-v100b2">Housekeeeping in v1.0.0b2<a class="headerlink" href="#housekeeeping-in-v100b2" title="Permanent link">&para;</a></h3>
11047
11088
  <ul>
11048
11089
  <li><a href="https://github.com/nautobot/nautobot/issues/51">#51</a> - Incorrect functioning of "development container" in VSCode integration.</li>
11049
11090
  <li><a href="https://github.com/nautobot/nautobot/pull/52">#52</a> - Disabled Poetry's "parallel installation" feature for CI and development builds.</li>
@@ -11059,7 +11100,7 @@
11059
11100
  </ul>
11060
11101
  <h2 id="v100b1-2021-02-24">v1.0.0b1 (2021-02-24)<a class="headerlink" href="#v100b1-2021-02-24" title="Permanent link">&para;</a></h2>
11061
11102
  <p>Initial public beta release.</p>
11062
- <h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">&para;</a></h3>
11103
+ <h3 id="fixed-in-v100b1">Fixed in v1.0.0b1<a class="headerlink" href="#fixed-in-v100b1" title="Permanent link">&para;</a></h3>
11063
11104
  <ul>
11064
11105
  <li>Fixed a bug, inherited from NetBox 2.10, in which object permissions were not filtered correctly in the admin interface.</li>
11065
11106
  <li>Fixed a bug, inherited from NetBox 2.10, in which the UI would report an exception if the database contains ChangeLog entries that reference a nonexistent ContentType.</li>
@@ -11210,7 +11251,7 @@
11210
11251
  <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>
11211
11252
 
11212
11253
 
11213
- <script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
11254
+ <script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
11214
11255
 
11215
11256
  <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
11216
11257