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
|
|
|
@@ -8277,9 +8721,9 @@
|
|
|
8277
8721
|
</li>
|
|
8278
8722
|
|
|
8279
8723
|
<li class="md-nav__item">
|
|
8280
|
-
<a href="#generic-role-model-
|
|
8724
|
+
<a href="#migration-to-generic-role-model-1063" class="md-nav__link">
|
|
8281
8725
|
<span class="md-ellipsis">
|
|
8282
|
-
Generic Role Model (#1063)
|
|
8726
|
+
Migration to Generic Role Model (#1063)
|
|
8283
8727
|
</span>
|
|
8284
8728
|
</a>
|
|
8285
8729
|
|
|
@@ -8438,72 +8882,72 @@
|
|
|
8438
8882
|
<ul class="md-nav__list">
|
|
8439
8883
|
|
|
8440
8884
|
<li class="md-nav__item">
|
|
8441
|
-
<a href="#security" class="md-nav__link">
|
|
8885
|
+
<a href="#security-in-v206" class="md-nav__link">
|
|
8442
8886
|
<span class="md-ellipsis">
|
|
8443
|
-
Security
|
|
8887
|
+
Security in v2.0.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="#added-in-v206" class="md-nav__link">
|
|
8451
8895
|
<span class="md-ellipsis">
|
|
8452
|
-
Added
|
|
8896
|
+
Added in v2.0.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="#changed-in-v206" class="md-nav__link">
|
|
8460
8904
|
<span class="md-ellipsis">
|
|
8461
|
-
Changed
|
|
8905
|
+
Changed in v2.0.6
|
|
8462
8906
|
</span>
|
|
8463
8907
|
</a>
|
|
8464
8908
|
|
|
8465
8909
|
</li>
|
|
8466
8910
|
|
|
8467
8911
|
<li class="md-nav__item">
|
|
8468
|
-
<a href="#
|
|
8912
|
+
<a href="#removed-in-v206" class="md-nav__link">
|
|
8469
8913
|
<span class="md-ellipsis">
|
|
8470
|
-
Removed
|
|
8914
|
+
Removed in v2.0.6
|
|
8471
8915
|
</span>
|
|
8472
8916
|
</a>
|
|
8473
8917
|
|
|
8474
8918
|
</li>
|
|
8475
8919
|
|
|
8476
8920
|
<li class="md-nav__item">
|
|
8477
|
-
<a href="#fixed" class="md-nav__link">
|
|
8921
|
+
<a href="#fixed-in-v206" class="md-nav__link">
|
|
8478
8922
|
<span class="md-ellipsis">
|
|
8479
|
-
Fixed
|
|
8923
|
+
Fixed in v2.0.6
|
|
8480
8924
|
</span>
|
|
8481
8925
|
</a>
|
|
8482
8926
|
|
|
8483
8927
|
</li>
|
|
8484
8928
|
|
|
8485
8929
|
<li class="md-nav__item">
|
|
8486
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8930
|
+
<a href="#dependencies-in-v206" class="md-nav__link">
|
|
8487
8931
|
<span class="md-ellipsis">
|
|
8488
|
-
Dependencies
|
|
8932
|
+
Dependencies in v2.0.6
|
|
8489
8933
|
</span>
|
|
8490
8934
|
</a>
|
|
8491
8935
|
|
|
8492
8936
|
</li>
|
|
8493
8937
|
|
|
8494
8938
|
<li class="md-nav__item">
|
|
8495
|
-
<a href="#documentation" class="md-nav__link">
|
|
8939
|
+
<a href="#documentation-in-v206" class="md-nav__link">
|
|
8496
8940
|
<span class="md-ellipsis">
|
|
8497
|
-
Documentation
|
|
8941
|
+
Documentation in v2.0.6
|
|
8498
8942
|
</span>
|
|
8499
8943
|
</a>
|
|
8500
8944
|
|
|
8501
8945
|
</li>
|
|
8502
8946
|
|
|
8503
8947
|
<li class="md-nav__item">
|
|
8504
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8948
|
+
<a href="#housekeeping-in-v206" class="md-nav__link">
|
|
8505
8949
|
<span class="md-ellipsis">
|
|
8506
|
-
Housekeeping
|
|
8950
|
+
Housekeeping in v2.0.6
|
|
8507
8951
|
</span>
|
|
8508
8952
|
</a>
|
|
8509
8953
|
|
|
@@ -8525,54 +8969,54 @@
|
|
|
8525
8969
|
<ul class="md-nav__list">
|
|
8526
8970
|
|
|
8527
8971
|
<li class="md-nav__item">
|
|
8528
|
-
<a href="#
|
|
8972
|
+
<a href="#security-in-v205" class="md-nav__link">
|
|
8529
8973
|
<span class="md-ellipsis">
|
|
8530
|
-
Security
|
|
8974
|
+
Security in v2.0.5
|
|
8531
8975
|
</span>
|
|
8532
8976
|
</a>
|
|
8533
8977
|
|
|
8534
8978
|
</li>
|
|
8535
8979
|
|
|
8536
8980
|
<li class="md-nav__item">
|
|
8537
|
-
<a href="#
|
|
8981
|
+
<a href="#changed-in-v205" class="md-nav__link">
|
|
8538
8982
|
<span class="md-ellipsis">
|
|
8539
|
-
Changed
|
|
8983
|
+
Changed in v2.0.5
|
|
8540
8984
|
</span>
|
|
8541
8985
|
</a>
|
|
8542
8986
|
|
|
8543
8987
|
</li>
|
|
8544
8988
|
|
|
8545
8989
|
<li class="md-nav__item">
|
|
8546
|
-
<a href="#
|
|
8990
|
+
<a href="#fixed-in-v205" class="md-nav__link">
|
|
8547
8991
|
<span class="md-ellipsis">
|
|
8548
|
-
Fixed
|
|
8992
|
+
Fixed in v2.0.5
|
|
8549
8993
|
</span>
|
|
8550
8994
|
</a>
|
|
8551
8995
|
|
|
8552
8996
|
</li>
|
|
8553
8997
|
|
|
8554
8998
|
<li class="md-nav__item">
|
|
8555
|
-
<a href="#
|
|
8999
|
+
<a href="#dependencies-in-v205" class="md-nav__link">
|
|
8556
9000
|
<span class="md-ellipsis">
|
|
8557
|
-
Dependencies
|
|
9001
|
+
Dependencies in v2.0.5
|
|
8558
9002
|
</span>
|
|
8559
9003
|
</a>
|
|
8560
9004
|
|
|
8561
9005
|
</li>
|
|
8562
9006
|
|
|
8563
9007
|
<li class="md-nav__item">
|
|
8564
|
-
<a href="#
|
|
9008
|
+
<a href="#documentation-in-v205" class="md-nav__link">
|
|
8565
9009
|
<span class="md-ellipsis">
|
|
8566
|
-
Documentation
|
|
9010
|
+
Documentation in v2.0.5
|
|
8567
9011
|
</span>
|
|
8568
9012
|
</a>
|
|
8569
9013
|
|
|
8570
9014
|
</li>
|
|
8571
9015
|
|
|
8572
9016
|
<li class="md-nav__item">
|
|
8573
|
-
<a href="#
|
|
9017
|
+
<a href="#housekeeping-in-v205" class="md-nav__link">
|
|
8574
9018
|
<span class="md-ellipsis">
|
|
8575
|
-
Housekeeping
|
|
9019
|
+
Housekeeping in v2.0.5
|
|
8576
9020
|
</span>
|
|
8577
9021
|
</a>
|
|
8578
9022
|
|
|
@@ -8594,54 +9038,54 @@
|
|
|
8594
9038
|
<ul class="md-nav__list">
|
|
8595
9039
|
|
|
8596
9040
|
<li class="md-nav__item">
|
|
8597
|
-
<a href="#
|
|
9041
|
+
<a href="#security-in-v204" class="md-nav__link">
|
|
8598
9042
|
<span class="md-ellipsis">
|
|
8599
|
-
Security
|
|
9043
|
+
Security in v2.0.4
|
|
8600
9044
|
</span>
|
|
8601
9045
|
</a>
|
|
8602
9046
|
|
|
8603
9047
|
</li>
|
|
8604
9048
|
|
|
8605
9049
|
<li class="md-nav__item">
|
|
8606
|
-
<a href="#
|
|
9050
|
+
<a href="#added-in-v204" class="md-nav__link">
|
|
8607
9051
|
<span class="md-ellipsis">
|
|
8608
|
-
Added
|
|
9052
|
+
Added in v2.0.4
|
|
8609
9053
|
</span>
|
|
8610
9054
|
</a>
|
|
8611
9055
|
|
|
8612
9056
|
</li>
|
|
8613
9057
|
|
|
8614
9058
|
<li class="md-nav__item">
|
|
8615
|
-
<a href="#
|
|
9059
|
+
<a href="#changed-in-v204" class="md-nav__link">
|
|
8616
9060
|
<span class="md-ellipsis">
|
|
8617
|
-
Changed
|
|
9061
|
+
Changed in v2.0.4
|
|
8618
9062
|
</span>
|
|
8619
9063
|
</a>
|
|
8620
9064
|
|
|
8621
9065
|
</li>
|
|
8622
9066
|
|
|
8623
9067
|
<li class="md-nav__item">
|
|
8624
|
-
<a href="#
|
|
9068
|
+
<a href="#fixed-in-v204" class="md-nav__link">
|
|
8625
9069
|
<span class="md-ellipsis">
|
|
8626
|
-
Fixed
|
|
9070
|
+
Fixed in v2.0.4
|
|
8627
9071
|
</span>
|
|
8628
9072
|
</a>
|
|
8629
9073
|
|
|
8630
9074
|
</li>
|
|
8631
9075
|
|
|
8632
9076
|
<li class="md-nav__item">
|
|
8633
|
-
<a href="#
|
|
9077
|
+
<a href="#documentation-in-v204" class="md-nav__link">
|
|
8634
9078
|
<span class="md-ellipsis">
|
|
8635
|
-
Documentation
|
|
9079
|
+
Documentation in v2.0.4
|
|
8636
9080
|
</span>
|
|
8637
9081
|
</a>
|
|
8638
9082
|
|
|
8639
9083
|
</li>
|
|
8640
9084
|
|
|
8641
9085
|
<li class="md-nav__item">
|
|
8642
|
-
<a href="#
|
|
9086
|
+
<a href="#housekeeping-in-v204" class="md-nav__link">
|
|
8643
9087
|
<span class="md-ellipsis">
|
|
8644
|
-
Housekeeping
|
|
9088
|
+
Housekeeping in v2.0.4
|
|
8645
9089
|
</span>
|
|
8646
9090
|
</a>
|
|
8647
9091
|
|
|
@@ -8663,54 +9107,54 @@
|
|
|
8663
9107
|
<ul class="md-nav__list">
|
|
8664
9108
|
|
|
8665
9109
|
<li class="md-nav__item">
|
|
8666
|
-
<a href="#
|
|
9110
|
+
<a href="#security-in-v203" class="md-nav__link">
|
|
8667
9111
|
<span class="md-ellipsis">
|
|
8668
|
-
Security
|
|
9112
|
+
Security in v2.0.3
|
|
8669
9113
|
</span>
|
|
8670
9114
|
</a>
|
|
8671
9115
|
|
|
8672
9116
|
</li>
|
|
8673
9117
|
|
|
8674
9118
|
<li class="md-nav__item">
|
|
8675
|
-
<a href="#
|
|
9119
|
+
<a href="#added-in-v203" class="md-nav__link">
|
|
8676
9120
|
<span class="md-ellipsis">
|
|
8677
|
-
Added
|
|
9121
|
+
Added in v2.0.3
|
|
8678
9122
|
</span>
|
|
8679
9123
|
</a>
|
|
8680
9124
|
|
|
8681
9125
|
</li>
|
|
8682
9126
|
|
|
8683
9127
|
<li class="md-nav__item">
|
|
8684
|
-
<a href="#
|
|
9128
|
+
<a href="#changed-in-v203" class="md-nav__link">
|
|
8685
9129
|
<span class="md-ellipsis">
|
|
8686
|
-
Changed
|
|
9130
|
+
Changed in v2.0.3
|
|
8687
9131
|
</span>
|
|
8688
9132
|
</a>
|
|
8689
9133
|
|
|
8690
9134
|
</li>
|
|
8691
9135
|
|
|
8692
9136
|
<li class="md-nav__item">
|
|
8693
|
-
<a href="#
|
|
9137
|
+
<a href="#fixed-in-v203" class="md-nav__link">
|
|
8694
9138
|
<span class="md-ellipsis">
|
|
8695
|
-
Fixed
|
|
9139
|
+
Fixed in v2.0.3
|
|
8696
9140
|
</span>
|
|
8697
9141
|
</a>
|
|
8698
9142
|
|
|
8699
9143
|
</li>
|
|
8700
9144
|
|
|
8701
9145
|
<li class="md-nav__item">
|
|
8702
|
-
<a href="#
|
|
9146
|
+
<a href="#documentation-in-v203" class="md-nav__link">
|
|
8703
9147
|
<span class="md-ellipsis">
|
|
8704
|
-
Documentation
|
|
9148
|
+
Documentation in v2.0.3
|
|
8705
9149
|
</span>
|
|
8706
9150
|
</a>
|
|
8707
9151
|
|
|
8708
9152
|
</li>
|
|
8709
9153
|
|
|
8710
9154
|
<li class="md-nav__item">
|
|
8711
|
-
<a href="#
|
|
9155
|
+
<a href="#housekeeping-in-v203" class="md-nav__link">
|
|
8712
9156
|
<span class="md-ellipsis">
|
|
8713
|
-
Housekeeping
|
|
9157
|
+
Housekeeping in v2.0.3
|
|
8714
9158
|
</span>
|
|
8715
9159
|
</a>
|
|
8716
9160
|
|
|
@@ -8732,54 +9176,54 @@
|
|
|
8732
9176
|
<ul class="md-nav__list">
|
|
8733
9177
|
|
|
8734
9178
|
<li class="md-nav__item">
|
|
8735
|
-
<a href="#
|
|
9179
|
+
<a href="#security-in-v202" class="md-nav__link">
|
|
8736
9180
|
<span class="md-ellipsis">
|
|
8737
|
-
Security
|
|
9181
|
+
Security in v2.0.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="#added-in-v202" class="md-nav__link">
|
|
8745
9189
|
<span class="md-ellipsis">
|
|
8746
|
-
Added
|
|
9190
|
+
Added in v2.0.2
|
|
8747
9191
|
</span>
|
|
8748
9192
|
</a>
|
|
8749
9193
|
|
|
8750
9194
|
</li>
|
|
8751
9195
|
|
|
8752
9196
|
<li class="md-nav__item">
|
|
8753
|
-
<a href="#
|
|
9197
|
+
<a href="#changed-in-v202" class="md-nav__link">
|
|
8754
9198
|
<span class="md-ellipsis">
|
|
8755
|
-
Changed
|
|
9199
|
+
Changed in v2.0.2
|
|
8756
9200
|
</span>
|
|
8757
9201
|
</a>
|
|
8758
9202
|
|
|
8759
9203
|
</li>
|
|
8760
9204
|
|
|
8761
9205
|
<li class="md-nav__item">
|
|
8762
|
-
<a href="#
|
|
9206
|
+
<a href="#fixed-in-v202" class="md-nav__link">
|
|
8763
9207
|
<span class="md-ellipsis">
|
|
8764
|
-
Fixed
|
|
9208
|
+
Fixed in v2.0.2
|
|
8765
9209
|
</span>
|
|
8766
9210
|
</a>
|
|
8767
9211
|
|
|
8768
9212
|
</li>
|
|
8769
9213
|
|
|
8770
9214
|
<li class="md-nav__item">
|
|
8771
|
-
<a href="#
|
|
9215
|
+
<a href="#documentation-in-v202" class="md-nav__link">
|
|
8772
9216
|
<span class="md-ellipsis">
|
|
8773
|
-
Documentation
|
|
9217
|
+
Documentation in v2.0.2
|
|
8774
9218
|
</span>
|
|
8775
9219
|
</a>
|
|
8776
9220
|
|
|
8777
9221
|
</li>
|
|
8778
9222
|
|
|
8779
9223
|
<li class="md-nav__item">
|
|
8780
|
-
<a href="#
|
|
9224
|
+
<a href="#housekeeping-in-v202" class="md-nav__link">
|
|
8781
9225
|
<span class="md-ellipsis">
|
|
8782
|
-
Housekeeping
|
|
9226
|
+
Housekeeping in v2.0.2
|
|
8783
9227
|
</span>
|
|
8784
9228
|
</a>
|
|
8785
9229
|
|
|
@@ -8801,18 +9245,18 @@
|
|
|
8801
9245
|
<ul class="md-nav__list">
|
|
8802
9246
|
|
|
8803
9247
|
<li class="md-nav__item">
|
|
8804
|
-
<a href="#
|
|
9248
|
+
<a href="#fixed-in-v201" class="md-nav__link">
|
|
8805
9249
|
<span class="md-ellipsis">
|
|
8806
|
-
Fixed
|
|
9250
|
+
Fixed in v2.0.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-v201" class="md-nav__link">
|
|
8814
9258
|
<span class="md-ellipsis">
|
|
8815
|
-
Housekeeping
|
|
9259
|
+
Housekeeping in v2.0.1
|
|
8816
9260
|
</span>
|
|
8817
9261
|
</a>
|
|
8818
9262
|
|
|
@@ -8834,27 +9278,27 @@
|
|
|
8834
9278
|
<ul class="md-nav__list">
|
|
8835
9279
|
|
|
8836
9280
|
<li class="md-nav__item">
|
|
8837
|
-
<a href="#
|
|
9281
|
+
<a href="#added-in-v200" class="md-nav__link">
|
|
8838
9282
|
<span class="md-ellipsis">
|
|
8839
|
-
Added
|
|
9283
|
+
Added in v2.0.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="#fixed-in-v200" class="md-nav__link">
|
|
8847
9291
|
<span class="md-ellipsis">
|
|
8848
|
-
Fixed
|
|
9292
|
+
Fixed in v2.0.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="#documentation-in-v200" class="md-nav__link">
|
|
8856
9300
|
<span class="md-ellipsis">
|
|
8857
|
-
Documentation
|
|
9301
|
+
Documentation in v2.0.0
|
|
8858
9302
|
</span>
|
|
8859
9303
|
</a>
|
|
8860
9304
|
|
|
@@ -8876,72 +9320,72 @@
|
|
|
8876
9320
|
<ul class="md-nav__list">
|
|
8877
9321
|
|
|
8878
9322
|
<li class="md-nav__item">
|
|
8879
|
-
<a href="#
|
|
9323
|
+
<a href="#security-in-v200-rc4" class="md-nav__link">
|
|
8880
9324
|
<span class="md-ellipsis">
|
|
8881
|
-
Security
|
|
9325
|
+
Security in v2.0.0-rc.4
|
|
8882
9326
|
</span>
|
|
8883
9327
|
</a>
|
|
8884
9328
|
|
|
8885
9329
|
</li>
|
|
8886
9330
|
|
|
8887
9331
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#
|
|
9332
|
+
<a href="#added-in-v200-rc4" class="md-nav__link">
|
|
8889
9333
|
<span class="md-ellipsis">
|
|
8890
|
-
Added
|
|
9334
|
+
Added in v2.0.0-rc.4
|
|
8891
9335
|
</span>
|
|
8892
9336
|
</a>
|
|
8893
9337
|
|
|
8894
9338
|
</li>
|
|
8895
9339
|
|
|
8896
9340
|
<li class="md-nav__item">
|
|
8897
|
-
<a href="#
|
|
9341
|
+
<a href="#changed-in-v200-rc4" class="md-nav__link">
|
|
8898
9342
|
<span class="md-ellipsis">
|
|
8899
|
-
Changed
|
|
9343
|
+
Changed in v2.0.0-rc.4
|
|
8900
9344
|
</span>
|
|
8901
9345
|
</a>
|
|
8902
9346
|
|
|
8903
9347
|
</li>
|
|
8904
9348
|
|
|
8905
9349
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#
|
|
9350
|
+
<a href="#removed-in-v200-rc4" class="md-nav__link">
|
|
8907
9351
|
<span class="md-ellipsis">
|
|
8908
|
-
Removed
|
|
9352
|
+
Removed in v2.0.0-rc.4
|
|
8909
9353
|
</span>
|
|
8910
9354
|
</a>
|
|
8911
9355
|
|
|
8912
9356
|
</li>
|
|
8913
9357
|
|
|
8914
9358
|
<li class="md-nav__item">
|
|
8915
|
-
<a href="#
|
|
9359
|
+
<a href="#fixed-in-v200-rc4" class="md-nav__link">
|
|
8916
9360
|
<span class="md-ellipsis">
|
|
8917
|
-
Fixed
|
|
9361
|
+
Fixed in v2.0.0-rc.4
|
|
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="#dependencies-in-v200-rc4" class="md-nav__link">
|
|
8925
9369
|
<span class="md-ellipsis">
|
|
8926
|
-
Dependencies
|
|
9370
|
+
Dependencies in v2.0.0-rc.4
|
|
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="#documentation-in-v200-rc4" class="md-nav__link">
|
|
8934
9378
|
<span class="md-ellipsis">
|
|
8935
|
-
Documentation
|
|
9379
|
+
Documentation in v2.0.0-rc.4
|
|
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="#housekeeping-in-v200-rc4" class="md-nav__link">
|
|
8943
9387
|
<span class="md-ellipsis">
|
|
8944
|
-
Housekeeping
|
|
9388
|
+
Housekeeping in v2.0.0-rc.4
|
|
8945
9389
|
</span>
|
|
8946
9390
|
</a>
|
|
8947
9391
|
|
|
@@ -8963,63 +9407,63 @@
|
|
|
8963
9407
|
<ul class="md-nav__list">
|
|
8964
9408
|
|
|
8965
9409
|
<li class="md-nav__item">
|
|
8966
|
-
<a href="#
|
|
9410
|
+
<a href="#security-in-v200-rc3" class="md-nav__link">
|
|
8967
9411
|
<span class="md-ellipsis">
|
|
8968
|
-
Security
|
|
9412
|
+
Security in v2.0.0-rc.3
|
|
8969
9413
|
</span>
|
|
8970
9414
|
</a>
|
|
8971
9415
|
|
|
8972
9416
|
</li>
|
|
8973
9417
|
|
|
8974
9418
|
<li class="md-nav__item">
|
|
8975
|
-
<a href="#
|
|
9419
|
+
<a href="#added-in-v200-rc3" class="md-nav__link">
|
|
8976
9420
|
<span class="md-ellipsis">
|
|
8977
|
-
Added
|
|
9421
|
+
Added in v2.0.0-rc.3
|
|
8978
9422
|
</span>
|
|
8979
9423
|
</a>
|
|
8980
9424
|
|
|
8981
9425
|
</li>
|
|
8982
9426
|
|
|
8983
9427
|
<li class="md-nav__item">
|
|
8984
|
-
<a href="#
|
|
9428
|
+
<a href="#changed-in-v200-rc3" class="md-nav__link">
|
|
8985
9429
|
<span class="md-ellipsis">
|
|
8986
|
-
Changed
|
|
9430
|
+
Changed in v2.0.0-rc.3
|
|
8987
9431
|
</span>
|
|
8988
9432
|
</a>
|
|
8989
9433
|
|
|
8990
9434
|
</li>
|
|
8991
9435
|
|
|
8992
9436
|
<li class="md-nav__item">
|
|
8993
|
-
<a href="#
|
|
9437
|
+
<a href="#removed-in-v200-rc3" class="md-nav__link">
|
|
8994
9438
|
<span class="md-ellipsis">
|
|
8995
|
-
Removed
|
|
9439
|
+
Removed in v2.0.0-rc.3
|
|
8996
9440
|
</span>
|
|
8997
9441
|
</a>
|
|
8998
9442
|
|
|
8999
9443
|
</li>
|
|
9000
9444
|
|
|
9001
9445
|
<li class="md-nav__item">
|
|
9002
|
-
<a href="#
|
|
9446
|
+
<a href="#fixed-in-v200-rc3" class="md-nav__link">
|
|
9003
9447
|
<span class="md-ellipsis">
|
|
9004
|
-
Fixed
|
|
9448
|
+
Fixed in v2.0.0-rc.3
|
|
9005
9449
|
</span>
|
|
9006
9450
|
</a>
|
|
9007
9451
|
|
|
9008
9452
|
</li>
|
|
9009
9453
|
|
|
9010
9454
|
<li class="md-nav__item">
|
|
9011
|
-
<a href="#
|
|
9455
|
+
<a href="#documentation-in-v200-rc3" class="md-nav__link">
|
|
9012
9456
|
<span class="md-ellipsis">
|
|
9013
|
-
Documentation
|
|
9457
|
+
Documentation in v2.0.0-rc.3
|
|
9014
9458
|
</span>
|
|
9015
9459
|
</a>
|
|
9016
9460
|
|
|
9017
9461
|
</li>
|
|
9018
9462
|
|
|
9019
9463
|
<li class="md-nav__item">
|
|
9020
|
-
<a href="#
|
|
9464
|
+
<a href="#housekeeping-in-v200-rc3" class="md-nav__link">
|
|
9021
9465
|
<span class="md-ellipsis">
|
|
9022
|
-
Housekeeping
|
|
9466
|
+
Housekeeping in v2.0.0-rc.3
|
|
9023
9467
|
</span>
|
|
9024
9468
|
</a>
|
|
9025
9469
|
|
|
@@ -9041,36 +9485,36 @@
|
|
|
9041
9485
|
<ul class="md-nav__list">
|
|
9042
9486
|
|
|
9043
9487
|
<li class="md-nav__item">
|
|
9044
|
-
<a href="#
|
|
9488
|
+
<a href="#added-in-v200rc-2" class="md-nav__link">
|
|
9045
9489
|
<span class="md-ellipsis">
|
|
9046
|
-
Added
|
|
9490
|
+
Added in v2.0.0.rc-2
|
|
9047
9491
|
</span>
|
|
9048
9492
|
</a>
|
|
9049
9493
|
|
|
9050
9494
|
</li>
|
|
9051
9495
|
|
|
9052
9496
|
<li class="md-nav__item">
|
|
9053
|
-
<a href="#
|
|
9497
|
+
<a href="#changed-in-v200rc-2" class="md-nav__link">
|
|
9054
9498
|
<span class="md-ellipsis">
|
|
9055
|
-
Changed
|
|
9499
|
+
Changed in v2.0.0.rc-2
|
|
9056
9500
|
</span>
|
|
9057
9501
|
</a>
|
|
9058
9502
|
|
|
9059
9503
|
</li>
|
|
9060
9504
|
|
|
9061
9505
|
<li class="md-nav__item">
|
|
9062
|
-
<a href="#
|
|
9506
|
+
<a href="#removed-in-v200rc-2" class="md-nav__link">
|
|
9063
9507
|
<span class="md-ellipsis">
|
|
9064
|
-
Removed
|
|
9508
|
+
Removed in v2.0.0.rc-2
|
|
9065
9509
|
</span>
|
|
9066
9510
|
</a>
|
|
9067
9511
|
|
|
9068
9512
|
</li>
|
|
9069
9513
|
|
|
9070
9514
|
<li class="md-nav__item">
|
|
9071
|
-
<a href="#
|
|
9515
|
+
<a href="#fixed-in-v200rc-2" class="md-nav__link">
|
|
9072
9516
|
<span class="md-ellipsis">
|
|
9073
|
-
Fixed
|
|
9517
|
+
Fixed in v2.0.0.rc-2
|
|
9074
9518
|
</span>
|
|
9075
9519
|
</a>
|
|
9076
9520
|
|
|
@@ -9092,63 +9536,63 @@
|
|
|
9092
9536
|
<ul class="md-nav__list">
|
|
9093
9537
|
|
|
9094
9538
|
<li class="md-nav__item">
|
|
9095
|
-
<a href="#
|
|
9539
|
+
<a href="#added-in-v200rc1" class="md-nav__link">
|
|
9096
9540
|
<span class="md-ellipsis">
|
|
9097
|
-
Added
|
|
9541
|
+
Added in v2.0.0rc1
|
|
9098
9542
|
</span>
|
|
9099
9543
|
</a>
|
|
9100
9544
|
|
|
9101
9545
|
</li>
|
|
9102
9546
|
|
|
9103
9547
|
<li class="md-nav__item">
|
|
9104
|
-
<a href="#
|
|
9548
|
+
<a href="#changed-in-v200rc1" class="md-nav__link">
|
|
9105
9549
|
<span class="md-ellipsis">
|
|
9106
|
-
Changed
|
|
9550
|
+
Changed in v2.0.0rc1
|
|
9107
9551
|
</span>
|
|
9108
9552
|
</a>
|
|
9109
9553
|
|
|
9110
9554
|
</li>
|
|
9111
9555
|
|
|
9112
9556
|
<li class="md-nav__item">
|
|
9113
|
-
<a href="#
|
|
9557
|
+
<a href="#removed-in-v200rc1" class="md-nav__link">
|
|
9114
9558
|
<span class="md-ellipsis">
|
|
9115
|
-
Removed
|
|
9559
|
+
Removed in v2.0.0rc1
|
|
9116
9560
|
</span>
|
|
9117
9561
|
</a>
|
|
9118
9562
|
|
|
9119
9563
|
</li>
|
|
9120
9564
|
|
|
9121
9565
|
<li class="md-nav__item">
|
|
9122
|
-
<a href="#
|
|
9566
|
+
<a href="#fixed-in-v200rc1" class="md-nav__link">
|
|
9123
9567
|
<span class="md-ellipsis">
|
|
9124
|
-
Fixed
|
|
9568
|
+
Fixed in v2.0.0rc1
|
|
9125
9569
|
</span>
|
|
9126
9570
|
</a>
|
|
9127
9571
|
|
|
9128
9572
|
</li>
|
|
9129
9573
|
|
|
9130
9574
|
<li class="md-nav__item">
|
|
9131
|
-
<a href="#
|
|
9575
|
+
<a href="#dependencies-in-v200rc1" class="md-nav__link">
|
|
9132
9576
|
<span class="md-ellipsis">
|
|
9133
|
-
Dependencies
|
|
9577
|
+
Dependencies in v2.0.0rc1
|
|
9134
9578
|
</span>
|
|
9135
9579
|
</a>
|
|
9136
9580
|
|
|
9137
9581
|
</li>
|
|
9138
9582
|
|
|
9139
9583
|
<li class="md-nav__item">
|
|
9140
|
-
<a href="#
|
|
9584
|
+
<a href="#documentation-in-v200rc1" class="md-nav__link">
|
|
9141
9585
|
<span class="md-ellipsis">
|
|
9142
|
-
Documentation
|
|
9586
|
+
Documentation in v2.0.0rc1
|
|
9143
9587
|
</span>
|
|
9144
9588
|
</a>
|
|
9145
9589
|
|
|
9146
9590
|
</li>
|
|
9147
9591
|
|
|
9148
9592
|
<li class="md-nav__item">
|
|
9149
|
-
<a href="#
|
|
9593
|
+
<a href="#housekeeping-in-v200rc1" class="md-nav__link">
|
|
9150
9594
|
<span class="md-ellipsis">
|
|
9151
|
-
Housekeeping
|
|
9595
|
+
Housekeeping in v2.0.0rc1
|
|
9152
9596
|
</span>
|
|
9153
9597
|
</a>
|
|
9154
9598
|
|
|
@@ -9170,63 +9614,63 @@
|
|
|
9170
9614
|
<ul class="md-nav__list">
|
|
9171
9615
|
|
|
9172
9616
|
<li class="md-nav__item">
|
|
9173
|
-
<a href="#
|
|
9617
|
+
<a href="#added-in-v200-beta2" class="md-nav__link">
|
|
9174
9618
|
<span class="md-ellipsis">
|
|
9175
|
-
Added
|
|
9619
|
+
Added in v2.0.0-beta.2
|
|
9176
9620
|
</span>
|
|
9177
9621
|
</a>
|
|
9178
9622
|
|
|
9179
9623
|
</li>
|
|
9180
9624
|
|
|
9181
9625
|
<li class="md-nav__item">
|
|
9182
|
-
<a href="#
|
|
9626
|
+
<a href="#changed-in-v200-beta2" class="md-nav__link">
|
|
9183
9627
|
<span class="md-ellipsis">
|
|
9184
|
-
Changed
|
|
9628
|
+
Changed in v2.0.0-beta.2
|
|
9185
9629
|
</span>
|
|
9186
9630
|
</a>
|
|
9187
9631
|
|
|
9188
9632
|
</li>
|
|
9189
9633
|
|
|
9190
9634
|
<li class="md-nav__item">
|
|
9191
|
-
<a href="#
|
|
9635
|
+
<a href="#removed-in-v200-beta2" class="md-nav__link">
|
|
9192
9636
|
<span class="md-ellipsis">
|
|
9193
|
-
Removed
|
|
9637
|
+
Removed in v2.0.0-beta.2
|
|
9194
9638
|
</span>
|
|
9195
9639
|
</a>
|
|
9196
9640
|
|
|
9197
9641
|
</li>
|
|
9198
9642
|
|
|
9199
9643
|
<li class="md-nav__item">
|
|
9200
|
-
<a href="#
|
|
9644
|
+
<a href="#fixed-in-v200-beta2" class="md-nav__link">
|
|
9201
9645
|
<span class="md-ellipsis">
|
|
9202
|
-
Fixed
|
|
9646
|
+
Fixed in v2.0.0-beta.2
|
|
9203
9647
|
</span>
|
|
9204
9648
|
</a>
|
|
9205
9649
|
|
|
9206
9650
|
</li>
|
|
9207
9651
|
|
|
9208
9652
|
<li class="md-nav__item">
|
|
9209
|
-
<a href="#
|
|
9653
|
+
<a href="#dependencies-in-v200-beta2" class="md-nav__link">
|
|
9210
9654
|
<span class="md-ellipsis">
|
|
9211
|
-
Dependencies
|
|
9655
|
+
Dependencies in v2.0.0-beta.2
|
|
9212
9656
|
</span>
|
|
9213
9657
|
</a>
|
|
9214
9658
|
|
|
9215
9659
|
</li>
|
|
9216
9660
|
|
|
9217
9661
|
<li class="md-nav__item">
|
|
9218
|
-
<a href="#
|
|
9662
|
+
<a href="#documentation-in-v200-beta2" class="md-nav__link">
|
|
9219
9663
|
<span class="md-ellipsis">
|
|
9220
|
-
Documentation
|
|
9664
|
+
Documentation in v2.0.0-beta.2
|
|
9221
9665
|
</span>
|
|
9222
9666
|
</a>
|
|
9223
9667
|
|
|
9224
9668
|
</li>
|
|
9225
9669
|
|
|
9226
9670
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
9671
|
+
<a href="#housekeeping-in-v200-beta2" class="md-nav__link">
|
|
9228
9672
|
<span class="md-ellipsis">
|
|
9229
|
-
Housekeeping
|
|
9673
|
+
Housekeeping in v2.0.0-beta.2
|
|
9230
9674
|
</span>
|
|
9231
9675
|
</a>
|
|
9232
9676
|
|
|
@@ -9248,63 +9692,63 @@
|
|
|
9248
9692
|
<ul class="md-nav__list">
|
|
9249
9693
|
|
|
9250
9694
|
<li class="md-nav__item">
|
|
9251
|
-
<a href="#
|
|
9695
|
+
<a href="#added-in-v200-beta1" class="md-nav__link">
|
|
9252
9696
|
<span class="md-ellipsis">
|
|
9253
|
-
Added
|
|
9697
|
+
Added in v2.0.0-beta.1
|
|
9254
9698
|
</span>
|
|
9255
9699
|
</a>
|
|
9256
9700
|
|
|
9257
9701
|
</li>
|
|
9258
9702
|
|
|
9259
9703
|
<li class="md-nav__item">
|
|
9260
|
-
<a href="#
|
|
9704
|
+
<a href="#changed-in-v200-beta1" class="md-nav__link">
|
|
9261
9705
|
<span class="md-ellipsis">
|
|
9262
|
-
Changed
|
|
9706
|
+
Changed in v2.0.0-beta.1
|
|
9263
9707
|
</span>
|
|
9264
9708
|
</a>
|
|
9265
9709
|
|
|
9266
9710
|
</li>
|
|
9267
9711
|
|
|
9268
9712
|
<li class="md-nav__item">
|
|
9269
|
-
<a href="#
|
|
9713
|
+
<a href="#removed-in-v200-beta1" class="md-nav__link">
|
|
9270
9714
|
<span class="md-ellipsis">
|
|
9271
|
-
Removed
|
|
9715
|
+
Removed in v2.0.0-beta.1
|
|
9272
9716
|
</span>
|
|
9273
9717
|
</a>
|
|
9274
9718
|
|
|
9275
9719
|
</li>
|
|
9276
9720
|
|
|
9277
9721
|
<li class="md-nav__item">
|
|
9278
|
-
<a href="#
|
|
9722
|
+
<a href="#fixed-in-v200-beta1" class="md-nav__link">
|
|
9279
9723
|
<span class="md-ellipsis">
|
|
9280
|
-
Fixed
|
|
9724
|
+
Fixed in v2.0.0-beta.1
|
|
9281
9725
|
</span>
|
|
9282
9726
|
</a>
|
|
9283
9727
|
|
|
9284
9728
|
</li>
|
|
9285
9729
|
|
|
9286
9730
|
<li class="md-nav__item">
|
|
9287
|
-
<a href="#
|
|
9731
|
+
<a href="#dependencies-in-v200-beta1" class="md-nav__link">
|
|
9288
9732
|
<span class="md-ellipsis">
|
|
9289
|
-
Dependencies
|
|
9733
|
+
Dependencies in v2.0.0-beta.1
|
|
9290
9734
|
</span>
|
|
9291
9735
|
</a>
|
|
9292
9736
|
|
|
9293
9737
|
</li>
|
|
9294
9738
|
|
|
9295
9739
|
<li class="md-nav__item">
|
|
9296
|
-
<a href="#
|
|
9740
|
+
<a href="#documentation-in-v200-beta1" class="md-nav__link">
|
|
9297
9741
|
<span class="md-ellipsis">
|
|
9298
|
-
Documentation
|
|
9742
|
+
Documentation in v2.0.0-beta.1
|
|
9299
9743
|
</span>
|
|
9300
9744
|
</a>
|
|
9301
9745
|
|
|
9302
9746
|
</li>
|
|
9303
9747
|
|
|
9304
9748
|
<li class="md-nav__item">
|
|
9305
|
-
<a href="#
|
|
9749
|
+
<a href="#housekeeping-in-v200-beta1" class="md-nav__link">
|
|
9306
9750
|
<span class="md-ellipsis">
|
|
9307
|
-
Housekeeping
|
|
9751
|
+
Housekeeping in v2.0.0-beta.1
|
|
9308
9752
|
</span>
|
|
9309
9753
|
</a>
|
|
9310
9754
|
|
|
@@ -9326,45 +9770,45 @@
|
|
|
9326
9770
|
<ul class="md-nav__list">
|
|
9327
9771
|
|
|
9328
9772
|
<li class="md-nav__item">
|
|
9329
|
-
<a href="#
|
|
9773
|
+
<a href="#added-in-v200-alpha3" class="md-nav__link">
|
|
9330
9774
|
<span class="md-ellipsis">
|
|
9331
|
-
Added
|
|
9775
|
+
Added in v2.0.0-alpha.3
|
|
9332
9776
|
</span>
|
|
9333
9777
|
</a>
|
|
9334
9778
|
|
|
9335
9779
|
</li>
|
|
9336
9780
|
|
|
9337
9781
|
<li class="md-nav__item">
|
|
9338
|
-
<a href="#
|
|
9782
|
+
<a href="#changed-in-v200-alpha3" class="md-nav__link">
|
|
9339
9783
|
<span class="md-ellipsis">
|
|
9340
|
-
Changed
|
|
9784
|
+
Changed in v2.0.0-alpha.3
|
|
9341
9785
|
</span>
|
|
9342
9786
|
</a>
|
|
9343
9787
|
|
|
9344
9788
|
</li>
|
|
9345
9789
|
|
|
9346
9790
|
<li class="md-nav__item">
|
|
9347
|
-
<a href="#
|
|
9791
|
+
<a href="#removed-in-v200-alpha3" class="md-nav__link">
|
|
9348
9792
|
<span class="md-ellipsis">
|
|
9349
|
-
Removed
|
|
9793
|
+
Removed in v2.0.0-alpha.3
|
|
9350
9794
|
</span>
|
|
9351
9795
|
</a>
|
|
9352
9796
|
|
|
9353
9797
|
</li>
|
|
9354
9798
|
|
|
9355
9799
|
<li class="md-nav__item">
|
|
9356
|
-
<a href="#
|
|
9800
|
+
<a href="#dependencies-in-v200-alpha3" class="md-nav__link">
|
|
9357
9801
|
<span class="md-ellipsis">
|
|
9358
|
-
Dependencies
|
|
9802
|
+
Dependencies in v2.0.0-alpha.3
|
|
9359
9803
|
</span>
|
|
9360
9804
|
</a>
|
|
9361
9805
|
|
|
9362
9806
|
</li>
|
|
9363
9807
|
|
|
9364
9808
|
<li class="md-nav__item">
|
|
9365
|
-
<a href="#
|
|
9809
|
+
<a href="#housekeeping-in-v200-alpha3" class="md-nav__link">
|
|
9366
9810
|
<span class="md-ellipsis">
|
|
9367
|
-
Housekeeping
|
|
9811
|
+
Housekeeping in v2.0.0-alpha.3
|
|
9368
9812
|
</span>
|
|
9369
9813
|
</a>
|
|
9370
9814
|
|
|
@@ -9386,54 +9830,54 @@
|
|
|
9386
9830
|
<ul class="md-nav__list">
|
|
9387
9831
|
|
|
9388
9832
|
<li class="md-nav__item">
|
|
9389
|
-
<a href="#
|
|
9833
|
+
<a href="#added-in-v200-alpha2" class="md-nav__link">
|
|
9390
9834
|
<span class="md-ellipsis">
|
|
9391
|
-
Added
|
|
9835
|
+
Added in v2.0.0-alpha.2
|
|
9392
9836
|
</span>
|
|
9393
9837
|
</a>
|
|
9394
9838
|
|
|
9395
9839
|
</li>
|
|
9396
9840
|
|
|
9397
9841
|
<li class="md-nav__item">
|
|
9398
|
-
<a href="#
|
|
9842
|
+
<a href="#changed-in-v200-alpha2" class="md-nav__link">
|
|
9399
9843
|
<span class="md-ellipsis">
|
|
9400
|
-
Changed
|
|
9844
|
+
Changed in v2.0.0-alpha.2
|
|
9401
9845
|
</span>
|
|
9402
9846
|
</a>
|
|
9403
9847
|
|
|
9404
9848
|
</li>
|
|
9405
9849
|
|
|
9406
9850
|
<li class="md-nav__item">
|
|
9407
|
-
<a href="#
|
|
9851
|
+
<a href="#removed-in-v200-alpha2" class="md-nav__link">
|
|
9408
9852
|
<span class="md-ellipsis">
|
|
9409
|
-
Removed
|
|
9853
|
+
Removed in v2.0.0-alpha.2
|
|
9410
9854
|
</span>
|
|
9411
9855
|
</a>
|
|
9412
9856
|
|
|
9413
9857
|
</li>
|
|
9414
9858
|
|
|
9415
9859
|
<li class="md-nav__item">
|
|
9416
|
-
<a href="#
|
|
9860
|
+
<a href="#fixed-in-v200-alpha2" class="md-nav__link">
|
|
9417
9861
|
<span class="md-ellipsis">
|
|
9418
|
-
Fixed
|
|
9862
|
+
Fixed in v2.0.0-alpha.2
|
|
9419
9863
|
</span>
|
|
9420
9864
|
</a>
|
|
9421
9865
|
|
|
9422
9866
|
</li>
|
|
9423
9867
|
|
|
9424
9868
|
<li class="md-nav__item">
|
|
9425
|
-
<a href="#
|
|
9869
|
+
<a href="#dependencies-in-v200-alpha2" class="md-nav__link">
|
|
9426
9870
|
<span class="md-ellipsis">
|
|
9427
|
-
Dependencies
|
|
9871
|
+
Dependencies in v2.0.0-alpha.2
|
|
9428
9872
|
</span>
|
|
9429
9873
|
</a>
|
|
9430
9874
|
|
|
9431
9875
|
</li>
|
|
9432
9876
|
|
|
9433
9877
|
<li class="md-nav__item">
|
|
9434
|
-
<a href="#
|
|
9878
|
+
<a href="#housekeeping-in-v200-alpha2" class="md-nav__link">
|
|
9435
9879
|
<span class="md-ellipsis">
|
|
9436
|
-
Housekeeping
|
|
9880
|
+
Housekeeping in v2.0.0-alpha.2
|
|
9437
9881
|
</span>
|
|
9438
9882
|
</a>
|
|
9439
9883
|
|
|
@@ -9455,63 +9899,63 @@
|
|
|
9455
9899
|
<ul class="md-nav__list">
|
|
9456
9900
|
|
|
9457
9901
|
<li class="md-nav__item">
|
|
9458
|
-
<a href="#
|
|
9902
|
+
<a href="#added-in-v200-alpha1" class="md-nav__link">
|
|
9459
9903
|
<span class="md-ellipsis">
|
|
9460
|
-
Added
|
|
9904
|
+
Added in v2.0.0-alpha.1
|
|
9461
9905
|
</span>
|
|
9462
9906
|
</a>
|
|
9463
9907
|
|
|
9464
9908
|
</li>
|
|
9465
9909
|
|
|
9466
9910
|
<li class="md-nav__item">
|
|
9467
|
-
<a href="#
|
|
9911
|
+
<a href="#changed-in-v200-alpha1" class="md-nav__link">
|
|
9468
9912
|
<span class="md-ellipsis">
|
|
9469
|
-
Changed
|
|
9913
|
+
Changed in v2.0.0-alpha.1
|
|
9470
9914
|
</span>
|
|
9471
9915
|
</a>
|
|
9472
9916
|
|
|
9473
9917
|
</li>
|
|
9474
9918
|
|
|
9475
9919
|
<li class="md-nav__item">
|
|
9476
|
-
<a href="#
|
|
9920
|
+
<a href="#removed-in-v200-alpha1" class="md-nav__link">
|
|
9477
9921
|
<span class="md-ellipsis">
|
|
9478
|
-
Removed
|
|
9922
|
+
Removed in v2.0.0-alpha.1
|
|
9479
9923
|
</span>
|
|
9480
9924
|
</a>
|
|
9481
9925
|
|
|
9482
9926
|
</li>
|
|
9483
9927
|
|
|
9484
9928
|
<li class="md-nav__item">
|
|
9485
|
-
<a href="#
|
|
9929
|
+
<a href="#fixed-in-v200-alpha1" class="md-nav__link">
|
|
9486
9930
|
<span class="md-ellipsis">
|
|
9487
|
-
Fixed
|
|
9931
|
+
Fixed in v2.0.0-alpha.1
|
|
9488
9932
|
</span>
|
|
9489
9933
|
</a>
|
|
9490
9934
|
|
|
9491
9935
|
</li>
|
|
9492
9936
|
|
|
9493
9937
|
<li class="md-nav__item">
|
|
9494
|
-
<a href="#
|
|
9938
|
+
<a href="#dependencies-in-v200-alpha1" class="md-nav__link">
|
|
9495
9939
|
<span class="md-ellipsis">
|
|
9496
|
-
Dependencies
|
|
9940
|
+
Dependencies in v2.0.0-alpha.1
|
|
9497
9941
|
</span>
|
|
9498
9942
|
</a>
|
|
9499
9943
|
|
|
9500
9944
|
</li>
|
|
9501
9945
|
|
|
9502
9946
|
<li class="md-nav__item">
|
|
9503
|
-
<a href="#
|
|
9947
|
+
<a href="#documentation-in-v200-alpha1" class="md-nav__link">
|
|
9504
9948
|
<span class="md-ellipsis">
|
|
9505
|
-
Documentation
|
|
9949
|
+
Documentation in v2.0.0-alpha.1
|
|
9506
9950
|
</span>
|
|
9507
9951
|
</a>
|
|
9508
9952
|
|
|
9509
9953
|
</li>
|
|
9510
9954
|
|
|
9511
9955
|
<li class="md-nav__item">
|
|
9512
|
-
<a href="#
|
|
9956
|
+
<a href="#housekeeping-in-v200-alpha1" class="md-nav__link">
|
|
9513
9957
|
<span class="md-ellipsis">
|
|
9514
|
-
Housekeeping
|
|
9958
|
+
Housekeeping in v2.0.0-alpha.1
|
|
9515
9959
|
</span>
|
|
9516
9960
|
</a>
|
|
9517
9961
|
|
|
@@ -10217,9 +10661,9 @@
|
|
|
10217
10661
|
</li>
|
|
10218
10662
|
|
|
10219
10663
|
<li class="md-nav__item">
|
|
10220
|
-
<a href="#generic-role-model-
|
|
10664
|
+
<a href="#migration-to-generic-role-model-1063" class="md-nav__link">
|
|
10221
10665
|
<span class="md-ellipsis">
|
|
10222
|
-
Generic Role Model (#1063)
|
|
10666
|
+
Migration to Generic Role Model (#1063)
|
|
10223
10667
|
</span>
|
|
10224
10668
|
</a>
|
|
10225
10669
|
|
|
@@ -10378,72 +10822,72 @@
|
|
|
10378
10822
|
<ul class="md-nav__list">
|
|
10379
10823
|
|
|
10380
10824
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#security" class="md-nav__link">
|
|
10825
|
+
<a href="#security-in-v206" class="md-nav__link">
|
|
10382
10826
|
<span class="md-ellipsis">
|
|
10383
|
-
Security
|
|
10827
|
+
Security in v2.0.6
|
|
10384
10828
|
</span>
|
|
10385
10829
|
</a>
|
|
10386
10830
|
|
|
10387
10831
|
</li>
|
|
10388
10832
|
|
|
10389
10833
|
<li class="md-nav__item">
|
|
10390
|
-
<a href="#
|
|
10834
|
+
<a href="#added-in-v206" class="md-nav__link">
|
|
10391
10835
|
<span class="md-ellipsis">
|
|
10392
|
-
Added
|
|
10836
|
+
Added in v2.0.6
|
|
10393
10837
|
</span>
|
|
10394
10838
|
</a>
|
|
10395
10839
|
|
|
10396
10840
|
</li>
|
|
10397
10841
|
|
|
10398
10842
|
<li class="md-nav__item">
|
|
10399
|
-
<a href="#
|
|
10843
|
+
<a href="#changed-in-v206" class="md-nav__link">
|
|
10400
10844
|
<span class="md-ellipsis">
|
|
10401
|
-
Changed
|
|
10845
|
+
Changed in v2.0.6
|
|
10402
10846
|
</span>
|
|
10403
10847
|
</a>
|
|
10404
10848
|
|
|
10405
10849
|
</li>
|
|
10406
10850
|
|
|
10407
10851
|
<li class="md-nav__item">
|
|
10408
|
-
<a href="#
|
|
10852
|
+
<a href="#removed-in-v206" class="md-nav__link">
|
|
10409
10853
|
<span class="md-ellipsis">
|
|
10410
|
-
Removed
|
|
10854
|
+
Removed in v2.0.6
|
|
10411
10855
|
</span>
|
|
10412
10856
|
</a>
|
|
10413
10857
|
|
|
10414
10858
|
</li>
|
|
10415
10859
|
|
|
10416
10860
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#fixed" class="md-nav__link">
|
|
10861
|
+
<a href="#fixed-in-v206" class="md-nav__link">
|
|
10418
10862
|
<span class="md-ellipsis">
|
|
10419
|
-
Fixed
|
|
10863
|
+
Fixed in v2.0.6
|
|
10420
10864
|
</span>
|
|
10421
10865
|
</a>
|
|
10422
10866
|
|
|
10423
10867
|
</li>
|
|
10424
10868
|
|
|
10425
10869
|
<li class="md-nav__item">
|
|
10426
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10870
|
+
<a href="#dependencies-in-v206" class="md-nav__link">
|
|
10427
10871
|
<span class="md-ellipsis">
|
|
10428
|
-
Dependencies
|
|
10872
|
+
Dependencies in v2.0.6
|
|
10429
10873
|
</span>
|
|
10430
10874
|
</a>
|
|
10431
10875
|
|
|
10432
10876
|
</li>
|
|
10433
10877
|
|
|
10434
10878
|
<li class="md-nav__item">
|
|
10435
|
-
<a href="#documentation" class="md-nav__link">
|
|
10879
|
+
<a href="#documentation-in-v206" class="md-nav__link">
|
|
10436
10880
|
<span class="md-ellipsis">
|
|
10437
|
-
Documentation
|
|
10881
|
+
Documentation in v2.0.6
|
|
10438
10882
|
</span>
|
|
10439
10883
|
</a>
|
|
10440
10884
|
|
|
10441
10885
|
</li>
|
|
10442
10886
|
|
|
10443
10887
|
<li class="md-nav__item">
|
|
10444
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10888
|
+
<a href="#housekeeping-in-v206" class="md-nav__link">
|
|
10445
10889
|
<span class="md-ellipsis">
|
|
10446
|
-
Housekeeping
|
|
10890
|
+
Housekeeping in v2.0.6
|
|
10447
10891
|
</span>
|
|
10448
10892
|
</a>
|
|
10449
10893
|
|
|
@@ -10465,54 +10909,54 @@
|
|
|
10465
10909
|
<ul class="md-nav__list">
|
|
10466
10910
|
|
|
10467
10911
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10912
|
+
<a href="#security-in-v205" class="md-nav__link">
|
|
10469
10913
|
<span class="md-ellipsis">
|
|
10470
|
-
Security
|
|
10914
|
+
Security in v2.0.5
|
|
10471
10915
|
</span>
|
|
10472
10916
|
</a>
|
|
10473
10917
|
|
|
10474
10918
|
</li>
|
|
10475
10919
|
|
|
10476
10920
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
10921
|
+
<a href="#changed-in-v205" class="md-nav__link">
|
|
10478
10922
|
<span class="md-ellipsis">
|
|
10479
|
-
Changed
|
|
10923
|
+
Changed in v2.0.5
|
|
10480
10924
|
</span>
|
|
10481
10925
|
</a>
|
|
10482
10926
|
|
|
10483
10927
|
</li>
|
|
10484
10928
|
|
|
10485
10929
|
<li class="md-nav__item">
|
|
10486
|
-
<a href="#
|
|
10930
|
+
<a href="#fixed-in-v205" class="md-nav__link">
|
|
10487
10931
|
<span class="md-ellipsis">
|
|
10488
|
-
Fixed
|
|
10932
|
+
Fixed in v2.0.5
|
|
10489
10933
|
</span>
|
|
10490
10934
|
</a>
|
|
10491
10935
|
|
|
10492
10936
|
</li>
|
|
10493
10937
|
|
|
10494
10938
|
<li class="md-nav__item">
|
|
10495
|
-
<a href="#
|
|
10939
|
+
<a href="#dependencies-in-v205" class="md-nav__link">
|
|
10496
10940
|
<span class="md-ellipsis">
|
|
10497
|
-
Dependencies
|
|
10941
|
+
Dependencies in v2.0.5
|
|
10498
10942
|
</span>
|
|
10499
10943
|
</a>
|
|
10500
10944
|
|
|
10501
10945
|
</li>
|
|
10502
10946
|
|
|
10503
10947
|
<li class="md-nav__item">
|
|
10504
|
-
<a href="#
|
|
10948
|
+
<a href="#documentation-in-v205" class="md-nav__link">
|
|
10505
10949
|
<span class="md-ellipsis">
|
|
10506
|
-
Documentation
|
|
10950
|
+
Documentation in v2.0.5
|
|
10507
10951
|
</span>
|
|
10508
10952
|
</a>
|
|
10509
10953
|
|
|
10510
10954
|
</li>
|
|
10511
10955
|
|
|
10512
10956
|
<li class="md-nav__item">
|
|
10513
|
-
<a href="#
|
|
10957
|
+
<a href="#housekeeping-in-v205" class="md-nav__link">
|
|
10514
10958
|
<span class="md-ellipsis">
|
|
10515
|
-
Housekeeping
|
|
10959
|
+
Housekeeping in v2.0.5
|
|
10516
10960
|
</span>
|
|
10517
10961
|
</a>
|
|
10518
10962
|
|
|
@@ -10534,54 +10978,54 @@
|
|
|
10534
10978
|
<ul class="md-nav__list">
|
|
10535
10979
|
|
|
10536
10980
|
<li class="md-nav__item">
|
|
10537
|
-
<a href="#
|
|
10981
|
+
<a href="#security-in-v204" class="md-nav__link">
|
|
10538
10982
|
<span class="md-ellipsis">
|
|
10539
|
-
Security
|
|
10983
|
+
Security in v2.0.4
|
|
10540
10984
|
</span>
|
|
10541
10985
|
</a>
|
|
10542
10986
|
|
|
10543
10987
|
</li>
|
|
10544
10988
|
|
|
10545
10989
|
<li class="md-nav__item">
|
|
10546
|
-
<a href="#
|
|
10990
|
+
<a href="#added-in-v204" class="md-nav__link">
|
|
10547
10991
|
<span class="md-ellipsis">
|
|
10548
|
-
Added
|
|
10992
|
+
Added in v2.0.4
|
|
10549
10993
|
</span>
|
|
10550
10994
|
</a>
|
|
10551
10995
|
|
|
10552
10996
|
</li>
|
|
10553
10997
|
|
|
10554
10998
|
<li class="md-nav__item">
|
|
10555
|
-
<a href="#
|
|
10999
|
+
<a href="#changed-in-v204" class="md-nav__link">
|
|
10556
11000
|
<span class="md-ellipsis">
|
|
10557
|
-
Changed
|
|
11001
|
+
Changed in v2.0.4
|
|
10558
11002
|
</span>
|
|
10559
11003
|
</a>
|
|
10560
11004
|
|
|
10561
11005
|
</li>
|
|
10562
11006
|
|
|
10563
11007
|
<li class="md-nav__item">
|
|
10564
|
-
<a href="#
|
|
11008
|
+
<a href="#fixed-in-v204" class="md-nav__link">
|
|
10565
11009
|
<span class="md-ellipsis">
|
|
10566
|
-
Fixed
|
|
11010
|
+
Fixed in v2.0.4
|
|
10567
11011
|
</span>
|
|
10568
11012
|
</a>
|
|
10569
11013
|
|
|
10570
11014
|
</li>
|
|
10571
11015
|
|
|
10572
11016
|
<li class="md-nav__item">
|
|
10573
|
-
<a href="#
|
|
11017
|
+
<a href="#documentation-in-v204" class="md-nav__link">
|
|
10574
11018
|
<span class="md-ellipsis">
|
|
10575
|
-
Documentation
|
|
11019
|
+
Documentation in v2.0.4
|
|
10576
11020
|
</span>
|
|
10577
11021
|
</a>
|
|
10578
11022
|
|
|
10579
11023
|
</li>
|
|
10580
11024
|
|
|
10581
11025
|
<li class="md-nav__item">
|
|
10582
|
-
<a href="#
|
|
11026
|
+
<a href="#housekeeping-in-v204" class="md-nav__link">
|
|
10583
11027
|
<span class="md-ellipsis">
|
|
10584
|
-
Housekeeping
|
|
11028
|
+
Housekeeping in v2.0.4
|
|
10585
11029
|
</span>
|
|
10586
11030
|
</a>
|
|
10587
11031
|
|
|
@@ -10603,54 +11047,54 @@
|
|
|
10603
11047
|
<ul class="md-nav__list">
|
|
10604
11048
|
|
|
10605
11049
|
<li class="md-nav__item">
|
|
10606
|
-
<a href="#
|
|
11050
|
+
<a href="#security-in-v203" class="md-nav__link">
|
|
10607
11051
|
<span class="md-ellipsis">
|
|
10608
|
-
Security
|
|
11052
|
+
Security in v2.0.3
|
|
10609
11053
|
</span>
|
|
10610
11054
|
</a>
|
|
10611
11055
|
|
|
10612
11056
|
</li>
|
|
10613
11057
|
|
|
10614
11058
|
<li class="md-nav__item">
|
|
10615
|
-
<a href="#
|
|
11059
|
+
<a href="#added-in-v203" class="md-nav__link">
|
|
10616
11060
|
<span class="md-ellipsis">
|
|
10617
|
-
Added
|
|
11061
|
+
Added in v2.0.3
|
|
10618
11062
|
</span>
|
|
10619
11063
|
</a>
|
|
10620
11064
|
|
|
10621
11065
|
</li>
|
|
10622
11066
|
|
|
10623
11067
|
<li class="md-nav__item">
|
|
10624
|
-
<a href="#
|
|
11068
|
+
<a href="#changed-in-v203" class="md-nav__link">
|
|
10625
11069
|
<span class="md-ellipsis">
|
|
10626
|
-
Changed
|
|
11070
|
+
Changed in v2.0.3
|
|
10627
11071
|
</span>
|
|
10628
11072
|
</a>
|
|
10629
11073
|
|
|
10630
11074
|
</li>
|
|
10631
11075
|
|
|
10632
11076
|
<li class="md-nav__item">
|
|
10633
|
-
<a href="#
|
|
11077
|
+
<a href="#fixed-in-v203" class="md-nav__link">
|
|
10634
11078
|
<span class="md-ellipsis">
|
|
10635
|
-
Fixed
|
|
11079
|
+
Fixed in v2.0.3
|
|
10636
11080
|
</span>
|
|
10637
11081
|
</a>
|
|
10638
11082
|
|
|
10639
11083
|
</li>
|
|
10640
11084
|
|
|
10641
11085
|
<li class="md-nav__item">
|
|
10642
|
-
<a href="#
|
|
11086
|
+
<a href="#documentation-in-v203" class="md-nav__link">
|
|
10643
11087
|
<span class="md-ellipsis">
|
|
10644
|
-
Documentation
|
|
11088
|
+
Documentation in v2.0.3
|
|
10645
11089
|
</span>
|
|
10646
11090
|
</a>
|
|
10647
11091
|
|
|
10648
11092
|
</li>
|
|
10649
11093
|
|
|
10650
11094
|
<li class="md-nav__item">
|
|
10651
|
-
<a href="#
|
|
11095
|
+
<a href="#housekeeping-in-v203" class="md-nav__link">
|
|
10652
11096
|
<span class="md-ellipsis">
|
|
10653
|
-
Housekeeping
|
|
11097
|
+
Housekeeping in v2.0.3
|
|
10654
11098
|
</span>
|
|
10655
11099
|
</a>
|
|
10656
11100
|
|
|
@@ -10672,54 +11116,54 @@
|
|
|
10672
11116
|
<ul class="md-nav__list">
|
|
10673
11117
|
|
|
10674
11118
|
<li class="md-nav__item">
|
|
10675
|
-
<a href="#
|
|
11119
|
+
<a href="#security-in-v202" class="md-nav__link">
|
|
10676
11120
|
<span class="md-ellipsis">
|
|
10677
|
-
Security
|
|
11121
|
+
Security in v2.0.2
|
|
10678
11122
|
</span>
|
|
10679
11123
|
</a>
|
|
10680
11124
|
|
|
10681
11125
|
</li>
|
|
10682
11126
|
|
|
10683
11127
|
<li class="md-nav__item">
|
|
10684
|
-
<a href="#
|
|
11128
|
+
<a href="#added-in-v202" class="md-nav__link">
|
|
10685
11129
|
<span class="md-ellipsis">
|
|
10686
|
-
Added
|
|
11130
|
+
Added in v2.0.2
|
|
10687
11131
|
</span>
|
|
10688
11132
|
</a>
|
|
10689
11133
|
|
|
10690
11134
|
</li>
|
|
10691
11135
|
|
|
10692
11136
|
<li class="md-nav__item">
|
|
10693
|
-
<a href="#
|
|
11137
|
+
<a href="#changed-in-v202" class="md-nav__link">
|
|
10694
11138
|
<span class="md-ellipsis">
|
|
10695
|
-
Changed
|
|
11139
|
+
Changed in v2.0.2
|
|
10696
11140
|
</span>
|
|
10697
11141
|
</a>
|
|
10698
11142
|
|
|
10699
11143
|
</li>
|
|
10700
11144
|
|
|
10701
11145
|
<li class="md-nav__item">
|
|
10702
|
-
<a href="#
|
|
11146
|
+
<a href="#fixed-in-v202" class="md-nav__link">
|
|
10703
11147
|
<span class="md-ellipsis">
|
|
10704
|
-
Fixed
|
|
11148
|
+
Fixed in v2.0.2
|
|
10705
11149
|
</span>
|
|
10706
11150
|
</a>
|
|
10707
11151
|
|
|
10708
11152
|
</li>
|
|
10709
11153
|
|
|
10710
11154
|
<li class="md-nav__item">
|
|
10711
|
-
<a href="#
|
|
11155
|
+
<a href="#documentation-in-v202" class="md-nav__link">
|
|
10712
11156
|
<span class="md-ellipsis">
|
|
10713
|
-
Documentation
|
|
11157
|
+
Documentation in v2.0.2
|
|
10714
11158
|
</span>
|
|
10715
11159
|
</a>
|
|
10716
11160
|
|
|
10717
11161
|
</li>
|
|
10718
11162
|
|
|
10719
11163
|
<li class="md-nav__item">
|
|
10720
|
-
<a href="#
|
|
11164
|
+
<a href="#housekeeping-in-v202" class="md-nav__link">
|
|
10721
11165
|
<span class="md-ellipsis">
|
|
10722
|
-
Housekeeping
|
|
11166
|
+
Housekeeping in v2.0.2
|
|
10723
11167
|
</span>
|
|
10724
11168
|
</a>
|
|
10725
11169
|
|
|
@@ -10741,18 +11185,18 @@
|
|
|
10741
11185
|
<ul class="md-nav__list">
|
|
10742
11186
|
|
|
10743
11187
|
<li class="md-nav__item">
|
|
10744
|
-
<a href="#
|
|
11188
|
+
<a href="#fixed-in-v201" class="md-nav__link">
|
|
10745
11189
|
<span class="md-ellipsis">
|
|
10746
|
-
Fixed
|
|
11190
|
+
Fixed in v2.0.1
|
|
10747
11191
|
</span>
|
|
10748
11192
|
</a>
|
|
10749
11193
|
|
|
10750
11194
|
</li>
|
|
10751
11195
|
|
|
10752
11196
|
<li class="md-nav__item">
|
|
10753
|
-
<a href="#
|
|
11197
|
+
<a href="#housekeeping-in-v201" class="md-nav__link">
|
|
10754
11198
|
<span class="md-ellipsis">
|
|
10755
|
-
Housekeeping
|
|
11199
|
+
Housekeeping in v2.0.1
|
|
10756
11200
|
</span>
|
|
10757
11201
|
</a>
|
|
10758
11202
|
|
|
@@ -10774,27 +11218,27 @@
|
|
|
10774
11218
|
<ul class="md-nav__list">
|
|
10775
11219
|
|
|
10776
11220
|
<li class="md-nav__item">
|
|
10777
|
-
<a href="#
|
|
11221
|
+
<a href="#added-in-v200" class="md-nav__link">
|
|
10778
11222
|
<span class="md-ellipsis">
|
|
10779
|
-
Added
|
|
11223
|
+
Added in v2.0.0
|
|
10780
11224
|
</span>
|
|
10781
11225
|
</a>
|
|
10782
11226
|
|
|
10783
11227
|
</li>
|
|
10784
11228
|
|
|
10785
11229
|
<li class="md-nav__item">
|
|
10786
|
-
<a href="#
|
|
11230
|
+
<a href="#fixed-in-v200" class="md-nav__link">
|
|
10787
11231
|
<span class="md-ellipsis">
|
|
10788
|
-
Fixed
|
|
11232
|
+
Fixed in v2.0.0
|
|
10789
11233
|
</span>
|
|
10790
11234
|
</a>
|
|
10791
11235
|
|
|
10792
11236
|
</li>
|
|
10793
11237
|
|
|
10794
11238
|
<li class="md-nav__item">
|
|
10795
|
-
<a href="#
|
|
11239
|
+
<a href="#documentation-in-v200" class="md-nav__link">
|
|
10796
11240
|
<span class="md-ellipsis">
|
|
10797
|
-
Documentation
|
|
11241
|
+
Documentation in v2.0.0
|
|
10798
11242
|
</span>
|
|
10799
11243
|
</a>
|
|
10800
11244
|
|
|
@@ -10816,72 +11260,72 @@
|
|
|
10816
11260
|
<ul class="md-nav__list">
|
|
10817
11261
|
|
|
10818
11262
|
<li class="md-nav__item">
|
|
10819
|
-
<a href="#
|
|
11263
|
+
<a href="#security-in-v200-rc4" class="md-nav__link">
|
|
10820
11264
|
<span class="md-ellipsis">
|
|
10821
|
-
Security
|
|
11265
|
+
Security in v2.0.0-rc.4
|
|
10822
11266
|
</span>
|
|
10823
11267
|
</a>
|
|
10824
11268
|
|
|
10825
11269
|
</li>
|
|
10826
11270
|
|
|
10827
11271
|
<li class="md-nav__item">
|
|
10828
|
-
<a href="#
|
|
11272
|
+
<a href="#added-in-v200-rc4" class="md-nav__link">
|
|
10829
11273
|
<span class="md-ellipsis">
|
|
10830
|
-
Added
|
|
11274
|
+
Added in v2.0.0-rc.4
|
|
10831
11275
|
</span>
|
|
10832
11276
|
</a>
|
|
10833
11277
|
|
|
10834
11278
|
</li>
|
|
10835
11279
|
|
|
10836
11280
|
<li class="md-nav__item">
|
|
10837
|
-
<a href="#
|
|
11281
|
+
<a href="#changed-in-v200-rc4" class="md-nav__link">
|
|
10838
11282
|
<span class="md-ellipsis">
|
|
10839
|
-
Changed
|
|
11283
|
+
Changed in v2.0.0-rc.4
|
|
10840
11284
|
</span>
|
|
10841
11285
|
</a>
|
|
10842
11286
|
|
|
10843
11287
|
</li>
|
|
10844
11288
|
|
|
10845
11289
|
<li class="md-nav__item">
|
|
10846
|
-
<a href="#
|
|
11290
|
+
<a href="#removed-in-v200-rc4" class="md-nav__link">
|
|
10847
11291
|
<span class="md-ellipsis">
|
|
10848
|
-
Removed
|
|
11292
|
+
Removed in v2.0.0-rc.4
|
|
10849
11293
|
</span>
|
|
10850
11294
|
</a>
|
|
10851
11295
|
|
|
10852
11296
|
</li>
|
|
10853
11297
|
|
|
10854
11298
|
<li class="md-nav__item">
|
|
10855
|
-
<a href="#
|
|
11299
|
+
<a href="#fixed-in-v200-rc4" class="md-nav__link">
|
|
10856
11300
|
<span class="md-ellipsis">
|
|
10857
|
-
Fixed
|
|
11301
|
+
Fixed in v2.0.0-rc.4
|
|
10858
11302
|
</span>
|
|
10859
11303
|
</a>
|
|
10860
11304
|
|
|
10861
11305
|
</li>
|
|
10862
11306
|
|
|
10863
11307
|
<li class="md-nav__item">
|
|
10864
|
-
<a href="#
|
|
11308
|
+
<a href="#dependencies-in-v200-rc4" class="md-nav__link">
|
|
10865
11309
|
<span class="md-ellipsis">
|
|
10866
|
-
Dependencies
|
|
11310
|
+
Dependencies in v2.0.0-rc.4
|
|
10867
11311
|
</span>
|
|
10868
11312
|
</a>
|
|
10869
11313
|
|
|
10870
11314
|
</li>
|
|
10871
11315
|
|
|
10872
11316
|
<li class="md-nav__item">
|
|
10873
|
-
<a href="#
|
|
11317
|
+
<a href="#documentation-in-v200-rc4" class="md-nav__link">
|
|
10874
11318
|
<span class="md-ellipsis">
|
|
10875
|
-
Documentation
|
|
11319
|
+
Documentation in v2.0.0-rc.4
|
|
10876
11320
|
</span>
|
|
10877
11321
|
</a>
|
|
10878
11322
|
|
|
10879
11323
|
</li>
|
|
10880
11324
|
|
|
10881
11325
|
<li class="md-nav__item">
|
|
10882
|
-
<a href="#
|
|
11326
|
+
<a href="#housekeeping-in-v200-rc4" class="md-nav__link">
|
|
10883
11327
|
<span class="md-ellipsis">
|
|
10884
|
-
Housekeeping
|
|
11328
|
+
Housekeeping in v2.0.0-rc.4
|
|
10885
11329
|
</span>
|
|
10886
11330
|
</a>
|
|
10887
11331
|
|
|
@@ -10903,63 +11347,63 @@
|
|
|
10903
11347
|
<ul class="md-nav__list">
|
|
10904
11348
|
|
|
10905
11349
|
<li class="md-nav__item">
|
|
10906
|
-
<a href="#
|
|
11350
|
+
<a href="#security-in-v200-rc3" class="md-nav__link">
|
|
10907
11351
|
<span class="md-ellipsis">
|
|
10908
|
-
Security
|
|
11352
|
+
Security in v2.0.0-rc.3
|
|
10909
11353
|
</span>
|
|
10910
11354
|
</a>
|
|
10911
11355
|
|
|
10912
11356
|
</li>
|
|
10913
11357
|
|
|
10914
11358
|
<li class="md-nav__item">
|
|
10915
|
-
<a href="#
|
|
11359
|
+
<a href="#added-in-v200-rc3" class="md-nav__link">
|
|
10916
11360
|
<span class="md-ellipsis">
|
|
10917
|
-
Added
|
|
11361
|
+
Added in v2.0.0-rc.3
|
|
10918
11362
|
</span>
|
|
10919
11363
|
</a>
|
|
10920
11364
|
|
|
10921
11365
|
</li>
|
|
10922
11366
|
|
|
10923
11367
|
<li class="md-nav__item">
|
|
10924
|
-
<a href="#
|
|
11368
|
+
<a href="#changed-in-v200-rc3" class="md-nav__link">
|
|
10925
11369
|
<span class="md-ellipsis">
|
|
10926
|
-
Changed
|
|
11370
|
+
Changed in v2.0.0-rc.3
|
|
10927
11371
|
</span>
|
|
10928
11372
|
</a>
|
|
10929
11373
|
|
|
10930
11374
|
</li>
|
|
10931
11375
|
|
|
10932
11376
|
<li class="md-nav__item">
|
|
10933
|
-
<a href="#
|
|
11377
|
+
<a href="#removed-in-v200-rc3" class="md-nav__link">
|
|
10934
11378
|
<span class="md-ellipsis">
|
|
10935
|
-
Removed
|
|
11379
|
+
Removed in v2.0.0-rc.3
|
|
10936
11380
|
</span>
|
|
10937
11381
|
</a>
|
|
10938
11382
|
|
|
10939
11383
|
</li>
|
|
10940
11384
|
|
|
10941
11385
|
<li class="md-nav__item">
|
|
10942
|
-
<a href="#
|
|
11386
|
+
<a href="#fixed-in-v200-rc3" class="md-nav__link">
|
|
10943
11387
|
<span class="md-ellipsis">
|
|
10944
|
-
Fixed
|
|
11388
|
+
Fixed in v2.0.0-rc.3
|
|
10945
11389
|
</span>
|
|
10946
11390
|
</a>
|
|
10947
11391
|
|
|
10948
11392
|
</li>
|
|
10949
11393
|
|
|
10950
11394
|
<li class="md-nav__item">
|
|
10951
|
-
<a href="#
|
|
11395
|
+
<a href="#documentation-in-v200-rc3" class="md-nav__link">
|
|
10952
11396
|
<span class="md-ellipsis">
|
|
10953
|
-
Documentation
|
|
11397
|
+
Documentation in v2.0.0-rc.3
|
|
10954
11398
|
</span>
|
|
10955
11399
|
</a>
|
|
10956
11400
|
|
|
10957
11401
|
</li>
|
|
10958
11402
|
|
|
10959
11403
|
<li class="md-nav__item">
|
|
10960
|
-
<a href="#
|
|
11404
|
+
<a href="#housekeeping-in-v200-rc3" class="md-nav__link">
|
|
10961
11405
|
<span class="md-ellipsis">
|
|
10962
|
-
Housekeeping
|
|
11406
|
+
Housekeeping in v2.0.0-rc.3
|
|
10963
11407
|
</span>
|
|
10964
11408
|
</a>
|
|
10965
11409
|
|
|
@@ -10981,36 +11425,36 @@
|
|
|
10981
11425
|
<ul class="md-nav__list">
|
|
10982
11426
|
|
|
10983
11427
|
<li class="md-nav__item">
|
|
10984
|
-
<a href="#
|
|
11428
|
+
<a href="#added-in-v200rc-2" class="md-nav__link">
|
|
10985
11429
|
<span class="md-ellipsis">
|
|
10986
|
-
Added
|
|
11430
|
+
Added in v2.0.0.rc-2
|
|
10987
11431
|
</span>
|
|
10988
11432
|
</a>
|
|
10989
11433
|
|
|
10990
11434
|
</li>
|
|
10991
11435
|
|
|
10992
11436
|
<li class="md-nav__item">
|
|
10993
|
-
<a href="#
|
|
11437
|
+
<a href="#changed-in-v200rc-2" class="md-nav__link">
|
|
10994
11438
|
<span class="md-ellipsis">
|
|
10995
|
-
Changed
|
|
11439
|
+
Changed in v2.0.0.rc-2
|
|
10996
11440
|
</span>
|
|
10997
11441
|
</a>
|
|
10998
11442
|
|
|
10999
11443
|
</li>
|
|
11000
11444
|
|
|
11001
11445
|
<li class="md-nav__item">
|
|
11002
|
-
<a href="#
|
|
11446
|
+
<a href="#removed-in-v200rc-2" class="md-nav__link">
|
|
11003
11447
|
<span class="md-ellipsis">
|
|
11004
|
-
Removed
|
|
11448
|
+
Removed in v2.0.0.rc-2
|
|
11005
11449
|
</span>
|
|
11006
11450
|
</a>
|
|
11007
11451
|
|
|
11008
11452
|
</li>
|
|
11009
11453
|
|
|
11010
11454
|
<li class="md-nav__item">
|
|
11011
|
-
<a href="#
|
|
11455
|
+
<a href="#fixed-in-v200rc-2" class="md-nav__link">
|
|
11012
11456
|
<span class="md-ellipsis">
|
|
11013
|
-
Fixed
|
|
11457
|
+
Fixed in v2.0.0.rc-2
|
|
11014
11458
|
</span>
|
|
11015
11459
|
</a>
|
|
11016
11460
|
|
|
@@ -11032,63 +11476,63 @@
|
|
|
11032
11476
|
<ul class="md-nav__list">
|
|
11033
11477
|
|
|
11034
11478
|
<li class="md-nav__item">
|
|
11035
|
-
<a href="#
|
|
11479
|
+
<a href="#added-in-v200rc1" class="md-nav__link">
|
|
11036
11480
|
<span class="md-ellipsis">
|
|
11037
|
-
Added
|
|
11481
|
+
Added in v2.0.0rc1
|
|
11038
11482
|
</span>
|
|
11039
11483
|
</a>
|
|
11040
11484
|
|
|
11041
11485
|
</li>
|
|
11042
11486
|
|
|
11043
11487
|
<li class="md-nav__item">
|
|
11044
|
-
<a href="#
|
|
11488
|
+
<a href="#changed-in-v200rc1" class="md-nav__link">
|
|
11045
11489
|
<span class="md-ellipsis">
|
|
11046
|
-
Changed
|
|
11490
|
+
Changed in v2.0.0rc1
|
|
11047
11491
|
</span>
|
|
11048
11492
|
</a>
|
|
11049
11493
|
|
|
11050
11494
|
</li>
|
|
11051
11495
|
|
|
11052
11496
|
<li class="md-nav__item">
|
|
11053
|
-
<a href="#
|
|
11497
|
+
<a href="#removed-in-v200rc1" class="md-nav__link">
|
|
11054
11498
|
<span class="md-ellipsis">
|
|
11055
|
-
Removed
|
|
11499
|
+
Removed in v2.0.0rc1
|
|
11056
11500
|
</span>
|
|
11057
11501
|
</a>
|
|
11058
11502
|
|
|
11059
11503
|
</li>
|
|
11060
11504
|
|
|
11061
11505
|
<li class="md-nav__item">
|
|
11062
|
-
<a href="#
|
|
11506
|
+
<a href="#fixed-in-v200rc1" class="md-nav__link">
|
|
11063
11507
|
<span class="md-ellipsis">
|
|
11064
|
-
Fixed
|
|
11508
|
+
Fixed in v2.0.0rc1
|
|
11065
11509
|
</span>
|
|
11066
11510
|
</a>
|
|
11067
11511
|
|
|
11068
11512
|
</li>
|
|
11069
11513
|
|
|
11070
11514
|
<li class="md-nav__item">
|
|
11071
|
-
<a href="#
|
|
11515
|
+
<a href="#dependencies-in-v200rc1" class="md-nav__link">
|
|
11072
11516
|
<span class="md-ellipsis">
|
|
11073
|
-
Dependencies
|
|
11517
|
+
Dependencies in v2.0.0rc1
|
|
11074
11518
|
</span>
|
|
11075
11519
|
</a>
|
|
11076
11520
|
|
|
11077
11521
|
</li>
|
|
11078
11522
|
|
|
11079
11523
|
<li class="md-nav__item">
|
|
11080
|
-
<a href="#
|
|
11524
|
+
<a href="#documentation-in-v200rc1" class="md-nav__link">
|
|
11081
11525
|
<span class="md-ellipsis">
|
|
11082
|
-
Documentation
|
|
11526
|
+
Documentation in v2.0.0rc1
|
|
11083
11527
|
</span>
|
|
11084
11528
|
</a>
|
|
11085
11529
|
|
|
11086
11530
|
</li>
|
|
11087
11531
|
|
|
11088
11532
|
<li class="md-nav__item">
|
|
11089
|
-
<a href="#
|
|
11533
|
+
<a href="#housekeeping-in-v200rc1" class="md-nav__link">
|
|
11090
11534
|
<span class="md-ellipsis">
|
|
11091
|
-
Housekeeping
|
|
11535
|
+
Housekeeping in v2.0.0rc1
|
|
11092
11536
|
</span>
|
|
11093
11537
|
</a>
|
|
11094
11538
|
|
|
@@ -11110,63 +11554,63 @@
|
|
|
11110
11554
|
<ul class="md-nav__list">
|
|
11111
11555
|
|
|
11112
11556
|
<li class="md-nav__item">
|
|
11113
|
-
<a href="#
|
|
11557
|
+
<a href="#added-in-v200-beta2" class="md-nav__link">
|
|
11114
11558
|
<span class="md-ellipsis">
|
|
11115
|
-
Added
|
|
11559
|
+
Added in v2.0.0-beta.2
|
|
11116
11560
|
</span>
|
|
11117
11561
|
</a>
|
|
11118
11562
|
|
|
11119
11563
|
</li>
|
|
11120
11564
|
|
|
11121
11565
|
<li class="md-nav__item">
|
|
11122
|
-
<a href="#
|
|
11566
|
+
<a href="#changed-in-v200-beta2" class="md-nav__link">
|
|
11123
11567
|
<span class="md-ellipsis">
|
|
11124
|
-
Changed
|
|
11568
|
+
Changed in v2.0.0-beta.2
|
|
11125
11569
|
</span>
|
|
11126
11570
|
</a>
|
|
11127
11571
|
|
|
11128
11572
|
</li>
|
|
11129
11573
|
|
|
11130
11574
|
<li class="md-nav__item">
|
|
11131
|
-
<a href="#
|
|
11575
|
+
<a href="#removed-in-v200-beta2" class="md-nav__link">
|
|
11132
11576
|
<span class="md-ellipsis">
|
|
11133
|
-
Removed
|
|
11577
|
+
Removed in v2.0.0-beta.2
|
|
11134
11578
|
</span>
|
|
11135
11579
|
</a>
|
|
11136
11580
|
|
|
11137
11581
|
</li>
|
|
11138
11582
|
|
|
11139
11583
|
<li class="md-nav__item">
|
|
11140
|
-
<a href="#
|
|
11584
|
+
<a href="#fixed-in-v200-beta2" class="md-nav__link">
|
|
11141
11585
|
<span class="md-ellipsis">
|
|
11142
|
-
Fixed
|
|
11586
|
+
Fixed in v2.0.0-beta.2
|
|
11143
11587
|
</span>
|
|
11144
11588
|
</a>
|
|
11145
11589
|
|
|
11146
11590
|
</li>
|
|
11147
11591
|
|
|
11148
11592
|
<li class="md-nav__item">
|
|
11149
|
-
<a href="#
|
|
11593
|
+
<a href="#dependencies-in-v200-beta2" class="md-nav__link">
|
|
11150
11594
|
<span class="md-ellipsis">
|
|
11151
|
-
Dependencies
|
|
11595
|
+
Dependencies in v2.0.0-beta.2
|
|
11152
11596
|
</span>
|
|
11153
11597
|
</a>
|
|
11154
11598
|
|
|
11155
11599
|
</li>
|
|
11156
11600
|
|
|
11157
11601
|
<li class="md-nav__item">
|
|
11158
|
-
<a href="#
|
|
11602
|
+
<a href="#documentation-in-v200-beta2" class="md-nav__link">
|
|
11159
11603
|
<span class="md-ellipsis">
|
|
11160
|
-
Documentation
|
|
11604
|
+
Documentation in v2.0.0-beta.2
|
|
11161
11605
|
</span>
|
|
11162
11606
|
</a>
|
|
11163
11607
|
|
|
11164
11608
|
</li>
|
|
11165
11609
|
|
|
11166
11610
|
<li class="md-nav__item">
|
|
11167
|
-
<a href="#
|
|
11611
|
+
<a href="#housekeeping-in-v200-beta2" class="md-nav__link">
|
|
11168
11612
|
<span class="md-ellipsis">
|
|
11169
|
-
Housekeeping
|
|
11613
|
+
Housekeeping in v2.0.0-beta.2
|
|
11170
11614
|
</span>
|
|
11171
11615
|
</a>
|
|
11172
11616
|
|
|
@@ -11188,63 +11632,63 @@
|
|
|
11188
11632
|
<ul class="md-nav__list">
|
|
11189
11633
|
|
|
11190
11634
|
<li class="md-nav__item">
|
|
11191
|
-
<a href="#
|
|
11635
|
+
<a href="#added-in-v200-beta1" class="md-nav__link">
|
|
11192
11636
|
<span class="md-ellipsis">
|
|
11193
|
-
Added
|
|
11637
|
+
Added in v2.0.0-beta.1
|
|
11194
11638
|
</span>
|
|
11195
11639
|
</a>
|
|
11196
11640
|
|
|
11197
11641
|
</li>
|
|
11198
11642
|
|
|
11199
11643
|
<li class="md-nav__item">
|
|
11200
|
-
<a href="#
|
|
11644
|
+
<a href="#changed-in-v200-beta1" class="md-nav__link">
|
|
11201
11645
|
<span class="md-ellipsis">
|
|
11202
|
-
Changed
|
|
11646
|
+
Changed in v2.0.0-beta.1
|
|
11203
11647
|
</span>
|
|
11204
11648
|
</a>
|
|
11205
11649
|
|
|
11206
11650
|
</li>
|
|
11207
11651
|
|
|
11208
11652
|
<li class="md-nav__item">
|
|
11209
|
-
<a href="#
|
|
11653
|
+
<a href="#removed-in-v200-beta1" class="md-nav__link">
|
|
11210
11654
|
<span class="md-ellipsis">
|
|
11211
|
-
Removed
|
|
11655
|
+
Removed in v2.0.0-beta.1
|
|
11212
11656
|
</span>
|
|
11213
11657
|
</a>
|
|
11214
11658
|
|
|
11215
11659
|
</li>
|
|
11216
11660
|
|
|
11217
11661
|
<li class="md-nav__item">
|
|
11218
|
-
<a href="#
|
|
11662
|
+
<a href="#fixed-in-v200-beta1" class="md-nav__link">
|
|
11219
11663
|
<span class="md-ellipsis">
|
|
11220
|
-
Fixed
|
|
11664
|
+
Fixed in v2.0.0-beta.1
|
|
11221
11665
|
</span>
|
|
11222
11666
|
</a>
|
|
11223
11667
|
|
|
11224
11668
|
</li>
|
|
11225
11669
|
|
|
11226
11670
|
<li class="md-nav__item">
|
|
11227
|
-
<a href="#
|
|
11671
|
+
<a href="#dependencies-in-v200-beta1" class="md-nav__link">
|
|
11228
11672
|
<span class="md-ellipsis">
|
|
11229
|
-
Dependencies
|
|
11673
|
+
Dependencies in v2.0.0-beta.1
|
|
11230
11674
|
</span>
|
|
11231
11675
|
</a>
|
|
11232
11676
|
|
|
11233
11677
|
</li>
|
|
11234
11678
|
|
|
11235
11679
|
<li class="md-nav__item">
|
|
11236
|
-
<a href="#
|
|
11680
|
+
<a href="#documentation-in-v200-beta1" class="md-nav__link">
|
|
11237
11681
|
<span class="md-ellipsis">
|
|
11238
|
-
Documentation
|
|
11682
|
+
Documentation in v2.0.0-beta.1
|
|
11239
11683
|
</span>
|
|
11240
11684
|
</a>
|
|
11241
11685
|
|
|
11242
11686
|
</li>
|
|
11243
11687
|
|
|
11244
11688
|
<li class="md-nav__item">
|
|
11245
|
-
<a href="#
|
|
11689
|
+
<a href="#housekeeping-in-v200-beta1" class="md-nav__link">
|
|
11246
11690
|
<span class="md-ellipsis">
|
|
11247
|
-
Housekeeping
|
|
11691
|
+
Housekeeping in v2.0.0-beta.1
|
|
11248
11692
|
</span>
|
|
11249
11693
|
</a>
|
|
11250
11694
|
|
|
@@ -11266,45 +11710,45 @@
|
|
|
11266
11710
|
<ul class="md-nav__list">
|
|
11267
11711
|
|
|
11268
11712
|
<li class="md-nav__item">
|
|
11269
|
-
<a href="#
|
|
11713
|
+
<a href="#added-in-v200-alpha3" class="md-nav__link">
|
|
11270
11714
|
<span class="md-ellipsis">
|
|
11271
|
-
Added
|
|
11715
|
+
Added in v2.0.0-alpha.3
|
|
11272
11716
|
</span>
|
|
11273
11717
|
</a>
|
|
11274
11718
|
|
|
11275
11719
|
</li>
|
|
11276
11720
|
|
|
11277
11721
|
<li class="md-nav__item">
|
|
11278
|
-
<a href="#
|
|
11722
|
+
<a href="#changed-in-v200-alpha3" class="md-nav__link">
|
|
11279
11723
|
<span class="md-ellipsis">
|
|
11280
|
-
Changed
|
|
11724
|
+
Changed in v2.0.0-alpha.3
|
|
11281
11725
|
</span>
|
|
11282
11726
|
</a>
|
|
11283
11727
|
|
|
11284
11728
|
</li>
|
|
11285
11729
|
|
|
11286
11730
|
<li class="md-nav__item">
|
|
11287
|
-
<a href="#
|
|
11731
|
+
<a href="#removed-in-v200-alpha3" class="md-nav__link">
|
|
11288
11732
|
<span class="md-ellipsis">
|
|
11289
|
-
Removed
|
|
11733
|
+
Removed in v2.0.0-alpha.3
|
|
11290
11734
|
</span>
|
|
11291
11735
|
</a>
|
|
11292
11736
|
|
|
11293
11737
|
</li>
|
|
11294
11738
|
|
|
11295
11739
|
<li class="md-nav__item">
|
|
11296
|
-
<a href="#
|
|
11740
|
+
<a href="#dependencies-in-v200-alpha3" class="md-nav__link">
|
|
11297
11741
|
<span class="md-ellipsis">
|
|
11298
|
-
Dependencies
|
|
11742
|
+
Dependencies in v2.0.0-alpha.3
|
|
11299
11743
|
</span>
|
|
11300
11744
|
</a>
|
|
11301
11745
|
|
|
11302
11746
|
</li>
|
|
11303
11747
|
|
|
11304
11748
|
<li class="md-nav__item">
|
|
11305
|
-
<a href="#
|
|
11749
|
+
<a href="#housekeeping-in-v200-alpha3" class="md-nav__link">
|
|
11306
11750
|
<span class="md-ellipsis">
|
|
11307
|
-
Housekeeping
|
|
11751
|
+
Housekeeping in v2.0.0-alpha.3
|
|
11308
11752
|
</span>
|
|
11309
11753
|
</a>
|
|
11310
11754
|
|
|
@@ -11326,54 +11770,54 @@
|
|
|
11326
11770
|
<ul class="md-nav__list">
|
|
11327
11771
|
|
|
11328
11772
|
<li class="md-nav__item">
|
|
11329
|
-
<a href="#
|
|
11773
|
+
<a href="#added-in-v200-alpha2" class="md-nav__link">
|
|
11330
11774
|
<span class="md-ellipsis">
|
|
11331
|
-
Added
|
|
11775
|
+
Added in v2.0.0-alpha.2
|
|
11332
11776
|
</span>
|
|
11333
11777
|
</a>
|
|
11334
11778
|
|
|
11335
11779
|
</li>
|
|
11336
11780
|
|
|
11337
11781
|
<li class="md-nav__item">
|
|
11338
|
-
<a href="#
|
|
11782
|
+
<a href="#changed-in-v200-alpha2" class="md-nav__link">
|
|
11339
11783
|
<span class="md-ellipsis">
|
|
11340
|
-
Changed
|
|
11784
|
+
Changed in v2.0.0-alpha.2
|
|
11341
11785
|
</span>
|
|
11342
11786
|
</a>
|
|
11343
11787
|
|
|
11344
11788
|
</li>
|
|
11345
11789
|
|
|
11346
11790
|
<li class="md-nav__item">
|
|
11347
|
-
<a href="#
|
|
11791
|
+
<a href="#removed-in-v200-alpha2" class="md-nav__link">
|
|
11348
11792
|
<span class="md-ellipsis">
|
|
11349
|
-
Removed
|
|
11793
|
+
Removed in v2.0.0-alpha.2
|
|
11350
11794
|
</span>
|
|
11351
11795
|
</a>
|
|
11352
11796
|
|
|
11353
11797
|
</li>
|
|
11354
11798
|
|
|
11355
11799
|
<li class="md-nav__item">
|
|
11356
|
-
<a href="#
|
|
11800
|
+
<a href="#fixed-in-v200-alpha2" class="md-nav__link">
|
|
11357
11801
|
<span class="md-ellipsis">
|
|
11358
|
-
Fixed
|
|
11802
|
+
Fixed in v2.0.0-alpha.2
|
|
11359
11803
|
</span>
|
|
11360
11804
|
</a>
|
|
11361
11805
|
|
|
11362
11806
|
</li>
|
|
11363
11807
|
|
|
11364
11808
|
<li class="md-nav__item">
|
|
11365
|
-
<a href="#
|
|
11809
|
+
<a href="#dependencies-in-v200-alpha2" class="md-nav__link">
|
|
11366
11810
|
<span class="md-ellipsis">
|
|
11367
|
-
Dependencies
|
|
11811
|
+
Dependencies in v2.0.0-alpha.2
|
|
11368
11812
|
</span>
|
|
11369
11813
|
</a>
|
|
11370
11814
|
|
|
11371
11815
|
</li>
|
|
11372
11816
|
|
|
11373
11817
|
<li class="md-nav__item">
|
|
11374
|
-
<a href="#
|
|
11818
|
+
<a href="#housekeeping-in-v200-alpha2" class="md-nav__link">
|
|
11375
11819
|
<span class="md-ellipsis">
|
|
11376
|
-
Housekeeping
|
|
11820
|
+
Housekeeping in v2.0.0-alpha.2
|
|
11377
11821
|
</span>
|
|
11378
11822
|
</a>
|
|
11379
11823
|
|
|
@@ -11395,63 +11839,63 @@
|
|
|
11395
11839
|
<ul class="md-nav__list">
|
|
11396
11840
|
|
|
11397
11841
|
<li class="md-nav__item">
|
|
11398
|
-
<a href="#
|
|
11842
|
+
<a href="#added-in-v200-alpha1" class="md-nav__link">
|
|
11399
11843
|
<span class="md-ellipsis">
|
|
11400
|
-
Added
|
|
11844
|
+
Added in v2.0.0-alpha.1
|
|
11401
11845
|
</span>
|
|
11402
11846
|
</a>
|
|
11403
11847
|
|
|
11404
11848
|
</li>
|
|
11405
11849
|
|
|
11406
11850
|
<li class="md-nav__item">
|
|
11407
|
-
<a href="#
|
|
11851
|
+
<a href="#changed-in-v200-alpha1" class="md-nav__link">
|
|
11408
11852
|
<span class="md-ellipsis">
|
|
11409
|
-
Changed
|
|
11853
|
+
Changed in v2.0.0-alpha.1
|
|
11410
11854
|
</span>
|
|
11411
11855
|
</a>
|
|
11412
11856
|
|
|
11413
11857
|
</li>
|
|
11414
11858
|
|
|
11415
11859
|
<li class="md-nav__item">
|
|
11416
|
-
<a href="#
|
|
11860
|
+
<a href="#removed-in-v200-alpha1" class="md-nav__link">
|
|
11417
11861
|
<span class="md-ellipsis">
|
|
11418
|
-
Removed
|
|
11862
|
+
Removed in v2.0.0-alpha.1
|
|
11419
11863
|
</span>
|
|
11420
11864
|
</a>
|
|
11421
11865
|
|
|
11422
11866
|
</li>
|
|
11423
11867
|
|
|
11424
11868
|
<li class="md-nav__item">
|
|
11425
|
-
<a href="#
|
|
11869
|
+
<a href="#fixed-in-v200-alpha1" class="md-nav__link">
|
|
11426
11870
|
<span class="md-ellipsis">
|
|
11427
|
-
Fixed
|
|
11871
|
+
Fixed in v2.0.0-alpha.1
|
|
11428
11872
|
</span>
|
|
11429
11873
|
</a>
|
|
11430
11874
|
|
|
11431
11875
|
</li>
|
|
11432
11876
|
|
|
11433
11877
|
<li class="md-nav__item">
|
|
11434
|
-
<a href="#
|
|
11878
|
+
<a href="#dependencies-in-v200-alpha1" class="md-nav__link">
|
|
11435
11879
|
<span class="md-ellipsis">
|
|
11436
|
-
Dependencies
|
|
11880
|
+
Dependencies in v2.0.0-alpha.1
|
|
11437
11881
|
</span>
|
|
11438
11882
|
</a>
|
|
11439
11883
|
|
|
11440
11884
|
</li>
|
|
11441
11885
|
|
|
11442
11886
|
<li class="md-nav__item">
|
|
11443
|
-
<a href="#
|
|
11887
|
+
<a href="#documentation-in-v200-alpha1" class="md-nav__link">
|
|
11444
11888
|
<span class="md-ellipsis">
|
|
11445
|
-
Documentation
|
|
11889
|
+
Documentation in v2.0.0-alpha.1
|
|
11446
11890
|
</span>
|
|
11447
11891
|
</a>
|
|
11448
11892
|
|
|
11449
11893
|
</li>
|
|
11450
11894
|
|
|
11451
11895
|
<li class="md-nav__item">
|
|
11452
|
-
<a href="#
|
|
11896
|
+
<a href="#housekeeping-in-v200-alpha1" class="md-nav__link">
|
|
11453
11897
|
<span class="md-ellipsis">
|
|
11454
|
-
Housekeeping
|
|
11898
|
+
Housekeeping in v2.0.0-alpha.1
|
|
11455
11899
|
</span>
|
|
11456
11900
|
</a>
|
|
11457
11901
|
|
|
@@ -11480,8 +11924,6 @@
|
|
|
11480
11924
|
|
|
11481
11925
|
|
|
11482
11926
|
|
|
11483
|
-
<!-- markdownlint-disable MD024 -->
|
|
11484
|
-
|
|
11485
11927
|
<h1 id="nautobot-v20">Nautobot v2.0<a class="headerlink" href="#nautobot-v20" title="Permanent link">¶</a></h1>
|
|
11486
11928
|
<p>This document describes all new features and changes in Nautobot 2.0.</p>
|
|
11487
11929
|
<div class="admonition note">
|
|
@@ -11656,7 +12098,7 @@
|
|
|
11656
12098
|
<p>Now in v2.x, you are able to filter those <code>RackGroups</code> by their parent(s) names or UUID primary keys:</p>
|
|
11657
12099
|
<p><code>/dcim/rack-groups/?parent=<name></code> or <code>/dcim/rack-groups/?parent=<uuid></code></p>
|
|
11658
12100
|
<p>Check out the specific changes documented in the table at <a href="../user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html#enhanced-filter-fields">UI and REST API Filter Changes</a></p>
|
|
11659
|
-
<h4 id="generic-role-model-
|
|
12101
|
+
<h4 id="migration-to-generic-role-model-1063">Migration to Generic Role Model (<a href="https://github.com/nautobot/nautobot/issues/1063">#1063</a>)<a class="headerlink" href="#migration-to-generic-role-model-1063" title="Permanent link">¶</a></h4>
|
|
11660
12102
|
<p>The <code>DeviceRole</code>, <code>RackRole</code>, <code>ipam.Role</code>, and <code>IPAddressRoleChoices</code> have all been removed and replaced with a <code>extras.Role</code> model, This means that all references to any of the replaced models and choices now points to this generic role model.</p>
|
|
11661
12103
|
<p>In addition, the <code>role</code> field of the <code>IPAddress</code> model has also been changed from a choice field to a foreign key related field to the <code>extras.Role</code> model.</p>
|
|
11662
12104
|
<h4 id="job-overhaul-765">Job Overhaul (<a href="https://github.com/nautobot/nautobot/issues/765">#765</a>)<a class="headerlink" href="#job-overhaul-765" title="Permanent link">¶</a></h4>
|
|
@@ -11764,35 +12206,34 @@
|
|
|
11764
12206
|
<p>The <code>slug</code> field has been removed from all core models except for <code>GitRepository</code>. Generally, Nautobot URLs that referenced the <code>slug</code> field have been changed to use the primary key instead. For example, the URL for <code>https://nautobot/dcim/locations/building-01</code> would change to a URL similar to <code>https://nautobot/dcim/locations/e41f381a-a53b-485a-886f-9d36859b47a1</code>. There are a small number of URLs that still reference a value that's not the primary key, including some URLs related to secrets providers, cables and jobs.</p>
|
|
11765
12207
|
<p>A <code>natural_slug</code> property has been added to all models that inherit from <code>BaseModel</code> to provide a human-readable value for use in tools that require a loose reference to a Nautobot object, but this value is not equivalent to the <code>slug</code> field and is not guaranteed to be unique.</p>
|
|
11766
12208
|
<p>A natural key interface has been provided for most models to allow for uniquely referencing objects by a name that is friendlier than the primary key. For more information on the usage of natural keys vs primary keys see the documentation for <a href="../development/apps/api/platform-features/uniquely-identify-objects.html">Uniquely Identifying a Nautobot Object</a>.</p>
|
|
11767
|
-
<!-- towncrier release notes start -->
|
|
11768
12209
|
<h2 id="v206-2023-12-11">v2.0.6 (2023-12-11)<a class="headerlink" href="#v206-2023-12-11" title="Permanent link">¶</a></h2>
|
|
11769
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
12210
|
+
<h3 id="security-in-v206">Security in v2.0.6<a class="headerlink" href="#security-in-v206" title="Permanent link">¶</a></h3>
|
|
11770
12211
|
<ul>
|
|
11771
12212
|
<li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>~41.0.6</code> due to CVE-2023-49083. 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>
|
|
11772
12213
|
<li><a href="https://github.com/nautobot/nautobot/issues/4890">#4890</a> - Updated alpha UI dependency <code>@adobe/css-tools</code> to version 4.3.2 due to CVE-2023-48631.</li>
|
|
11773
12214
|
<li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
|
|
11774
12215
|
</ul>
|
|
11775
|
-
<h3 id="
|
|
12216
|
+
<h3 id="added-in-v206">Added in v2.0.6<a class="headerlink" href="#added-in-v206" title="Permanent link">¶</a></h3>
|
|
11776
12217
|
<ul>
|
|
11777
12218
|
<li><a href="https://github.com/nautobot/nautobot/issues/4854">#4854</a> - Added invocations of <code>clean()</code> methods to <code>save()</code> methods for <code>ComputedField</code>, <code>CustomField</code>, and <code>Relationship</code> models to protect against creation of invalid data.</li>
|
|
11778
12219
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
11779
12220
|
<li><a href="https://github.com/nautobot/nautobot/issues/4883">#4883</a> - Added <code>get_default_namespace</code> and <code>get_default_namespace_pk</code> methods to <code>nautobot.apps.models</code> API.</li>
|
|
11780
12221
|
</ul>
|
|
11781
|
-
<h3 id="
|
|
12222
|
+
<h3 id="changed-in-v206">Changed in v2.0.6<a class="headerlink" href="#changed-in-v206" title="Permanent link">¶</a></h3>
|
|
11782
12223
|
<ul>
|
|
11783
12224
|
<li><a href="https://github.com/nautobot/nautobot/issues/4813">#4813</a> - Changed <code>generate_secret_key.py</code> to use Python <code>secrets</code> library instead of <code>random</code>.</li>
|
|
11784
12225
|
</ul>
|
|
11785
|
-
<h3 id="
|
|
12226
|
+
<h3 id="removed-in-v206">Removed in v2.0.6<a class="headerlink" href="#removed-in-v206" title="Permanent link">¶</a></h3>
|
|
11786
12227
|
<ul>
|
|
11787
12228
|
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Removed unused <code>nautobot.extras.choices.JobSourceChoices</code>.</li>
|
|
11788
12229
|
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Removed check for <code>__init__.py</code> in <code>JOBS_ROOT</code> directory.</li>
|
|
11789
12230
|
<li><a href="https://github.com/nautobot/nautobot/issues/4858">#4858</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
|
|
11790
12231
|
</ul>
|
|
11791
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
12232
|
+
<h3 id="fixed-in-v206">Fixed in v2.0.6<a class="headerlink" href="#fixed-in-v206" title="Permanent link">¶</a></h3>
|
|
11792
12233
|
<ul>
|
|
11793
12234
|
<li><a href="https://github.com/nautobot/nautobot/issues/3488">#3488</a> - Corrected positioning and style of "Collapse All" button in Jobs list view.</li>
|
|
11794
12235
|
<li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
|
|
11795
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/4179">#4179</a> - Fixed error in creation of storage directories (GIT_ROOT
|
|
12236
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4179">#4179</a> - Fixed error in creation of storage directories (<code>GIT_ROOT</code>, <code>JOBS_ROOT</code>, <code>MEDIA_ROOT</code>, etc.) when running tests in parallel.</li>
|
|
11796
12237
|
<li><a href="https://github.com/nautobot/nautobot/issues/4747">#4747</a> - Fixed an issue when appending nautobot version to a static file path with existing query parameters resulted in an invalid URL generation.</li>
|
|
11797
12238
|
<li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed incorrect link in TenantGroup template.</li>
|
|
11798
12239
|
<li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed ConfigContext not applied to nested TenantGroup objects.</li>
|
|
@@ -11808,7 +12249,7 @@
|
|
|
11808
12249
|
<li><a href="https://github.com/nautobot/nautobot/issues/4911">#4911</a> - Fixed the ability to modify tags on Namespaces via the UI.</li>
|
|
11809
12250
|
<li><a href="https://github.com/nautobot/nautobot/issues/4922">#4922</a> - Fixed incorrect position of "actions" column in Location table view.</li>
|
|
11810
12251
|
</ul>
|
|
11811
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
12252
|
+
<h3 id="dependencies-in-v206">Dependencies in v2.0.6<a class="headerlink" href="#dependencies-in-v206" title="Permanent link">¶</a></h3>
|
|
11812
12253
|
<ul>
|
|
11813
12254
|
<li><a href="https://github.com/nautobot/nautobot/issues/4812">#4812</a> - Updated <code>django-tree-queries</code> to <code>0.16.1</code> to bring in some desired feature fixes.</li>
|
|
11814
12255
|
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency @rjsf/core to version 5.13.6.</li>
|
|
@@ -11817,27 +12258,27 @@
|
|
|
11817
12258
|
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency react-refresh to version 0.14.0.</li>
|
|
11818
12259
|
<li><a href="https://github.com/nautobot/nautobot/issues/4937">#4937</a> - Updated alpha UI dependency react-router-dom to version 6.18.0.</li>
|
|
11819
12260
|
</ul>
|
|
11820
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
12261
|
+
<h3 id="documentation-in-v206">Documentation in v2.0.6<a class="headerlink" href="#documentation-in-v206" title="Permanent link">¶</a></h3>
|
|
11821
12262
|
<ul>
|
|
11822
12263
|
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Updated documentation on jobs registration.</li>
|
|
11823
12264
|
<li><a href="https://github.com/nautobot/nautobot/issues/4871">#4871</a> - Removed some duplicate documentation links in the Feature Guides.</li>
|
|
11824
12265
|
<li><a href="https://github.com/nautobot/nautobot/issues/4923">#4923</a> - Fixed border for namespace image in docs.</li>
|
|
11825
12266
|
<li><a href="https://github.com/nautobot/nautobot/issues/4952">#4952</a> - Corrected spelling of "extensions" in the navigation menu.</li>
|
|
11826
12267
|
</ul>
|
|
11827
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
12268
|
+
<h3 id="housekeeping-in-v206">Housekeeping in v2.0.6<a class="headerlink" href="#housekeeping-in-v206" title="Permanent link">¶</a></h3>
|
|
11828
12269
|
<ul>
|
|
11829
12270
|
<li><a href="https://github.com/nautobot/nautobot/issues/4945">#4945</a> - Replaced calls to deprecated <code>is_safe_url()</code> Django API with <code>url_has_allowed_host_and_scheme()</code> replacement API.</li>
|
|
11830
12271
|
</ul>
|
|
11831
12272
|
<h2 id="v205-2023-11-21">v2.0.5 (2023-11-21)<a class="headerlink" href="#v205-2023-11-21" title="Permanent link">¶</a></h2>
|
|
11832
|
-
<h3 id="
|
|
12273
|
+
<h3 id="security-in-v205">Security in v2.0.5<a class="headerlink" href="#security-in-v205" title="Permanent link">¶</a></h3>
|
|
11833
12274
|
<ul>
|
|
11834
12275
|
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
|
|
11835
12276
|
</ul>
|
|
11836
|
-
<h3 id="
|
|
12277
|
+
<h3 id="changed-in-v205">Changed in v2.0.5<a class="headerlink" href="#changed-in-v205" title="Permanent link">¶</a></h3>
|
|
11837
12278
|
<ul>
|
|
11838
12279
|
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
|
|
11839
12280
|
</ul>
|
|
11840
|
-
<h3 id="
|
|
12281
|
+
<h3 id="fixed-in-v205">Fixed in v2.0.5<a class="headerlink" href="#fixed-in-v205" title="Permanent link">¶</a></h3>
|
|
11841
12282
|
<ul>
|
|
11842
12283
|
<li><a href="https://github.com/nautobot/nautobot/issues/3015">#3015</a> - Fixed multiple jobhooks and/or webhooks triggered by a single change.</li>
|
|
11843
12284
|
<li><a href="https://github.com/nautobot/nautobot/issues/3015">#3015</a> - Fixed change logging behavior to properly combine multiple changes to an object in the same request.</li>
|
|
@@ -11847,39 +12288,39 @@
|
|
|
11847
12288
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 86 MB to 31 MB.</li>
|
|
11848
12289
|
<li><a href="https://github.com/nautobot/nautobot/issues/4804">#4804</a> - Fixed VarbinaryIPField storing None or empty values as the binary representation of b'' thereby ignoring the non-null constraint on the field.</li>
|
|
11849
12290
|
</ul>
|
|
11850
|
-
<h3 id="
|
|
12291
|
+
<h3 id="dependencies-in-v205">Dependencies in v2.0.5<a class="headerlink" href="#dependencies-in-v205" title="Permanent link">¶</a></h3>
|
|
11851
12292
|
<ul>
|
|
11852
12293
|
<li><a href="https://github.com/nautobot/nautobot/issues/4615">#4615</a> - Updated <code>psycopg2-binary</code> dependency to version 2.9.9.</li>
|
|
11853
12294
|
<li><a href="https://github.com/nautobot/nautobot/issues/4615">#4615</a> - Updated <code>pylint</code> development dependency to version 2.17.7.</li>
|
|
11854
12295
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
|
|
11855
12296
|
</ul>
|
|
11856
|
-
<h3 id="
|
|
12297
|
+
<h3 id="documentation-in-v205">Documentation in v2.0.5<a class="headerlink" href="#documentation-in-v205" title="Permanent link">¶</a></h3>
|
|
11857
12298
|
<ul>
|
|
11858
12299
|
<li><a href="https://github.com/nautobot/nautobot/issues/4008">#4008</a> - Removed CacheOps reference from application stack diagram.</li>
|
|
11859
12300
|
</ul>
|
|
11860
|
-
<h3 id="
|
|
12301
|
+
<h3 id="housekeeping-in-v205">Housekeeping in v2.0.5<a class="headerlink" href="#housekeeping-in-v205" title="Permanent link">¶</a></h3>
|
|
11861
12302
|
<ul>
|
|
11862
12303
|
<li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Added unittest for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort fix in #4815.</li>
|
|
11863
12304
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
11864
12305
|
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
11865
12306
|
</ul>
|
|
11866
12307
|
<h2 id="v204-2023-11-13">v2.0.4 (2023-11-13)<a class="headerlink" href="#v204-2023-11-13" title="Permanent link">¶</a></h2>
|
|
11867
|
-
<h3 id="
|
|
12308
|
+
<h3 id="security-in-v204">Security in v2.0.4<a class="headerlink" href="#security-in-v204" title="Permanent link">¶</a></h3>
|
|
11868
12309
|
<ul>
|
|
11869
12310
|
<li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
|
|
11870
12311
|
<li><a href="https://github.com/nautobot/nautobot/issues/4782">#4782</a> - Updated alpha-UI dependency <code>axios</code> to version 1.6.0 due to CVE-2023-45857.</li>
|
|
11871
12312
|
</ul>
|
|
11872
|
-
<h3 id="
|
|
12313
|
+
<h3 id="added-in-v204">Added in v2.0.4<a class="headerlink" href="#added-in-v204" title="Permanent link">¶</a></h3>
|
|
11873
12314
|
<ul>
|
|
11874
12315
|
<li><a href="https://github.com/nautobot/nautobot/issues/4349">#4349</a> - Added Note List View.</li>
|
|
11875
12316
|
<li><a href="https://github.com/nautobot/nautobot/issues/4704">#4704</a> - Added missing Rack table to Role Detail View.</li>
|
|
11876
12317
|
<li><a href="https://github.com/nautobot/nautobot/issues/4709">#4709</a> - Added form field to allow assignment of IP addresses when creating a new Interface.</li>
|
|
11877
12318
|
</ul>
|
|
11878
|
-
<h3 id="
|
|
12319
|
+
<h3 id="changed-in-v204">Changed in v2.0.4<a class="headerlink" href="#changed-in-v204" title="Permanent link">¶</a></h3>
|
|
11879
12320
|
<ul>
|
|
11880
12321
|
<li><a href="https://github.com/nautobot/nautobot/issues/4709">#4709</a> - Changed order of fields displayed when editing an Interface to be the same as when creating a new Interface.</li>
|
|
11881
12322
|
</ul>
|
|
11882
|
-
<h3 id="
|
|
12323
|
+
<h3 id="fixed-in-v204">Fixed in v2.0.4<a class="headerlink" href="#fixed-in-v204" title="Permanent link">¶</a></h3>
|
|
11883
12324
|
<ul>
|
|
11884
12325
|
<li><a href="https://github.com/nautobot/nautobot/issues/3990">#3990</a> - Fixed the issue preventing associated Note objects from being deleted when the assigned object is deleted.</li>
|
|
11885
12326
|
<li><a href="https://github.com/nautobot/nautobot/issues/4626">#4626</a> - Fixed incorrect "Prefixes" link from VRF detail view.</li>
|
|
@@ -11898,7 +12339,7 @@
|
|
|
11898
12339
|
<li><a href="https://github.com/nautobot/nautobot/issues/4751">#4751</a> - Fixed a bug with <code>BaseModel.get_absolute_url</code> returning an AttributeError instead of raising it.</li>
|
|
11899
12340
|
<li><a href="https://github.com/nautobot/nautobot/issues/4779">#4779</a> - Fixed an error when syncing a git repo without a worker running.</li>
|
|
11900
12341
|
</ul>
|
|
11901
|
-
<h3 id="
|
|
12342
|
+
<h3 id="documentation-in-v204">Documentation in v2.0.4<a class="headerlink" href="#documentation-in-v204" title="Permanent link">¶</a></h3>
|
|
11902
12343
|
<ul>
|
|
11903
12344
|
<li><a href="https://github.com/nautobot/nautobot/issues/3927">#3927</a> - Fixed documentation for creating databases on PostgreSQL version 15.</li>
|
|
11904
12345
|
<li><a href="https://github.com/nautobot/nautobot/issues/4622">#4622</a> - Fixed docs incorrectly referencing Nautobot 1.5 as the LTM release for 1.x.</li>
|
|
@@ -11909,7 +12350,7 @@
|
|
|
11909
12350
|
<li><a href="https://github.com/nautobot/nautobot/issues/4720">#4720</a> - Added redeployment demo environment step to release-checklist.md.</li>
|
|
11910
12351
|
<li><a href="https://github.com/nautobot/nautobot/issues/4767">#4767</a> - Updated Job and App Developer docs to import from the <code>nautobot.apps</code> module throughout.</li>
|
|
11911
12352
|
</ul>
|
|
11912
|
-
<h3 id="
|
|
12353
|
+
<h3 id="housekeeping-in-v204">Housekeeping in v2.0.4<a class="headerlink" href="#housekeeping-in-v204" title="Permanent link">¶</a></h3>
|
|
11913
12354
|
<ul>
|
|
11914
12355
|
<li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Updated Apps upstream testing CI to use the correct branch pairings post-2.0.</li>
|
|
11915
12356
|
<li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
|
|
@@ -11917,53 +12358,53 @@
|
|
|
11917
12358
|
<li><a href="https://github.com/nautobot/nautobot/issues/4709">#4709</a> - Replaced a number of <code>ModelChoiceField</code> in DCIM forms with more appropriate <code>DynamicModelChoiceField</code>.</li>
|
|
11918
12359
|
</ul>
|
|
11919
12360
|
<h2 id="v203-2023-10-23">v2.0.3 (2023-10-23)<a class="headerlink" href="#v203-2023-10-23" title="Permanent link">¶</a></h2>
|
|
11920
|
-
<h3 id="
|
|
12361
|
+
<h3 id="security-in-v203">Security in v2.0.3<a class="headerlink" href="#security-in-v203" title="Permanent link">¶</a></h3>
|
|
11921
12362
|
<ul>
|
|
11922
12363
|
<li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11923
12364
|
<li><a href="https://github.com/nautobot/nautobot/issues/4673">#4673</a> - Fixed token exposure in <code>JobResult</code> traceback and result output when a <code>GitRepositorySync</code> job fails in certain ways.</li>
|
|
11924
12365
|
<li><a href="https://github.com/nautobot/nautobot/issues/4692">#4692</a> - Fixed potential exposure of hashed user password data on certain REST API endpoints when using the <code>?depth=1</code> query parameter. For more details, please refer to <a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hw-74xv-4gqp">GHSA-r2hw-74xv-4gqp</a>.</li>
|
|
11925
12366
|
</ul>
|
|
11926
|
-
<h3 id="
|
|
12367
|
+
<h3 id="added-in-v203">Added in v2.0.3<a class="headerlink" href="#added-in-v203" title="Permanent link">¶</a></h3>
|
|
11927
12368
|
<ul>
|
|
11928
12369
|
<li><a href="https://github.com/nautobot/nautobot/issues/4612">#4612</a> - Added validation step to handle invalid/legacy filters from v1.x in DynamicGroup form validation.</li>
|
|
11929
12370
|
<li><a href="https://github.com/nautobot/nautobot/issues/4668">#4668</a> - Added an <code>ENABLE_ALPHA_UI</code> configuration option to the settings, which is initially set to False. When set to True, this option enables the "Alpha UI 2.0" feature.</li>
|
|
11930
12371
|
</ul>
|
|
11931
|
-
<h3 id="
|
|
12372
|
+
<h3 id="changed-in-v203">Changed in v2.0.3<a class="headerlink" href="#changed-in-v203" title="Permanent link">¶</a></h3>
|
|
11932
12373
|
<ul>
|
|
11933
12374
|
<li><a href="https://github.com/nautobot/nautobot/issues/4668">#4668</a> - Changed the flag <code>--no-build-ui</code> to <code>--build-ui</code>, and its default value to False for the <code>nautobot-server post-upgrade</code> command.</li>
|
|
11934
12375
|
</ul>
|
|
11935
|
-
<h3 id="
|
|
12376
|
+
<h3 id="fixed-in-v203">Fixed in v2.0.3<a class="headerlink" href="#fixed-in-v203" title="Permanent link">¶</a></h3>
|
|
11936
12377
|
<ul>
|
|
11937
12378
|
<li><a href="https://github.com/nautobot/nautobot/issues/4604">#4604</a> - Fixed <code>post_upgrade</code> bug involving potential left over references to Aggregate, DeviceRole, and RackRole ContentTypes in ObjectChange records.</li>
|
|
11938
12379
|
<li><a href="https://github.com/nautobot/nautobot/issues/4608">#4608</a> - Fixed error <code>'IPAddressBulkAddForm' has no field named 'parent'</code> when bulk creating IPs via UI.</li>
|
|
11939
12380
|
<li><a href="https://github.com/nautobot/nautobot/issues/4676">#4676</a> - Ensured that <code>ScheduledJob.job_class</code> values are correctly transferred to <code>ScheduledJob.task</code> during v2 migration.</li>
|
|
11940
12381
|
<li><a href="https://github.com/nautobot/nautobot/issues/4692">#4692</a> - Fixed incorrect inheritance of <code>Meta</code> attributes into nested serializers (<code>depth >= 1</code>).</li>
|
|
11941
12382
|
</ul>
|
|
11942
|
-
<h3 id="
|
|
12383
|
+
<h3 id="documentation-in-v203">Documentation in v2.0.3<a class="headerlink" href="#documentation-in-v203" title="Permanent link">¶</a></h3>
|
|
11943
12384
|
<ul>
|
|
11944
12385
|
<li><a href="https://github.com/nautobot/nautobot/issues/4669">#4669</a> - Added redirects from 1.x documentation paths to their 2.x equivalents to fix broken links/bookmarks.</li>
|
|
11945
12386
|
</ul>
|
|
11946
|
-
<h3 id="
|
|
12387
|
+
<h3 id="housekeeping-in-v203">Housekeeping in v2.0.3<a class="headerlink" href="#housekeeping-in-v203" title="Permanent link">¶</a></h3>
|
|
11947
12388
|
<ul>
|
|
11948
12389
|
<li><a href="https://github.com/nautobot/nautobot/issues/4692">#4692</a> - Added check in REST API generic test cases to detect strings like <code>password</code> and <code>sha256</code> that shouldn't generally appear in REST API responses.</li>
|
|
11949
12390
|
</ul>
|
|
11950
12391
|
<h2 id="v202-2023-10-16">v2.0.2 (2023-10-16)<a class="headerlink" href="#v202-2023-10-16" title="Permanent link">¶</a></h2>
|
|
11951
|
-
<h3 id="
|
|
12392
|
+
<h3 id="security-in-v202">Security in v2.0.2<a class="headerlink" href="#security-in-v202" title="Permanent link">¶</a></h3>
|
|
11952
12393
|
<ul>
|
|
11953
12394
|
<li><a href="https://github.com/nautobot/nautobot/issues/4586">#4586</a> - Updated <code>urllib3</code> to 2.0.6 due to CVE-2023-43804. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11954
12395
|
<li><a href="https://github.com/nautobot/nautobot/issues/4621">#4621</a> - Updated <code>postcss</code> <code>npm</code> package to 8.4.31 to address CVE-2023-44270.</li>
|
|
11955
12396
|
<li><a href="https://github.com/nautobot/nautobot/issues/4652">#4652</a> - Updated <code>babel/traverse</code> <code>npm</code> dependency to 7.23.2 to address CVE-2023-45133.</li>
|
|
11956
12397
|
</ul>
|
|
11957
|
-
<h3 id="
|
|
12398
|
+
<h3 id="added-in-v202">Added in v2.0.2<a class="headerlink" href="#added-in-v202" title="Permanent link">¶</a></h3>
|
|
11958
12399
|
<ul>
|
|
11959
12400
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
11960
12401
|
<li><a href="https://github.com/nautobot/nautobot/issues/4607">#4607</a> - Added <code>nautobot-server audit_graphql_queries</code> management command for evaluating breaking filter changes to existing GraphQLQuery instances.</li>
|
|
11961
12402
|
</ul>
|
|
11962
|
-
<h3 id="
|
|
12403
|
+
<h3 id="changed-in-v202">Changed in v2.0.2<a class="headerlink" href="#changed-in-v202" title="Permanent link">¶</a></h3>
|
|
11963
12404
|
<ul>
|
|
11964
12405
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
11965
12406
|
</ul>
|
|
11966
|
-
<h3 id="
|
|
12407
|
+
<h3 id="fixed-in-v202">Fixed in v2.0.2<a class="headerlink" href="#fixed-in-v202" title="Permanent link">¶</a></h3>
|
|
11967
12408
|
<ul>
|
|
11968
12409
|
<li><a href="https://github.com/nautobot/nautobot/issues/4472">#4472</a> - Fixed incorrect logic in <code>nautobot_config.py.j2</code> template that wouldn't detect the MySQL engine when Prometheus metrics are enabled.</li>
|
|
11969
12410
|
<li><a href="https://github.com/nautobot/nautobot/issues/4547">#4547</a> - Fixed incorrect form field type for <code>DeviceFilterForm.device_redundancy_group_priority</code>.</li>
|
|
@@ -11971,7 +12412,7 @@
|
|
|
11971
12412
|
<li><a href="https://github.com/nautobot/nautobot/issues/4603">#4603</a> - Fixed a bug that makes Manufacturers list fail to load.</li>
|
|
11972
12413
|
<li><a href="https://github.com/nautobot/nautobot/issues/4639">#4639</a> - Fixed the ability to attach images to Locations.</li>
|
|
11973
12414
|
</ul>
|
|
11974
|
-
<h3 id="
|
|
12415
|
+
<h3 id="documentation-in-v202">Documentation in v2.0.2<a class="headerlink" href="#documentation-in-v202" title="Permanent link">¶</a></h3>
|
|
11975
12416
|
<ul>
|
|
11976
12417
|
<li><a href="https://github.com/nautobot/nautobot/issues/4591">#4591</a> - Fixed incorrect documentation of <code>FEEDBACK_BUTTON_ENABLED</code> configuration setting.</li>
|
|
11977
12418
|
<li><a href="https://github.com/nautobot/nautobot/issues/4591">#4591</a> - Fixed a number of missing app code-reference links in the documentation table of contents.</li>
|
|
@@ -11980,33 +12421,33 @@
|
|
|
11980
12421
|
<li><a href="https://github.com/nautobot/nautobot/issues/4613">#4613</a> - Changed CLI reference from <code>dns</code> to <code>dnf</code> for install on RHEL systems.</li>
|
|
11981
12422
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
11982
12423
|
</ul>
|
|
11983
|
-
<h3 id="
|
|
12424
|
+
<h3 id="housekeeping-in-v202">Housekeeping in v2.0.2<a class="headerlink" href="#housekeeping-in-v202" title="Permanent link">¶</a></h3>
|
|
11984
12425
|
<ul>
|
|
11985
12426
|
<li><a href="https://github.com/nautobot/nautobot/issues/4611">#4611</a> - Updated pylint to use multiple threads.</li>
|
|
11986
12427
|
</ul>
|
|
11987
12428
|
<h2 id="v201-2023-10-04">v2.0.1 (2023-10-04)<a class="headerlink" href="#v201-2023-10-04" title="Permanent link">¶</a></h2>
|
|
11988
|
-
<h3 id="
|
|
12429
|
+
<h3 id="fixed-in-v201">Fixed in v2.0.1<a class="headerlink" href="#fixed-in-v201" title="Permanent link">¶</a></h3>
|
|
11989
12430
|
<ul>
|
|
11990
12431
|
<li><a href="https://github.com/nautobot/nautobot/issues/4436">#4436</a> - Allowed Interfaces of type <code>Virtual</code>, <code>LAG</code>, and <code>Bridge</code> to be selected as a virtual Interface's <code>parent</code>.</li>
|
|
11991
12432
|
<li><a href="https://github.com/nautobot/nautobot/issues/4572">#4572</a> - Fixed a JS crash when using list view search box to filter objects in legacy UI.</li>
|
|
11992
12433
|
</ul>
|
|
11993
|
-
<h3 id="
|
|
12434
|
+
<h3 id="housekeeping-in-v201">Housekeeping in v2.0.1<a class="headerlink" href="#housekeeping-in-v201" title="Permanent link">¶</a></h3>
|
|
11994
12435
|
<ul>
|
|
11995
12436
|
<li><a href="https://github.com/nautobot/nautobot/issues/4523">#4523</a> - Fixed <code>invoke eslint</code> not running against local development environment.</li>
|
|
11996
12437
|
<li><a href="https://github.com/nautobot/nautobot/issues/4552">#4552</a> - Improved <code>test_bulk_delete_form_contains_all_filtered</code> and <code>test_bulk_edit_form_contains_all_filtered</code> generic tests to fail more gracefully if insufficient test data is available.</li>
|
|
11997
12438
|
</ul>
|
|
11998
12439
|
<h2 id="v200-2023-09-28">v2.0.0 (2023-09-28)<a class="headerlink" href="#v200-2023-09-28" title="Permanent link">¶</a></h2>
|
|
11999
|
-
<h3 id="
|
|
12440
|
+
<h3 id="added-in-v200">Added in v2.0.0<a class="headerlink" href="#added-in-v200" title="Permanent link">¶</a></h3>
|
|
12000
12441
|
<ul>
|
|
12001
12442
|
<li><a href="https://github.com/nautobot/nautobot/issues/4553">#4553</a> - Implement table sticky headers.</li>
|
|
12002
12443
|
</ul>
|
|
12003
|
-
<h3 id="
|
|
12444
|
+
<h3 id="fixed-in-v200">Fixed in v2.0.0<a class="headerlink" href="#fixed-in-v200" title="Permanent link">¶</a></h3>
|
|
12004
12445
|
<ul>
|
|
12005
12446
|
<li><a href="https://github.com/nautobot/nautobot/issues/4550">#4550</a> - Fixed a 500 error caused by <code>PrefixForm</code> when <code>prefix_length</code> was omitted from <code>prefix</code> input.</li>
|
|
12006
12447
|
<li><a href="https://github.com/nautobot/nautobot/issues/4559">#4559</a> - Fixed behavior of a <code>DynamicGroup</code> with an invalid <code>filter</code> to fail closed rather than failing open.</li>
|
|
12007
12448
|
<li><a href="https://github.com/nautobot/nautobot/issues/4566">#4566</a> - Fixed table sticky headers in Firefox.</li>
|
|
12008
12449
|
</ul>
|
|
12009
|
-
<h3 id="
|
|
12450
|
+
<h3 id="documentation-in-v200">Documentation in v2.0.0<a class="headerlink" href="#documentation-in-v200" title="Permanent link">¶</a></h3>
|
|
12010
12451
|
<ul>
|
|
12011
12452
|
<li><a href="https://github.com/nautobot/nautobot/issues/4489">#4489</a> - Added release note overview to Jobs Overhaul.</li>
|
|
12012
12453
|
<li><a href="https://github.com/nautobot/nautobot/issues/4492">#4492</a> - Added slug removal documentation to the 2.0 release notes Release Overview.</li>
|
|
@@ -12014,11 +12455,11 @@
|
|
|
12014
12455
|
<li><a href="https://github.com/nautobot/nautobot/issues/4556">#4556</a> - Added documentation for using lowercase variables in App provided Constance Config.</li>
|
|
12015
12456
|
</ul>
|
|
12016
12457
|
<h2 id="v200rc-4-2023-09-27">v2.0.0.rc-4 (2023-09-27)<a class="headerlink" href="#v200rc-4-2023-09-27" title="Permanent link">¶</a></h2>
|
|
12017
|
-
<h3 id="
|
|
12458
|
+
<h3 id="security-in-v200-rc4">Security in v2.0.0-rc.4<a class="headerlink" href="#security-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12018
12459
|
<ul>
|
|
12019
12460
|
<li><a href="https://github.com/nautobot/nautobot/issues/4500">#4500</a> - Updated <code>cryptography</code> to 41.0.4 due to <a href="https://github.com/advisories/GHSA-v8gr-m533-ghj9">GHSA-v8gr-m533-ghj9</a>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12020
12461
|
</ul>
|
|
12021
|
-
<h3 id="
|
|
12462
|
+
<h3 id="added-in-v200-rc4">Added in v2.0.0-rc.4<a class="headerlink" href="#added-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12022
12463
|
<ul>
|
|
12023
12464
|
<li><a href="https://github.com/nautobot/nautobot/issues/4103">#4103</a> - Added UI viewset for detail/list/import/export views of <code>IPAddressToInterface</code> objects.</li>
|
|
12024
12465
|
<li><a href="https://github.com/nautobot/nautobot/issues/4418">#4418</a> - Added <code>netutils_parser</code> to <code>network_driver</code>.</li>
|
|
@@ -12034,7 +12475,7 @@
|
|
|
12034
12475
|
<li><a href="https://github.com/nautobot/nautobot/issues/4477">#4477</a> - Added the <code>slugify</code> Django template tag as a Jinja filter.</li>
|
|
12035
12476
|
<li><a href="https://github.com/nautobot/nautobot/issues/4524">#4524</a> - Added optional <code>api</code> parameter to <code>NotesMixin.get_notes_url()</code> model method.</li>
|
|
12036
12477
|
</ul>
|
|
12037
|
-
<h3 id="
|
|
12478
|
+
<h3 id="changed-in-v200-rc4">Changed in v2.0.0-rc.4<a class="headerlink" href="#changed-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12038
12479
|
<ul>
|
|
12039
12480
|
<li><a href="https://github.com/nautobot/nautobot/issues/2472">#2472</a> - Added <code>tagged_vlans</code> and <code>untagged_vlan</code> as selected/prefetched in (VM)Interface API views.</li>
|
|
12040
12481
|
<li><a href="https://github.com/nautobot/nautobot/issues/2472">#2472</a> - Added <code>ip_addresses</code> as prefetched in VMInterface API views.</li>
|
|
@@ -12048,13 +12489,13 @@
|
|
|
12048
12489
|
<li><a href="https://github.com/nautobot/nautobot/issues/4426">#4426</a> - Changed <code>fix_custom_fields</code> to skip models without any custom fields.</li>
|
|
12049
12490
|
<li><a href="https://github.com/nautobot/nautobot/issues/4462">#4462</a> - Updated new UI to use REST API FilterSet metadata to populate filter form.</li>
|
|
12050
12491
|
</ul>
|
|
12051
|
-
<h3 id="
|
|
12492
|
+
<h3 id="removed-in-v200-rc4">Removed in v2.0.0-rc.4<a class="headerlink" href="#removed-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12052
12493
|
<ul>
|
|
12053
12494
|
<li><a href="https://github.com/nautobot/nautobot/issues/4425">#4425</a> - Removed composite key from new UI object-detail "Advanced" tab.</li>
|
|
12054
12495
|
<li><a href="https://github.com/nautobot/nautobot/issues/4448">#4448</a> - Removed composite key from user-facing interfaces (API, UI).</li>
|
|
12055
12496
|
<li><a href="https://github.com/nautobot/nautobot/issues/4538">#4538</a> - Removed unnecessary dependency on <code>semver</code> npm package.</li>
|
|
12056
12497
|
</ul>
|
|
12057
|
-
<h3 id="
|
|
12498
|
+
<h3 id="fixed-in-v200-rc4">Fixed in v2.0.0-rc.4<a class="headerlink" href="#fixed-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12058
12499
|
<ul>
|
|
12059
12500
|
<li><a href="https://github.com/nautobot/nautobot/issues/4033">#4033</a> - Fixed filtering objects in bulk edit and bulk delete.</li>
|
|
12060
12501
|
<li><a href="https://github.com/nautobot/nautobot/issues/4327">#4327</a> - Fixed a case where an ObjectChange would not be created when making an M2M change via the ORM.</li>
|
|
@@ -12076,12 +12517,12 @@
|
|
|
12076
12517
|
<li><a href="https://github.com/nautobot/nautobot/issues/4524">#4524</a> - Fixed an exception in REST API <code>/notes/</code> action endpoints that was inadvertently introduced in #4517.</li>
|
|
12077
12518
|
<li><a href="https://github.com/nautobot/nautobot/issues/4535">#4535</a> - Fixed off-by-one error in new UI date processing.</li>
|
|
12078
12519
|
</ul>
|
|
12079
|
-
<h3 id="
|
|
12520
|
+
<h3 id="dependencies-in-v200-rc4">Dependencies in v2.0.0-rc.4<a class="headerlink" href="#dependencies-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12080
12521
|
<ul>
|
|
12081
12522
|
<li><a href="https://github.com/nautobot/nautobot/issues/4418">#4418</a> - Dependency <code>netutils</code> updated to <code>^1.6.0</code>.</li>
|
|
12082
12523
|
<li><a href="https://github.com/nautobot/nautobot/issues/4538">#4538</a> - Updated npm dependencies via <code>npm update</code>.</li>
|
|
12083
12524
|
</ul>
|
|
12084
|
-
<h3 id="
|
|
12525
|
+
<h3 id="documentation-in-v200-rc4">Documentation in v2.0.0-rc.4<a class="headerlink" href="#documentation-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12085
12526
|
<ul>
|
|
12086
12527
|
<li><a href="https://github.com/nautobot/nautobot/issues/3303">#3303</a> - Added additional section headers to the Release Overview of Nautobot 2.0 release notes.</li>
|
|
12087
12528
|
<li><a href="https://github.com/nautobot/nautobot/issues/3303">#3303</a> - Added TODO comments for each additional section header.</li>
|
|
@@ -12096,17 +12537,17 @@
|
|
|
12096
12537
|
<li><a href="https://github.com/nautobot/nautobot/issues/4493">#4493</a> - Reordered overview items in the 2.0 release-notes.</li>
|
|
12097
12538
|
<li><a href="https://github.com/nautobot/nautobot/issues/4507">#4507</a> - Added Data Validation Engine to list of apps in docs.</li>
|
|
12098
12539
|
</ul>
|
|
12099
|
-
<h3 id="
|
|
12540
|
+
<h3 id="housekeeping-in-v200-rc4">Housekeeping in v2.0.0-rc.4<a class="headerlink" href="#housekeeping-in-v200-rc4" title="Permanent link">¶</a></h3>
|
|
12100
12541
|
<ul>
|
|
12101
12542
|
<li><a href="https://github.com/nautobot/nautobot/issues/4479">#4479</a> - Configured <code>npm</code> in Docker image to use 30s timeout, pinned <code>npm</code> to 9.X, and changed Docker build to use <code>npm ci</code> instead of <code>npm install</code> to improve builds.</li>
|
|
12102
12543
|
<li><a href="https://github.com/nautobot/nautobot/issues/4524">#4524</a> - Added <code>test_notes_url_functionality</code> test case to <code>APIViewTestCases.NotesURLViewTestCase</code> generic test class.</li>
|
|
12103
12544
|
</ul>
|
|
12104
12545
|
<h2 id="v200-rc3-2023-09-15">v2.0.0-rc.3 (2023-09-15)<a class="headerlink" href="#v200-rc3-2023-09-15" title="Permanent link">¶</a></h2>
|
|
12105
|
-
<h3 id="
|
|
12546
|
+
<h3 id="security-in-v200-rc3">Security in v2.0.0-rc.3<a class="headerlink" href="#security-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12106
12547
|
<ul>
|
|
12107
12548
|
<li><a href="https://github.com/nautobot/nautobot/issues/3880">#3880</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
|
|
12108
12549
|
</ul>
|
|
12109
|
-
<h3 id="
|
|
12550
|
+
<h3 id="added-in-v200-rc3">Added in v2.0.0-rc.3<a class="headerlink" href="#added-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12110
12551
|
<ul>
|
|
12111
12552
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Added <code>Namespace</code> column to <code>VRFDeviceAssignmentTable</code> and <code>VRFPrefixAssignmentTable</code> to display assigned VRFs' <code>namespace</code> property.</li>
|
|
12112
12553
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Added <code>namespace</code> attribute to rendering of "IP Addresses" columns of relevant <code>Interface</code> and <code>InterfaceRedundancyGroup</code> tables.</li>
|
|
@@ -12116,7 +12557,7 @@
|
|
|
12116
12557
|
<li><a href="https://github.com/nautobot/nautobot/issues/4249">#4249</a> - Added REST API endpoint for the IPAddressToInterface model.</li>
|
|
12117
12558
|
<li><a href="https://github.com/nautobot/nautobot/issues/4346">#4346</a> - Implemented <code>.natural_slug</code> property on all models.</li>
|
|
12118
12559
|
</ul>
|
|
12119
|
-
<h3 id="
|
|
12560
|
+
<h3 id="changed-in-v200-rc3">Changed in v2.0.0-rc.3<a class="headerlink" href="#changed-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12120
12561
|
<ul>
|
|
12121
12562
|
<li><a href="https://github.com/nautobot/nautobot/issues/4012">#4012</a> - Disable non ready Model View in new-ui sidebar.</li>
|
|
12122
12563
|
<li><a href="https://github.com/nautobot/nautobot/issues/4015">#4015</a> - Refined new-UI IPAddress detail view.</li>
|
|
@@ -12126,14 +12567,14 @@
|
|
|
12126
12567
|
<li><a href="https://github.com/nautobot/nautobot/issues/4333">#4333</a> - Updated Dockerfile not to use Python virtual environment.</li>
|
|
12127
12568
|
<li><a href="https://github.com/nautobot/nautobot/issues/4440">#4440</a> - Fixed an issues with ModelForm's that used <code>__all__</code> on <code>Meta.fields</code> and <code>custom_fields</code> displayed a JSON blob.</li>
|
|
12128
12569
|
</ul>
|
|
12129
|
-
<h3 id="
|
|
12570
|
+
<h3 id="removed-in-v200-rc3">Removed in v2.0.0-rc.3<a class="headerlink" href="#removed-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12130
12571
|
<ul>
|
|
12131
12572
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Removed <code>ip_family</code> queryset annotation from <code>PrefixQuerySet</code> and <code>IPAddressQuerySet</code>.</li>
|
|
12132
12573
|
<li><a href="https://github.com/nautobot/nautobot/issues/4011">#4011</a> - Removed the "disable menu" feature for non-NewUI ready menu links in the sidebar and NavBar.</li>
|
|
12133
12574
|
<li><a href="https://github.com/nautobot/nautobot/issues/4015">#4015</a> - Removed <code>tags</code>, <code>custom-fields</code>, <code>computed-fields</code>, <code>relationships</code> from new-UI object detail</li>
|
|
12134
12575
|
<li><a href="https://github.com/nautobot/nautobot/issues/4017">#4017</a> - Removed <code>notes_url</code> from new-UI object detail views.</li>
|
|
12135
12576
|
</ul>
|
|
12136
|
-
<h3 id="
|
|
12577
|
+
<h3 id="fixed-in-v200-rc3">Fixed in v2.0.0-rc.3<a class="headerlink" href="#fixed-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12137
12578
|
<ul>
|
|
12138
12579
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Fixed validation logic for VirtualMachine primary ips.</li>
|
|
12139
12580
|
<li><a href="https://github.com/nautobot/nautobot/issues/4010">#4010</a> - Fixed error not being raised when an invalid parent is provided to the IPAddress in both the API and ORM.</li>
|
|
@@ -12145,7 +12586,7 @@
|
|
|
12145
12586
|
<li><a href="https://github.com/nautobot/nautobot/issues/4388">#4388</a> - Fixed a bug that makes ConfigContexts applied to parent locations missing from rendered config context of child location Devices/Virtual Machines.</li>
|
|
12146
12587
|
<li><a href="https://github.com/nautobot/nautobot/issues/4407">#4407</a> - Fixed Dockerfile Node.js <code>setup_XX.x</code> <a href="https://github.com/nodesource/distributions#new-update-%EF%B8%8F">deprecated script</a>.</li>
|
|
12147
12588
|
</ul>
|
|
12148
|
-
<h3 id="
|
|
12589
|
+
<h3 id="documentation-in-v200-rc3">Documentation in v2.0.0-rc.3<a class="headerlink" href="#documentation-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12149
12590
|
<ul>
|
|
12150
12591
|
<li><a href="https://github.com/nautobot/nautobot/issues/2821">#2821</a> - Adds navigation.footer to mkdocs features to enable navigation in the footer.</li>
|
|
12151
12592
|
<li><a href="https://github.com/nautobot/nautobot/issues/2821">#2821</a> - Updates installation documentation into a single path, using tabs for MySQL/PostgeSQL & Ubuntu/Debian/RHEL.</li>
|
|
@@ -12157,7 +12598,7 @@
|
|
|
12157
12598
|
<li><a href="https://github.com/nautobot/nautobot/issues/4326">#4326</a> - Update documentation on Nautobot release workflow.</li>
|
|
12158
12599
|
<li><a href="https://github.com/nautobot/nautobot/issues/4429">#4429</a> - Updated the pylint-nautobot migration steps.</li>
|
|
12159
12600
|
</ul>
|
|
12160
|
-
<h3 id="
|
|
12601
|
+
<h3 id="housekeeping-in-v200-rc3">Housekeeping in v2.0.0-rc.3<a class="headerlink" href="#housekeeping-in-v200-rc3" title="Permanent link">¶</a></h3>
|
|
12161
12602
|
<ul>
|
|
12162
12603
|
<li><a href="https://github.com/nautobot/nautobot/issues/2821">#2821</a> - Updates docker-compose standalone to docker compose plugin to assist in development environment.</li>
|
|
12163
12604
|
<li><a href="https://github.com/nautobot/nautobot/issues/4310">#4310</a> - Updated CI integration workflow to remove some redundant tests, run more tests in parallel and remove arm64 platform from the container build.</li>
|
|
@@ -12166,11 +12607,11 @@
|
|
|
12166
12607
|
<li><a href="https://github.com/nautobot/nautobot/issues/4409">#4409</a> - Updated upstream testing workflow for apps to test against LTM and 2.0 with <code>ltm-1.6</code> and <code>develop</code> branch tags respectively.</li>
|
|
12167
12608
|
</ul>
|
|
12168
12609
|
<h2 id="v200rc-2-2023-08-24">v2.0.0.rc-2 (2023-08-24)<a class="headerlink" href="#v200rc-2-2023-08-24" title="Permanent link">¶</a></h2>
|
|
12169
|
-
<h3 id="
|
|
12610
|
+
<h3 id="added-in-v200rc-2">Added in v2.0.0.rc-2<a class="headerlink" href="#added-in-v200rc-2" title="Permanent link">¶</a></h3>
|
|
12170
12611
|
<ul>
|
|
12171
12612
|
<li><a href="https://github.com/nautobot/nautobot/issues/3794">#3794</a> - Added support for multi-column keys for CSV Import.</li>
|
|
12172
12613
|
</ul>
|
|
12173
|
-
<h3 id="
|
|
12614
|
+
<h3 id="changed-in-v200rc-2">Changed in v2.0.0.rc-2<a class="headerlink" href="#changed-in-v200rc-2" title="Permanent link">¶</a></h3>
|
|
12174
12615
|
<ul>
|
|
12175
12616
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Renamed <code>IPAddress</code> <code>vrf</code> filter to <code>vrfs</code>.</li>
|
|
12176
12617
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Renamed <code>Prefix</code> <code>mask_length</code> filter to <code>prefix_length</code> and <code>vrf</code> filter to <code>vrfs</code>.</li>
|
|
@@ -12183,21 +12624,21 @@
|
|
|
12183
12624
|
<li><a href="https://github.com/nautobot/nautobot/issues/2853">#2853</a> - Changed <code>as_form_class</code>, <code>as_form</code> and <code>validate_data</code> functions on BaseJob Model to <code>classmethods</code>.</li>
|
|
12184
12625
|
<li><a href="https://github.com/nautobot/nautobot/issues/4305">#4305</a> - Merged develop back into next after release 1.6.1</li>
|
|
12185
12626
|
</ul>
|
|
12186
|
-
<h3 id="
|
|
12627
|
+
<h3 id="removed-in-v200rc-2">Removed in v2.0.0.rc-2<a class="headerlink" href="#removed-in-v200rc-2" title="Permanent link">¶</a></h3>
|
|
12187
12628
|
<ul>
|
|
12188
12629
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Removed <code>RouteTarget</code> <code>exporting_vrf_id</code> and <code>importing_vrf_id</code> filters as they are redundant with the <code>exporting_vrfs</code> and <code>importing_vrfs</code> filters.</li>
|
|
12189
12630
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Removed <code>Service</code> <code>device_id</code> and <code>virtual_machine_id</code> filters as they are redundant with the <code>device</code> and <code>virtual_machine</code> filters.</li>
|
|
12190
12631
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Removed <code>VRF</code> <code>export_target_id</code> and <code>import_target_id</code> filters as they are redundant with the <code>export_targets</code> and <code>import_targets</code> filters.</li>
|
|
12191
12632
|
<li><a href="https://github.com/nautobot/nautobot/issues/2853">#2853</a> - Removed <code>/extras/jobs/results/<uuid:pk>/</code> URL endpoint.</li>
|
|
12192
12633
|
</ul>
|
|
12193
|
-
<h3 id="
|
|
12634
|
+
<h3 id="fixed-in-v200rc-2">Fixed in v2.0.0.rc-2<a class="headerlink" href="#fixed-in-v200rc-2" title="Permanent link">¶</a></h3>
|
|
12194
12635
|
<ul>
|
|
12195
12636
|
<li><a href="https://github.com/nautobot/nautobot/issues/2807">#2807</a> - Fixed misnamed <code>tag</code> fields on various filter forms (correct filter name is now <code>tags</code>).</li>
|
|
12196
12637
|
<li><a href="https://github.com/nautobot/nautobot/issues/4299">#4299</a> - Added missing <code>to_field_name</code> attribute on <code>TagFilterField</code>, which was causing dynamic-group filtering failures.</li>
|
|
12197
12638
|
<li><a href="https://github.com/nautobot/nautobot/issues/4300">#4300</a> - Fixed a permission issue when using <code>final-dev</code> containers by switching to root user before exposing port and entrypoint.</li>
|
|
12198
12639
|
</ul>
|
|
12199
12640
|
<h2 id="v200rc1-2023-08-18">v2.0.0rc1 (2023-08-18)<a class="headerlink" href="#v200rc1-2023-08-18" title="Permanent link">¶</a></h2>
|
|
12200
|
-
<h3 id="
|
|
12641
|
+
<h3 id="added-in-v200rc1">Added in v2.0.0rc1<a class="headerlink" href="#added-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12201
12642
|
<ul>
|
|
12202
12643
|
<li><a href="https://github.com/nautobot/nautobot/issues/1175">#1175</a> - Added "Submit Feedback" functionality to the new UI.</li>
|
|
12203
12644
|
<li><a href="https://github.com/nautobot/nautobot/issues/3582">#3582</a> - The 'GetFilterSetFieldDOMElementAPIView' now has the option to return the filterset field's DOM element in JSON format.</li>
|
|
@@ -12217,7 +12658,7 @@
|
|
|
12217
12658
|
<li><a href="https://github.com/nautobot/nautobot/issues/4225">#4225</a> - Added Namespace to IPAddressDetailTable.</li>
|
|
12218
12659
|
<li><a href="https://github.com/nautobot/nautobot/issues/4228">#4228</a> - Incorporated all code changes from Nautobot 1.6.0.</li>
|
|
12219
12660
|
</ul>
|
|
12220
|
-
<h3 id="
|
|
12661
|
+
<h3 id="changed-in-v200rc1">Changed in v2.0.0rc1<a class="headerlink" href="#changed-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12221
12662
|
<ul>
|
|
12222
12663
|
<li><a href="https://github.com/nautobot/nautobot/issues/3229">#3229</a> - Rename JobResult.data to JobResult.result and delete the original JobResult.result.</li>
|
|
12223
12664
|
<li><a href="https://github.com/nautobot/nautobot/issues/3636">#3636</a> - Reintroduced "Assign IP Address" button to Device Interfaces list view.</li>
|
|
@@ -12243,7 +12684,7 @@
|
|
|
12243
12684
|
<li><a href="https://github.com/nautobot/nautobot/issues/4164">#4164</a> - Modified docker dev stage to run as root user to prevent permission issues with bind mounts.</li>
|
|
12244
12685
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
|
|
12245
12686
|
</ul>
|
|
12246
|
-
<h3 id="
|
|
12687
|
+
<h3 id="removed-in-v200rc1">Removed in v2.0.0rc1<a class="headerlink" href="#removed-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12247
12688
|
<ul>
|
|
12248
12689
|
<li><a href="https://github.com/nautobot/nautobot/issues/3761">#3761</a> - Remove remaining <code>Site</code> and <code>Region</code> references from core docs.</li>
|
|
12249
12690
|
<li><a href="https://github.com/nautobot/nautobot/issues/3892">#3892</a> - Removed unused method <code>get_job_result_and_repository_record</code> in <code>nautobot.extras.datasources.git</code>.</li>
|
|
@@ -12251,7 +12692,7 @@
|
|
|
12251
12692
|
<li><a href="https://github.com/nautobot/nautobot/issues/4104">#4104</a> - Removed unused <code>primary_for_device</code> from Interface data migration.</li>
|
|
12252
12693
|
<li><a href="https://github.com/nautobot/nautobot/issues/4115">#4115</a> - Removed temporary code from <code>ObjectEditView</code> that was working around some IPAddress/Prefix form validation gaps.</li>
|
|
12253
12694
|
</ul>
|
|
12254
|
-
<h3 id="
|
|
12695
|
+
<h3 id="fixed-in-v200rc1">Fixed in v2.0.0rc1<a class="headerlink" href="#fixed-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12255
12696
|
<ul>
|
|
12256
12697
|
<li><a href="https://github.com/nautobot/nautobot/issues/3904">#3904</a> - Added proper spacing/alignment to pagination section.</li>
|
|
12257
12698
|
<li><a href="https://github.com/nautobot/nautobot/issues/3974">#3974</a> - Corrected the natural-key definitions for <code>ComputedField</code>, <code>CustomField</code>, <code>FileAttachment</code>, <code>ImageAttachment</code>, <code>ObjectChange</code>, <code>Relationship</code>, <code>RelationshipAssociation</code>, and <code>Token</code> models.</li>
|
|
@@ -12268,7 +12709,7 @@
|
|
|
12268
12709
|
<li><a href="https://github.com/nautobot/nautobot/issues/4154">#4154</a> - Added useEffect to fix the <code>last_page</code> in Pagination from not updating dynamically.</li>
|
|
12269
12710
|
<li><a href="https://github.com/nautobot/nautobot/issues/4241">#4241</a> - Added a timeout and exception handling to the <code>nautobot-server send_installation_metrics</code> command.</li>
|
|
12270
12711
|
</ul>
|
|
12271
|
-
<h3 id="
|
|
12712
|
+
<h3 id="dependencies-in-v200rc1">Dependencies in v2.0.0rc1<a class="headerlink" href="#dependencies-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12272
12713
|
<ul>
|
|
12273
12714
|
<li><a href="https://github.com/nautobot/nautobot/issues/4125">#4125</a> - Added support for Python 3.11.</li>
|
|
12274
12715
|
<li><a href="https://github.com/nautobot/nautobot/issues/4125">#4125</a> - Updated <code>django-auth-ldap</code> optional dependency to <code>~4.3.0</code>.</li>
|
|
@@ -12298,7 +12739,7 @@
|
|
|
12298
12739
|
<li><a href="https://github.com/nautobot/nautobot/issues/4143">#4143</a> - Updated <code>packaging</code> dependency to <code>~23.1</code>.</li>
|
|
12299
12740
|
<li><a href="https://github.com/nautobot/nautobot/issues/4143">#4143</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.6</code>.</li>
|
|
12300
12741
|
</ul>
|
|
12301
|
-
<h3 id="
|
|
12742
|
+
<h3 id="documentation-in-v200rc1">Documentation in v2.0.0rc1<a class="headerlink" href="#documentation-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12302
12743
|
<ul>
|
|
12303
12744
|
<li><a href="https://github.com/nautobot/nautobot/issues/3330">#3330</a> - Added UI configuration documentation.</li>
|
|
12304
12745
|
<li><a href="https://github.com/nautobot/nautobot/issues/3386">#3386</a> - Added documentation linking to best practices for database backup.</li>
|
|
@@ -12310,7 +12751,7 @@
|
|
|
12310
12751
|
<li><a href="https://github.com/nautobot/nautobot/issues/4061">#4061</a> - Fixed a few broken links in the documentation.</li>
|
|
12311
12752
|
<li><a href="https://github.com/nautobot/nautobot/issues/4091">#4091</a> - Added information about installing and running Node.js as a part of the Nautobot installation documentation.</li>
|
|
12312
12753
|
</ul>
|
|
12313
|
-
<h3 id="
|
|
12754
|
+
<h3 id="housekeeping-in-v200rc1">Housekeeping in v2.0.0rc1<a class="headerlink" href="#housekeeping-in-v200rc1" title="Permanent link">¶</a></h3>
|
|
12314
12755
|
<ul>
|
|
12315
12756
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
|
|
12316
12757
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
@@ -12325,7 +12766,7 @@
|
|
|
12325
12766
|
<li><a href="https://github.com/nautobot/nautobot/issues/4285">#4285</a> - Fixed <code>next</code> container build workflow.</li>
|
|
12326
12767
|
</ul>
|
|
12327
12768
|
<h2 id="v200-beta2-2023-07-07">v2.0.0-beta.2 (2023-07-07)<a class="headerlink" href="#v200-beta2-2023-07-07" title="Permanent link">¶</a></h2>
|
|
12328
|
-
<h3 id="
|
|
12769
|
+
<h3 id="added-in-v200-beta2">Added in v2.0.0-beta.2<a class="headerlink" href="#added-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12329
12770
|
<ul>
|
|
12330
12771
|
<li><a href="https://github.com/nautobot/nautobot/issues/3287">#3287</a> - Added <code>nautobot-server audit_dynamic_groups</code> management command for evaluating breaking filter changes to existing DynamicGroup instances.</li>
|
|
12331
12772
|
<li><a href="https://github.com/nautobot/nautobot/issues/3526">#3526</a> - Added detail view UI layout config.</li>
|
|
@@ -12343,7 +12784,7 @@
|
|
|
12343
12784
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Added <code>parent</code> filter for <code>Prefix</code> objects.</li>
|
|
12344
12785
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Added warning messages when creating or editing a <code>Prefix</code> or <code>IPAddress</code> that does not follow prefix <code>type</code> guidance.</li>
|
|
12345
12786
|
</ul>
|
|
12346
|
-
<h3 id="
|
|
12787
|
+
<h3 id="changed-in-v200-beta2">Changed in v2.0.0-beta.2<a class="headerlink" href="#changed-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12347
12788
|
<ul>
|
|
12348
12789
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Changed many FilterSet filters to filter on (name or ID) instead of (slug or ID) since the relevant model <code>slug</code> fields have been removed.</li>
|
|
12349
12790
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Changed FilterSet filters referring to <code>DeviceType</code> objects to filter on (model or ID) instead of (slug or ID).</li>
|
|
@@ -12357,7 +12798,7 @@
|
|
|
12357
12798
|
<li><a href="https://github.com/nautobot/nautobot/issues/3424">#3424</a> - Added <code>IPAddress.type</code> field and moved DHCP/SLAAC status to types.</li>
|
|
12358
12799
|
<li><a href="https://github.com/nautobot/nautobot/issues/3634">#3634</a> - Restored <code>assigned_to_interface</code> as a <code>RelatedMembershipBooleanFilter</code> with name <code>has_interface_assignments</code> on <code>IPAddressFilterSet</code>.</li>
|
|
12359
12800
|
<li><a href="https://github.com/nautobot/nautobot/issues/3634">#3634</a> - Restored <code>present_in_vrf</code> and <code>present_in_vrf_id</code> filters on <code>IPAddressFilterSet</code>.</li>
|
|
12360
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3725">#3725</a> - Changed REST API nested hyperlink to a brief object representation consisting of its ID, URL, and object_type
|
|
12801
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3725">#3725</a> - Changed REST API nested hyperlink to a brief object representation consisting of its ID, URL, and <code>object_type</code>.</li>
|
|
12361
12802
|
<li><a href="https://github.com/nautobot/nautobot/issues/3748">#3748</a> - Updated API serializers to support Namespaces and unskip unit tests</li>
|
|
12362
12803
|
<li><a href="https://github.com/nautobot/nautobot/issues/3770">#3770</a> - Modified the text color to be gray-1 for the sidebarNav components.</li>
|
|
12363
12804
|
<li><a href="https://github.com/nautobot/nautobot/issues/3770">#3770</a> - In Layout.js, also made the 'Return to Legacy UI' link gray-1 for consistency.</li>
|
|
@@ -12390,7 +12831,7 @@
|
|
|
12390
12831
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Changed <code>Prefix.type</code> validation with respect to parents and children from strictly-enforced to advisory-only for 2.0.</li>
|
|
12391
12832
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Changed <code>parent</code> filter on <code>IPAddress</code> to be exact-match by PK; the previously present filter is renamed to <code>prefix</code>.</li>
|
|
12392
12833
|
</ul>
|
|
12393
|
-
<h3 id="
|
|
12834
|
+
<h3 id="removed-in-v200-beta2">Removed in v2.0.0-beta.2<a class="headerlink" href="#removed-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12394
12835
|
<ul>
|
|
12395
12836
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Removed <code>DeviceType.slug</code> field.</li>
|
|
12396
12837
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Removed <code>Location.slug</code> field.</li>
|
|
@@ -12412,7 +12853,7 @@
|
|
|
12412
12853
|
<li><a href="https://github.com/nautobot/nautobot/issues/3941">#3941</a> - Removed <code>namespace, name</code> uniqueness constraint on <code>VRF</code>.</li>
|
|
12413
12854
|
<li><a href="https://github.com/nautobot/nautobot/issues/3941">#3941</a> - Removed some overly verbose messaging in IPAM migration utilities.</li>
|
|
12414
12855
|
</ul>
|
|
12415
|
-
<h3 id="
|
|
12856
|
+
<h3 id="fixed-in-v200-beta2">Fixed in v2.0.0-beta.2<a class="headerlink" href="#fixed-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12416
12857
|
<ul>
|
|
12417
12858
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Corrected leftover "natural key slug" reference in <code>object_bulk_create.html</code>.</li>
|
|
12418
12859
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Fixed leftover reference to <code>GraphQLQuery.slug</code> in <code>CustomGraphQLView</code>.</li>
|
|
@@ -12444,18 +12885,18 @@
|
|
|
12444
12885
|
<li><a href="https://github.com/nautobot/nautobot/issues/4005">#4005</a> - Added logic to catch and report errors when registering a Job to the database.</li>
|
|
12445
12886
|
<li><a href="https://github.com/nautobot/nautobot/issues/4005">#4005</a> - Added logic to Job class <code>@classproperty</code> methods to enforce correct data types.</li>
|
|
12446
12887
|
</ul>
|
|
12447
|
-
<h3 id="
|
|
12888
|
+
<h3 id="dependencies-in-v200-beta2">Dependencies in v2.0.0-beta.2<a class="headerlink" href="#dependencies-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12448
12889
|
<ul>
|
|
12449
12890
|
<li><a href="https://github.com/nautobot/nautobot/issues/3883">#3883</a> - Updated nautobot-ui package in next.</li>
|
|
12450
12891
|
</ul>
|
|
12451
|
-
<h3 id="
|
|
12892
|
+
<h3 id="documentation-in-v200-beta2">Documentation in v2.0.0-beta.2<a class="headerlink" href="#documentation-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12452
12893
|
<ul>
|
|
12453
12894
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Revised development best-practices documentation around the inclusion of <code>slug</code> fields in models.</li>
|
|
12454
12895
|
<li><a href="https://github.com/nautobot/nautobot/issues/3847">#3847</a> - Corrected out-of-date information about <code>class_path</code> in the Jobs documentation.</li>
|
|
12455
12896
|
<li><a href="https://github.com/nautobot/nautobot/issues/3940">#3940</a> - Added Jobs migration docs.</li>
|
|
12456
12897
|
<li><a href="https://github.com/nautobot/nautobot/issues/4005">#4005</a> - Fixed incorrect documentation about how to register Jobs from an app.</li>
|
|
12457
12898
|
</ul>
|
|
12458
|
-
<h3 id="
|
|
12899
|
+
<h3 id="housekeeping-in-v200-beta2">Housekeeping in v2.0.0-beta.2<a class="headerlink" href="#housekeeping-in-v200-beta2" title="Permanent link">¶</a></h3>
|
|
12459
12900
|
<ul>
|
|
12460
12901
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Corrected incorrect logic in generic view test <code>test_list_objects_filtered</code> and <code>test_list_objects_unknown_filter_strict_filtering</code>.</li>
|
|
12461
12902
|
<li><a href="https://github.com/nautobot/nautobot/issues/3424">#3424</a> - Unskipped <code>nautobot.ipam.tests.test_forms.IPAddressFormTest</code></li>
|
|
@@ -12469,7 +12910,7 @@
|
|
|
12469
12910
|
<li><a href="https://github.com/nautobot/nautobot/issues/4078">#4078</a> - Fixed prerelease workflow referenced <code>ci_integration.yml</code> file.</li>
|
|
12470
12911
|
</ul>
|
|
12471
12912
|
<h2 id="v200-beta1-2023-06-06">v2.0.0-beta.1 (2023-06-06)<a class="headerlink" href="#v200-beta1-2023-06-06" title="Permanent link">¶</a></h2>
|
|
12472
|
-
<h3 id="
|
|
12913
|
+
<h3 id="added-in-v200-beta1">Added in v2.0.0-beta.1<a class="headerlink" href="#added-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12473
12914
|
<ul>
|
|
12474
12915
|
<li><a href="https://github.com/nautobot/nautobot/issues/851">#851</a> - Added list view with CSV import/export buttons for <code>CircuitTermination</code> objects.</li>
|
|
12475
12916
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Added <code>created</code> and <code>last_updated</code> fields on the <code>VMInterface</code> model. When migrating to this release, these fields will default to <code>None</code> for any pre-existing instances of this model.</li>
|
|
@@ -12504,7 +12945,7 @@
|
|
|
12504
12945
|
<li><a href="https://github.com/nautobot/nautobot/issues/3804">#3804</a> - Added feature to redirect all add and edit views to legacy UI.</li>
|
|
12505
12946
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Added <code>bool</code> return value for <code>Nautobot.extras.datasources.git.ensure_git_repository()</code> to indicate whether the filesystem was changed.</li>
|
|
12506
12947
|
</ul>
|
|
12507
|
-
<h3 id="
|
|
12948
|
+
<h3 id="changed-in-v200-beta1">Changed in v2.0.0-beta.1<a class="headerlink" href="#changed-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12508
12949
|
<ul>
|
|
12509
12950
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - The base class for all <code>tags</code> fields on <code>PrimaryModel</code> subclasses is now <code>nautobot.core.models.fields.TagsField</code> rather than <code>taggit.managers.TaggableManager</code>. Any apps using <code>PrimaryModel</code> as a base class will likely need to generate and run a schema migration to reflect this change.</li>
|
|
12510
12951
|
<li><a href="https://github.com/nautobot/nautobot/issues/2331">#2331</a> - Changed <code>JobLogEntry.log_level</code> choices from <code>default</code>, <code>info</code>, <code>success</code>, <code>warning</code>, <code>failure</code> to Python default logging levels <code>debug</code>, <code>info</code>, <code>warning</code>, <code>error</code> and <code>critical</code>.</li>
|
|
@@ -12549,7 +12990,7 @@
|
|
|
12549
12990
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Changed <code>Job.runnable</code> property to not consider whether the <code>job_class</code> is set, as a performance optimization.</li>
|
|
12550
12991
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Changed client-side slug construction (legacy UI) to use underscores rather than dashes.</li>
|
|
12551
12992
|
</ul>
|
|
12552
|
-
<h3 id="
|
|
12993
|
+
<h3 id="removed-in-v200-beta1">Removed in v2.0.0-beta.1<a class="headerlink" href="#removed-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12553
12994
|
<ul>
|
|
12554
12995
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed <code>nautobot.extras.utils.is_taggable</code>; use <code>nautobot.core.models.utils.is_taggable</code> instead.</li>
|
|
12555
12996
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed backward-compatibility with <code>taggit</code> 1.x Python API; instead of <code>object.tags.set(tag1, tag2, tag3)</code> you must now do <code>object.tags.set([tag1, tag2, tag3])</code>.</li>
|
|
@@ -12575,7 +13016,7 @@
|
|
|
12575
13016
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Removed <code>source</code> and <code>slug</code> filters for Jobs.</li>
|
|
12576
13017
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Removed <code>get_jobs()</code>, <code>get_job_classpaths()</code>, <code>jobs_in_directory()</code> functions.</li>
|
|
12577
13018
|
</ul>
|
|
12578
|
-
<h3 id="
|
|
13019
|
+
<h3 id="fixed-in-v200-beta1">Fixed in v2.0.0-beta.1<a class="headerlink" href="#fixed-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12579
13020
|
<ul>
|
|
12580
13021
|
<li><a href="https://github.com/nautobot/nautobot/issues/3437">#3437</a> - Fixed the possibility of inadvertently applying the same <code>Tag</code> to the same object multiple times by adding appropriate uniqueness constraints on the <code>TaggedItem</code> through table.</li>
|
|
12581
13022
|
<li><a href="https://github.com/nautobot/nautobot/issues/3518">#3518</a> - Fixed an error seen when running the <code>extras.0061_collect_roles_from_related_apps_roles</code> migration.</li>
|
|
@@ -12606,16 +13047,16 @@
|
|
|
12606
13047
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Removed leftover/non-functional <code>Source</code> tab from <code>job_approval_request.html</code>.</li>
|
|
12607
13048
|
<li><a href="https://github.com/nautobot/nautobot/issues/3864">#3864</a> - Fixed cases where Device.role was null, incongruent with the enforcement in the API and UI.</li>
|
|
12608
13049
|
</ul>
|
|
12609
|
-
<h3 id="
|
|
13050
|
+
<h3 id="dependencies-in-v200-beta1">Dependencies in v2.0.0-beta.1<a class="headerlink" href="#dependencies-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12610
13051
|
<ul>
|
|
12611
13052
|
<li><a href="https://github.com/nautobot/nautobot/issues/1721">#1721</a> - Removed dependency on <code>django-cacheops</code>.</li>
|
|
12612
13053
|
<li><a href="https://github.com/nautobot/nautobot/issues/3672">#3672</a> - Changed <code>napalm</code> dependency to 4.x release in order to allow Netmiko 4.x to install. Dependency resolution resulted in removing the following packages: <code>ciscoconfparse</code>, <code>deprecat</code>, <code>dnspython</code>, <code>loguru</code>, <code>toml</code>, <code>win32-setctime</code>.</li>
|
|
12613
13054
|
</ul>
|
|
12614
|
-
<h3 id="
|
|
13055
|
+
<h3 id="documentation-in-v200-beta1">Documentation in v2.0.0-beta.1<a class="headerlink" href="#documentation-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12615
13056
|
<ul>
|
|
12616
13057
|
<li><a href="https://github.com/nautobot/nautobot/issues/3591">#3591</a> - Fixed a few errors in the v2.0 migration documentation.</li>
|
|
12617
13058
|
</ul>
|
|
12618
|
-
<h3 id="
|
|
13059
|
+
<h3 id="housekeeping-in-v200-beta1">Housekeeping in v2.0.0-beta.1<a class="headerlink" href="#housekeeping-in-v200-beta1" title="Permanent link">¶</a></h3>
|
|
12619
13060
|
<ul>
|
|
12620
13061
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed monkey-patching of <code>taggit.managers.TaggableManager</code>.</li>
|
|
12621
13062
|
<li><a href="https://github.com/nautobot/nautobot/issues/3378">#3378</a> - Re-enabled skipped tests.</li>
|
|
@@ -12628,11 +13069,11 @@
|
|
|
12628
13069
|
<li><a href="https://github.com/nautobot/nautobot/issues/3840">#3840</a> - Moved test Jobs from <code>nautobot/extras/tests/example_jobs/test_*.py</code> to <code>nautobot/extras/test_jobs/*.py</code> to avoid unnecessary loading by the <code>unittest</code> runner.</li>
|
|
12629
13070
|
</ul>
|
|
12630
13071
|
<h2 id="v200-alpha3-2023-04-13">v2.0.0-alpha.3 (2023-04-13)<a class="headerlink" href="#v200-alpha3-2023-04-13" title="Permanent link">¶</a></h2>
|
|
12631
|
-
<h3 id="
|
|
13072
|
+
<h3 id="added-in-v200-alpha3">Added in v2.0.0-alpha.3<a class="headerlink" href="#added-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
12632
13073
|
<ul>
|
|
12633
13074
|
<li><a href="https://github.com/nautobot/nautobot/issues/3337">#3337</a> - Add <code>Namespace</code> model to IPAM.</li>
|
|
12634
13075
|
</ul>
|
|
12635
|
-
<h3 id="
|
|
13076
|
+
<h3 id="changed-in-v200-alpha3">Changed in v2.0.0-alpha.3<a class="headerlink" href="#changed-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
12636
13077
|
<ul>
|
|
12637
13078
|
<li><a href="https://github.com/nautobot/nautobot/issues/2915">#2915</a> - Implemented a concrete <code>parent</code> relationship from <code>Prefix</code> to itself.</li>
|
|
12638
13079
|
<li><a href="https://github.com/nautobot/nautobot/issues/3337">#3337</a> - Changed Prefix and other model uniqueness to center around Namespace model.</li>
|
|
@@ -12640,12 +13081,12 @@
|
|
|
12640
13081
|
<li><a href="https://github.com/nautobot/nautobot/issues/3439">#3439</a> - Changed the GraphQL <code>execute_saved_query</code> function's argument from <code>saved_query_slug</code> to <code>saved_query_name</code>.</li>
|
|
12641
13082
|
<li><a href="https://github.com/nautobot/nautobot/issues/3523">#3523</a> - Renamed <code>nat_outside</code> field on IPAddress serializer to <code>nat_outside_list</code> for self-consistency.</li>
|
|
12642
13083
|
</ul>
|
|
12643
|
-
<h3 id="
|
|
13084
|
+
<h3 id="removed-in-v200-alpha3">Removed in v2.0.0-alpha.3<a class="headerlink" href="#removed-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
12644
13085
|
<ul>
|
|
12645
13086
|
<li><a href="https://github.com/nautobot/nautobot/issues/3439">#3439</a> - Removed <code>slug</code> field from many database models.</li>
|
|
12646
13087
|
<li><a href="https://github.com/nautobot/nautobot/issues/3523">#3523</a> - Removed <code>nat_outside</code> getter-setter in IPAddress model.</li>
|
|
12647
13088
|
</ul>
|
|
12648
|
-
<h3 id="
|
|
13089
|
+
<h3 id="dependencies-in-v200-alpha3">Dependencies in v2.0.0-alpha.3<a class="headerlink" href="#dependencies-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
12649
13090
|
<ul>
|
|
12650
13091
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Dropped support for Python 3.7. Python 3.8 is now the minimum version required by Nautobot.</li>
|
|
12651
13092
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated <code>django-auth-ldap</code> dependency to <code>~4.2.0</code>.</li>
|
|
@@ -12661,12 +13102,12 @@
|
|
|
12661
13102
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.2.0</code>.</li>
|
|
12662
13103
|
<li><a href="https://github.com/nautobot/nautobot/issues/3525">#3525</a> - Added explicit dependency on <code>packaging</code> that had been inadvertently omitted.</li>
|
|
12663
13104
|
</ul>
|
|
12664
|
-
<h3 id="
|
|
13105
|
+
<h3 id="housekeeping-in-v200-alpha3">Housekeeping in v2.0.0-alpha.3<a class="headerlink" href="#housekeeping-in-v200-alpha3" title="Permanent link">¶</a></h3>
|
|
12665
13106
|
<ul>
|
|
12666
13107
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
12667
13108
|
</ul>
|
|
12668
13109
|
<h2 id="v200-alpha2-2023-03-29">v2.0.0-alpha.2 (2023-03-29)<a class="headerlink" href="#v200-alpha2-2023-03-29" title="Permanent link">¶</a></h2>
|
|
12669
|
-
<h3 id="
|
|
13110
|
+
<h3 id="added-in-v200-alpha2">Added in v2.0.0-alpha.2<a class="headerlink" href="#added-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
12670
13111
|
<ul>
|
|
12671
13112
|
<li><a href="https://github.com/nautobot/nautobot/issues/2900">#2900</a> - Added natural-key support to most Nautobot models, inspired by the <code>django-natural-keys</code> library.</li>
|
|
12672
13113
|
<li><a href="https://github.com/nautobot/nautobot/issues/2957">#2957</a> - Added Location constraints for objects (CircuitTermination, Device, PowerPanel, PowerFeed, RackGroup, Rack, Prefix, VLAN, VLANGroup, Cluster).</li>
|
|
@@ -12682,7 +13123,7 @@
|
|
|
12682
13123
|
<li><a href="https://github.com/nautobot/nautobot/issues/3403">#3403</a> - Added support for Nautobot Apps to provide Django Constance Fields for the settings.</li>
|
|
12683
13124
|
<li><a href="https://github.com/nautobot/nautobot/issues/3418">#3418</a> - Added ObjectPermission Data Migration from Region/Site to Location.</li>
|
|
12684
13125
|
</ul>
|
|
12685
|
-
<h3 id="
|
|
13126
|
+
<h3 id="changed-in-v200-alpha2">Changed in v2.0.0-alpha.2<a class="headerlink" href="#changed-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
12686
13127
|
<ul>
|
|
12687
13128
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Renamed <code>slug</code> field to <code>key</code> on CustomField model class.</li>
|
|
12688
13129
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Changed validation of CustomField <code>key</code> to enforce that it is valid as a GraphQL identifier.</li>
|
|
@@ -12726,7 +13167,7 @@
|
|
|
12726
13167
|
<li><a href="https://github.com/nautobot/nautobot/issues/3351">#3351</a> - Changed extras abstract model ForeignKeys to use ForeignKeyWithAutoRelatedName.</li>
|
|
12727
13168
|
<li><a href="https://github.com/nautobot/nautobot/issues/3354">#3354</a> - Synced in fixes from 1.5.x LTM branch up through v1.5.11.</li>
|
|
12728
13169
|
</ul>
|
|
12729
|
-
<h3 id="
|
|
13170
|
+
<h3 id="removed-in-v200-alpha2">Removed in v2.0.0-alpha.2<a class="headerlink" href="#removed-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
12730
13171
|
<ul>
|
|
12731
13172
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Removed <code>name</code> field from CustomField model class.</li>
|
|
12732
13173
|
<li><a href="https://github.com/nautobot/nautobot/issues/1634">#1634</a> - Removed unnecessary legacy <code>manage.py</code> file from Nautobot repository.</li>
|
|
@@ -12741,7 +13182,7 @@
|
|
|
12741
13182
|
<li><a href="https://github.com/nautobot/nautobot/issues/3224">#3224</a> - Removed support for Nautobot "1.x" REST API versions. The minimum supported REST API version is now "2.0".</li>
|
|
12742
13183
|
<li><a href="https://github.com/nautobot/nautobot/issues/3302">#3302</a> - Removed <code>Aggregate</code> and migrated all existing instances to <code>Prefix</code>.</li>
|
|
12743
13184
|
</ul>
|
|
12744
|
-
<h3 id="
|
|
13185
|
+
<h3 id="fixed-in-v200-alpha2">Fixed in v2.0.0-alpha.2<a class="headerlink" href="#fixed-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
12745
13186
|
<ul>
|
|
12746
13187
|
<li><a href="https://github.com/nautobot/nautobot/issues/633">#633</a> - Fixed job result not updating when job hard time limit is reached.</li>
|
|
12747
13188
|
<li><a href="https://github.com/nautobot/nautobot/issues/1362">#1362</a> - Fixed migrations for <code>Prefix.type</code>.</li>
|
|
@@ -12756,18 +13197,18 @@
|
|
|
12756
13197
|
<li><a href="https://github.com/nautobot/nautobot/issues/3342">#3342</a> - Fixed BaseFilterSet not using multiple choice filters for CharFields with choices.</li>
|
|
12757
13198
|
<li><a href="https://github.com/nautobot/nautobot/issues/3457">#3457</a> - Fixed bug preventing scheduled job from running.</li>
|
|
12758
13199
|
</ul>
|
|
12759
|
-
<h3 id="
|
|
13200
|
+
<h3 id="dependencies-in-v200-alpha2">Dependencies in v2.0.0-alpha.2<a class="headerlink" href="#dependencies-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
12760
13201
|
<ul>
|
|
12761
13202
|
<li><a href="https://github.com/nautobot/nautobot/issues/2521">#2521</a> - Removed dependency on <code>django-cryptography</code>.</li>
|
|
12762
13203
|
<li><a href="https://github.com/nautobot/nautobot/issues/2524">#2524</a> - Removed no-longer-used <code>drf-yasg</code> dependency.</li>
|
|
12763
13204
|
</ul>
|
|
12764
|
-
<h3 id="
|
|
13205
|
+
<h3 id="housekeeping-in-v200-alpha2">Housekeeping in v2.0.0-alpha.2<a class="headerlink" href="#housekeeping-in-v200-alpha2" title="Permanent link">¶</a></h3>
|
|
12765
13206
|
<ul>
|
|
12766
13207
|
<li><a href="https://github.com/nautobot/nautobot/issues/3255">#3255</a> - Added <code>--cache-test-fixtures</code> command line argument to Nautobot unit and integration tests.</li>
|
|
12767
13208
|
<li><a href="https://github.com/nautobot/nautobot/issues/3233">#3233</a> - Removed <code>CeleryTestCase</code> and associated calling code as it is no longer needed.</li>
|
|
12768
13209
|
</ul>
|
|
12769
13210
|
<h2 id="v200-alpha1-2023-01-31">v2.0.0-alpha.1 (2023-01-31)<a class="headerlink" href="#v200-alpha1-2023-01-31" title="Permanent link">¶</a></h2>
|
|
12770
|
-
<h3 id="
|
|
13211
|
+
<h3 id="added-in-v200-alpha1">Added in v2.0.0-alpha.1<a class="headerlink" href="#added-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
12771
13212
|
<ul>
|
|
12772
13213
|
<li><a href="https://github.com/nautobot/nautobot/issues/1731">#1731</a> - Added missing filters to <code>circuits</code> app.</li>
|
|
12773
13214
|
<li><a href="https://github.com/nautobot/nautobot/issues/1733">#1733</a> - Added support for filtering on many more fields to the <code>Tenant</code> and <code>TenantGroup</code> filtersets.</li>
|
|
@@ -12775,7 +13216,7 @@
|
|
|
12775
13216
|
<li><a href="https://github.com/nautobot/nautobot/issues/2955">#2955</a> - Added "Region" and "Site" <code>LocationTypes</code> and their respective locations based on existing <code>Site</code> and <code>Region</code> instances.</li>
|
|
12776
13217
|
<li><a href="https://github.com/nautobot/nautobot/issues/3132">#3132</a> - Added the ability for apps to register their models for inclusion in the global Nautobot search.</li>
|
|
12777
13218
|
</ul>
|
|
12778
|
-
<h3 id="
|
|
13219
|
+
<h3 id="changed-in-v200-alpha1">Changed in v2.0.0-alpha.1<a class="headerlink" href="#changed-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
12779
13220
|
<ul>
|
|
12780
13221
|
<li><a href="https://github.com/nautobot/nautobot/issues/510">#510</a> - The <code>Region</code>, <code>RackGroup</code>, <code>TenantGroup</code>, and <code>InventoryItem</code> models are now based on <code>django-tree-queries</code> instead of <code>django-mptt</code>. This does change the API for certain tree operations on these models, for example <code>get_ancestors()</code> is now <code>ancestors()</code> and <code>get_descendants()</code> is now <code>descendants()</code>.</li>
|
|
12781
13222
|
<li><a href="https://github.com/nautobot/nautobot/issues/510">#510</a> - The UI and REST API for <code>Region</code>, <code>RackGroup</code>, and <code>TenantGroup</code> now provide only the related count of objects (e.g. <code>site_count</code> for <code>Region</code>) that are directly related to each instance. Formerly they provided a cumulative total including objects related to its descendants as well.</li>
|
|
@@ -12795,7 +13236,7 @@
|
|
|
12795
13236
|
<li><a href="https://github.com/nautobot/nautobot/issues/3068">#3068</a> - Renamed <code>group</code> field to <code>tenant_group</code> on <code>Tenant</code> model.</li>
|
|
12796
13237
|
<li><a href="https://github.com/nautobot/nautobot/issues/3069">#3069</a> - Renamed foreign key fields and related names in Virtualization and DCIM apps to follow a common naming convention. See v2 upgrade guide for full list of changes.</li>
|
|
12797
13238
|
</ul>
|
|
12798
|
-
<h3 id="
|
|
13239
|
+
<h3 id="removed-in-v200-alpha1">Removed in v2.0.0-alpha.1<a class="headerlink" href="#removed-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
12799
13240
|
<ul>
|
|
12800
13241
|
<li><a href="https://github.com/nautobot/nautobot/issues/510">#510</a> - Removed dependency on <code>django-mptt</code>. Models (<code>Region</code>, <code>RackGroup</code>, <code>TenantGroup</code>, <code>InventoryItem</code>) that previously were based on MPTT are now implemented using <code>django-tree-queries</code> instead.</li>
|
|
12801
13242
|
<li><a href="https://github.com/nautobot/nautobot/issues/1731">#1731</a> - Removed redundant filters from <code>circuits</code> app.</li>
|
|
@@ -12807,14 +13248,14 @@
|
|
|
12807
13248
|
<li><a href="https://github.com/nautobot/nautobot/issues/2993">#2993</a> - Removed optional settings documentation for <code>CELERY_RESULT_BACKEND_TRANSPORT_OPTIONS</code> as it is no longer user-serviceable.</li>
|
|
12808
13249
|
<li><a href="https://github.com/nautobot/nautobot/issues/3130">#3130</a> - Removed <code>CSS_CLASSES</code> definitions from legacy <code>ChoiceSets</code>.</li>
|
|
12809
13250
|
</ul>
|
|
12810
|
-
<h3 id="
|
|
13251
|
+
<h3 id="fixed-in-v200-alpha1">Fixed in v2.0.0-alpha.1<a class="headerlink" href="#fixed-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
12811
13252
|
<ul>
|
|
12812
13253
|
<li><a href="https://github.com/nautobot/nautobot/issues/1982">#1982</a> - Fixed a UI presentation/validation issue with dynamic-groups using foreign-key filters that aren't explicitly defined in the corresponding FilterForm.</li>
|
|
12813
13254
|
<li><a href="https://github.com/nautobot/nautobot/issues/2808">#2808</a> - Fixed incorrectly named filters in <code>circuits</code> app.</li>
|
|
12814
13255
|
<li><a href="https://github.com/nautobot/nautobot/issues/3126">#3126</a> - Fixed <code>Interface</code> not raising exception when adding a <code>VLAN</code> from a different <code>Site</code> in <code>tagged_vlans</code>.</li>
|
|
12815
13256
|
<li><a href="https://github.com/nautobot/nautobot/issues/3167">#3167</a> - Fixed <code>ObjectChange</code> records not being migrated and <code>legacy_role__name</code> not being a property in <code>Role</code> migrations.</li>
|
|
12816
13257
|
</ul>
|
|
12817
|
-
<h3 id="
|
|
13258
|
+
<h3 id="dependencies-in-v200-alpha1">Dependencies in v2.0.0-alpha.1<a class="headerlink" href="#dependencies-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
12818
13259
|
<ul>
|
|
12819
13260
|
<li><a href="https://github.com/nautobot/nautobot/issues/2771">#2771</a> - Updated <code>jsonschema</code> version to <code>~4.17.0</code>.</li>
|
|
12820
13261
|
<li><a href="https://github.com/nautobot/nautobot/issues/2883">#2883</a> - Updated <code>django-taggit</code> to <code>3.1.0</code>.</li>
|
|
@@ -12822,11 +13263,11 @@
|
|
|
12822
13263
|
<li><a href="https://github.com/nautobot/nautobot/issues/2943">#2943</a> - Updated dependency <code>rich</code> to <code>~12.6.0</code>.</li>
|
|
12823
13264
|
<li><a href="https://github.com/nautobot/nautobot/issues/3027">#3027</a> - Updated dependencies <code>prometheus-client</code>, <code>django-storages</code>, <code>drf-spectacular</code>, <code>black</code>, <code>django-debug-toolbar</code>, <code>mkdocstrings</code>, <code>mkdocstrings-python</code>, <code>pylint</code>, <code>requests</code>, <code>selenium</code>, <code>watchdog</code>.</li>
|
|
12824
13265
|
</ul>
|
|
12825
|
-
<h3 id="
|
|
13266
|
+
<h3 id="documentation-in-v200-alpha1">Documentation in v2.0.0-alpha.1<a class="headerlink" href="#documentation-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
12826
13267
|
<ul>
|
|
12827
13268
|
<li><a href="https://github.com/nautobot/nautobot/issues/204">#204</a> - Added style guide documentation for importing python modules in Nautobot.</li>
|
|
12828
13269
|
</ul>
|
|
12829
|
-
<h3 id="
|
|
13270
|
+
<h3 id="housekeeping-in-v200-alpha1">Housekeeping in v2.0.0-alpha.1<a class="headerlink" href="#housekeeping-in-v200-alpha1" title="Permanent link">¶</a></h3>
|
|
12830
13271
|
<ul>
|
|
12831
13272
|
<li><a href="https://github.com/nautobot/nautobot/issues/204">#204</a> - Changed imports to use module namespaces in <code>utilities/filters.py</code>.</li>
|
|
12832
13273
|
<li><a href="https://github.com/nautobot/nautobot/issues/2674">#2674</a> - Updated development dependency <code>black</code> to <code>~22.10.0</code>.</li>
|
|
@@ -12979,10 +13420,10 @@
|
|
|
12979
13420
|
</div>
|
|
12980
13421
|
|
|
12981
13422
|
|
|
12982
|
-
<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>
|
|
13423
|
+
<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>
|
|
12983
13424
|
|
|
12984
13425
|
|
|
12985
|
-
<script src="../assets/javascripts/bundle.
|
|
13426
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
12986
13427
|
|
|
12987
13428
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
12988
13429
|
|