nautobot 2.3.15b1__py3-none-any.whl → 2.4.0__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.
- nautobot/__init__.py +15 -0
- nautobot/apps/__init__.py +1 -1
- nautobot/apps/api.py +8 -10
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/config.py +32 -3
- nautobot/apps/events.py +19 -0
- nautobot/apps/exceptions.py +0 -2
- nautobot/apps/factory.py +2 -2
- nautobot/apps/filters.py +1 -1
- nautobot/apps/forms.py +20 -20
- nautobot/apps/graphql.py +2 -2
- nautobot/apps/jobs.py +8 -8
- nautobot/apps/models.py +19 -19
- nautobot/apps/tables.py +1 -1
- nautobot/apps/testing.py +10 -10
- nautobot/apps/ui.py +44 -9
- nautobot/apps/utils.py +7 -15
- nautobot/apps/views.py +8 -6
- nautobot/circuits/api/serializers.py +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/navigation.py +0 -57
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- nautobot/circuits/templates/circuits/circuit_retrieve.html +0 -71
- nautobot/circuits/templates/circuits/inc/circuit_termination.html +6 -64
- nautobot/circuits/templates/circuits/inc/circuit_termination_cable_fragment.html +40 -0
- nautobot/circuits/templates/circuits/inc/circuit_termination_header_extra_content.html +26 -0
- nautobot/circuits/templates/circuits/provider_retrieve.html +0 -76
- nautobot/circuits/tests/integration/test_relationships.py +33 -24
- nautobot/circuits/tests/test_filters.py +4 -8
- nautobot/circuits/views.py +143 -26
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/factory.py +4 -1
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/tests/test_filters.py +5 -4
- nautobot/cloud/views.py +0 -16
- nautobot/core/api/constants.py +11 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +3 -9
- nautobot/core/api/metadata.py +28 -256
- nautobot/core/api/pagination.py +3 -2
- nautobot/core/api/renderers.py +3 -0
- nautobot/core/api/schema.py +13 -2
- nautobot/core/api/serializers.py +54 -268
- nautobot/core/api/urls.py +3 -4
- nautobot/core/api/utils.py +0 -62
- nautobot/core/api/views.py +102 -159
- nautobot/core/apps/__init__.py +22 -575
- nautobot/core/celery/__init__.py +13 -0
- nautobot/core/celery/schedulers.py +48 -3
- nautobot/core/choices.py +2 -2
- nautobot/core/cli/__init__.py +8 -0
- nautobot/core/constants.py +7 -0
- nautobot/core/events/__init__.py +116 -0
- nautobot/core/events/base.py +27 -0
- nautobot/core/events/exceptions.py +10 -0
- nautobot/core/events/redis_broker.py +48 -0
- nautobot/core/events/syslog_broker.py +19 -0
- nautobot/core/exceptions.py +0 -6
- nautobot/core/filters.py +19 -16
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +62 -14
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/forms/utils.py +2 -1
- nautobot/core/graphql/schema.py +3 -1
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +28 -7
- nautobot/core/jobs/bulk_actions.py +248 -0
- nautobot/core/jobs/cleanup.py +2 -2
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/generate_test_data.py +21 -0
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/middleware.py +16 -0
- nautobot/core/models/__init__.py +1 -1
- nautobot/core/models/fields.py +11 -7
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +2 -2
- nautobot/core/settings.py +71 -4
- nautobot/core/settings.yaml +107 -0
- nautobot/core/tables.py +15 -51
- nautobot/core/tasks.py +1 -1
- nautobot/core/templates/about.html +67 -0
- nautobot/core/templates/components/button/default.html +7 -0
- nautobot/core/templates/components/button/dropdown.html +20 -0
- nautobot/core/templates/components/layout/one_over_two.html +19 -0
- nautobot/core/templates/components/layout/two_over_one.html +19 -0
- nautobot/core/templates/components/panel/body_content_data_table.html +27 -0
- nautobot/core/templates/components/panel/body_content_objects_table.html +4 -0
- nautobot/core/templates/components/panel/body_content_tags.html +6 -0
- nautobot/core/templates/components/panel/body_content_text.html +12 -0
- nautobot/core/templates/components/panel/body_wrapper_generic.html +3 -0
- nautobot/core/templates/components/panel/body_wrapper_key_value_table.html +3 -0
- nautobot/core/templates/components/panel/body_wrapper_table.html +3 -0
- nautobot/core/templates/components/panel/footer_contacts_table.html +20 -0
- nautobot/core/templates/components/panel/footer_content_table.html +14 -0
- nautobot/core/templates/components/panel/grouping_toggle.html +14 -0
- nautobot/core/templates/components/panel/header_extra_content_table.html +3 -0
- nautobot/core/templates/components/panel/panel.html +16 -0
- nautobot/core/templates/components/panel/stats_panel_body.html +8 -0
- nautobot/core/templates/components/tab/content_wrapper.html +3 -0
- nautobot/core/templates/components/tab/label_wrapper.html +5 -0
- nautobot/core/templates/components/tab/label_wrapper_distinct_view.html +3 -0
- nautobot/core/templates/generic/object_retrieve.html +28 -17
- nautobot/core/templates/inc/computed_fields/panel_data.html +4 -7
- nautobot/core/templates/inc/custom_fields/panel.html +2 -2
- nautobot/core/templates/inc/custom_fields/panel_data.html +4 -7
- nautobot/core/templates/inc/footer.html +1 -0
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/inc/nav_menu.html +2 -1
- nautobot/core/templates/inc/relationships_panel.html +1 -1
- nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
- nautobot/core/templates/inc/tenant_table_row.html +11 -0
- nautobot/core/templates/nautobot_config.py.j2 +16 -0
- nautobot/core/templates/panel_table.html +12 -0
- nautobot/core/templates/utilities/render_jinja2.html +117 -0
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +7 -0
- nautobot/core/templatetags/helpers.py +104 -6
- nautobot/core/templatetags/ui_framework.py +40 -0
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +187 -137
- nautobot/core/testing/context.py +18 -0
- nautobot/core/testing/filters.py +44 -34
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/views.py +68 -146
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +2 -1
- nautobot/core/tests/nautobot_config.py +198 -0
- nautobot/core/tests/runner.py +3 -3
- nautobot/core/tests/test_api.py +154 -176
- nautobot/core/tests/test_events.py +214 -0
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jinja_filters.py +1 -0
- nautobot/core/tests/test_jobs.py +387 -14
- nautobot/core/tests/test_navigations.py +7 -241
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_templatetags_helpers.py +16 -0
- nautobot/core/tests/test_ui.py +150 -0
- nautobot/core/tests/test_utils.py +55 -18
- nautobot/core/tests/test_views.py +153 -5
- nautobot/core/ui/__init__.py +0 -0
- nautobot/core/ui/base.py +11 -0
- nautobot/core/ui/choices.py +44 -0
- nautobot/core/ui/homepage.py +167 -0
- nautobot/core/ui/nav.py +280 -0
- nautobot/core/ui/object_detail.py +1855 -0
- nautobot/core/ui/utils.py +36 -0
- nautobot/core/urls.py +15 -0
- nautobot/core/utils/config.py +30 -3
- nautobot/core/utils/lookup.py +12 -2
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +48 -1
- nautobot/core/views/generic.py +82 -177
- nautobot/core/views/mixins.py +98 -38
- nautobot/core/views/paginator.py +8 -5
- nautobot/core/views/renderers.py +9 -9
- nautobot/core/views/utils.py +11 -0
- nautobot/core/wsgi.py +3 -3
- nautobot/dcim/api/serializers.py +82 -189
- nautobot/dcim/api/urls.py +5 -0
- nautobot/dcim/api/views.py +57 -110
- nautobot/dcim/apps.py +1 -0
- nautobot/dcim/choices.py +28 -0
- nautobot/dcim/factory.py +58 -0
- nautobot/dcim/filters/__init__.py +204 -2
- nautobot/dcim/forms.py +221 -9
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0063_interfacevdcassignment_virtualdevicecontext_and_more.py +165 -0
- nautobot/dcim/migrations/0064_virtualdevicecontext_status_data_migration.py +28 -0
- nautobot/dcim/migrations/0065_controller_capabilities_and_more.py +29 -0
- nautobot/dcim/migrations/0066_controllermanageddevicegroup_radio_profiles_and_more.py +33 -0
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +5 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +181 -3
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +6 -6
- nautobot/dcim/navigation.py +25 -224
- nautobot/dcim/signals.py +44 -0
- nautobot/dcim/tables/__init__.py +5 -3
- nautobot/dcim/tables/devices.py +103 -7
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/controller/base.html +10 -0
- nautobot/dcim/templates/dcim/controller_create.html +2 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +6 -10
- nautobot/dcim/templates/dcim/controller_wirelessnetworks.html +25 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +68 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +51 -0
- nautobot/dcim/templates/dcim/device/base.html +6 -42
- nautobot/dcim/templates/dcim/device/wireless.html +73 -0
- nautobot/dcim/templates/dcim/device.html +4 -10
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/interface.html +1 -0
- nautobot/dcim/templates/dcim/interface_edit.html +1 -0
- nautobot/dcim/templates/dcim/location.html +1 -9
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/locationtype.html +0 -107
- nautobot/dcim/templates/dcim/locationtype_retrieve.html +8 -0
- nautobot/dcim/templates/dcim/rack.html +1 -9
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackreservation.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +68 -0
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +28 -0
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/test_api.py +188 -64
- nautobot/dcim/tests/test_filters.py +172 -76
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +159 -5
- nautobot/dcim/tests/test_signals.py +1 -0
- nautobot/dcim/tests/test_views.py +118 -88
- nautobot/dcim/urls.py +72 -27
- nautobot/dcim/utils.py +2 -2
- nautobot/dcim/views.py +357 -62
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +111 -87
- nautobot/extras/api/urls.py +4 -0
- nautobot/extras/api/views.py +93 -35
- nautobot/extras/choices.py +13 -0
- nautobot/extras/constants.py +2 -1
- nautobot/extras/context_managers.py +23 -6
- nautobot/extras/datasources/git.py +4 -1
- nautobot/extras/factory.py +27 -0
- nautobot/extras/filters/__init__.py +66 -5
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +262 -59
- nautobot/extras/forms/mixins.py +3 -3
- nautobot/extras/graphql/types.py +25 -1
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +114 -20
- nautobot/extras/management/__init__.py +1 -0
- nautobot/extras/management/commands/runjob.py +7 -79
- nautobot/extras/management/commands/runjob_with_job_result.py +46 -0
- nautobot/extras/management/utils.py +87 -0
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/migrations/0117_create_job_queue_model.py +129 -0
- nautobot/extras/migrations/0118_task_queue_to_job_queue_migration.py +78 -0
- nautobot/extras/migrations/0119_remove_task_queues_from_job_and_queue_from_scheduled_job.py +28 -0
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
- nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
- nautobot/extras/models/__init__.py +5 -1
- nautobot/extras/models/change_logging.py +7 -3
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +12 -11
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +237 -37
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/models/relationships.py +69 -1
- nautobot/extras/models/secrets.py +5 -0
- nautobot/extras/navigation.py +20 -262
- nautobot/extras/plugins/__init__.py +54 -19
- nautobot/extras/plugins/marketplace_manifest.yml +455 -0
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/urls.py +1 -0
- nautobot/extras/plugins/views.py +104 -61
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/signals.py +39 -1
- nautobot/extras/tables.py +42 -6
- nautobot/extras/templates/extras/dynamicgroup.html +1 -9
- nautobot/extras/templates/extras/externalintegration_retrieve.html +0 -47
- nautobot/extras/templates/extras/inc/tags_panel.html +1 -5
- nautobot/extras/templates/extras/job_bulk_edit.html +2 -1
- nautobot/extras/templates/extras/job_detail.html +52 -6
- nautobot/extras/templates/extras/job_edit.html +6 -2
- nautobot/extras/templates/extras/job_list.html +2 -7
- nautobot/extras/templates/extras/jobqueue_retrieve.html +36 -0
- nautobot/extras/templates/extras/marketplace.html +296 -0
- nautobot/extras/templates/extras/plugin_detail.html +32 -15
- nautobot/extras/templates/extras/plugins_list.html +35 -1
- nautobot/extras/templates/extras/plugins_tiles.html +90 -0
- nautobot/extras/templates/extras/role_retrieve.html +16 -0
- nautobot/extras/templates/extras/secret.html +0 -65
- nautobot/extras/templates/extras/secret_check.js +16 -0
- nautobot/extras/templates/extras/secret_create.html +114 -0
- nautobot/extras/templates/extras/secret_edit.html +1 -114
- nautobot/extras/templates/extras/secretsgroup_edit.html +1 -1
- nautobot/extras/templates/extras/templatetags/plugin_object_detail_tabs.html +2 -0
- nautobot/extras/templatetags/job_buttons.py +5 -4
- nautobot/extras/templatetags/plugins.py +69 -6
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/singleton.py +16 -0
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +157 -55
- nautobot/extras/tests/test_context_managers.py +4 -1
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_datasources.py +2 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +219 -535
- nautobot/extras/tests/test_forms.py +20 -1
- nautobot/extras/tests/test_job_variables.py +73 -152
- nautobot/extras/tests/test_jobs.py +192 -62
- nautobot/extras/tests/test_models.py +71 -16
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +124 -10
- nautobot/extras/tests/test_utils.py +23 -2
- nautobot/extras/tests/test_views.py +162 -161
- nautobot/extras/tests/test_webhooks.py +2 -1
- nautobot/extras/urls.py +2 -20
- nautobot/extras/utils.py +119 -4
- nautobot/extras/views.py +188 -141
- nautobot/extras/webhooks.py +5 -2
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +44 -137
- nautobot/ipam/api/views.py +68 -110
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/models.py +10 -12
- nautobot/ipam/navigation.py +0 -90
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +3 -1
- nautobot/ipam/templates/ipam/ipaddress.html +1 -9
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
- nautobot/ipam/templates/ipam/prefix.html +1 -9
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/routetarget.html +0 -28
- nautobot/ipam/templates/ipam/vlan.html +1 -9
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vrf.html +0 -47
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +19 -6
- nautobot/ipam/tests/test_filters.py +39 -119
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +56 -36
- nautobot/ipam/tests/test_querysets.py +14 -0
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/urls.py +3 -69
- nautobot/ipam/utils/__init__.py +16 -10
- nautobot/ipam/views.py +91 -162
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/css/base.css +38 -3
- nautobot/project-static/docs/404.html +463 -19
- nautobot/project-static/docs/apps/index.html +463 -19
- nautobot/project-static/docs/apps/nautobot-apps.html +464 -21
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/extra.css +5 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.88dd0f4e.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.88dd0f4e.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +479 -25
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +476 -22
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +792 -291
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +507 -33
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +512 -36
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +473 -22
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +469 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +499 -35
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +9883 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +525 -77
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +548 -53
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +672 -96
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1033 -180
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +526 -51
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +876 -190
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +957 -237
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +477 -23
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +488 -30
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +663 -101
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +949 -481
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +6427 -1236
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +476 -22
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +879 -346
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +830 -173
- nautobot/project-static/docs/development/apps/api/configuration-view.html +463 -19
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +463 -19
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +463 -19
- nautobot/project-static/docs/development/apps/api/models/global-search.html +463 -19
- nautobot/project-static/docs/development/apps/api/models/graphql.html +463 -19
- nautobot/project-static/docs/development/apps/api/models/index.html +463 -19
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +463 -19
- nautobot/project-static/docs/development/apps/api/prometheus.html +463 -19
- nautobot/project-static/docs/development/apps/api/setup.html +467 -155
- nautobot/project-static/docs/development/apps/api/testing.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +743 -130
- nautobot/project-static/docs/development/apps/api/views/base-template.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/index.html +465 -20
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +467 -19
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +493 -19
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/notes.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +469 -21
- nautobot/project-static/docs/development/apps/api/views/urls.html +463 -19
- nautobot/project-static/docs/development/apps/index.html +463 -19
- nautobot/project-static/docs/development/apps/migration/code-updates.html +464 -52
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +464 -20
- nautobot/project-static/docs/development/apps/migration/from-v1.html +463 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +463 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +463 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +463 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +466 -22
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +9261 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +9375 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +9671 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +9559 -0
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +466 -22
- nautobot/project-static/docs/development/core/application-registry.html +463 -19
- nautobot/project-static/docs/development/core/best-practices.html +463 -19
- nautobot/project-static/docs/development/core/bootstrap-ui.html +463 -19
- nautobot/project-static/docs/development/core/caching.html +463 -19
- nautobot/project-static/docs/development/core/controllers.html +465 -19
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +491 -90
- nautobot/project-static/docs/development/core/generic-views.html +463 -19
- nautobot/project-static/docs/development/core/getting-started.html +541 -129
- nautobot/project-static/docs/development/core/homepage.html +474 -30
- nautobot/project-static/docs/development/core/index.html +463 -19
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +9754 -0
- nautobot/project-static/docs/development/core/model-checklist.html +473 -27
- nautobot/project-static/docs/development/core/model-features.html +463 -19
- nautobot/project-static/docs/development/core/natural-keys.html +463 -19
- nautobot/project-static/docs/development/core/navigation-menu.html +480 -26
- nautobot/project-static/docs/development/core/release-checklist.html +480 -48
- nautobot/project-static/docs/development/core/role-internals.html +463 -19
- nautobot/project-static/docs/development/core/settings.html +463 -19
- nautobot/project-static/docs/development/core/style-guide.html +466 -22
- nautobot/project-static/docs/development/core/templates.html +473 -22
- nautobot/project-static/docs/development/core/testing.html +463 -19
- nautobot/project-static/docs/development/core/ui-component-framework.html +11116 -0
- nautobot/project-static/docs/development/core/user-preferences.html +466 -22
- nautobot/project-static/docs/development/index.html +463 -19
- nautobot/project-static/docs/development/jobs/index.html +501 -21
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +463 -19
- nautobot/project-static/docs/index.html +471 -38
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/basic-panel-layout.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/button-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/dropdown-button-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/grouped-key-value-table-panel-example-1.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/grouped-key-value-table-panel-example-2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/table-panels-family.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/text-panels-family.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/ui-framework-example.png +0 -0
- nautobot/project-static/docs/media/models/virtual_device_context_overview.drawio +73 -0
- nautobot/project-static/docs/media/models/virtual_device_context_overview.png +0 -0
- nautobot/project-static/docs/models/dcim/virtualdevicecontext.html +14 -0
- nautobot/project-static/docs/models/extras/jobqueue.html +14 -0
- nautobot/project-static/docs/models/wireless/radioprofile.html +14 -0
- nautobot/project-static/docs/models/wireless/supporteddatarate.html +14 -0
- nautobot/project-static/docs/models/wireless/wirelessnetwork.html +14 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +469 -23
- nautobot/project-static/docs/overview/design_philosophy.html +463 -19
- nautobot/project-static/docs/release-notes/index.html +485 -22
- nautobot/project-static/docs/release-notes/version-1.0.html +651 -208
- nautobot/project-static/docs/release-notes/version-1.1.html +648 -205
- nautobot/project-static/docs/release-notes/version-1.2.html +723 -280
- nautobot/project-static/docs/release-notes/version-1.3.html +749 -306
- nautobot/project-static/docs/release-notes/version-1.4.html +834 -392
- nautobot/project-static/docs/release-notes/version-1.5.html +1022 -581
- nautobot/project-static/docs/release-notes/version-1.6.html +942 -518
- nautobot/project-static/docs/release-notes/version-2.0.html +945 -504
- nautobot/project-static/docs/release-notes/version-2.1.html +780 -339
- nautobot/project-static/docs/release-notes/version-2.2.html +773 -332
- nautobot/project-static/docs/release-notes/version-2.3.html +1142 -448
- nautobot/project-static/docs/release-notes/version-2.4.html +10323 -0
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +342 -270
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +463 -19
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +463 -19
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +463 -19
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +475 -32
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +463 -19
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +894 -180
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +476 -29
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +465 -21
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +463 -19
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +463 -19
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +463 -19
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +483 -23
- nautobot/project-static/docs/user-guide/administration/installation/index.html +468 -20
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +464 -20
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +463 -19
- nautobot/project-static/docs/user-guide/administration/installation/services.html +463 -19
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +463 -19
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +484 -41
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +477 -66
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +477 -66
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +466 -23
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-nautobot-app-location.yaml +0 -16
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +469 -21
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +499 -20
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +489 -22
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +9375 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +470 -30
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +466 -22
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +466 -22
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +9313 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +9217 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +9211 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +9277 -0
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +468 -22
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +466 -22
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +9444 -0
- nautobot/project-static/docs/user-guide/index.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +467 -23
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +9617 -0
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +472 -23
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +9224 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9722 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +467 -23
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +9292 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +511 -40
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +494 -23
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +531 -56
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +463 -19
- nautobot/project-static/img/jinja_logo.svg +97 -0
- nautobot/project-static/js/forms.js +6 -1
- nautobot/project-static/js/nav_menu.js +2 -1
- nautobot/tenancy/api/serializers.py +0 -2
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/factory.py +1 -1
- nautobot/tenancy/navigation.py +0 -29
- nautobot/tenancy/templates/tenancy/tenant.html +4 -91
- nautobot/tenancy/tests/test_filters.py +29 -134
- nautobot/tenancy/views.py +35 -24
- nautobot/users/admin.py +3 -1
- nautobot/users/api/serializers.py +4 -4
- nautobot/users/api/views.py +3 -3
- nautobot/users/forms.py +19 -0
- nautobot/users/templates/users/preferences.html +22 -0
- nautobot/users/tests/test_filters.py +1 -19
- nautobot/users/tests/test_views.py +57 -0
- nautobot/users/utils.py +8 -0
- nautobot/users/views.py +48 -11
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +5 -24
- nautobot/virtualization/filters.py +1 -2
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/navigation.py +0 -48
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/clustertype.html +0 -39
- nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -9
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/tests/test_filters.py +57 -166
- nautobot/virtualization/views.py +18 -15
- nautobot/wireless/__init__.py +0 -0
- nautobot/wireless/api/__init__.py +0 -0
- nautobot/wireless/api/serializers.py +44 -0
- nautobot/wireless/api/urls.py +20 -0
- nautobot/wireless/api/views.py +34 -0
- nautobot/wireless/apps.py +8 -0
- nautobot/wireless/choices.py +345 -0
- nautobot/wireless/factory.py +138 -0
- nautobot/wireless/filters.py +167 -0
- nautobot/wireless/forms.py +283 -0
- nautobot/wireless/homepage.py +19 -0
- nautobot/wireless/migrations/0001_initial.py +223 -0
- nautobot/wireless/migrations/__init__.py +0 -0
- nautobot/wireless/models.py +207 -0
- nautobot/wireless/navigation.py +105 -0
- nautobot/wireless/tables.py +244 -0
- nautobot/wireless/templates/wireless/radioprofile_retrieve.html +81 -0
- nautobot/wireless/templates/wireless/supporteddatarate_retrieve.html +26 -0
- nautobot/wireless/templates/wireless/wirelessnetwork_create.html +88 -0
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +56 -0
- nautobot/wireless/tests/__init__.py +0 -0
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_api.py +247 -0
- nautobot/wireless/tests/test_filters.py +82 -0
- nautobot/wireless/tests/test_models.py +22 -0
- nautobot/wireless/tests/test_views.py +378 -0
- nautobot/wireless/urls.py +13 -0
- nautobot/wireless/views.py +119 -0
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/METADATA +11 -13
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/RECORD +783 -613
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- nautobot/core/utils/navigation.py +0 -54
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/NOTICE +0 -0
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.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.
|
|
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
|
|
|
@@ -3944,6 +3965,27 @@
|
|
|
3944
3965
|
|
|
3945
3966
|
|
|
3946
3967
|
|
|
3968
|
+
|
|
3969
|
+
|
|
3970
|
+
|
|
3971
|
+
|
|
3972
|
+
|
|
3973
|
+
|
|
3974
|
+
<li class="md-nav__item">
|
|
3975
|
+
<a href="../user-guide/core-data-model/dcim/virtualdevicecontext.html" class="md-nav__link">
|
|
3976
|
+
|
|
3977
|
+
|
|
3978
|
+
<span class="md-ellipsis">
|
|
3979
|
+
Virtual Device Context
|
|
3980
|
+
</span>
|
|
3981
|
+
|
|
3982
|
+
|
|
3983
|
+
</a>
|
|
3984
|
+
</li>
|
|
3985
|
+
|
|
3986
|
+
|
|
3987
|
+
|
|
3988
|
+
|
|
3947
3989
|
</ul>
|
|
3948
3990
|
</nav>
|
|
3949
3991
|
|
|
@@ -4556,6 +4598,123 @@
|
|
|
4556
4598
|
|
|
4557
4599
|
|
|
4558
4600
|
|
|
4601
|
+
|
|
4602
|
+
|
|
4603
|
+
|
|
4604
|
+
|
|
4605
|
+
|
|
4606
|
+
|
|
4607
|
+
|
|
4608
|
+
|
|
4609
|
+
|
|
4610
|
+
|
|
4611
|
+
|
|
4612
|
+
|
|
4613
|
+
|
|
4614
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4615
|
+
|
|
4616
|
+
|
|
4617
|
+
|
|
4618
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_9" >
|
|
4619
|
+
|
|
4620
|
+
|
|
4621
|
+
|
|
4622
|
+
<div class="md-nav__link md-nav__container">
|
|
4623
|
+
<a href="../user-guide/core-data-model/wireless/index.html" class="md-nav__link ">
|
|
4624
|
+
|
|
4625
|
+
|
|
4626
|
+
<span class="md-ellipsis">
|
|
4627
|
+
Wireless
|
|
4628
|
+
</span>
|
|
4629
|
+
|
|
4630
|
+
|
|
4631
|
+
</a>
|
|
4632
|
+
|
|
4633
|
+
|
|
4634
|
+
<label class="md-nav__link " for="__nav_2_3_9" id="__nav_2_3_9_label" tabindex="0">
|
|
4635
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4636
|
+
</label>
|
|
4637
|
+
|
|
4638
|
+
</div>
|
|
4639
|
+
|
|
4640
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_9_label" aria-expanded="false">
|
|
4641
|
+
<label class="md-nav__title" for="__nav_2_3_9">
|
|
4642
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4643
|
+
Wireless
|
|
4644
|
+
</label>
|
|
4645
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
4646
|
+
|
|
4647
|
+
|
|
4648
|
+
|
|
4649
|
+
|
|
4650
|
+
|
|
4651
|
+
|
|
4652
|
+
|
|
4653
|
+
<li class="md-nav__item">
|
|
4654
|
+
<a href="../user-guide/core-data-model/wireless/supporteddatarate.html" class="md-nav__link">
|
|
4655
|
+
|
|
4656
|
+
|
|
4657
|
+
<span class="md-ellipsis">
|
|
4658
|
+
Supported Data Rate
|
|
4659
|
+
</span>
|
|
4660
|
+
|
|
4661
|
+
|
|
4662
|
+
</a>
|
|
4663
|
+
</li>
|
|
4664
|
+
|
|
4665
|
+
|
|
4666
|
+
|
|
4667
|
+
|
|
4668
|
+
|
|
4669
|
+
|
|
4670
|
+
|
|
4671
|
+
|
|
4672
|
+
|
|
4673
|
+
|
|
4674
|
+
<li class="md-nav__item">
|
|
4675
|
+
<a href="../user-guide/core-data-model/wireless/radioprofile.html" class="md-nav__link">
|
|
4676
|
+
|
|
4677
|
+
|
|
4678
|
+
<span class="md-ellipsis">
|
|
4679
|
+
Radio Profile
|
|
4680
|
+
</span>
|
|
4681
|
+
|
|
4682
|
+
|
|
4683
|
+
</a>
|
|
4684
|
+
</li>
|
|
4685
|
+
|
|
4686
|
+
|
|
4687
|
+
|
|
4688
|
+
|
|
4689
|
+
|
|
4690
|
+
|
|
4691
|
+
|
|
4692
|
+
|
|
4693
|
+
|
|
4694
|
+
|
|
4695
|
+
<li class="md-nav__item">
|
|
4696
|
+
<a href="../user-guide/core-data-model/wireless/wirelessnetwork.html" class="md-nav__link">
|
|
4697
|
+
|
|
4698
|
+
|
|
4699
|
+
<span class="md-ellipsis">
|
|
4700
|
+
Wireless Network
|
|
4701
|
+
</span>
|
|
4702
|
+
|
|
4703
|
+
|
|
4704
|
+
</a>
|
|
4705
|
+
</li>
|
|
4706
|
+
|
|
4707
|
+
|
|
4708
|
+
|
|
4709
|
+
|
|
4710
|
+
</ul>
|
|
4711
|
+
</nav>
|
|
4712
|
+
|
|
4713
|
+
</li>
|
|
4714
|
+
|
|
4715
|
+
|
|
4716
|
+
|
|
4717
|
+
|
|
4559
4718
|
</ul>
|
|
4560
4719
|
</nav>
|
|
4561
4720
|
|
|
@@ -4767,6 +4926,27 @@
|
|
|
4767
4926
|
|
|
4768
4927
|
|
|
4769
4928
|
|
|
4929
|
+
<li class="md-nav__item">
|
|
4930
|
+
<a href="../user-guide/platform-functionality/events.html" class="md-nav__link">
|
|
4931
|
+
|
|
4932
|
+
|
|
4933
|
+
<span class="md-ellipsis">
|
|
4934
|
+
Event Notifications
|
|
4935
|
+
</span>
|
|
4936
|
+
|
|
4937
|
+
|
|
4938
|
+
</a>
|
|
4939
|
+
</li>
|
|
4940
|
+
|
|
4941
|
+
|
|
4942
|
+
|
|
4943
|
+
|
|
4944
|
+
|
|
4945
|
+
|
|
4946
|
+
|
|
4947
|
+
|
|
4948
|
+
|
|
4949
|
+
|
|
4770
4950
|
<li class="md-nav__item">
|
|
4771
4951
|
<a href="../user-guide/platform-functionality/exporttemplate.html" class="md-nav__link">
|
|
4772
4952
|
|
|
@@ -4841,7 +5021,7 @@
|
|
|
4841
5021
|
|
|
4842
5022
|
|
|
4843
5023
|
|
|
4844
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5024
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_10" >
|
|
4845
5025
|
|
|
4846
5026
|
|
|
4847
5027
|
|
|
@@ -4857,14 +5037,14 @@
|
|
|
4857
5037
|
</a>
|
|
4858
5038
|
|
|
4859
5039
|
|
|
4860
|
-
<label class="md-nav__link " for="
|
|
5040
|
+
<label class="md-nav__link " for="__nav_2_4_10" id="__nav_2_4_10_label" tabindex="0">
|
|
4861
5041
|
<span class="md-nav__icon md-icon"></span>
|
|
4862
5042
|
</label>
|
|
4863
5043
|
|
|
4864
5044
|
</div>
|
|
4865
5045
|
|
|
4866
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
4867
|
-
<label class="md-nav__title" for="
|
|
5046
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_10_label" aria-expanded="false">
|
|
5047
|
+
<label class="md-nav__title" for="__nav_2_4_10">
|
|
4868
5048
|
<span class="md-nav__icon md-icon"></span>
|
|
4869
5049
|
GraphQL
|
|
4870
5050
|
</label>
|
|
@@ -4937,7 +5117,7 @@
|
|
|
4937
5117
|
|
|
4938
5118
|
|
|
4939
5119
|
|
|
4940
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5120
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_12" >
|
|
4941
5121
|
|
|
4942
5122
|
|
|
4943
5123
|
|
|
@@ -4953,14 +5133,14 @@
|
|
|
4953
5133
|
</a>
|
|
4954
5134
|
|
|
4955
5135
|
|
|
4956
|
-
<label class="md-nav__link " for="
|
|
5136
|
+
<label class="md-nav__link " for="__nav_2_4_12" id="__nav_2_4_12_label" tabindex="0">
|
|
4957
5137
|
<span class="md-nav__icon md-icon"></span>
|
|
4958
5138
|
</label>
|
|
4959
5139
|
|
|
4960
5140
|
</div>
|
|
4961
5141
|
|
|
4962
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
4963
|
-
<label class="md-nav__title" for="
|
|
5142
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_12_label" aria-expanded="false">
|
|
5143
|
+
<label class="md-nav__title" for="__nav_2_4_12">
|
|
4964
5144
|
<span class="md-nav__icon md-icon"></span>
|
|
4965
5145
|
Jobs
|
|
4966
5146
|
</label>
|
|
@@ -4972,6 +5152,27 @@
|
|
|
4972
5152
|
|
|
4973
5153
|
|
|
4974
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
|
+
|
|
4975
5176
|
<li class="md-nav__item">
|
|
4976
5177
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
4977
5178
|
|
|
@@ -5035,6 +5236,27 @@
|
|
|
5035
5236
|
|
|
5036
5237
|
|
|
5037
5238
|
|
|
5239
|
+
<li class="md-nav__item">
|
|
5240
|
+
<a href="../user-guide/platform-functionality/jobs/jobqueue.html" class="md-nav__link">
|
|
5241
|
+
|
|
5242
|
+
|
|
5243
|
+
<span class="md-ellipsis">
|
|
5244
|
+
Job Queues
|
|
5245
|
+
</span>
|
|
5246
|
+
|
|
5247
|
+
|
|
5248
|
+
</a>
|
|
5249
|
+
</li>
|
|
5250
|
+
|
|
5251
|
+
|
|
5252
|
+
|
|
5253
|
+
|
|
5254
|
+
|
|
5255
|
+
|
|
5256
|
+
|
|
5257
|
+
|
|
5258
|
+
|
|
5259
|
+
|
|
5038
5260
|
<li class="md-nav__item">
|
|
5039
5261
|
<a href="../user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html" class="md-nav__link">
|
|
5040
5262
|
|
|
@@ -5148,6 +5370,27 @@
|
|
|
5148
5370
|
|
|
5149
5371
|
|
|
5150
5372
|
|
|
5373
|
+
<li class="md-nav__item">
|
|
5374
|
+
<a href="../user-guide/platform-functionality/rendering-jinja-templates.html" class="md-nav__link">
|
|
5375
|
+
|
|
5376
|
+
|
|
5377
|
+
<span class="md-ellipsis">
|
|
5378
|
+
Rendering Jinja Templates
|
|
5379
|
+
</span>
|
|
5380
|
+
|
|
5381
|
+
|
|
5382
|
+
</a>
|
|
5383
|
+
</li>
|
|
5384
|
+
|
|
5385
|
+
|
|
5386
|
+
|
|
5387
|
+
|
|
5388
|
+
|
|
5389
|
+
|
|
5390
|
+
|
|
5391
|
+
|
|
5392
|
+
|
|
5393
|
+
|
|
5151
5394
|
|
|
5152
5395
|
|
|
5153
5396
|
|
|
@@ -5159,7 +5402,7 @@
|
|
|
5159
5402
|
|
|
5160
5403
|
|
|
5161
5404
|
|
|
5162
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5405
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_18" >
|
|
5163
5406
|
|
|
5164
5407
|
|
|
5165
5408
|
|
|
@@ -5175,14 +5418,14 @@
|
|
|
5175
5418
|
</a>
|
|
5176
5419
|
|
|
5177
5420
|
|
|
5178
|
-
<label class="md-nav__link " for="
|
|
5421
|
+
<label class="md-nav__link " for="__nav_2_4_18" id="__nav_2_4_18_label" tabindex="0">
|
|
5179
5422
|
<span class="md-nav__icon md-icon"></span>
|
|
5180
5423
|
</label>
|
|
5181
5424
|
|
|
5182
5425
|
</div>
|
|
5183
5426
|
|
|
5184
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
5185
|
-
<label class="md-nav__title" for="
|
|
5427
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_18_label" aria-expanded="false">
|
|
5428
|
+
<label class="md-nav__title" for="__nav_2_4_18">
|
|
5186
5429
|
<span class="md-nav__icon md-icon"></span>
|
|
5187
5430
|
REST API
|
|
5188
5431
|
</label>
|
|
@@ -5402,10 +5645,10 @@
|
|
|
5402
5645
|
|
|
5403
5646
|
|
|
5404
5647
|
|
|
5405
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5648
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_25" >
|
|
5406
5649
|
|
|
5407
5650
|
|
|
5408
|
-
<label class="md-nav__link" for="
|
|
5651
|
+
<label class="md-nav__link" for="__nav_2_4_25" id="__nav_2_4_25_label" tabindex="0">
|
|
5409
5652
|
|
|
5410
5653
|
|
|
5411
5654
|
<span class="md-ellipsis">
|
|
@@ -5416,8 +5659,8 @@
|
|
|
5416
5659
|
<span class="md-nav__icon md-icon"></span>
|
|
5417
5660
|
</label>
|
|
5418
5661
|
|
|
5419
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
5420
|
-
<label class="md-nav__title" for="
|
|
5662
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_25_label" aria-expanded="false">
|
|
5663
|
+
<label class="md-nav__title" for="__nav_2_4_25">
|
|
5421
5664
|
<span class="md-nav__icon md-icon"></span>
|
|
5422
5665
|
Users
|
|
5423
5666
|
</label>
|
|
@@ -6822,6 +7065,27 @@
|
|
|
6822
7065
|
|
|
6823
7066
|
|
|
6824
7067
|
|
|
7068
|
+
<li class="md-nav__item">
|
|
7069
|
+
<a href="../code-reference/nautobot/apps/events.html" class="md-nav__link">
|
|
7070
|
+
|
|
7071
|
+
|
|
7072
|
+
<span class="md-ellipsis">
|
|
7073
|
+
nautobot.apps.events
|
|
7074
|
+
</span>
|
|
7075
|
+
|
|
7076
|
+
|
|
7077
|
+
</a>
|
|
7078
|
+
</li>
|
|
7079
|
+
|
|
7080
|
+
|
|
7081
|
+
|
|
7082
|
+
|
|
7083
|
+
|
|
7084
|
+
|
|
7085
|
+
|
|
7086
|
+
|
|
7087
|
+
|
|
7088
|
+
|
|
6825
7089
|
<li class="md-nav__item">
|
|
6826
7090
|
<a href="../code-reference/nautobot/apps/exceptions.html" class="md-nav__link">
|
|
6827
7091
|
|
|
@@ -7370,6 +7634,123 @@
|
|
|
7370
7634
|
|
|
7371
7635
|
|
|
7372
7636
|
|
|
7637
|
+
|
|
7638
|
+
|
|
7639
|
+
|
|
7640
|
+
|
|
7641
|
+
|
|
7642
|
+
|
|
7643
|
+
|
|
7644
|
+
|
|
7645
|
+
|
|
7646
|
+
|
|
7647
|
+
|
|
7648
|
+
|
|
7649
|
+
|
|
7650
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7651
|
+
|
|
7652
|
+
|
|
7653
|
+
|
|
7654
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_5" >
|
|
7655
|
+
|
|
7656
|
+
|
|
7657
|
+
|
|
7658
|
+
<div class="md-nav__link md-nav__container">
|
|
7659
|
+
<a href="../development/apps/migration/ui-component-framework/index.html" class="md-nav__link ">
|
|
7660
|
+
|
|
7661
|
+
|
|
7662
|
+
<span class="md-ellipsis">
|
|
7663
|
+
UI Component Framework
|
|
7664
|
+
</span>
|
|
7665
|
+
|
|
7666
|
+
|
|
7667
|
+
</a>
|
|
7668
|
+
|
|
7669
|
+
|
|
7670
|
+
<label class="md-nav__link " for="__nav_3_2_9_5" id="__nav_3_2_9_5_label" tabindex="0">
|
|
7671
|
+
<span class="md-nav__icon md-icon"></span>
|
|
7672
|
+
</label>
|
|
7673
|
+
|
|
7674
|
+
</div>
|
|
7675
|
+
|
|
7676
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_3_2_9_5_label" aria-expanded="false">
|
|
7677
|
+
<label class="md-nav__title" for="__nav_3_2_9_5">
|
|
7678
|
+
<span class="md-nav__icon md-icon"></span>
|
|
7679
|
+
UI Component Framework
|
|
7680
|
+
</label>
|
|
7681
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
7682
|
+
|
|
7683
|
+
|
|
7684
|
+
|
|
7685
|
+
|
|
7686
|
+
|
|
7687
|
+
|
|
7688
|
+
|
|
7689
|
+
<li class="md-nav__item">
|
|
7690
|
+
<a href="../development/apps/migration/ui-component-framework/migration-steps.html" class="md-nav__link">
|
|
7691
|
+
|
|
7692
|
+
|
|
7693
|
+
<span class="md-ellipsis">
|
|
7694
|
+
Migration steps
|
|
7695
|
+
</span>
|
|
7696
|
+
|
|
7697
|
+
|
|
7698
|
+
</a>
|
|
7699
|
+
</li>
|
|
7700
|
+
|
|
7701
|
+
|
|
7702
|
+
|
|
7703
|
+
|
|
7704
|
+
|
|
7705
|
+
|
|
7706
|
+
|
|
7707
|
+
|
|
7708
|
+
|
|
7709
|
+
|
|
7710
|
+
<li class="md-nav__item">
|
|
7711
|
+
<a href="../development/apps/migration/ui-component-framework/custom-content.html" class="md-nav__link">
|
|
7712
|
+
|
|
7713
|
+
|
|
7714
|
+
<span class="md-ellipsis">
|
|
7715
|
+
Custom content
|
|
7716
|
+
</span>
|
|
7717
|
+
|
|
7718
|
+
|
|
7719
|
+
</a>
|
|
7720
|
+
</li>
|
|
7721
|
+
|
|
7722
|
+
|
|
7723
|
+
|
|
7724
|
+
|
|
7725
|
+
|
|
7726
|
+
|
|
7727
|
+
|
|
7728
|
+
|
|
7729
|
+
|
|
7730
|
+
|
|
7731
|
+
<li class="md-nav__item">
|
|
7732
|
+
<a href="../development/apps/migration/ui-component-framework/best-practices.html" class="md-nav__link">
|
|
7733
|
+
|
|
7734
|
+
|
|
7735
|
+
<span class="md-ellipsis">
|
|
7736
|
+
Best practices
|
|
7737
|
+
</span>
|
|
7738
|
+
|
|
7739
|
+
|
|
7740
|
+
</a>
|
|
7741
|
+
</li>
|
|
7742
|
+
|
|
7743
|
+
|
|
7744
|
+
|
|
7745
|
+
|
|
7746
|
+
</ul>
|
|
7747
|
+
</nav>
|
|
7748
|
+
|
|
7749
|
+
</li>
|
|
7750
|
+
|
|
7751
|
+
|
|
7752
|
+
|
|
7753
|
+
|
|
7373
7754
|
</ul>
|
|
7374
7755
|
</nav>
|
|
7375
7756
|
|
|
@@ -7715,6 +8096,27 @@
|
|
|
7715
8096
|
|
|
7716
8097
|
|
|
7717
8098
|
|
|
8099
|
+
<li class="md-nav__item">
|
|
8100
|
+
<a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8101
|
+
|
|
8102
|
+
|
|
8103
|
+
<span class="md-ellipsis">
|
|
8104
|
+
Minikube Dev Environment for K8s Jobs
|
|
8105
|
+
</span>
|
|
8106
|
+
|
|
8107
|
+
|
|
8108
|
+
</a>
|
|
8109
|
+
</li>
|
|
8110
|
+
|
|
8111
|
+
|
|
8112
|
+
|
|
8113
|
+
|
|
8114
|
+
|
|
8115
|
+
|
|
8116
|
+
|
|
8117
|
+
|
|
8118
|
+
|
|
8119
|
+
|
|
7718
8120
|
<li class="md-nav__item">
|
|
7719
8121
|
<a href="../development/core/model-checklist.html" class="md-nav__link">
|
|
7720
8122
|
|
|
@@ -7904,6 +8306,27 @@
|
|
|
7904
8306
|
|
|
7905
8307
|
|
|
7906
8308
|
|
|
8309
|
+
<li class="md-nav__item">
|
|
8310
|
+
<a href="../development/core/ui-component-framework.html" class="md-nav__link">
|
|
8311
|
+
|
|
8312
|
+
|
|
8313
|
+
<span class="md-ellipsis">
|
|
8314
|
+
UI Component Framework
|
|
8315
|
+
</span>
|
|
8316
|
+
|
|
8317
|
+
|
|
8318
|
+
</a>
|
|
8319
|
+
</li>
|
|
8320
|
+
|
|
8321
|
+
|
|
8322
|
+
|
|
8323
|
+
|
|
8324
|
+
|
|
8325
|
+
|
|
8326
|
+
|
|
8327
|
+
|
|
8328
|
+
|
|
8329
|
+
|
|
7907
8330
|
<li class="md-nav__item">
|
|
7908
8331
|
<a href="../development/core/release-checklist.html" class="md-nav__link">
|
|
7909
8332
|
|
|
@@ -7991,6 +8414,27 @@
|
|
|
7991
8414
|
|
|
7992
8415
|
|
|
7993
8416
|
|
|
8417
|
+
<li class="md-nav__item">
|
|
8418
|
+
<a href="version-2.4.html" class="md-nav__link">
|
|
8419
|
+
|
|
8420
|
+
|
|
8421
|
+
<span class="md-ellipsis">
|
|
8422
|
+
Version 2.4
|
|
8423
|
+
</span>
|
|
8424
|
+
|
|
8425
|
+
|
|
8426
|
+
</a>
|
|
8427
|
+
</li>
|
|
8428
|
+
|
|
8429
|
+
|
|
8430
|
+
|
|
8431
|
+
|
|
8432
|
+
|
|
8433
|
+
|
|
8434
|
+
|
|
8435
|
+
|
|
8436
|
+
|
|
8437
|
+
|
|
7994
8438
|
<li class="md-nav__item">
|
|
7995
8439
|
<a href="version-2.3.html" class="md-nav__link">
|
|
7996
8440
|
|
|
@@ -8240,72 +8684,72 @@
|
|
|
8240
8684
|
<ul class="md-nav__list">
|
|
8241
8685
|
|
|
8242
8686
|
<li class="md-nav__item">
|
|
8243
|
-
<a href="#security" class="md-nav__link">
|
|
8687
|
+
<a href="#security-in-v219" class="md-nav__link">
|
|
8244
8688
|
<span class="md-ellipsis">
|
|
8245
|
-
Security
|
|
8689
|
+
Security in v2.1.9
|
|
8246
8690
|
</span>
|
|
8247
8691
|
</a>
|
|
8248
8692
|
|
|
8249
8693
|
</li>
|
|
8250
8694
|
|
|
8251
8695
|
<li class="md-nav__item">
|
|
8252
|
-
<a href="#
|
|
8696
|
+
<a href="#added-in-v219" class="md-nav__link">
|
|
8253
8697
|
<span class="md-ellipsis">
|
|
8254
|
-
Added
|
|
8698
|
+
Added in v2.1.9
|
|
8255
8699
|
</span>
|
|
8256
8700
|
</a>
|
|
8257
8701
|
|
|
8258
8702
|
</li>
|
|
8259
8703
|
|
|
8260
8704
|
<li class="md-nav__item">
|
|
8261
|
-
<a href="#
|
|
8705
|
+
<a href="#changed-in-v219" class="md-nav__link">
|
|
8262
8706
|
<span class="md-ellipsis">
|
|
8263
|
-
Changed
|
|
8707
|
+
Changed in v2.1.9
|
|
8264
8708
|
</span>
|
|
8265
8709
|
</a>
|
|
8266
8710
|
|
|
8267
8711
|
</li>
|
|
8268
8712
|
|
|
8269
8713
|
<li class="md-nav__item">
|
|
8270
|
-
<a href="#
|
|
8714
|
+
<a href="#removed-in-v219" class="md-nav__link">
|
|
8271
8715
|
<span class="md-ellipsis">
|
|
8272
|
-
Removed
|
|
8716
|
+
Removed in v2.1.9
|
|
8273
8717
|
</span>
|
|
8274
8718
|
</a>
|
|
8275
8719
|
|
|
8276
8720
|
</li>
|
|
8277
8721
|
|
|
8278
8722
|
<li class="md-nav__item">
|
|
8279
|
-
<a href="#fixed" class="md-nav__link">
|
|
8723
|
+
<a href="#fixed-in-v219" class="md-nav__link">
|
|
8280
8724
|
<span class="md-ellipsis">
|
|
8281
|
-
Fixed
|
|
8725
|
+
Fixed in v2.1.9
|
|
8282
8726
|
</span>
|
|
8283
8727
|
</a>
|
|
8284
8728
|
|
|
8285
8729
|
</li>
|
|
8286
8730
|
|
|
8287
8731
|
<li class="md-nav__item">
|
|
8288
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8732
|
+
<a href="#dependencies-in-v219" class="md-nav__link">
|
|
8289
8733
|
<span class="md-ellipsis">
|
|
8290
|
-
Dependencies
|
|
8734
|
+
Dependencies in v2.1.9
|
|
8291
8735
|
</span>
|
|
8292
8736
|
</a>
|
|
8293
8737
|
|
|
8294
8738
|
</li>
|
|
8295
8739
|
|
|
8296
8740
|
<li class="md-nav__item">
|
|
8297
|
-
<a href="#documentation" class="md-nav__link">
|
|
8741
|
+
<a href="#documentation-in-v219" class="md-nav__link">
|
|
8298
8742
|
<span class="md-ellipsis">
|
|
8299
|
-
Documentation
|
|
8743
|
+
Documentation in v2.1.9
|
|
8300
8744
|
</span>
|
|
8301
8745
|
</a>
|
|
8302
8746
|
|
|
8303
8747
|
</li>
|
|
8304
8748
|
|
|
8305
8749
|
<li class="md-nav__item">
|
|
8306
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8750
|
+
<a href="#housekeeping-in-v219" class="md-nav__link">
|
|
8307
8751
|
<span class="md-ellipsis">
|
|
8308
|
-
Housekeeping
|
|
8752
|
+
Housekeeping in v2.1.9
|
|
8309
8753
|
</span>
|
|
8310
8754
|
</a>
|
|
8311
8755
|
|
|
@@ -8327,54 +8771,54 @@
|
|
|
8327
8771
|
<ul class="md-nav__list">
|
|
8328
8772
|
|
|
8329
8773
|
<li class="md-nav__item">
|
|
8330
|
-
<a href="#
|
|
8774
|
+
<a href="#added-in-v218" class="md-nav__link">
|
|
8331
8775
|
<span class="md-ellipsis">
|
|
8332
|
-
Added
|
|
8776
|
+
Added in v2.1.8
|
|
8333
8777
|
</span>
|
|
8334
8778
|
</a>
|
|
8335
8779
|
|
|
8336
8780
|
</li>
|
|
8337
8781
|
|
|
8338
8782
|
<li class="md-nav__item">
|
|
8339
|
-
<a href="#
|
|
8783
|
+
<a href="#changed-in-v218" class="md-nav__link">
|
|
8340
8784
|
<span class="md-ellipsis">
|
|
8341
|
-
Changed
|
|
8785
|
+
Changed in v2.1.8
|
|
8342
8786
|
</span>
|
|
8343
8787
|
</a>
|
|
8344
8788
|
|
|
8345
8789
|
</li>
|
|
8346
8790
|
|
|
8347
8791
|
<li class="md-nav__item">
|
|
8348
|
-
<a href="#
|
|
8792
|
+
<a href="#removed-in-v218" class="md-nav__link">
|
|
8349
8793
|
<span class="md-ellipsis">
|
|
8350
|
-
Removed
|
|
8794
|
+
Removed in v2.1.8
|
|
8351
8795
|
</span>
|
|
8352
8796
|
</a>
|
|
8353
8797
|
|
|
8354
8798
|
</li>
|
|
8355
8799
|
|
|
8356
8800
|
<li class="md-nav__item">
|
|
8357
|
-
<a href="#
|
|
8801
|
+
<a href="#fixed-in-v218" class="md-nav__link">
|
|
8358
8802
|
<span class="md-ellipsis">
|
|
8359
|
-
Fixed
|
|
8803
|
+
Fixed in v2.1.8
|
|
8360
8804
|
</span>
|
|
8361
8805
|
</a>
|
|
8362
8806
|
|
|
8363
8807
|
</li>
|
|
8364
8808
|
|
|
8365
8809
|
<li class="md-nav__item">
|
|
8366
|
-
<a href="#
|
|
8810
|
+
<a href="#documentation-in-v218" class="md-nav__link">
|
|
8367
8811
|
<span class="md-ellipsis">
|
|
8368
|
-
Documentation
|
|
8812
|
+
Documentation in v2.1.8
|
|
8369
8813
|
</span>
|
|
8370
8814
|
</a>
|
|
8371
8815
|
|
|
8372
8816
|
</li>
|
|
8373
8817
|
|
|
8374
8818
|
<li class="md-nav__item">
|
|
8375
|
-
<a href="#
|
|
8819
|
+
<a href="#housekeeping-in-v218" class="md-nav__link">
|
|
8376
8820
|
<span class="md-ellipsis">
|
|
8377
|
-
Housekeeping
|
|
8821
|
+
Housekeeping in v2.1.8
|
|
8378
8822
|
</span>
|
|
8379
8823
|
</a>
|
|
8380
8824
|
|
|
@@ -8396,9 +8840,9 @@
|
|
|
8396
8840
|
<ul class="md-nav__list">
|
|
8397
8841
|
|
|
8398
8842
|
<li class="md-nav__item">
|
|
8399
|
-
<a href="#
|
|
8843
|
+
<a href="#fixed-in-v217" class="md-nav__link">
|
|
8400
8844
|
<span class="md-ellipsis">
|
|
8401
|
-
Fixed
|
|
8845
|
+
Fixed in v2.1.7
|
|
8402
8846
|
</span>
|
|
8403
8847
|
</a>
|
|
8404
8848
|
|
|
@@ -8420,45 +8864,45 @@
|
|
|
8420
8864
|
<ul class="md-nav__list">
|
|
8421
8865
|
|
|
8422
8866
|
<li class="md-nav__item">
|
|
8423
|
-
<a href="#
|
|
8867
|
+
<a href="#security-in-v216" class="md-nav__link">
|
|
8424
8868
|
<span class="md-ellipsis">
|
|
8425
|
-
Security
|
|
8869
|
+
Security in v2.1.6
|
|
8426
8870
|
</span>
|
|
8427
8871
|
</a>
|
|
8428
8872
|
|
|
8429
8873
|
</li>
|
|
8430
8874
|
|
|
8431
8875
|
<li class="md-nav__item">
|
|
8432
|
-
<a href="#
|
|
8876
|
+
<a href="#added-in-v216" class="md-nav__link">
|
|
8433
8877
|
<span class="md-ellipsis">
|
|
8434
|
-
Added
|
|
8878
|
+
Added in v2.1.6
|
|
8435
8879
|
</span>
|
|
8436
8880
|
</a>
|
|
8437
8881
|
|
|
8438
8882
|
</li>
|
|
8439
8883
|
|
|
8440
8884
|
<li class="md-nav__item">
|
|
8441
|
-
<a href="#
|
|
8885
|
+
<a href="#changed-in-v216" class="md-nav__link">
|
|
8442
8886
|
<span class="md-ellipsis">
|
|
8443
|
-
Changed
|
|
8887
|
+
Changed in v2.1.6
|
|
8444
8888
|
</span>
|
|
8445
8889
|
</a>
|
|
8446
8890
|
|
|
8447
8891
|
</li>
|
|
8448
8892
|
|
|
8449
8893
|
<li class="md-nav__item">
|
|
8450
|
-
<a href="#
|
|
8894
|
+
<a href="#fixed-in-v216" class="md-nav__link">
|
|
8451
8895
|
<span class="md-ellipsis">
|
|
8452
|
-
Fixed
|
|
8896
|
+
Fixed in v2.1.6
|
|
8453
8897
|
</span>
|
|
8454
8898
|
</a>
|
|
8455
8899
|
|
|
8456
8900
|
</li>
|
|
8457
8901
|
|
|
8458
8902
|
<li class="md-nav__item">
|
|
8459
|
-
<a href="#
|
|
8903
|
+
<a href="#documentation-in-v216" class="md-nav__link">
|
|
8460
8904
|
<span class="md-ellipsis">
|
|
8461
|
-
Documentation
|
|
8905
|
+
Documentation in v2.1.6
|
|
8462
8906
|
</span>
|
|
8463
8907
|
</a>
|
|
8464
8908
|
|
|
@@ -8480,54 +8924,54 @@
|
|
|
8480
8924
|
<ul class="md-nav__list">
|
|
8481
8925
|
|
|
8482
8926
|
<li class="md-nav__item">
|
|
8483
|
-
<a href="#
|
|
8927
|
+
<a href="#security-in-v215" class="md-nav__link">
|
|
8484
8928
|
<span class="md-ellipsis">
|
|
8485
|
-
Security
|
|
8929
|
+
Security in v2.1.5
|
|
8486
8930
|
</span>
|
|
8487
8931
|
</a>
|
|
8488
8932
|
|
|
8489
8933
|
</li>
|
|
8490
8934
|
|
|
8491
8935
|
<li class="md-nav__item">
|
|
8492
|
-
<a href="#
|
|
8936
|
+
<a href="#added-in-v215" class="md-nav__link">
|
|
8493
8937
|
<span class="md-ellipsis">
|
|
8494
|
-
Added
|
|
8938
|
+
Added in v2.1.5
|
|
8495
8939
|
</span>
|
|
8496
8940
|
</a>
|
|
8497
8941
|
|
|
8498
8942
|
</li>
|
|
8499
8943
|
|
|
8500
8944
|
<li class="md-nav__item">
|
|
8501
|
-
<a href="#
|
|
8945
|
+
<a href="#changed-in-v215" class="md-nav__link">
|
|
8502
8946
|
<span class="md-ellipsis">
|
|
8503
|
-
Changed
|
|
8947
|
+
Changed in v2.1.5
|
|
8504
8948
|
</span>
|
|
8505
8949
|
</a>
|
|
8506
8950
|
|
|
8507
8951
|
</li>
|
|
8508
8952
|
|
|
8509
8953
|
<li class="md-nav__item">
|
|
8510
|
-
<a href="#
|
|
8954
|
+
<a href="#fixed-in-v215" class="md-nav__link">
|
|
8511
8955
|
<span class="md-ellipsis">
|
|
8512
|
-
Fixed
|
|
8956
|
+
Fixed in v2.1.5
|
|
8513
8957
|
</span>
|
|
8514
8958
|
</a>
|
|
8515
8959
|
|
|
8516
8960
|
</li>
|
|
8517
8961
|
|
|
8518
8962
|
<li class="md-nav__item">
|
|
8519
|
-
<a href="#
|
|
8963
|
+
<a href="#documentation-in-v215" class="md-nav__link">
|
|
8520
8964
|
<span class="md-ellipsis">
|
|
8521
|
-
Documentation
|
|
8965
|
+
Documentation in v2.1.5
|
|
8522
8966
|
</span>
|
|
8523
8967
|
</a>
|
|
8524
8968
|
|
|
8525
8969
|
</li>
|
|
8526
8970
|
|
|
8527
8971
|
<li class="md-nav__item">
|
|
8528
|
-
<a href="#
|
|
8972
|
+
<a href="#housekeeping-in-v215" class="md-nav__link">
|
|
8529
8973
|
<span class="md-ellipsis">
|
|
8530
|
-
Housekeeping
|
|
8974
|
+
Housekeeping in v2.1.5
|
|
8531
8975
|
</span>
|
|
8532
8976
|
</a>
|
|
8533
8977
|
|
|
@@ -8549,36 +8993,36 @@
|
|
|
8549
8993
|
<ul class="md-nav__list">
|
|
8550
8994
|
|
|
8551
8995
|
<li class="md-nav__item">
|
|
8552
|
-
<a href="#
|
|
8996
|
+
<a href="#security-in-v214" class="md-nav__link">
|
|
8553
8997
|
<span class="md-ellipsis">
|
|
8554
|
-
Security
|
|
8998
|
+
Security in v2.1.4
|
|
8555
8999
|
</span>
|
|
8556
9000
|
</a>
|
|
8557
9001
|
|
|
8558
9002
|
</li>
|
|
8559
9003
|
|
|
8560
9004
|
<li class="md-nav__item">
|
|
8561
|
-
<a href="#
|
|
9005
|
+
<a href="#fixed-in-v214" class="md-nav__link">
|
|
8562
9006
|
<span class="md-ellipsis">
|
|
8563
|
-
Fixed
|
|
9007
|
+
Fixed in v2.1.4
|
|
8564
9008
|
</span>
|
|
8565
9009
|
</a>
|
|
8566
9010
|
|
|
8567
9011
|
</li>
|
|
8568
9012
|
|
|
8569
9013
|
<li class="md-nav__item">
|
|
8570
|
-
<a href="#
|
|
9014
|
+
<a href="#documentation-in-v214" class="md-nav__link">
|
|
8571
9015
|
<span class="md-ellipsis">
|
|
8572
|
-
Documentation
|
|
9016
|
+
Documentation in v2.1.4
|
|
8573
9017
|
</span>
|
|
8574
9018
|
</a>
|
|
8575
9019
|
|
|
8576
9020
|
</li>
|
|
8577
9021
|
|
|
8578
9022
|
<li class="md-nav__item">
|
|
8579
|
-
<a href="#
|
|
9023
|
+
<a href="#housekeeping-in-v214" class="md-nav__link">
|
|
8580
9024
|
<span class="md-ellipsis">
|
|
8581
|
-
Housekeeping
|
|
9025
|
+
Housekeeping in v2.1.4
|
|
8582
9026
|
</span>
|
|
8583
9027
|
</a>
|
|
8584
9028
|
|
|
@@ -8600,63 +9044,63 @@
|
|
|
8600
9044
|
<ul class="md-nav__list">
|
|
8601
9045
|
|
|
8602
9046
|
<li class="md-nav__item">
|
|
8603
|
-
<a href="#
|
|
9047
|
+
<a href="#security-in-v213" class="md-nav__link">
|
|
8604
9048
|
<span class="md-ellipsis">
|
|
8605
|
-
Security
|
|
9049
|
+
Security in v2.1.3
|
|
8606
9050
|
</span>
|
|
8607
9051
|
</a>
|
|
8608
9052
|
|
|
8609
9053
|
</li>
|
|
8610
9054
|
|
|
8611
9055
|
<li class="md-nav__item">
|
|
8612
|
-
<a href="#
|
|
9056
|
+
<a href="#added-in-v213" class="md-nav__link">
|
|
8613
9057
|
<span class="md-ellipsis">
|
|
8614
|
-
Added
|
|
9058
|
+
Added in v2.1.3
|
|
8615
9059
|
</span>
|
|
8616
9060
|
</a>
|
|
8617
9061
|
|
|
8618
9062
|
</li>
|
|
8619
9063
|
|
|
8620
9064
|
<li class="md-nav__item">
|
|
8621
|
-
<a href="#
|
|
9065
|
+
<a href="#changed-in-v213" class="md-nav__link">
|
|
8622
9066
|
<span class="md-ellipsis">
|
|
8623
|
-
Changed
|
|
9067
|
+
Changed in v2.1.3
|
|
8624
9068
|
</span>
|
|
8625
9069
|
</a>
|
|
8626
9070
|
|
|
8627
9071
|
</li>
|
|
8628
9072
|
|
|
8629
9073
|
<li class="md-nav__item">
|
|
8630
|
-
<a href="#
|
|
9074
|
+
<a href="#removed-in-v213" class="md-nav__link">
|
|
8631
9075
|
<span class="md-ellipsis">
|
|
8632
|
-
Removed
|
|
9076
|
+
Removed in v2.1.3
|
|
8633
9077
|
</span>
|
|
8634
9078
|
</a>
|
|
8635
9079
|
|
|
8636
9080
|
</li>
|
|
8637
9081
|
|
|
8638
9082
|
<li class="md-nav__item">
|
|
8639
|
-
<a href="#
|
|
9083
|
+
<a href="#fixed-in-v213" class="md-nav__link">
|
|
8640
9084
|
<span class="md-ellipsis">
|
|
8641
|
-
Fixed
|
|
9085
|
+
Fixed in v2.1.3
|
|
8642
9086
|
</span>
|
|
8643
9087
|
</a>
|
|
8644
9088
|
|
|
8645
9089
|
</li>
|
|
8646
9090
|
|
|
8647
9091
|
<li class="md-nav__item">
|
|
8648
|
-
<a href="#
|
|
9092
|
+
<a href="#dependencies-in-v213" class="md-nav__link">
|
|
8649
9093
|
<span class="md-ellipsis">
|
|
8650
|
-
Dependencies
|
|
9094
|
+
Dependencies in v2.1.3
|
|
8651
9095
|
</span>
|
|
8652
9096
|
</a>
|
|
8653
9097
|
|
|
8654
9098
|
</li>
|
|
8655
9099
|
|
|
8656
9100
|
<li class="md-nav__item">
|
|
8657
|
-
<a href="#
|
|
9101
|
+
<a href="#housekeeping-in-v213" class="md-nav__link">
|
|
8658
9102
|
<span class="md-ellipsis">
|
|
8659
|
-
Housekeeping
|
|
9103
|
+
Housekeeping in v2.1.3
|
|
8660
9104
|
</span>
|
|
8661
9105
|
</a>
|
|
8662
9106
|
|
|
@@ -8678,72 +9122,72 @@
|
|
|
8678
9122
|
<ul class="md-nav__list">
|
|
8679
9123
|
|
|
8680
9124
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#
|
|
9125
|
+
<a href="#security-in-v212" class="md-nav__link">
|
|
8682
9126
|
<span class="md-ellipsis">
|
|
8683
|
-
Security
|
|
9127
|
+
Security in v2.1.2
|
|
8684
9128
|
</span>
|
|
8685
9129
|
</a>
|
|
8686
9130
|
|
|
8687
9131
|
</li>
|
|
8688
9132
|
|
|
8689
9133
|
<li class="md-nav__item">
|
|
8690
|
-
<a href="#
|
|
9134
|
+
<a href="#added-in-v212" class="md-nav__link">
|
|
8691
9135
|
<span class="md-ellipsis">
|
|
8692
|
-
Added
|
|
9136
|
+
Added in v2.1.2
|
|
8693
9137
|
</span>
|
|
8694
9138
|
</a>
|
|
8695
9139
|
|
|
8696
9140
|
</li>
|
|
8697
9141
|
|
|
8698
9142
|
<li class="md-nav__item">
|
|
8699
|
-
<a href="#
|
|
9143
|
+
<a href="#changed-in-v212" class="md-nav__link">
|
|
8700
9144
|
<span class="md-ellipsis">
|
|
8701
|
-
Changed
|
|
9145
|
+
Changed in v2.1.2
|
|
8702
9146
|
</span>
|
|
8703
9147
|
</a>
|
|
8704
9148
|
|
|
8705
9149
|
</li>
|
|
8706
9150
|
|
|
8707
9151
|
<li class="md-nav__item">
|
|
8708
|
-
<a href="#
|
|
9152
|
+
<a href="#removed-in-v212" class="md-nav__link">
|
|
8709
9153
|
<span class="md-ellipsis">
|
|
8710
|
-
Removed
|
|
9154
|
+
Removed in v2.1.2
|
|
8711
9155
|
</span>
|
|
8712
9156
|
</a>
|
|
8713
9157
|
|
|
8714
9158
|
</li>
|
|
8715
9159
|
|
|
8716
9160
|
<li class="md-nav__item">
|
|
8717
|
-
<a href="#
|
|
9161
|
+
<a href="#fixed-in-v212" class="md-nav__link">
|
|
8718
9162
|
<span class="md-ellipsis">
|
|
8719
|
-
Fixed
|
|
9163
|
+
Fixed in v2.1.2
|
|
8720
9164
|
</span>
|
|
8721
9165
|
</a>
|
|
8722
9166
|
|
|
8723
9167
|
</li>
|
|
8724
9168
|
|
|
8725
9169
|
<li class="md-nav__item">
|
|
8726
|
-
<a href="#
|
|
9170
|
+
<a href="#dependencies-in-v212" class="md-nav__link">
|
|
8727
9171
|
<span class="md-ellipsis">
|
|
8728
|
-
Dependencies
|
|
9172
|
+
Dependencies in v2.1.2
|
|
8729
9173
|
</span>
|
|
8730
9174
|
</a>
|
|
8731
9175
|
|
|
8732
9176
|
</li>
|
|
8733
9177
|
|
|
8734
9178
|
<li class="md-nav__item">
|
|
8735
|
-
<a href="#
|
|
9179
|
+
<a href="#documentation-in-v212" class="md-nav__link">
|
|
8736
9180
|
<span class="md-ellipsis">
|
|
8737
|
-
Documentation
|
|
9181
|
+
Documentation in v2.1.2
|
|
8738
9182
|
</span>
|
|
8739
9183
|
</a>
|
|
8740
9184
|
|
|
8741
9185
|
</li>
|
|
8742
9186
|
|
|
8743
9187
|
<li class="md-nav__item">
|
|
8744
|
-
<a href="#
|
|
9188
|
+
<a href="#housekeeping-in-v212" class="md-nav__link">
|
|
8745
9189
|
<span class="md-ellipsis">
|
|
8746
|
-
Housekeeping
|
|
9190
|
+
Housekeeping in v2.1.2
|
|
8747
9191
|
</span>
|
|
8748
9192
|
</a>
|
|
8749
9193
|
|
|
@@ -8765,54 +9209,54 @@
|
|
|
8765
9209
|
<ul class="md-nav__list">
|
|
8766
9210
|
|
|
8767
9211
|
<li class="md-nav__item">
|
|
8768
|
-
<a href="#
|
|
9212
|
+
<a href="#added-in-v211" class="md-nav__link">
|
|
8769
9213
|
<span class="md-ellipsis">
|
|
8770
|
-
Added
|
|
9214
|
+
Added in v2.1.1
|
|
8771
9215
|
</span>
|
|
8772
9216
|
</a>
|
|
8773
9217
|
|
|
8774
9218
|
</li>
|
|
8775
9219
|
|
|
8776
9220
|
<li class="md-nav__item">
|
|
8777
|
-
<a href="#
|
|
9221
|
+
<a href="#changed-in-v211" class="md-nav__link">
|
|
8778
9222
|
<span class="md-ellipsis">
|
|
8779
|
-
Changed
|
|
9223
|
+
Changed in v2.1.1
|
|
8780
9224
|
</span>
|
|
8781
9225
|
</a>
|
|
8782
9226
|
|
|
8783
9227
|
</li>
|
|
8784
9228
|
|
|
8785
9229
|
<li class="md-nav__item">
|
|
8786
|
-
<a href="#
|
|
9230
|
+
<a href="#removed-in-v211" class="md-nav__link">
|
|
8787
9231
|
<span class="md-ellipsis">
|
|
8788
|
-
Removed
|
|
9232
|
+
Removed in v2.1.1
|
|
8789
9233
|
</span>
|
|
8790
9234
|
</a>
|
|
8791
9235
|
|
|
8792
9236
|
</li>
|
|
8793
9237
|
|
|
8794
9238
|
<li class="md-nav__item">
|
|
8795
|
-
<a href="#
|
|
9239
|
+
<a href="#fixed-in-v211" class="md-nav__link">
|
|
8796
9240
|
<span class="md-ellipsis">
|
|
8797
|
-
Fixed
|
|
9241
|
+
Fixed in v2.1.1
|
|
8798
9242
|
</span>
|
|
8799
9243
|
</a>
|
|
8800
9244
|
|
|
8801
9245
|
</li>
|
|
8802
9246
|
|
|
8803
9247
|
<li class="md-nav__item">
|
|
8804
|
-
<a href="#
|
|
9248
|
+
<a href="#documentation-in-v211" class="md-nav__link">
|
|
8805
9249
|
<span class="md-ellipsis">
|
|
8806
|
-
Documentation
|
|
9250
|
+
Documentation in v2.1.1
|
|
8807
9251
|
</span>
|
|
8808
9252
|
</a>
|
|
8809
9253
|
|
|
8810
9254
|
</li>
|
|
8811
9255
|
|
|
8812
9256
|
<li class="md-nav__item">
|
|
8813
|
-
<a href="#
|
|
9257
|
+
<a href="#housekeeping-in-v211" class="md-nav__link">
|
|
8814
9258
|
<span class="md-ellipsis">
|
|
8815
|
-
Housekeeping
|
|
9259
|
+
Housekeeping in v2.1.1
|
|
8816
9260
|
</span>
|
|
8817
9261
|
</a>
|
|
8818
9262
|
|
|
@@ -8834,63 +9278,63 @@
|
|
|
8834
9278
|
<ul class="md-nav__list">
|
|
8835
9279
|
|
|
8836
9280
|
<li class="md-nav__item">
|
|
8837
|
-
<a href="#
|
|
9281
|
+
<a href="#security-in-v210" class="md-nav__link">
|
|
8838
9282
|
<span class="md-ellipsis">
|
|
8839
|
-
Security
|
|
9283
|
+
Security in v2.1.0
|
|
8840
9284
|
</span>
|
|
8841
9285
|
</a>
|
|
8842
9286
|
|
|
8843
9287
|
</li>
|
|
8844
9288
|
|
|
8845
9289
|
<li class="md-nav__item">
|
|
8846
|
-
<a href="#
|
|
9290
|
+
<a href="#added-in-v210" class="md-nav__link">
|
|
8847
9291
|
<span class="md-ellipsis">
|
|
8848
|
-
Added
|
|
9292
|
+
Added in v2.1.0
|
|
8849
9293
|
</span>
|
|
8850
9294
|
</a>
|
|
8851
9295
|
|
|
8852
9296
|
</li>
|
|
8853
9297
|
|
|
8854
9298
|
<li class="md-nav__item">
|
|
8855
|
-
<a href="#
|
|
9299
|
+
<a href="#changed-in-v210" class="md-nav__link">
|
|
8856
9300
|
<span class="md-ellipsis">
|
|
8857
|
-
Changed
|
|
9301
|
+
Changed in v2.1.0
|
|
8858
9302
|
</span>
|
|
8859
9303
|
</a>
|
|
8860
9304
|
|
|
8861
9305
|
</li>
|
|
8862
9306
|
|
|
8863
9307
|
<li class="md-nav__item">
|
|
8864
|
-
<a href="#
|
|
9308
|
+
<a href="#removed-in-v210" class="md-nav__link">
|
|
8865
9309
|
<span class="md-ellipsis">
|
|
8866
|
-
Removed
|
|
9310
|
+
Removed in v2.1.0
|
|
8867
9311
|
</span>
|
|
8868
9312
|
</a>
|
|
8869
9313
|
|
|
8870
9314
|
</li>
|
|
8871
9315
|
|
|
8872
9316
|
<li class="md-nav__item">
|
|
8873
|
-
<a href="#
|
|
9317
|
+
<a href="#fixed-in-v210" class="md-nav__link">
|
|
8874
9318
|
<span class="md-ellipsis">
|
|
8875
|
-
Fixed
|
|
9319
|
+
Fixed in v2.1.0
|
|
8876
9320
|
</span>
|
|
8877
9321
|
</a>
|
|
8878
9322
|
|
|
8879
9323
|
</li>
|
|
8880
9324
|
|
|
8881
9325
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#
|
|
9326
|
+
<a href="#documentation-in-v210" class="md-nav__link">
|
|
8883
9327
|
<span class="md-ellipsis">
|
|
8884
|
-
Documentation
|
|
9328
|
+
Documentation in v2.1.0
|
|
8885
9329
|
</span>
|
|
8886
9330
|
</a>
|
|
8887
9331
|
|
|
8888
9332
|
</li>
|
|
8889
9333
|
|
|
8890
9334
|
<li class="md-nav__item">
|
|
8891
|
-
<a href="#
|
|
9335
|
+
<a href="#housekeeping-in-v210" class="md-nav__link">
|
|
8892
9336
|
<span class="md-ellipsis">
|
|
8893
|
-
Housekeeping
|
|
9337
|
+
Housekeeping in v2.1.0
|
|
8894
9338
|
</span>
|
|
8895
9339
|
</a>
|
|
8896
9340
|
|
|
@@ -8912,45 +9356,45 @@
|
|
|
8912
9356
|
<ul class="md-nav__list">
|
|
8913
9357
|
|
|
8914
9358
|
<li class="md-nav__item">
|
|
8915
|
-
<a href="#
|
|
9359
|
+
<a href="#added-in-v210-beta1" class="md-nav__link">
|
|
8916
9360
|
<span class="md-ellipsis">
|
|
8917
|
-
Added
|
|
9361
|
+
Added in v2.1.0-beta.1
|
|
8918
9362
|
</span>
|
|
8919
9363
|
</a>
|
|
8920
9364
|
|
|
8921
9365
|
</li>
|
|
8922
9366
|
|
|
8923
9367
|
<li class="md-nav__item">
|
|
8924
|
-
<a href="#
|
|
9368
|
+
<a href="#changed-in-v210-beta1" class="md-nav__link">
|
|
8925
9369
|
<span class="md-ellipsis">
|
|
8926
|
-
Changed
|
|
9370
|
+
Changed in v2.1.0-beta.1
|
|
8927
9371
|
</span>
|
|
8928
9372
|
</a>
|
|
8929
9373
|
|
|
8930
9374
|
</li>
|
|
8931
9375
|
|
|
8932
9376
|
<li class="md-nav__item">
|
|
8933
|
-
<a href="#
|
|
9377
|
+
<a href="#removed-in-v210-beta1" class="md-nav__link">
|
|
8934
9378
|
<span class="md-ellipsis">
|
|
8935
|
-
Removed
|
|
9379
|
+
Removed in v2.1.0-beta.1
|
|
8936
9380
|
</span>
|
|
8937
9381
|
</a>
|
|
8938
9382
|
|
|
8939
9383
|
</li>
|
|
8940
9384
|
|
|
8941
9385
|
<li class="md-nav__item">
|
|
8942
|
-
<a href="#
|
|
9386
|
+
<a href="#fixed-in-v210-beta1" class="md-nav__link">
|
|
8943
9387
|
<span class="md-ellipsis">
|
|
8944
|
-
Fixed
|
|
9388
|
+
Fixed in v2.1.0-beta.1
|
|
8945
9389
|
</span>
|
|
8946
9390
|
</a>
|
|
8947
9391
|
|
|
8948
9392
|
</li>
|
|
8949
9393
|
|
|
8950
9394
|
<li class="md-nav__item">
|
|
8951
|
-
<a href="#
|
|
9395
|
+
<a href="#housekeeping-in-v210-beta1" class="md-nav__link">
|
|
8952
9396
|
<span class="md-ellipsis">
|
|
8953
|
-
Housekeeping
|
|
9397
|
+
Housekeeping in v2.1.0-beta.1
|
|
8954
9398
|
</span>
|
|
8955
9399
|
</a>
|
|
8956
9400
|
|
|
@@ -9661,72 +10105,72 @@
|
|
|
9661
10105
|
<ul class="md-nav__list">
|
|
9662
10106
|
|
|
9663
10107
|
<li class="md-nav__item">
|
|
9664
|
-
<a href="#security" class="md-nav__link">
|
|
10108
|
+
<a href="#security-in-v219" class="md-nav__link">
|
|
9665
10109
|
<span class="md-ellipsis">
|
|
9666
|
-
Security
|
|
10110
|
+
Security in v2.1.9
|
|
9667
10111
|
</span>
|
|
9668
10112
|
</a>
|
|
9669
10113
|
|
|
9670
10114
|
</li>
|
|
9671
10115
|
|
|
9672
10116
|
<li class="md-nav__item">
|
|
9673
|
-
<a href="#
|
|
10117
|
+
<a href="#added-in-v219" class="md-nav__link">
|
|
9674
10118
|
<span class="md-ellipsis">
|
|
9675
|
-
Added
|
|
10119
|
+
Added in v2.1.9
|
|
9676
10120
|
</span>
|
|
9677
10121
|
</a>
|
|
9678
10122
|
|
|
9679
10123
|
</li>
|
|
9680
10124
|
|
|
9681
10125
|
<li class="md-nav__item">
|
|
9682
|
-
<a href="#
|
|
10126
|
+
<a href="#changed-in-v219" class="md-nav__link">
|
|
9683
10127
|
<span class="md-ellipsis">
|
|
9684
|
-
Changed
|
|
10128
|
+
Changed in v2.1.9
|
|
9685
10129
|
</span>
|
|
9686
10130
|
</a>
|
|
9687
10131
|
|
|
9688
10132
|
</li>
|
|
9689
10133
|
|
|
9690
10134
|
<li class="md-nav__item">
|
|
9691
|
-
<a href="#
|
|
10135
|
+
<a href="#removed-in-v219" class="md-nav__link">
|
|
9692
10136
|
<span class="md-ellipsis">
|
|
9693
|
-
Removed
|
|
10137
|
+
Removed in v2.1.9
|
|
9694
10138
|
</span>
|
|
9695
10139
|
</a>
|
|
9696
10140
|
|
|
9697
10141
|
</li>
|
|
9698
10142
|
|
|
9699
10143
|
<li class="md-nav__item">
|
|
9700
|
-
<a href="#fixed" class="md-nav__link">
|
|
10144
|
+
<a href="#fixed-in-v219" class="md-nav__link">
|
|
9701
10145
|
<span class="md-ellipsis">
|
|
9702
|
-
Fixed
|
|
10146
|
+
Fixed in v2.1.9
|
|
9703
10147
|
</span>
|
|
9704
10148
|
</a>
|
|
9705
10149
|
|
|
9706
10150
|
</li>
|
|
9707
10151
|
|
|
9708
10152
|
<li class="md-nav__item">
|
|
9709
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10153
|
+
<a href="#dependencies-in-v219" class="md-nav__link">
|
|
9710
10154
|
<span class="md-ellipsis">
|
|
9711
|
-
Dependencies
|
|
10155
|
+
Dependencies in v2.1.9
|
|
9712
10156
|
</span>
|
|
9713
10157
|
</a>
|
|
9714
10158
|
|
|
9715
10159
|
</li>
|
|
9716
10160
|
|
|
9717
10161
|
<li class="md-nav__item">
|
|
9718
|
-
<a href="#documentation" class="md-nav__link">
|
|
10162
|
+
<a href="#documentation-in-v219" class="md-nav__link">
|
|
9719
10163
|
<span class="md-ellipsis">
|
|
9720
|
-
Documentation
|
|
10164
|
+
Documentation in v2.1.9
|
|
9721
10165
|
</span>
|
|
9722
10166
|
</a>
|
|
9723
10167
|
|
|
9724
10168
|
</li>
|
|
9725
10169
|
|
|
9726
10170
|
<li class="md-nav__item">
|
|
9727
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10171
|
+
<a href="#housekeeping-in-v219" class="md-nav__link">
|
|
9728
10172
|
<span class="md-ellipsis">
|
|
9729
|
-
Housekeeping
|
|
10173
|
+
Housekeeping in v2.1.9
|
|
9730
10174
|
</span>
|
|
9731
10175
|
</a>
|
|
9732
10176
|
|
|
@@ -9748,54 +10192,54 @@
|
|
|
9748
10192
|
<ul class="md-nav__list">
|
|
9749
10193
|
|
|
9750
10194
|
<li class="md-nav__item">
|
|
9751
|
-
<a href="#
|
|
10195
|
+
<a href="#added-in-v218" class="md-nav__link">
|
|
9752
10196
|
<span class="md-ellipsis">
|
|
9753
|
-
Added
|
|
10197
|
+
Added in v2.1.8
|
|
9754
10198
|
</span>
|
|
9755
10199
|
</a>
|
|
9756
10200
|
|
|
9757
10201
|
</li>
|
|
9758
10202
|
|
|
9759
10203
|
<li class="md-nav__item">
|
|
9760
|
-
<a href="#
|
|
10204
|
+
<a href="#changed-in-v218" class="md-nav__link">
|
|
9761
10205
|
<span class="md-ellipsis">
|
|
9762
|
-
Changed
|
|
10206
|
+
Changed in v2.1.8
|
|
9763
10207
|
</span>
|
|
9764
10208
|
</a>
|
|
9765
10209
|
|
|
9766
10210
|
</li>
|
|
9767
10211
|
|
|
9768
10212
|
<li class="md-nav__item">
|
|
9769
|
-
<a href="#
|
|
10213
|
+
<a href="#removed-in-v218" class="md-nav__link">
|
|
9770
10214
|
<span class="md-ellipsis">
|
|
9771
|
-
Removed
|
|
10215
|
+
Removed in v2.1.8
|
|
9772
10216
|
</span>
|
|
9773
10217
|
</a>
|
|
9774
10218
|
|
|
9775
10219
|
</li>
|
|
9776
10220
|
|
|
9777
10221
|
<li class="md-nav__item">
|
|
9778
|
-
<a href="#
|
|
10222
|
+
<a href="#fixed-in-v218" class="md-nav__link">
|
|
9779
10223
|
<span class="md-ellipsis">
|
|
9780
|
-
Fixed
|
|
10224
|
+
Fixed in v2.1.8
|
|
9781
10225
|
</span>
|
|
9782
10226
|
</a>
|
|
9783
10227
|
|
|
9784
10228
|
</li>
|
|
9785
10229
|
|
|
9786
10230
|
<li class="md-nav__item">
|
|
9787
|
-
<a href="#
|
|
10231
|
+
<a href="#documentation-in-v218" class="md-nav__link">
|
|
9788
10232
|
<span class="md-ellipsis">
|
|
9789
|
-
Documentation
|
|
10233
|
+
Documentation in v2.1.8
|
|
9790
10234
|
</span>
|
|
9791
10235
|
</a>
|
|
9792
10236
|
|
|
9793
10237
|
</li>
|
|
9794
10238
|
|
|
9795
10239
|
<li class="md-nav__item">
|
|
9796
|
-
<a href="#
|
|
10240
|
+
<a href="#housekeeping-in-v218" class="md-nav__link">
|
|
9797
10241
|
<span class="md-ellipsis">
|
|
9798
|
-
Housekeeping
|
|
10242
|
+
Housekeeping in v2.1.8
|
|
9799
10243
|
</span>
|
|
9800
10244
|
</a>
|
|
9801
10245
|
|
|
@@ -9817,9 +10261,9 @@
|
|
|
9817
10261
|
<ul class="md-nav__list">
|
|
9818
10262
|
|
|
9819
10263
|
<li class="md-nav__item">
|
|
9820
|
-
<a href="#
|
|
10264
|
+
<a href="#fixed-in-v217" class="md-nav__link">
|
|
9821
10265
|
<span class="md-ellipsis">
|
|
9822
|
-
Fixed
|
|
10266
|
+
Fixed in v2.1.7
|
|
9823
10267
|
</span>
|
|
9824
10268
|
</a>
|
|
9825
10269
|
|
|
@@ -9841,45 +10285,45 @@
|
|
|
9841
10285
|
<ul class="md-nav__list">
|
|
9842
10286
|
|
|
9843
10287
|
<li class="md-nav__item">
|
|
9844
|
-
<a href="#
|
|
10288
|
+
<a href="#security-in-v216" class="md-nav__link">
|
|
9845
10289
|
<span class="md-ellipsis">
|
|
9846
|
-
Security
|
|
10290
|
+
Security in v2.1.6
|
|
9847
10291
|
</span>
|
|
9848
10292
|
</a>
|
|
9849
10293
|
|
|
9850
10294
|
</li>
|
|
9851
10295
|
|
|
9852
10296
|
<li class="md-nav__item">
|
|
9853
|
-
<a href="#
|
|
10297
|
+
<a href="#added-in-v216" class="md-nav__link">
|
|
9854
10298
|
<span class="md-ellipsis">
|
|
9855
|
-
Added
|
|
10299
|
+
Added in v2.1.6
|
|
9856
10300
|
</span>
|
|
9857
10301
|
</a>
|
|
9858
10302
|
|
|
9859
10303
|
</li>
|
|
9860
10304
|
|
|
9861
10305
|
<li class="md-nav__item">
|
|
9862
|
-
<a href="#
|
|
10306
|
+
<a href="#changed-in-v216" class="md-nav__link">
|
|
9863
10307
|
<span class="md-ellipsis">
|
|
9864
|
-
Changed
|
|
10308
|
+
Changed in v2.1.6
|
|
9865
10309
|
</span>
|
|
9866
10310
|
</a>
|
|
9867
10311
|
|
|
9868
10312
|
</li>
|
|
9869
10313
|
|
|
9870
10314
|
<li class="md-nav__item">
|
|
9871
|
-
<a href="#
|
|
10315
|
+
<a href="#fixed-in-v216" class="md-nav__link">
|
|
9872
10316
|
<span class="md-ellipsis">
|
|
9873
|
-
Fixed
|
|
10317
|
+
Fixed in v2.1.6
|
|
9874
10318
|
</span>
|
|
9875
10319
|
</a>
|
|
9876
10320
|
|
|
9877
10321
|
</li>
|
|
9878
10322
|
|
|
9879
10323
|
<li class="md-nav__item">
|
|
9880
|
-
<a href="#
|
|
10324
|
+
<a href="#documentation-in-v216" class="md-nav__link">
|
|
9881
10325
|
<span class="md-ellipsis">
|
|
9882
|
-
Documentation
|
|
10326
|
+
Documentation in v2.1.6
|
|
9883
10327
|
</span>
|
|
9884
10328
|
</a>
|
|
9885
10329
|
|
|
@@ -9901,54 +10345,54 @@
|
|
|
9901
10345
|
<ul class="md-nav__list">
|
|
9902
10346
|
|
|
9903
10347
|
<li class="md-nav__item">
|
|
9904
|
-
<a href="#
|
|
10348
|
+
<a href="#security-in-v215" class="md-nav__link">
|
|
9905
10349
|
<span class="md-ellipsis">
|
|
9906
|
-
Security
|
|
10350
|
+
Security in v2.1.5
|
|
9907
10351
|
</span>
|
|
9908
10352
|
</a>
|
|
9909
10353
|
|
|
9910
10354
|
</li>
|
|
9911
10355
|
|
|
9912
10356
|
<li class="md-nav__item">
|
|
9913
|
-
<a href="#
|
|
10357
|
+
<a href="#added-in-v215" class="md-nav__link">
|
|
9914
10358
|
<span class="md-ellipsis">
|
|
9915
|
-
Added
|
|
10359
|
+
Added in v2.1.5
|
|
9916
10360
|
</span>
|
|
9917
10361
|
</a>
|
|
9918
10362
|
|
|
9919
10363
|
</li>
|
|
9920
10364
|
|
|
9921
10365
|
<li class="md-nav__item">
|
|
9922
|
-
<a href="#
|
|
10366
|
+
<a href="#changed-in-v215" class="md-nav__link">
|
|
9923
10367
|
<span class="md-ellipsis">
|
|
9924
|
-
Changed
|
|
10368
|
+
Changed in v2.1.5
|
|
9925
10369
|
</span>
|
|
9926
10370
|
</a>
|
|
9927
10371
|
|
|
9928
10372
|
</li>
|
|
9929
10373
|
|
|
9930
10374
|
<li class="md-nav__item">
|
|
9931
|
-
<a href="#
|
|
10375
|
+
<a href="#fixed-in-v215" class="md-nav__link">
|
|
9932
10376
|
<span class="md-ellipsis">
|
|
9933
|
-
Fixed
|
|
10377
|
+
Fixed in v2.1.5
|
|
9934
10378
|
</span>
|
|
9935
10379
|
</a>
|
|
9936
10380
|
|
|
9937
10381
|
</li>
|
|
9938
10382
|
|
|
9939
10383
|
<li class="md-nav__item">
|
|
9940
|
-
<a href="#
|
|
10384
|
+
<a href="#documentation-in-v215" class="md-nav__link">
|
|
9941
10385
|
<span class="md-ellipsis">
|
|
9942
|
-
Documentation
|
|
10386
|
+
Documentation in v2.1.5
|
|
9943
10387
|
</span>
|
|
9944
10388
|
</a>
|
|
9945
10389
|
|
|
9946
10390
|
</li>
|
|
9947
10391
|
|
|
9948
10392
|
<li class="md-nav__item">
|
|
9949
|
-
<a href="#
|
|
10393
|
+
<a href="#housekeeping-in-v215" class="md-nav__link">
|
|
9950
10394
|
<span class="md-ellipsis">
|
|
9951
|
-
Housekeeping
|
|
10395
|
+
Housekeeping in v2.1.5
|
|
9952
10396
|
</span>
|
|
9953
10397
|
</a>
|
|
9954
10398
|
|
|
@@ -9970,36 +10414,36 @@
|
|
|
9970
10414
|
<ul class="md-nav__list">
|
|
9971
10415
|
|
|
9972
10416
|
<li class="md-nav__item">
|
|
9973
|
-
<a href="#
|
|
10417
|
+
<a href="#security-in-v214" class="md-nav__link">
|
|
9974
10418
|
<span class="md-ellipsis">
|
|
9975
|
-
Security
|
|
10419
|
+
Security in v2.1.4
|
|
9976
10420
|
</span>
|
|
9977
10421
|
</a>
|
|
9978
10422
|
|
|
9979
10423
|
</li>
|
|
9980
10424
|
|
|
9981
10425
|
<li class="md-nav__item">
|
|
9982
|
-
<a href="#
|
|
10426
|
+
<a href="#fixed-in-v214" class="md-nav__link">
|
|
9983
10427
|
<span class="md-ellipsis">
|
|
9984
|
-
Fixed
|
|
10428
|
+
Fixed in v2.1.4
|
|
9985
10429
|
</span>
|
|
9986
10430
|
</a>
|
|
9987
10431
|
|
|
9988
10432
|
</li>
|
|
9989
10433
|
|
|
9990
10434
|
<li class="md-nav__item">
|
|
9991
|
-
<a href="#
|
|
10435
|
+
<a href="#documentation-in-v214" class="md-nav__link">
|
|
9992
10436
|
<span class="md-ellipsis">
|
|
9993
|
-
Documentation
|
|
10437
|
+
Documentation in v2.1.4
|
|
9994
10438
|
</span>
|
|
9995
10439
|
</a>
|
|
9996
10440
|
|
|
9997
10441
|
</li>
|
|
9998
10442
|
|
|
9999
10443
|
<li class="md-nav__item">
|
|
10000
|
-
<a href="#
|
|
10444
|
+
<a href="#housekeeping-in-v214" class="md-nav__link">
|
|
10001
10445
|
<span class="md-ellipsis">
|
|
10002
|
-
Housekeeping
|
|
10446
|
+
Housekeeping in v2.1.4
|
|
10003
10447
|
</span>
|
|
10004
10448
|
</a>
|
|
10005
10449
|
|
|
@@ -10021,63 +10465,63 @@
|
|
|
10021
10465
|
<ul class="md-nav__list">
|
|
10022
10466
|
|
|
10023
10467
|
<li class="md-nav__item">
|
|
10024
|
-
<a href="#
|
|
10468
|
+
<a href="#security-in-v213" class="md-nav__link">
|
|
10025
10469
|
<span class="md-ellipsis">
|
|
10026
|
-
Security
|
|
10470
|
+
Security in v2.1.3
|
|
10027
10471
|
</span>
|
|
10028
10472
|
</a>
|
|
10029
10473
|
|
|
10030
10474
|
</li>
|
|
10031
10475
|
|
|
10032
10476
|
<li class="md-nav__item">
|
|
10033
|
-
<a href="#
|
|
10477
|
+
<a href="#added-in-v213" class="md-nav__link">
|
|
10034
10478
|
<span class="md-ellipsis">
|
|
10035
|
-
Added
|
|
10479
|
+
Added in v2.1.3
|
|
10036
10480
|
</span>
|
|
10037
10481
|
</a>
|
|
10038
10482
|
|
|
10039
10483
|
</li>
|
|
10040
10484
|
|
|
10041
10485
|
<li class="md-nav__item">
|
|
10042
|
-
<a href="#
|
|
10486
|
+
<a href="#changed-in-v213" class="md-nav__link">
|
|
10043
10487
|
<span class="md-ellipsis">
|
|
10044
|
-
Changed
|
|
10488
|
+
Changed in v2.1.3
|
|
10045
10489
|
</span>
|
|
10046
10490
|
</a>
|
|
10047
10491
|
|
|
10048
10492
|
</li>
|
|
10049
10493
|
|
|
10050
10494
|
<li class="md-nav__item">
|
|
10051
|
-
<a href="#
|
|
10495
|
+
<a href="#removed-in-v213" class="md-nav__link">
|
|
10052
10496
|
<span class="md-ellipsis">
|
|
10053
|
-
Removed
|
|
10497
|
+
Removed in v2.1.3
|
|
10054
10498
|
</span>
|
|
10055
10499
|
</a>
|
|
10056
10500
|
|
|
10057
10501
|
</li>
|
|
10058
10502
|
|
|
10059
10503
|
<li class="md-nav__item">
|
|
10060
|
-
<a href="#
|
|
10504
|
+
<a href="#fixed-in-v213" class="md-nav__link">
|
|
10061
10505
|
<span class="md-ellipsis">
|
|
10062
|
-
Fixed
|
|
10506
|
+
Fixed in v2.1.3
|
|
10063
10507
|
</span>
|
|
10064
10508
|
</a>
|
|
10065
10509
|
|
|
10066
10510
|
</li>
|
|
10067
10511
|
|
|
10068
10512
|
<li class="md-nav__item">
|
|
10069
|
-
<a href="#
|
|
10513
|
+
<a href="#dependencies-in-v213" class="md-nav__link">
|
|
10070
10514
|
<span class="md-ellipsis">
|
|
10071
|
-
Dependencies
|
|
10515
|
+
Dependencies in v2.1.3
|
|
10072
10516
|
</span>
|
|
10073
10517
|
</a>
|
|
10074
10518
|
|
|
10075
10519
|
</li>
|
|
10076
10520
|
|
|
10077
10521
|
<li class="md-nav__item">
|
|
10078
|
-
<a href="#
|
|
10522
|
+
<a href="#housekeeping-in-v213" class="md-nav__link">
|
|
10079
10523
|
<span class="md-ellipsis">
|
|
10080
|
-
Housekeeping
|
|
10524
|
+
Housekeeping in v2.1.3
|
|
10081
10525
|
</span>
|
|
10082
10526
|
</a>
|
|
10083
10527
|
|
|
@@ -10099,72 +10543,72 @@
|
|
|
10099
10543
|
<ul class="md-nav__list">
|
|
10100
10544
|
|
|
10101
10545
|
<li class="md-nav__item">
|
|
10102
|
-
<a href="#
|
|
10546
|
+
<a href="#security-in-v212" class="md-nav__link">
|
|
10103
10547
|
<span class="md-ellipsis">
|
|
10104
|
-
Security
|
|
10548
|
+
Security in v2.1.2
|
|
10105
10549
|
</span>
|
|
10106
10550
|
</a>
|
|
10107
10551
|
|
|
10108
10552
|
</li>
|
|
10109
10553
|
|
|
10110
10554
|
<li class="md-nav__item">
|
|
10111
|
-
<a href="#
|
|
10555
|
+
<a href="#added-in-v212" class="md-nav__link">
|
|
10112
10556
|
<span class="md-ellipsis">
|
|
10113
|
-
Added
|
|
10557
|
+
Added in v2.1.2
|
|
10114
10558
|
</span>
|
|
10115
10559
|
</a>
|
|
10116
10560
|
|
|
10117
10561
|
</li>
|
|
10118
10562
|
|
|
10119
10563
|
<li class="md-nav__item">
|
|
10120
|
-
<a href="#
|
|
10564
|
+
<a href="#changed-in-v212" class="md-nav__link">
|
|
10121
10565
|
<span class="md-ellipsis">
|
|
10122
|
-
Changed
|
|
10566
|
+
Changed in v2.1.2
|
|
10123
10567
|
</span>
|
|
10124
10568
|
</a>
|
|
10125
10569
|
|
|
10126
10570
|
</li>
|
|
10127
10571
|
|
|
10128
10572
|
<li class="md-nav__item">
|
|
10129
|
-
<a href="#
|
|
10573
|
+
<a href="#removed-in-v212" class="md-nav__link">
|
|
10130
10574
|
<span class="md-ellipsis">
|
|
10131
|
-
Removed
|
|
10575
|
+
Removed in v2.1.2
|
|
10132
10576
|
</span>
|
|
10133
10577
|
</a>
|
|
10134
10578
|
|
|
10135
10579
|
</li>
|
|
10136
10580
|
|
|
10137
10581
|
<li class="md-nav__item">
|
|
10138
|
-
<a href="#
|
|
10582
|
+
<a href="#fixed-in-v212" class="md-nav__link">
|
|
10139
10583
|
<span class="md-ellipsis">
|
|
10140
|
-
Fixed
|
|
10584
|
+
Fixed in v2.1.2
|
|
10141
10585
|
</span>
|
|
10142
10586
|
</a>
|
|
10143
10587
|
|
|
10144
10588
|
</li>
|
|
10145
10589
|
|
|
10146
10590
|
<li class="md-nav__item">
|
|
10147
|
-
<a href="#
|
|
10591
|
+
<a href="#dependencies-in-v212" class="md-nav__link">
|
|
10148
10592
|
<span class="md-ellipsis">
|
|
10149
|
-
Dependencies
|
|
10593
|
+
Dependencies in v2.1.2
|
|
10150
10594
|
</span>
|
|
10151
10595
|
</a>
|
|
10152
10596
|
|
|
10153
10597
|
</li>
|
|
10154
10598
|
|
|
10155
10599
|
<li class="md-nav__item">
|
|
10156
|
-
<a href="#
|
|
10600
|
+
<a href="#documentation-in-v212" class="md-nav__link">
|
|
10157
10601
|
<span class="md-ellipsis">
|
|
10158
|
-
Documentation
|
|
10602
|
+
Documentation in v2.1.2
|
|
10159
10603
|
</span>
|
|
10160
10604
|
</a>
|
|
10161
10605
|
|
|
10162
10606
|
</li>
|
|
10163
10607
|
|
|
10164
10608
|
<li class="md-nav__item">
|
|
10165
|
-
<a href="#
|
|
10609
|
+
<a href="#housekeeping-in-v212" class="md-nav__link">
|
|
10166
10610
|
<span class="md-ellipsis">
|
|
10167
|
-
Housekeeping
|
|
10611
|
+
Housekeeping in v2.1.2
|
|
10168
10612
|
</span>
|
|
10169
10613
|
</a>
|
|
10170
10614
|
|
|
@@ -10186,54 +10630,54 @@
|
|
|
10186
10630
|
<ul class="md-nav__list">
|
|
10187
10631
|
|
|
10188
10632
|
<li class="md-nav__item">
|
|
10189
|
-
<a href="#
|
|
10633
|
+
<a href="#added-in-v211" class="md-nav__link">
|
|
10190
10634
|
<span class="md-ellipsis">
|
|
10191
|
-
Added
|
|
10635
|
+
Added in v2.1.1
|
|
10192
10636
|
</span>
|
|
10193
10637
|
</a>
|
|
10194
10638
|
|
|
10195
10639
|
</li>
|
|
10196
10640
|
|
|
10197
10641
|
<li class="md-nav__item">
|
|
10198
|
-
<a href="#
|
|
10642
|
+
<a href="#changed-in-v211" class="md-nav__link">
|
|
10199
10643
|
<span class="md-ellipsis">
|
|
10200
|
-
Changed
|
|
10644
|
+
Changed in v2.1.1
|
|
10201
10645
|
</span>
|
|
10202
10646
|
</a>
|
|
10203
10647
|
|
|
10204
10648
|
</li>
|
|
10205
10649
|
|
|
10206
10650
|
<li class="md-nav__item">
|
|
10207
|
-
<a href="#
|
|
10651
|
+
<a href="#removed-in-v211" class="md-nav__link">
|
|
10208
10652
|
<span class="md-ellipsis">
|
|
10209
|
-
Removed
|
|
10653
|
+
Removed in v2.1.1
|
|
10210
10654
|
</span>
|
|
10211
10655
|
</a>
|
|
10212
10656
|
|
|
10213
10657
|
</li>
|
|
10214
10658
|
|
|
10215
10659
|
<li class="md-nav__item">
|
|
10216
|
-
<a href="#
|
|
10660
|
+
<a href="#fixed-in-v211" class="md-nav__link">
|
|
10217
10661
|
<span class="md-ellipsis">
|
|
10218
|
-
Fixed
|
|
10662
|
+
Fixed in v2.1.1
|
|
10219
10663
|
</span>
|
|
10220
10664
|
</a>
|
|
10221
10665
|
|
|
10222
10666
|
</li>
|
|
10223
10667
|
|
|
10224
10668
|
<li class="md-nav__item">
|
|
10225
|
-
<a href="#
|
|
10669
|
+
<a href="#documentation-in-v211" class="md-nav__link">
|
|
10226
10670
|
<span class="md-ellipsis">
|
|
10227
|
-
Documentation
|
|
10671
|
+
Documentation in v2.1.1
|
|
10228
10672
|
</span>
|
|
10229
10673
|
</a>
|
|
10230
10674
|
|
|
10231
10675
|
</li>
|
|
10232
10676
|
|
|
10233
10677
|
<li class="md-nav__item">
|
|
10234
|
-
<a href="#
|
|
10678
|
+
<a href="#housekeeping-in-v211" class="md-nav__link">
|
|
10235
10679
|
<span class="md-ellipsis">
|
|
10236
|
-
Housekeeping
|
|
10680
|
+
Housekeeping in v2.1.1
|
|
10237
10681
|
</span>
|
|
10238
10682
|
</a>
|
|
10239
10683
|
|
|
@@ -10255,63 +10699,63 @@
|
|
|
10255
10699
|
<ul class="md-nav__list">
|
|
10256
10700
|
|
|
10257
10701
|
<li class="md-nav__item">
|
|
10258
|
-
<a href="#
|
|
10702
|
+
<a href="#security-in-v210" class="md-nav__link">
|
|
10259
10703
|
<span class="md-ellipsis">
|
|
10260
|
-
Security
|
|
10704
|
+
Security in v2.1.0
|
|
10261
10705
|
</span>
|
|
10262
10706
|
</a>
|
|
10263
10707
|
|
|
10264
10708
|
</li>
|
|
10265
10709
|
|
|
10266
10710
|
<li class="md-nav__item">
|
|
10267
|
-
<a href="#
|
|
10711
|
+
<a href="#added-in-v210" class="md-nav__link">
|
|
10268
10712
|
<span class="md-ellipsis">
|
|
10269
|
-
Added
|
|
10713
|
+
Added in v2.1.0
|
|
10270
10714
|
</span>
|
|
10271
10715
|
</a>
|
|
10272
10716
|
|
|
10273
10717
|
</li>
|
|
10274
10718
|
|
|
10275
10719
|
<li class="md-nav__item">
|
|
10276
|
-
<a href="#
|
|
10720
|
+
<a href="#changed-in-v210" class="md-nav__link">
|
|
10277
10721
|
<span class="md-ellipsis">
|
|
10278
|
-
Changed
|
|
10722
|
+
Changed in v2.1.0
|
|
10279
10723
|
</span>
|
|
10280
10724
|
</a>
|
|
10281
10725
|
|
|
10282
10726
|
</li>
|
|
10283
10727
|
|
|
10284
10728
|
<li class="md-nav__item">
|
|
10285
|
-
<a href="#
|
|
10729
|
+
<a href="#removed-in-v210" class="md-nav__link">
|
|
10286
10730
|
<span class="md-ellipsis">
|
|
10287
|
-
Removed
|
|
10731
|
+
Removed in v2.1.0
|
|
10288
10732
|
</span>
|
|
10289
10733
|
</a>
|
|
10290
10734
|
|
|
10291
10735
|
</li>
|
|
10292
10736
|
|
|
10293
10737
|
<li class="md-nav__item">
|
|
10294
|
-
<a href="#
|
|
10738
|
+
<a href="#fixed-in-v210" class="md-nav__link">
|
|
10295
10739
|
<span class="md-ellipsis">
|
|
10296
|
-
Fixed
|
|
10740
|
+
Fixed in v2.1.0
|
|
10297
10741
|
</span>
|
|
10298
10742
|
</a>
|
|
10299
10743
|
|
|
10300
10744
|
</li>
|
|
10301
10745
|
|
|
10302
10746
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#
|
|
10747
|
+
<a href="#documentation-in-v210" class="md-nav__link">
|
|
10304
10748
|
<span class="md-ellipsis">
|
|
10305
|
-
Documentation
|
|
10749
|
+
Documentation in v2.1.0
|
|
10306
10750
|
</span>
|
|
10307
10751
|
</a>
|
|
10308
10752
|
|
|
10309
10753
|
</li>
|
|
10310
10754
|
|
|
10311
10755
|
<li class="md-nav__item">
|
|
10312
|
-
<a href="#
|
|
10756
|
+
<a href="#housekeeping-in-v210" class="md-nav__link">
|
|
10313
10757
|
<span class="md-ellipsis">
|
|
10314
|
-
Housekeeping
|
|
10758
|
+
Housekeeping in v2.1.0
|
|
10315
10759
|
</span>
|
|
10316
10760
|
</a>
|
|
10317
10761
|
|
|
@@ -10333,45 +10777,45 @@
|
|
|
10333
10777
|
<ul class="md-nav__list">
|
|
10334
10778
|
|
|
10335
10779
|
<li class="md-nav__item">
|
|
10336
|
-
<a href="#
|
|
10780
|
+
<a href="#added-in-v210-beta1" class="md-nav__link">
|
|
10337
10781
|
<span class="md-ellipsis">
|
|
10338
|
-
Added
|
|
10782
|
+
Added in v2.1.0-beta.1
|
|
10339
10783
|
</span>
|
|
10340
10784
|
</a>
|
|
10341
10785
|
|
|
10342
10786
|
</li>
|
|
10343
10787
|
|
|
10344
10788
|
<li class="md-nav__item">
|
|
10345
|
-
<a href="#
|
|
10789
|
+
<a href="#changed-in-v210-beta1" class="md-nav__link">
|
|
10346
10790
|
<span class="md-ellipsis">
|
|
10347
|
-
Changed
|
|
10791
|
+
Changed in v2.1.0-beta.1
|
|
10348
10792
|
</span>
|
|
10349
10793
|
</a>
|
|
10350
10794
|
|
|
10351
10795
|
</li>
|
|
10352
10796
|
|
|
10353
10797
|
<li class="md-nav__item">
|
|
10354
|
-
<a href="#
|
|
10798
|
+
<a href="#removed-in-v210-beta1" class="md-nav__link">
|
|
10355
10799
|
<span class="md-ellipsis">
|
|
10356
|
-
Removed
|
|
10800
|
+
Removed in v2.1.0-beta.1
|
|
10357
10801
|
</span>
|
|
10358
10802
|
</a>
|
|
10359
10803
|
|
|
10360
10804
|
</li>
|
|
10361
10805
|
|
|
10362
10806
|
<li class="md-nav__item">
|
|
10363
|
-
<a href="#
|
|
10807
|
+
<a href="#fixed-in-v210-beta1" class="md-nav__link">
|
|
10364
10808
|
<span class="md-ellipsis">
|
|
10365
|
-
Fixed
|
|
10809
|
+
Fixed in v2.1.0-beta.1
|
|
10366
10810
|
</span>
|
|
10367
10811
|
</a>
|
|
10368
10812
|
|
|
10369
10813
|
</li>
|
|
10370
10814
|
|
|
10371
10815
|
<li class="md-nav__item">
|
|
10372
|
-
<a href="#
|
|
10816
|
+
<a href="#housekeeping-in-v210-beta1" class="md-nav__link">
|
|
10373
10817
|
<span class="md-ellipsis">
|
|
10374
|
-
Housekeeping
|
|
10818
|
+
Housekeeping in v2.1.0-beta.1
|
|
10375
10819
|
</span>
|
|
10376
10820
|
</a>
|
|
10377
10821
|
|
|
@@ -10400,8 +10844,6 @@
|
|
|
10400
10844
|
|
|
10401
10845
|
|
|
10402
10846
|
|
|
10403
|
-
<!-- markdownlint-disable MD024 -->
|
|
10404
|
-
|
|
10405
10847
|
<h1 id="nautobot-v21">Nautobot v2.1<a class="headerlink" href="#nautobot-v21" title="Permanent link">¶</a></h1>
|
|
10406
10848
|
<p>This document describes all new features and changes in Nautobot 2.1.</p>
|
|
10407
10849
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -10450,9 +10892,8 @@
|
|
|
10450
10892
|
<p>Support for versions of PostgreSQL prior to 12.0 has been removed as these versions are no longer maintained and contain bugs that prevent migrations from running in certain scenarios. The <code>nautobot-server migrate</code> or <code>nautobot-server post_upgrade</code> commands will now abort when detecting an unsupported PostgreSQL version.</p>
|
|
10451
10893
|
<h4 id="remove-hide_restricted_ui-toggle-4787">Remove <code>HIDE_RESTRICTED_UI</code> Toggle (<a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a>)<a class="headerlink" href="#remove-hide_restricted_ui-toggle-4787" title="Permanent link">¶</a></h4>
|
|
10452
10894
|
<p>Support for <code>HIDE_RESTRICTED_UI</code> has been removed. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</p>
|
|
10453
|
-
<!-- towncrier release notes start -->
|
|
10454
10895
|
<h2 id="v219-2024-03-25">v2.1.9 (2024-03-25)<a class="headerlink" href="#v219-2024-03-25" title="Permanent link">¶</a></h2>
|
|
10455
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10896
|
+
<h3 id="security-in-v219">Security in v2.1.9<a class="headerlink" href="#security-in-v219" title="Permanent link">¶</a></h3>
|
|
10456
10897
|
<ul>
|
|
10457
10898
|
<li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
|
|
10458
10899
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/<uuid:pk>/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
@@ -10464,21 +10905,21 @@
|
|
|
10464
10905
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/<uuid>/dynamic-groups/</code>, <code>/dcim/devices/<uuid>/dynamic-groups/</code>, <code>/ipam/prefixes/<uuid>/dynamic-groups/</code>, <code>/ipam/ip-addresses/<uuid>/dynamic-groups/</code>, <code>/virtualization/clusters/<uuid>/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/<uuid>/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10465
10906
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/<str:provider_slug>/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10466
10907
|
</ul>
|
|
10467
|
-
<h3 id="
|
|
10908
|
+
<h3 id="added-in-v219">Added in v2.1.9<a class="headerlink" href="#added-in-v219" title="Permanent link">¶</a></h3>
|
|
10468
10909
|
<ul>
|
|
10469
10910
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
|
|
10470
10911
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
10471
10912
|
</ul>
|
|
10472
|
-
<h3 id="
|
|
10913
|
+
<h3 id="changed-in-v219">Changed in v2.1.9<a class="headerlink" href="#changed-in-v219" title="Permanent link">¶</a></h3>
|
|
10473
10914
|
<ul>
|
|
10474
10915
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added support for <code>view_name</code> and <code>view_description</code> optional parameters when instantiating a <code>nautobot.apps.api.OrderedDefaultRouter</code>. Specifying these parameters is to be preferred over defining a custom <code>APIRootView</code> subclass when defining App API URLs.</li>
|
|
10475
10916
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication by default on the <code>nautobot.apps.api.APIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
|
|
10476
10917
|
</ul>
|
|
10477
|
-
<h3 id="
|
|
10918
|
+
<h3 id="removed-in-v219">Removed in v2.1.9<a class="headerlink" href="#removed-in-v219" title="Permanent link">¶</a></h3>
|
|
10478
10919
|
<ul>
|
|
10479
10920
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Removed the URL endpoints <code>/api/users/users/my-profile/</code>, <code>/api/users/users/session/</code>, <code>/api/users/tokens/authenticate/</code>, and <code>/api/users/tokens/logout/</code> as they are unused at this time.</li>
|
|
10480
10921
|
</ul>
|
|
10481
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10922
|
+
<h3 id="fixed-in-v219">Fixed in v2.1.9<a class="headerlink" href="#fixed-in-v219" title="Permanent link">¶</a></h3>
|
|
10482
10923
|
<ul>
|
|
10483
10924
|
<li><a href="https://github.com/nautobot/nautobot/issues/5413">#5413</a> - Updated Device "LLDP Neighbors" detail panel to handle LLDP neighbors with MAC address as port-id.</li>
|
|
10484
10925
|
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for GraphiQL page <code>/graphql</code>.</li>
|
|
@@ -10488,16 +10929,16 @@
|
|
|
10488
10929
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Fixed a 500 error when accessing any of the <code>/dcim/<port-type>/<uuid>/connect/<termination_b_type>/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
|
|
10489
10930
|
<li><a href="https://github.com/nautobot/nautobot/issues/5466">#5466</a> - Remove duplicated location param in vlan table.</li>
|
|
10490
10931
|
</ul>
|
|
10491
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10932
|
+
<h3 id="dependencies-in-v219">Dependencies in v2.1.9<a class="headerlink" href="#dependencies-in-v219" title="Permanent link">¶</a></h3>
|
|
10492
10933
|
<ul>
|
|
10493
10934
|
<li><a href="https://github.com/nautobot/nautobot/issues/5296">#5296</a> - Fixed bug in pyproject.toml that added <code>coverage</code> as a nautobot dependency instead of a development dependency.</li>
|
|
10494
10935
|
</ul>
|
|
10495
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10936
|
+
<h3 id="documentation-in-v219">Documentation in v2.1.9<a class="headerlink" href="#documentation-in-v219" title="Permanent link">¶</a></h3>
|
|
10496
10937
|
<ul>
|
|
10497
10938
|
<li><a href="https://github.com/nautobot/nautobot/issues/5340">#5340</a> - Added installation documentation about recommended health-checks for Docker Compose and Kubernetes.</li>
|
|
10498
10939
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
10499
10940
|
</ul>
|
|
10500
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10941
|
+
<h3 id="housekeeping-in-v219">Housekeeping in v2.1.9<a class="headerlink" href="#housekeeping-in-v219" title="Permanent link">¶</a></h3>
|
|
10501
10942
|
<ul>
|
|
10502
10943
|
<li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/core/api/routers.py#21</code> with with a plain <code>dict</code> instance.</li>
|
|
10503
10944
|
<li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/dcim/models/racks.py#275</code> with a plain <code>dict</code> instance.</li>
|
|
@@ -10506,7 +10947,7 @@
|
|
|
10506
10947
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
10507
10948
|
</ul>
|
|
10508
10949
|
<h2 id="v218-2024-03-18">v2.1.8 (2024-03-18)<a class="headerlink" href="#v218-2024-03-18" title="Permanent link">¶</a></h2>
|
|
10509
|
-
<h3 id="
|
|
10950
|
+
<h3 id="added-in-v218">Added in v2.1.8<a class="headerlink" href="#added-in-v218" title="Permanent link">¶</a></h3>
|
|
10510
10951
|
<ul>
|
|
10511
10952
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
10512
10953
|
<li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Added the option to configure and enforce <code>validation_minimum</code> and <code>validation_maximum</code> as length constraints on a Custom Field of type <code>Text</code>, <code>URL</code>, <code>JSON</code>, <code>Markdown</code>, <code>Selection</code>, or <code>Multiple Selection</code>.</li>
|
|
@@ -10516,16 +10957,16 @@
|
|
|
10516
10957
|
<li><a href="https://github.com/nautobot/nautobot/issues/5402">#5402</a> - Added interface types <code>CXP (100GE)</code>, <code>DSFP (100GE)</code>, <code>SFP-DD (100GE)</code>, <code>QSFP-DD (100GE)</code>, <code>QSFP-DD (200GE)</code>, <code>CFP2 (400GE)</code>, <code>OSFP-RHS (400GE)</code>, <code>CDFP (400GE)</code>, <code>CPF8 (400GE)</code>, <code>SFP+ (32GFC)</code>, <code>SFP-DD (64GFC)</code>, and <code>SFP+ (64GFC)</code>.</li>
|
|
10517
10958
|
<li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
|
|
10518
10959
|
</ul>
|
|
10519
|
-
<h3 id="
|
|
10960
|
+
<h3 id="changed-in-v218">Changed in v2.1.8<a class="headerlink" href="#changed-in-v218" title="Permanent link">¶</a></h3>
|
|
10520
10961
|
<ul>
|
|
10521
10962
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Changed uses of <code>functools.lru_cache</code> to use django-redis cache instead.</li>
|
|
10522
10963
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the django-redis cache.</li>
|
|
10523
10964
|
</ul>
|
|
10524
|
-
<h3 id="
|
|
10965
|
+
<h3 id="removed-in-v218">Removed in v2.1.8<a class="headerlink" href="#removed-in-v218" title="Permanent link">¶</a></h3>
|
|
10525
10966
|
<ul>
|
|
10526
10967
|
<li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Removed the hard-coded 255-character limit on custom fields of type <code>Text</code>.</li>
|
|
10527
10968
|
</ul>
|
|
10528
|
-
<h3 id="
|
|
10969
|
+
<h3 id="fixed-in-v218">Fixed in v2.1.8<a class="headerlink" href="#fixed-in-v218" title="Permanent link">¶</a></h3>
|
|
10529
10970
|
<ul>
|
|
10530
10971
|
<li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
|
|
10531
10972
|
<li><a href="https://github.com/nautobot/nautobot/issues/5380">#5380</a> - Fixed incorrect permission for "Add Tenant" button in the navigation menu.</li>
|
|
@@ -10533,28 +10974,28 @@
|
|
|
10533
10974
|
<li><a href="https://github.com/nautobot/nautobot/issues/5395">#5395</a> - Fixed incorrect permission for "Roles" link in the navigation menu.</li>
|
|
10534
10975
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Fixed an issue with stale CustomField, ComputedField, Relationship, and TreeModel caches that caused incorrect data at times.</li>
|
|
10535
10976
|
</ul>
|
|
10536
|
-
<h3 id="
|
|
10977
|
+
<h3 id="documentation-in-v218">Documentation in v2.1.8<a class="headerlink" href="#documentation-in-v218" title="Permanent link">¶</a></h3>
|
|
10537
10978
|
<ul>
|
|
10538
10979
|
<li><a href="https://github.com/nautobot/nautobot/issues/5437">#5437</a> - Added release-note for version 1.6.15.</li>
|
|
10539
10980
|
<li><a href="https://github.com/nautobot/nautobot/issues/5421">#5421</a> - Added release-notes for versions 1.6.11 through 1.6.14.</li>
|
|
10540
10981
|
</ul>
|
|
10541
|
-
<h3 id="
|
|
10982
|
+
<h3 id="housekeeping-in-v218">Housekeeping in v2.1.8<a class="headerlink" href="#housekeeping-in-v218" title="Permanent link">¶</a></h3>
|
|
10542
10983
|
<ul>
|
|
10543
10984
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
|
|
10544
10985
|
<li><a href="https://github.com/nautobot/nautobot/issues/3213">#3213</a> - Removed redundant filter tests for related boolean filters.</li>
|
|
10545
10986
|
<li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
|
|
10546
10987
|
</ul>
|
|
10547
10988
|
<h2 id="v217-2024-03-05">v2.1.7 (2024-03-05)<a class="headerlink" href="#v217-2024-03-05" title="Permanent link">¶</a></h2>
|
|
10548
|
-
<h3 id="
|
|
10989
|
+
<h3 id="fixed-in-v217">Fixed in v2.1.7<a class="headerlink" href="#fixed-in-v217" title="Permanent link">¶</a></h3>
|
|
10549
10990
|
<ul>
|
|
10550
10991
|
<li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
|
|
10551
10992
|
</ul>
|
|
10552
10993
|
<h2 id="v216-2024-03-04">v2.1.6 (2024-03-04)<a class="headerlink" href="#v216-2024-03-04" title="Permanent link">¶</a></h2>
|
|
10553
|
-
<h3 id="
|
|
10994
|
+
<h3 id="security-in-v216">Security in v2.1.6<a class="headerlink" href="#security-in-v216" title="Permanent link">¶</a></h3>
|
|
10554
10995
|
<ul>
|
|
10555
10996
|
<li><a href="https://github.com/nautobot/nautobot/issues/5319">#5319</a> - Updated <code>cryptography</code> to 42.0.4 due to CVE-2024-26130. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10556
10997
|
</ul>
|
|
10557
|
-
<h3 id="
|
|
10998
|
+
<h3 id="added-in-v216">Added in v2.1.6<a class="headerlink" href="#added-in-v216" title="Permanent link">¶</a></h3>
|
|
10558
10999
|
<ul>
|
|
10559
11000
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Collapse Capable Side Navbar: Side Navbar is now able to be expanded and collapsed</li>
|
|
10560
11001
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Expandable Main Content: The Main Content part of the UI grows as the Side Navbar collapses and shrinks as the Side Navbar expands.</li>
|
|
@@ -10563,11 +11004,11 @@
|
|
|
10563
11004
|
<li><a href="https://github.com/nautobot/nautobot/issues/5329">#5329</a> - Added caching of <code>ChangeLoggedModelsQuery().as_queryset()</code> to improve performance when saving many objects in a change-logged context.</li>
|
|
10564
11005
|
<li><a href="https://github.com/nautobot/nautobot/issues/5361">#5361</a> - Added <code>nautobot.core.testing.forms.FormTestCases</code> base class and added it to <code>nautobot.apps.testing</code> as well.</li>
|
|
10565
11006
|
</ul>
|
|
10566
|
-
<h3 id="
|
|
11007
|
+
<h3 id="changed-in-v216">Changed in v2.1.6<a class="headerlink" href="#changed-in-v216" title="Permanent link">¶</a></h3>
|
|
10567
11008
|
<ul>
|
|
10568
11009
|
<li><a href="https://github.com/nautobot/nautobot/issues/5082">#5082</a> - Adjusted Edit / Create panels to occupy more page width on medium and large screens.</li>
|
|
10569
11010
|
</ul>
|
|
10570
|
-
<h3 id="
|
|
11011
|
+
<h3 id="fixed-in-v216">Fixed in v2.1.6<a class="headerlink" href="#fixed-in-v216" title="Permanent link">¶</a></h3>
|
|
10571
11012
|
<ul>
|
|
10572
11013
|
<li><a href="https://github.com/nautobot/nautobot/issues/4106">#4106</a> - Fixed inefficient query in VirtualMachine create form.</li>
|
|
10573
11014
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Fixed Brand Icon mouseover Background: Fix for mouseover effect on the Brand / Icon (was flashing white background vs being transparent) when in dark mode.</li>
|
|
@@ -10584,7 +11025,7 @@
|
|
|
10584
11025
|
<li><a href="https://github.com/nautobot/nautobot/issues/5346">#5346</a> - Fixed device LLDP view to work when interface names include a space.</li>
|
|
10585
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/5365">#5365</a> - Fixed <code>invalidate_max_depth_cache</code> itself calculating <code>max_depth</code> on querysets without tree fields.</li>
|
|
10586
11027
|
</ul>
|
|
10587
|
-
<h3 id="
|
|
11028
|
+
<h3 id="documentation-in-v216">Documentation in v2.1.6<a class="headerlink" href="#documentation-in-v216" title="Permanent link">¶</a></h3>
|
|
10588
11029
|
<ul>
|
|
10589
11030
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation on <code>nautobot.apps</code> import locations.</li>
|
|
10590
11031
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation about the supported public interfaces.</li>
|
|
@@ -10598,24 +11039,24 @@
|
|
|
10598
11039
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
|
|
10599
11040
|
</ul>
|
|
10600
11041
|
<h2 id="v215-2024-02-21">v2.1.5 (2024-02-21)<a class="headerlink" href="#v215-2024-02-21" title="Permanent link">¶</a></h2>
|
|
10601
|
-
<h3 id="
|
|
11042
|
+
<h3 id="security-in-v215">Security in v2.1.5<a class="headerlink" href="#security-in-v215" title="Permanent link">¶</a></h3>
|
|
10602
11043
|
<ul>
|
|
10603
11044
|
<li><a href="https://github.com/nautobot/nautobot/pull/5303">#5303</a> - Updated <code>cryptography</code> to 42.0.2 due to CVE-2024-0727. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10604
11045
|
</ul>
|
|
10605
|
-
<h3 id="
|
|
11046
|
+
<h3 id="added-in-v215">Added in v2.1.5<a class="headerlink" href="#added-in-v215" title="Permanent link">¶</a></h3>
|
|
10606
11047
|
<ul>
|
|
10607
11048
|
<li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Added <code>latest</code> and <code>latest-py<version></code> tags to the <code>nautobot</code> Docker images published for the latest stable release of Nautobot.</li>
|
|
10608
11049
|
<li><a href="https://github.com/nautobot/nautobot/issues/5210">#5210</a> - Added <code>METRICS_AUTHENTICATED</code> setting to control authentication for the HTTP endpoint <code>/metrics</code>.</li>
|
|
10609
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting display_field on DynamicModelChoiceField to nested values in suggested choices list.</li>
|
|
11050
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting <code>display_field</code> on DynamicModelChoiceField to nested values in suggested choices list.</li>
|
|
10610
11051
|
</ul>
|
|
10611
|
-
<h3 id="
|
|
11052
|
+
<h3 id="changed-in-v215">Changed in v2.1.5<a class="headerlink" href="#changed-in-v215" title="Permanent link">¶</a></h3>
|
|
10612
11053
|
<ul>
|
|
10613
11054
|
<li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Changed the tagging of <code>nautobot-dev</code> Docker images to reserve the <code>latest</code> and <code>latest-py<version></code> tags for the latest stable release of Nautobot, rather than the latest build from the <code>develop</code> branch.</li>
|
|
10614
11055
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
|
|
10615
11056
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
|
|
10616
11057
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Updated navbar user dropdown with chevron.</li>
|
|
10617
11058
|
</ul>
|
|
10618
|
-
<h3 id="
|
|
11059
|
+
<h3 id="fixed-in-v215">Fixed in v2.1.5<a class="headerlink" href="#fixed-in-v215" title="Permanent link">¶</a></h3>
|
|
10619
11060
|
<ul>
|
|
10620
11061
|
<li><a href="https://github.com/nautobot/nautobot/issues/5058">#5058</a> - Changed more filter parameters from <code>location_id</code> to <code>location</code> in <code>virtualization/forms.py</code>.</li>
|
|
10621
11062
|
<li><a href="https://github.com/nautobot/nautobot/issues/5121">#5121</a> - Fixed an issue where deleting a git repository resulted in a job result stuck in running state.</li>
|
|
@@ -10624,38 +11065,38 @@
|
|
|
10624
11065
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Fixed button spacing when there are multiple buttons in navbar.</li>
|
|
10625
11066
|
<li><a href="https://github.com/nautobot/nautobot/issues/5283">#5283</a> - Fixed inconsistent ordering of IP addresses in various tables.</li>
|
|
10626
11067
|
</ul>
|
|
10627
|
-
<h3 id="
|
|
11068
|
+
<h3 id="documentation-in-v215">Documentation in v2.1.5<a class="headerlink" href="#documentation-in-v215" title="Permanent link">¶</a></h3>
|
|
10628
11069
|
<ul>
|
|
10629
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the TIME_ZONE setting consistent on Nautobot web servers and Celery Beat servers.</li>
|
|
11070
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the <code>TIME_ZONE</code> setting consistent on Nautobot web servers and Celery Beat servers.</li>
|
|
10630
11071
|
<li><a href="https://github.com/nautobot/nautobot/issues/5297">#5297</a> - Updated the low level application stack diagram to orient user traffic coming from the top.</li>
|
|
10631
11072
|
</ul>
|
|
10632
|
-
<h3 id="
|
|
11073
|
+
<h3 id="housekeeping-in-v215">Housekeeping in v2.1.5<a class="headerlink" href="#housekeeping-in-v215" title="Permanent link">¶</a></h3>
|
|
10633
11074
|
<ul>
|
|
10634
11075
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Reorganized navbar css rules in <code>base.css</code>.</li>
|
|
10635
11076
|
</ul>
|
|
10636
11077
|
<h2 id="v214-2024-02-08">v2.1.4 (2024-02-08)<a class="headerlink" href="#v214-2024-02-08" title="Permanent link">¶</a></h2>
|
|
10637
|
-
<h3 id="
|
|
11078
|
+
<h3 id="security-in-v214">Security in v2.1.4<a class="headerlink" href="#security-in-v214" title="Permanent link">¶</a></h3>
|
|
10638
11079
|
<ul>
|
|
10639
11080
|
<li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
|
|
10640
11081
|
</ul>
|
|
10641
|
-
<h3 id="
|
|
11082
|
+
<h3 id="fixed-in-v214">Fixed in v2.1.4<a class="headerlink" href="#fixed-in-v214" title="Permanent link">¶</a></h3>
|
|
10642
11083
|
<ul>
|
|
10643
11084
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Fixed <code>TypeError</code> and similar exceptions thrown when rendering certain App data tables in v2.1.3.</li>
|
|
10644
11085
|
</ul>
|
|
10645
|
-
<h3 id="
|
|
11086
|
+
<h3 id="documentation-in-v214">Documentation in v2.1.4<a class="headerlink" href="#documentation-in-v214" title="Permanent link">¶</a></h3>
|
|
10646
11087
|
<ul>
|
|
10647
11088
|
<li><a href="https://github.com/nautobot/nautobot/issues/4778">#4778</a> - Added troubleshooting documentation for PostgreSQL databases with unsupported encoding settings.</li>
|
|
10648
11089
|
</ul>
|
|
10649
|
-
<h3 id="
|
|
11090
|
+
<h3 id="housekeeping-in-v214">Housekeeping in v2.1.4<a class="headerlink" href="#housekeeping-in-v214" title="Permanent link">¶</a></h3>
|
|
10650
11091
|
<ul>
|
|
10651
11092
|
<li><a href="https://github.com/nautobot/nautobot/issues/5240">#5240</a> - Changed test config to use <code>constance.backends.memory.MemoryBackend</code> to avoid intermittent failures in parallel tests.</li>
|
|
10652
11093
|
</ul>
|
|
10653
11094
|
<h2 id="v213-2024-02-05">v2.1.3 (2024-02-05)<a class="headerlink" href="#v213-2024-02-05" title="Permanent link">¶</a></h2>
|
|
10654
|
-
<h3 id="
|
|
11095
|
+
<h3 id="security-in-v213">Security in v2.1.3<a class="headerlink" href="#security-in-v213" title="Permanent link">¶</a></h3>
|
|
10655
11096
|
<ul>
|
|
10656
11097
|
<li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
|
|
10657
11098
|
</ul>
|
|
10658
|
-
<h3 id="
|
|
11099
|
+
<h3 id="added-in-v213">Added in v2.1.3<a class="headerlink" href="#added-in-v213" title="Permanent link">¶</a></h3>
|
|
10659
11100
|
<ul>
|
|
10660
11101
|
<li><a href="https://github.com/nautobot/nautobot/issues/4981">#4981</a> - Add serial types to InterfaceTypeChoices.</li>
|
|
10661
11102
|
<li><a href="https://github.com/nautobot/nautobot/issues/5012">#5012</a> - Added database indexes to the ObjectChange model to improve performance when filtering by <code>user_name</code>, <code>changed_object</code>, or <code>related_object</code>, and also by <code>changed_object</code> in combination with <code>user</code> or <code>user_name</code>.</li>
|
|
@@ -10663,7 +11104,7 @@
|
|
|
10663
11104
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added Navbar dropdown arrow rotation on open/close.</li>
|
|
10664
11105
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added behavior of resetting navbar state when the "home" link is clicked.</li>
|
|
10665
11106
|
</ul>
|
|
10666
|
-
<h3 id="
|
|
11107
|
+
<h3 id="changed-in-v213">Changed in v2.1.3<a class="headerlink" href="#changed-in-v213" title="Permanent link">¶</a></h3>
|
|
10667
11108
|
<ul>
|
|
10668
11109
|
<li><a href="https://github.com/nautobot/nautobot/issues/5149">#5149</a> - Updated the Job List to show Job Hook Receiver and Job Button Receiver Jobs, which were previously being hidden from view.</li>
|
|
10669
11110
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown link behavior to turn orange when active/clicked; state is saved.</li>
|
|
@@ -10672,12 +11113,12 @@
|
|
|
10672
11113
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown to use chevron icon instead of carets.</li>
|
|
10673
11114
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Aligned navbar dropdown icons to the right.</li>
|
|
10674
11115
|
</ul>
|
|
10675
|
-
<h3 id="
|
|
11116
|
+
<h3 id="removed-in-v213">Removed in v2.1.3<a class="headerlink" href="#removed-in-v213" title="Permanent link">¶</a></h3>
|
|
10676
11117
|
<ul>
|
|
10677
11118
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed unneeded tooltip of dropdown title.</li>
|
|
10678
11119
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed navbar dropdown links underlining.</li>
|
|
10679
11120
|
</ul>
|
|
10680
|
-
<h3 id="
|
|
11121
|
+
<h3 id="fixed-in-v213">Fixed in v2.1.3<a class="headerlink" href="#fixed-in-v213" title="Permanent link">¶</a></h3>
|
|
10681
11122
|
<ul>
|
|
10682
11123
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
10683
11124
|
<li><a href="https://github.com/nautobot/nautobot/issues/4898">#4898</a> - Improved automatic query optimization when rendering object list views.</li>
|
|
@@ -10691,14 +11132,14 @@
|
|
|
10691
11132
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Fixed navbar dropdown links alignment and spacing.</li>
|
|
10692
11133
|
<li><a href="https://github.com/nautobot/nautobot/issues/5198">#5198</a> - Fixed error in device and rack dropdowns when attempting to add an Interface to an InterfaceRedundancyGroup.</li>
|
|
10693
11134
|
</ul>
|
|
10694
|
-
<h3 id="
|
|
11135
|
+
<h3 id="dependencies-in-v213">Dependencies in v2.1.3<a class="headerlink" href="#dependencies-in-v213" title="Permanent link">¶</a></h3>
|
|
10695
11136
|
<ul>
|
|
10696
11137
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>MarkupSafe</code> dependency to 2.1.5.</li>
|
|
10697
11138
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mysqlclient</code> dependency to 2.2.3.</li>
|
|
10698
11139
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>python-slugify</code> dependency to 8.0.3.</li>
|
|
10699
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>pyuwsgi</code> dependency to 2.0.23.</li>
|
|
10700
11141
|
</ul>
|
|
10701
|
-
<h3 id="
|
|
11142
|
+
<h3 id="housekeeping-in-v213">Housekeeping in v2.1.3<a class="headerlink" href="#housekeeping-in-v213" title="Permanent link">¶</a></h3>
|
|
10702
11143
|
<ul>
|
|
10703
11144
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mkdocs-section-index</code> documentation dependency to 0.3.8.</li>
|
|
10704
11145
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>ruff</code> development dependency to 0.1.15.</li>
|
|
@@ -10710,30 +11151,30 @@
|
|
|
10710
11151
|
<li><a href="https://github.com/nautobot/nautobot/issues/5206">#5206</a> - Added q filter test for ExternalIntegration.</li>
|
|
10711
11152
|
</ul>
|
|
10712
11153
|
<h2 id="v212-2024-01-22">v2.1.2 (2024-01-22)<a class="headerlink" href="#v212-2024-01-22" title="Permanent link">¶</a></h2>
|
|
10713
|
-
<h3 id="
|
|
11154
|
+
<h3 id="security-in-v212">Security in v2.1.2<a class="headerlink" href="#security-in-v212" title="Permanent link">¶</a></h3>
|
|
10714
11155
|
<ul>
|
|
10715
11156
|
<li><a href="https://github.com/nautobot/nautobot/issues/5054">#5054</a> - Added validation of redirect URLs to the "Add a new IP Address" and "Assign an IP Address" views.</li>
|
|
10716
11157
|
<li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
|
|
10717
11158
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
|
|
10718
11159
|
</ul>
|
|
10719
|
-
<h3 id="
|
|
11160
|
+
<h3 id="added-in-v212">Added in v2.1.2<a class="headerlink" href="#added-in-v212" title="Permanent link">¶</a></h3>
|
|
10720
11161
|
<ul>
|
|
10721
11162
|
<li><a href="https://github.com/nautobot/nautobot/issues/3877">#3877</a> - Added global filtering to Job Result log table, enabling search across all pages.</li>
|
|
10722
11163
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Enhanced the <code>sanitize</code> function to also handle sanitization of lists and tuples of strings.</li>
|
|
10723
11164
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
|
|
10724
11165
|
</ul>
|
|
10725
|
-
<h3 id="
|
|
11166
|
+
<h3 id="changed-in-v212">Changed in v2.1.2<a class="headerlink" href="#changed-in-v212" title="Permanent link">¶</a></h3>
|
|
10726
11167
|
<ul>
|
|
10727
11168
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested user has permission to run the requested job.</li>
|
|
10728
11169
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested job is installed and enabled.</li>
|
|
10729
11170
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether a Celery worker is running when invoked without the <code>--local</code> flag.</li>
|
|
10730
11171
|
<li><a href="https://github.com/nautobot/nautobot/issues/5131">#5131</a> - Improved the performance of the <code>/api/dcim/locations/</code> REST API.</li>
|
|
10731
11172
|
</ul>
|
|
10732
|
-
<h3 id="
|
|
11173
|
+
<h3 id="removed-in-v212">Removed in v2.1.2<a class="headerlink" href="#removed-in-v212" title="Permanent link">¶</a></h3>
|
|
10733
11174
|
<ul>
|
|
10734
11175
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Removed <code>nautobot-server startplugin</code> management command.</li>
|
|
10735
11176
|
</ul>
|
|
10736
|
-
<h3 id="
|
|
11177
|
+
<h3 id="fixed-in-v212">Fixed in v2.1.2<a class="headerlink" href="#fixed-in-v212" title="Permanent link">¶</a></h3>
|
|
10737
11178
|
<ul>
|
|
10738
11179
|
<li><a href="https://github.com/nautobot/nautobot/issues/4075">#4075</a> - Fixed sorting of Device Bays list view by installed device status.</li>
|
|
10739
11180
|
<li><a href="https://github.com/nautobot/nautobot/issues/4444">#4444</a> - Fixed Sync Git Repository requires non-matching permissions for UI vs API.</li>
|
|
@@ -10759,17 +11200,17 @@
|
|
|
10759
11200
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Fixed incorrect JobResult data when using <code>nautobot-server runjob --local</code> or <code>JobResult.execute_job()</code>.</li>
|
|
10760
11201
|
<li><a href="https://github.com/nautobot/nautobot/issues/5111">#5111</a> - Fixed rack group and rack filtering by the location selected in the device bulk edit form.</li>
|
|
10761
11202
|
</ul>
|
|
10762
|
-
<h3 id="
|
|
11203
|
+
<h3 id="dependencies-in-v212">Dependencies in v2.1.2<a class="headerlink" href="#dependencies-in-v212" title="Permanent link">¶</a></h3>
|
|
10763
11204
|
<ul>
|
|
10764
11205
|
<li><a href="https://github.com/nautobot/nautobot/issues/5083">#5083</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
|
|
10765
11206
|
<li><a href="https://github.com/nautobot/nautobot/issues/5086">#5086</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
|
|
10766
11207
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
10767
11208
|
</ul>
|
|
10768
|
-
<h3 id="
|
|
11209
|
+
<h3 id="documentation-in-v212">Documentation in v2.1.2<a class="headerlink" href="#documentation-in-v212" title="Permanent link">¶</a></h3>
|
|
10769
11210
|
<ul>
|
|
10770
11211
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Added a link to the <code>cookiecutter-nautobot-app</code> project in the App developer documentation.</li>
|
|
10771
11212
|
</ul>
|
|
10772
|
-
<h3 id="
|
|
11213
|
+
<h3 id="housekeeping-in-v212">Housekeeping in v2.1.2<a class="headerlink" href="#housekeeping-in-v212" title="Permanent link">¶</a></h3>
|
|
10773
11214
|
<ul>
|
|
10774
11215
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Added automatic superuser creation environment variables to docker development environment.</li>
|
|
10775
11216
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Updated VS Code Dev Containers configuration and documentation.</li>
|
|
@@ -10779,20 +11220,20 @@
|
|
|
10779
11220
|
<li><a href="https://github.com/nautobot/nautobot/issues/5118">#5118</a> - Updated PR template to encourage inclusion of screenshots.</li>
|
|
10780
11221
|
</ul>
|
|
10781
11222
|
<h2 id="v211-2024-01-08">v2.1.1 (2024-01-08)<a class="headerlink" href="#v211-2024-01-08" title="Permanent link">¶</a></h2>
|
|
10782
|
-
<h3 id="
|
|
11223
|
+
<h3 id="added-in-v211">Added in v2.1.1<a class="headerlink" href="#added-in-v211" title="Permanent link">¶</a></h3>
|
|
10783
11224
|
<ul>
|
|
10784
11225
|
<li><a href="https://github.com/nautobot/nautobot/issues/5046">#5046</a> - Updated the LocationType clone process to pre-populate the original object's parent, nestable and content type fields.</li>
|
|
10785
11226
|
</ul>
|
|
10786
|
-
<h3 id="
|
|
11227
|
+
<h3 id="changed-in-v211">Changed in v2.1.1<a class="headerlink" href="#changed-in-v211" title="Permanent link">¶</a></h3>
|
|
10787
11228
|
<ul>
|
|
10788
11229
|
<li><a href="https://github.com/nautobot/nautobot/issues/4992">#4992</a> - Added change-logging (ObjectChange support) for the ObjectPermission model.</li>
|
|
10789
11230
|
</ul>
|
|
10790
|
-
<h3 id="
|
|
11231
|
+
<h3 id="removed-in-v211">Removed in v2.1.1<a class="headerlink" href="#removed-in-v211" title="Permanent link">¶</a></h3>
|
|
10791
11232
|
<ul>
|
|
10792
11233
|
<li><a href="https://github.com/nautobot/nautobot/issues/5033">#5033</a> - Removed alpha UI from the main code base for now (it still exists in a prototype branch) to reduce the burden of maintaining its dependencies in the meantime.</li>
|
|
10793
11234
|
<li><a href="https://github.com/nautobot/nautobot/issues/5035">#5035</a> - Removed nodesource apt repository from Dockerfile.</li>
|
|
10794
11235
|
</ul>
|
|
10795
|
-
<h3 id="
|
|
11236
|
+
<h3 id="fixed-in-v211">Fixed in v2.1.1<a class="headerlink" href="#fixed-in-v211" title="Permanent link">¶</a></h3>
|
|
10796
11237
|
<ul>
|
|
10797
11238
|
<li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed an error when attempting to "Save Changes" to an existing GraphQL saved query via the GraphiQL UI.</li>
|
|
10798
11239
|
<li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed incorrect positioning of the "Save Changes" button in the "Queries" menu in the GraphiQL UI.</li>
|
|
@@ -10801,14 +11242,14 @@
|
|
|
10801
11242
|
<li><a href="https://github.com/nautobot/nautobot/issues/5005">#5005</a> - Fixed missing schema field in config context create/edit forms.</li>
|
|
10802
11243
|
<li><a href="https://github.com/nautobot/nautobot/issues/5020">#5020</a> - Fixed display of secrets when editing a SecretsGroup.</li>
|
|
10803
11244
|
</ul>
|
|
10804
|
-
<h3 id="
|
|
11245
|
+
<h3 id="documentation-in-v211">Documentation in v2.1.1<a class="headerlink" href="#documentation-in-v211" title="Permanent link">¶</a></h3>
|
|
10805
11246
|
<ul>
|
|
10806
11247
|
<li><a href="https://github.com/nautobot/nautobot/issues/5019">#5019</a> - Updated the documentation on the usage of the <code>nautobot-server runjob</code> management command.</li>
|
|
10807
11248
|
<li><a href="https://github.com/nautobot/nautobot/issues/5023">#5023</a> - Fixed some typos in the 2.1.0 release notes.</li>
|
|
10808
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/5027">#5027</a> - Fixed typo in Device Redundancy Group docs.</li>
|
|
10809
11250
|
<li><a href="https://github.com/nautobot/nautobot/issues/5044">#5044</a> - Updated the documentation on <code>nautobot_database_ready</code> signal handlers with a warning.</li>
|
|
10810
11251
|
</ul>
|
|
10811
|
-
<h3 id="
|
|
11252
|
+
<h3 id="housekeeping-in-v211">Housekeeping in v2.1.1<a class="headerlink" href="#housekeeping-in-v211" title="Permanent link">¶</a></h3>
|
|
10812
11253
|
<ul>
|
|
10813
11254
|
<li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Updated <code>ruff</code> development dependency to <code>~0.1.10</code>.</li>
|
|
10814
11255
|
<li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Removed <code>black</code> and <code>flake8</code> as development dependencies as they're fully replaced by <code>ruff</code> now.</li>
|
|
@@ -10823,13 +11264,13 @@
|
|
|
10823
11264
|
<li><a href="https://github.com/nautobot/nautobot/issues/5055">#5055</a> - Removed <code>isort</code> as a development dependency as it's fully replaced by <code>ruff</code> now.</li>
|
|
10824
11265
|
</ul>
|
|
10825
11266
|
<h2 id="v210-2023-12-22">v2.1.0 (2023-12-22)<a class="headerlink" href="#v210-2023-12-22" title="Permanent link">¶</a></h2>
|
|
10826
|
-
<h3 id="
|
|
11267
|
+
<h3 id="security-in-v210">Security in v2.1.0<a class="headerlink" href="#security-in-v210" title="Permanent link">¶</a></h3>
|
|
10827
11268
|
<ul>
|
|
10828
11269
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
|
|
10829
11270
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
|
|
10830
11271
|
<li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10831
11272
|
</ul>
|
|
10832
|
-
<h3 id="
|
|
11273
|
+
<h3 id="added-in-v210">Added in v2.1.0<a class="headerlink" href="#added-in-v210" title="Permanent link">¶</a></h3>
|
|
10833
11274
|
<ul>
|
|
10834
11275
|
<li><a href="https://github.com/nautobot/nautobot/issues/2149">#2149</a> - Added customizable panels on the homepage.</li>
|
|
10835
11276
|
<li><a href="https://github.com/nautobot/nautobot/issues/4708">#4708</a> - Added VRF to interface bulk edit form.</li>
|
|
@@ -10843,7 +11284,7 @@
|
|
|
10843
11284
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Added <code>JOB_CREATE_FILE_MAX_SIZE</code> setting.</li>
|
|
10844
11285
|
<li><a href="https://github.com/nautobot/nautobot/issues/4989">#4989</a> - Added a link to the Advanced tab on detail views to easily open the object in the API browser.</li>
|
|
10845
11286
|
</ul>
|
|
10846
|
-
<h3 id="
|
|
11287
|
+
<h3 id="changed-in-v210">Changed in v2.1.0<a class="headerlink" href="#changed-in-v210" title="Permanent link">¶</a></h3>
|
|
10847
11288
|
<ul>
|
|
10848
11289
|
<li><a href="https://github.com/nautobot/nautobot/issues/4884">#4884</a> - Added Bootstrap tooltips for all HTML elements with a <code>title</code> attribute.</li>
|
|
10849
11290
|
<li><a href="https://github.com/nautobot/nautobot/issues/4888">#4888</a> - Moved username and user actions menu from the top of the nav bar to the bottom.</li>
|
|
@@ -10854,12 +11295,12 @@
|
|
|
10854
11295
|
<li><a href="https://github.com/nautobot/nautobot/issues/4996">#4996</a> - Changed the order and help text of fields in the External Integration create and edit forms.</li>
|
|
10855
11296
|
<li><a href="https://github.com/nautobot/nautobot/issues/5003">#5003</a> - Updated gifs to showcase new Nautobot 2.1 interface.</li>
|
|
10856
11297
|
</ul>
|
|
10857
|
-
<h3 id="
|
|
11298
|
+
<h3 id="removed-in-v210">Removed in v2.1.0<a class="headerlink" href="#removed-in-v210" title="Permanent link">¶</a></h3>
|
|
10858
11299
|
<ul>
|
|
10859
11300
|
<li><a href="https://github.com/nautobot/nautobot/issues/4757">#4757</a> - Dropped support for PostgreSQL versions before 12.0.</li>
|
|
10860
11301
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/<uuid>/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/<uuid>/run/</code> endpoint like any other job.</li>
|
|
10861
11302
|
</ul>
|
|
10862
|
-
<h3 id="
|
|
11303
|
+
<h3 id="fixed-in-v210">Fixed in v2.1.0<a class="headerlink" href="#fixed-in-v210" title="Permanent link">¶</a></h3>
|
|
10863
11304
|
<ul>
|
|
10864
11305
|
<li><a href="https://github.com/nautobot/nautobot/issues/4620">#4620</a> - Ensure UI build directory is created on init of nautobot-server.</li>
|
|
10865
11306
|
<li><a href="https://github.com/nautobot/nautobot/issues/4627">#4627</a> - Fixed JSON custom field being returned as a <code>repr()</code> string when using GraphQL.</li>
|
|
@@ -10872,14 +11313,14 @@
|
|
|
10872
11313
|
<li><a href="https://github.com/nautobot/nautobot/issues/4968">#4968</a> - Fixed some cases in which the <code>ipam.0025</code> data migration might throw an exception due to invalid data.</li>
|
|
10873
11314
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
10874
11315
|
</ul>
|
|
10875
|
-
<h3 id="
|
|
11316
|
+
<h3 id="documentation-in-v210">Documentation in v2.1.0<a class="headerlink" href="#documentation-in-v210" title="Permanent link">¶</a></h3>
|
|
10876
11317
|
<ul>
|
|
10877
11318
|
<li><a href="https://github.com/nautobot/nautobot/issues/4735">#4735</a> - Documented Django Admin Log Entries in v2.1 Release Overview.</li>
|
|
10878
11319
|
<li><a href="https://github.com/nautobot/nautobot/issues/4736">#4736</a> - Documented <code>isnull</code> filter expression in v2.1 Release Overview.</li>
|
|
10879
11320
|
<li><a href="https://github.com/nautobot/nautobot/issues/4766">#4766</a> - Updated documentation for registering tab views.</li>
|
|
10880
11321
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Fixed up docstrings for a number of Job-related classes and methods.</li>
|
|
10881
11322
|
</ul>
|
|
10882
|
-
<h3 id="
|
|
11323
|
+
<h3 id="housekeeping-in-v210">Housekeeping in v2.1.0<a class="headerlink" href="#housekeeping-in-v210" title="Permanent link">¶</a></h3>
|
|
10883
11324
|
<ul>
|
|
10884
11325
|
<li><a href="https://github.com/nautobot/nautobot/issues/4647">#4647</a> - Added DeviceFactory.</li>
|
|
10885
11326
|
<li><a href="https://github.com/nautobot/nautobot/issues/4896">#4896</a> - Added <code>/theme-preview/</code> view (only when <code>settings.DEBUG</code> is enabled) to preview various UI elements and layouts.</li>
|
|
@@ -10887,7 +11328,7 @@
|
|
|
10887
11328
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
10888
11329
|
</ul>
|
|
10889
11330
|
<h2 id="v210-beta1-2023-11-30">v2.1.0-beta.1 (2023-11-30)<a class="headerlink" href="#v210-beta1-2023-11-30" title="Permanent link">¶</a></h2>
|
|
10890
|
-
<h3 id="
|
|
11331
|
+
<h3 id="added-in-v210-beta1">Added in v2.1.0-beta.1<a class="headerlink" href="#added-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
10891
11332
|
<ul>
|
|
10892
11333
|
<li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Added the ability to automatically apply <code>isnull</code> filters when model field is nullable.</li>
|
|
10893
11334
|
<li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Enhanced <code>status</code> filters to support filtering by ID (UUID) as an alternative to filtering by <code>name</code>.</li>
|
|
@@ -10907,7 +11348,7 @@
|
|
|
10907
11348
|
<li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added listing of related <code>files</code> to the <code>/api/extras/job-results/</code> REST API.</li>
|
|
10908
11349
|
<li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added read-only REST API for the FileProxy model (files generated by a Job run), including a <code>/download/</code> endpoint for downloading the file content.</li>
|
|
10909
11350
|
</ul>
|
|
10910
|
-
<h3 id="
|
|
11351
|
+
<h3 id="changed-in-v210-beta1">Changed in v2.1.0-beta.1<a class="headerlink" href="#changed-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
10911
11352
|
<ul>
|
|
10912
11353
|
<li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized nautobot UI bootstrap theme with LESS variables.</li>
|
|
10913
11354
|
<li><a href="https://github.com/nautobot/nautobot/issues/4745">#4745</a> - Changed object export (CSV, YAML, export-template) to run as a background task, avoiding HTTP timeouts when exporting thousands of objects in a single operation.</li>
|
|
@@ -10916,12 +11357,12 @@
|
|
|
10916
11357
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Lightened table row background color in dark mode.</li>
|
|
10917
11358
|
<li><a href="https://github.com/nautobot/nautobot/issues/4808">#4808</a> - Make NavItem link text margin-right slightly larger.</li>
|
|
10918
11359
|
</ul>
|
|
10919
|
-
<h3 id="
|
|
11360
|
+
<h3 id="removed-in-v210-beta1">Removed in v2.1.0-beta.1<a class="headerlink" href="#removed-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
10920
11361
|
<ul>
|
|
10921
11362
|
<li><a href="https://github.com/nautobot/nautobot/issues/4765">#4765</a> - Removed "Import" buttons from navbar dropdown menus.</li>
|
|
10922
11363
|
<li><a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a> - Removed support for <code>HIDE_RESTRICTED_UI</code>. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</li>
|
|
10923
11364
|
</ul>
|
|
10924
|
-
<h3 id="
|
|
11365
|
+
<h3 id="fixed-in-v210-beta1">Fixed in v2.1.0-beta.1<a class="headerlink" href="#fixed-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
10925
11366
|
<ul>
|
|
10926
11367
|
<li><a href="https://github.com/nautobot/nautobot/issues/4646">#4646</a> - Fixed a bug in <code>ObjectPermission</code> where <code>users.user</code> permissions could not be created.</li>
|
|
10927
11368
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Fixed default button background color in dark mode.</li>
|
|
@@ -10929,7 +11370,7 @@
|
|
|
10929
11370
|
<li><a href="https://github.com/nautobot/nautobot/issues/4862">#4862</a> - Fixes issues with uninstalled apps & lingering contenttypes referenced in changelog.</li>
|
|
10930
11371
|
<li><a href="https://github.com/nautobot/nautobot/issues/4882">#4882</a> - Fixed a regression in the rendering of the Jobs table view.</li>
|
|
10931
11372
|
</ul>
|
|
10932
|
-
<h3 id="
|
|
11373
|
+
<h3 id="housekeeping-in-v210-beta1">Housekeeping in v2.1.0-beta.1<a class="headerlink" href="#housekeeping-in-v210-beta1" title="Permanent link">¶</a></h3>
|
|
10933
11374
|
<ul>
|
|
10934
11375
|
<li><a href="https://github.com/nautobot/nautobot/issues/3352">#3352</a> - Added a shared <code>media_root</code> volume to developer Docker Compose environment.</li>
|
|
10935
11376
|
<li><a href="https://github.com/nautobot/nautobot/issues/4781">#4781</a> - Added Gherkin writeups for "Locations" and "Prefixes" feature workflows.</li>
|
|
@@ -11077,10 +11518,10 @@
|
|
|
11077
11518
|
</div>
|
|
11078
11519
|
|
|
11079
11520
|
|
|
11080
|
-
<script id="__config" type="application/json">{"base": "..", "features": ["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>
|
|
11521
|
+
<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>
|
|
11081
11522
|
|
|
11082
11523
|
|
|
11083
|
-
<script src="../assets/javascripts/bundle.
|
|
11524
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
11084
11525
|
|
|
11085
11526
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11086
11527
|
|