nautobot 2.4.0b1__py3-none-any.whl → 2.4.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/__init__.py +1 -1
- nautobot/apps/api.py +8 -8
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/events.py +3 -3
- 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 +2 -2
- nautobot/apps/utils.py +7 -7
- nautobot/apps/views.py +7 -7
- nautobot/circuits/api/serializers.py +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/tables.py +2 -1
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/models.py +1 -1
- 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/schema.py +13 -2
- nautobot/core/api/serializers.py +40 -34
- nautobot/core/api/views.py +56 -4
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +2 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +67 -35
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +14 -11
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +28 -7
- nautobot/core/jobs/bulk_actions.py +285 -0
- nautobot/core/jobs/cleanup.py +48 -12
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +3 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +6 -3
- nautobot/core/settings.py +29 -2
- nautobot/core/settings.yaml +21 -0
- nautobot/core/tables.py +79 -61
- nautobot/core/templates/about.html +67 -0
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/inc/nav_menu.html +1 -0
- 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 +13 -0
- nautobot/core/templates/search.html +7 -0
- nautobot/core/templates/utilities/render_jinja2.html +1 -1
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +7 -0
- nautobot/core/templatetags/helpers.py +11 -2
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +170 -15
- nautobot/core/testing/filters.py +45 -10
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/integration.py +86 -4
- nautobot/core/testing/mixins.py +7 -2
- nautobot/core/testing/views.py +44 -29
- 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 +1 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +98 -1
- nautobot/core/tests/test_csv.py +25 -3
- nautobot/core/tests/test_filters.py +209 -246
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jobs.py +460 -1
- nautobot/core/tests/test_models.py +9 -0
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_utils.py +63 -1
- nautobot/core/tests/test_views.py +30 -3
- nautobot/core/ui/nav.py +1 -0
- nautobot/core/ui/object_detail.py +15 -1
- nautobot/core/urls.py +11 -0
- nautobot/core/utils/lookup.py +11 -8
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +42 -0
- nautobot/core/views/generic.py +131 -197
- nautobot/core/views/mixins.py +126 -38
- nautobot/core/views/renderers.py +6 -6
- nautobot/dcim/api/serializers.py +56 -64
- nautobot/dcim/api/views.py +47 -113
- nautobot/dcim/constants.py +6 -13
- nautobot/dcim/factory.py +6 -1
- nautobot/dcim/filters/__init__.py +31 -2
- nautobot/dcim/forms.py +36 -17
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +10 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +7 -5
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +1 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
- nautobot/dcim/templates/dcim/device.html +1 -9
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/location.html +1 -9
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- 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 +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/integration/test_device_bulk_delete.py +189 -0
- nautobot/dcim/tests/integration/test_device_bulk_edit.py +181 -0
- nautobot/dcim/tests/test_api.py +16 -5
- nautobot/dcim/tests/test_filters.py +33 -0
- nautobot/dcim/tests/test_forms.py +51 -2
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +52 -9
- nautobot/dcim/tests/test_views.py +21 -83
- nautobot/dcim/views.py +1 -13
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +90 -85
- nautobot/extras/api/views.py +22 -27
- nautobot/extras/constants.py +2 -0
- nautobot/extras/filters/__init__.py +8 -6
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +139 -31
- nautobot/extras/forms/mixins.py +14 -6
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +85 -18
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- 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 +1 -1
- 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 +23 -4
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/plugins/__init__.py +13 -2
- nautobot/extras/plugins/marketplace_manifest.yml +84 -79
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/views.py +65 -69
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/tables.py +7 -5
- nautobot/extras/templates/extras/dynamicgroup.html +1 -9
- nautobot/extras/templates/extras/job_detail.html +16 -0
- nautobot/extras/templates/extras/job_edit.html +1 -0
- nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
- nautobot/extras/templates/extras/marketplace.html +29 -11
- nautobot/extras/templates/extras/plugin_detail.html +32 -15
- nautobot/extras/templates/extras/plugins_tiles.html +21 -10
- nautobot/extras/templatetags/job_buttons.py +4 -4
- 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 +13 -13
- 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 +6 -6
- nautobot/extras/tests/test_forms.py +33 -1
- nautobot/extras/tests/test_jobs.py +178 -32
- nautobot/extras/tests/test_models.py +16 -10
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +120 -9
- nautobot/extras/tests/test_views.py +56 -194
- nautobot/extras/utils.py +3 -2
- nautobot/extras/views.py +30 -98
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +41 -33
- nautobot/ipam/api/views.py +68 -117
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/lookups.py +101 -62
- nautobot/ipam/models.py +66 -16
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +23 -7
- 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/vlan.html +1 -9
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +436 -3
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +95 -34
- nautobot/ipam/tests/test_querysets.py +63 -1
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/utils/__init__.py +36 -6
- nautobot/ipam/views.py +61 -87
- 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/docs/404.html +46 -4
- nautobot/project-static/docs/apps/index.html +46 -4
- nautobot/project-static/docs/apps/nautobot-apps.html +47 -6
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -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 +62 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +59 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +374 -122
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +90 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +95 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +53 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +52 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +79 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +102 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +108 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +131 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +239 -65
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +581 -165
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +109 -36
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +453 -167
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +493 -211
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +60 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +71 -15
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +407 -55
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +620 -205
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +858 -412
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +59 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +448 -186
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +365 -147
- nautobot/project-static/docs/development/apps/api/configuration-view.html +46 -4
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/global-search.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/graphql.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +68 -7
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +46 -4
- nautobot/project-static/docs/development/apps/api/prometheus.html +46 -4
- nautobot/project-static/docs/development/apps/api/setup.html +46 -4
- nautobot/project-static/docs/development/apps/api/testing.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/base-template.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/notes.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +52 -6
- nautobot/project-static/docs/development/apps/api/views/urls.html +46 -4
- nautobot/project-static/docs/development/apps/index.html +46 -4
- nautobot/project-static/docs/development/apps/migration/code-updates.html +46 -4
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +46 -4
- nautobot/project-static/docs/development/apps/migration/from-v1.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +46 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +50 -8
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +46 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +211 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +46 -4
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +46 -4
- nautobot/project-static/docs/development/core/application-registry.html +46 -4
- nautobot/project-static/docs/development/core/best-practices.html +46 -4
- nautobot/project-static/docs/development/core/bootstrap-ui.html +46 -4
- nautobot/project-static/docs/development/core/caching.html +46 -4
- nautobot/project-static/docs/development/core/controllers.html +46 -4
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +73 -74
- nautobot/project-static/docs/development/core/generic-views.html +46 -4
- nautobot/project-static/docs/development/core/getting-started.html +249 -224
- nautobot/project-static/docs/development/core/homepage.html +49 -7
- nautobot/project-static/docs/development/core/index.html +46 -4
- nautobot/project-static/docs/development/core/{local-k8s.html → minikube-dev-environment-for-k8s-jobs.html} +469 -168
- nautobot/project-static/docs/development/core/model-checklist.html +56 -12
- nautobot/project-static/docs/development/core/model-features.html +46 -4
- nautobot/project-static/docs/development/core/natural-keys.html +46 -4
- nautobot/project-static/docs/development/core/navigation-menu.html +46 -4
- nautobot/project-static/docs/development/core/release-checklist.html +49 -7
- nautobot/project-static/docs/development/core/role-internals.html +46 -4
- nautobot/project-static/docs/development/core/settings.html +46 -4
- nautobot/project-static/docs/development/core/style-guide.html +49 -7
- nautobot/project-static/docs/development/core/templates.html +46 -4
- nautobot/project-static/docs/development/core/testing.html +46 -4
- nautobot/project-static/docs/development/core/ui-component-framework.html +369 -273
- nautobot/project-static/docs/development/core/user-preferences.html +46 -4
- nautobot/project-static/docs/development/index.html +46 -4
- nautobot/project-static/docs/development/jobs/index.html +216 -122
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +46 -4
- nautobot/project-static/docs/index.html +54 -23
- 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/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/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/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +47 -7
- nautobot/project-static/docs/overview/design_philosophy.html +46 -4
- nautobot/project-static/docs/release-notes/index.html +52 -12
- nautobot/project-static/docs/release-notes/version-1.0.html +234 -193
- nautobot/project-static/docs/release-notes/version-1.1.html +231 -190
- nautobot/project-static/docs/release-notes/version-1.2.html +306 -265
- nautobot/project-static/docs/release-notes/version-1.3.html +332 -291
- nautobot/project-static/docs/release-notes/version-1.4.html +417 -377
- nautobot/project-static/docs/release-notes/version-1.5.html +605 -566
- nautobot/project-static/docs/release-notes/version-1.6.html +904 -447
- nautobot/project-static/docs/release-notes/version-2.0.html +528 -489
- nautobot/project-static/docs/release-notes/version-2.1.html +363 -324
- nautobot/project-static/docs/release-notes/version-2.2.html +356 -317
- nautobot/project-static/docs/release-notes/version-2.3.html +997 -352
- nautobot/project-static/docs/release-notes/version-2.4.html +525 -101
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +295 -287
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +48 -6
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +110 -8
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +48 -6
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +66 -8
- nautobot/project-static/docs/user-guide/administration/installation/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +47 -5
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/services.html +46 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +46 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +46 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +46 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +49 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +50 -12
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +49 -7
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +51 -7
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +46 -4
- 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 +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +49 -7
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +9444 -0
- nautobot/project-static/docs/user-guide/index.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +50 -8
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +50 -7
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +49 -7
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +46 -4
- 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 +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +47 -5
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +94 -25
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +74 -5
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +46 -4
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/views.py +4 -2
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +5 -4
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +5 -24
- nautobot/virtualization/filters.py +20 -3
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -9
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/tests/test_filters.py +17 -0
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_filters.py +29 -1
- nautobot/wireless/tests/test_views.py +22 -1
- nautobot/wireless/views.py +0 -10
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/METADATA +6 -6
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/RECORD +600 -550
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.49">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -2112,6 +2112,27 @@
|
|
|
2112
2112
|
|
|
2113
2113
|
|
|
2114
2114
|
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
|
|
2118
|
+
|
|
2119
|
+
|
|
2120
|
+
|
|
2121
|
+
<li class="md-nav__item">
|
|
2122
|
+
<a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
|
|
2123
|
+
|
|
2124
|
+
|
|
2125
|
+
<span class="md-ellipsis">
|
|
2126
|
+
Wireless Networks and Controllers
|
|
2127
|
+
</span>
|
|
2128
|
+
|
|
2129
|
+
|
|
2130
|
+
</a>
|
|
2131
|
+
</li>
|
|
2132
|
+
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
|
|
2115
2136
|
</ul>
|
|
2116
2137
|
</nav>
|
|
2117
2138
|
|
|
@@ -5131,6 +5152,27 @@
|
|
|
5131
5152
|
|
|
5132
5153
|
|
|
5133
5154
|
|
|
5155
|
+
<li class="md-nav__item">
|
|
5156
|
+
<a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5157
|
+
|
|
5158
|
+
|
|
5159
|
+
<span class="md-ellipsis">
|
|
5160
|
+
Kubernetes Job Support
|
|
5161
|
+
</span>
|
|
5162
|
+
|
|
5163
|
+
|
|
5164
|
+
</a>
|
|
5165
|
+
</li>
|
|
5166
|
+
|
|
5167
|
+
|
|
5168
|
+
|
|
5169
|
+
|
|
5170
|
+
|
|
5171
|
+
|
|
5172
|
+
|
|
5173
|
+
|
|
5174
|
+
|
|
5175
|
+
|
|
5134
5176
|
<li class="md-nav__item">
|
|
5135
5177
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5136
5178
|
|
|
@@ -8055,11 +8097,11 @@
|
|
|
8055
8097
|
|
|
8056
8098
|
|
|
8057
8099
|
<li class="md-nav__item">
|
|
8058
|
-
<a href="../development/core/
|
|
8100
|
+
<a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8059
8101
|
|
|
8060
8102
|
|
|
8061
8103
|
<span class="md-ellipsis">
|
|
8062
|
-
|
|
8104
|
+
Minikube Dev Environment for K8s Jobs
|
|
8063
8105
|
</span>
|
|
8064
8106
|
|
|
8065
8107
|
|
|
@@ -8679,9 +8721,9 @@
|
|
|
8679
8721
|
</li>
|
|
8680
8722
|
|
|
8681
8723
|
<li class="md-nav__item">
|
|
8682
|
-
<a href="#generic-role-model-
|
|
8724
|
+
<a href="#migration-to-generic-role-model-1063" class="md-nav__link">
|
|
8683
8725
|
<span class="md-ellipsis">
|
|
8684
|
-
Generic Role Model (#1063)
|
|
8726
|
+
Migration to Generic Role Model (#1063)
|
|
8685
8727
|
</span>
|
|
8686
8728
|
</a>
|
|
8687
8729
|
|
|
@@ -8840,72 +8882,72 @@
|
|
|
8840
8882
|
<ul class="md-nav__list">
|
|
8841
8883
|
|
|
8842
8884
|
<li class="md-nav__item">
|
|
8843
|
-
<a href="#security" class="md-nav__link">
|
|
8885
|
+
<a href="#security-in-v206" class="md-nav__link">
|
|
8844
8886
|
<span class="md-ellipsis">
|
|
8845
|
-
Security
|
|
8887
|
+
Security in v2.0.6
|
|
8846
8888
|
</span>
|
|
8847
8889
|
</a>
|
|
8848
8890
|
|
|
8849
8891
|
</li>
|
|
8850
8892
|
|
|
8851
8893
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
8894
|
+
<a href="#added-in-v206" class="md-nav__link">
|
|
8853
8895
|
<span class="md-ellipsis">
|
|
8854
|
-
Added
|
|
8896
|
+
Added in v2.0.6
|
|
8855
8897
|
</span>
|
|
8856
8898
|
</a>
|
|
8857
8899
|
|
|
8858
8900
|
</li>
|
|
8859
8901
|
|
|
8860
8902
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
8903
|
+
<a href="#changed-in-v206" class="md-nav__link">
|
|
8862
8904
|
<span class="md-ellipsis">
|
|
8863
|
-
Changed
|
|
8905
|
+
Changed in v2.0.6
|
|
8864
8906
|
</span>
|
|
8865
8907
|
</a>
|
|
8866
8908
|
|
|
8867
8909
|
</li>
|
|
8868
8910
|
|
|
8869
8911
|
<li class="md-nav__item">
|
|
8870
|
-
<a href="#
|
|
8912
|
+
<a href="#removed-in-v206" class="md-nav__link">
|
|
8871
8913
|
<span class="md-ellipsis">
|
|
8872
|
-
Removed
|
|
8914
|
+
Removed in v2.0.6
|
|
8873
8915
|
</span>
|
|
8874
8916
|
</a>
|
|
8875
8917
|
|
|
8876
8918
|
</li>
|
|
8877
8919
|
|
|
8878
8920
|
<li class="md-nav__item">
|
|
8879
|
-
<a href="#fixed" class="md-nav__link">
|
|
8921
|
+
<a href="#fixed-in-v206" class="md-nav__link">
|
|
8880
8922
|
<span class="md-ellipsis">
|
|
8881
|
-
Fixed
|
|
8923
|
+
Fixed in v2.0.6
|
|
8882
8924
|
</span>
|
|
8883
8925
|
</a>
|
|
8884
8926
|
|
|
8885
8927
|
</li>
|
|
8886
8928
|
|
|
8887
8929
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8930
|
+
<a href="#dependencies-in-v206" class="md-nav__link">
|
|
8889
8931
|
<span class="md-ellipsis">
|
|
8890
|
-
Dependencies
|
|
8932
|
+
Dependencies in v2.0.6
|
|
8891
8933
|
</span>
|
|
8892
8934
|
</a>
|
|
8893
8935
|
|
|
8894
8936
|
</li>
|
|
8895
8937
|
|
|
8896
8938
|
<li class="md-nav__item">
|
|
8897
|
-
<a href="#documentation" class="md-nav__link">
|
|
8939
|
+
<a href="#documentation-in-v206" class="md-nav__link">
|
|
8898
8940
|
<span class="md-ellipsis">
|
|
8899
|
-
Documentation
|
|
8941
|
+
Documentation in v2.0.6
|
|
8900
8942
|
</span>
|
|
8901
8943
|
</a>
|
|
8902
8944
|
|
|
8903
8945
|
</li>
|
|
8904
8946
|
|
|
8905
8947
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8948
|
+
<a href="#housekeeping-in-v206" class="md-nav__link">
|
|
8907
8949
|
<span class="md-ellipsis">
|
|
8908
|
-
Housekeeping
|
|
8950
|
+
Housekeeping in v2.0.6
|
|
8909
8951
|
</span>
|
|
8910
8952
|
</a>
|
|
8911
8953
|
|
|
@@ -8927,54 +8969,54 @@
|
|
|
8927
8969
|
<ul class="md-nav__list">
|
|
8928
8970
|
|
|
8929
8971
|
<li class="md-nav__item">
|
|
8930
|
-
<a href="#
|
|
8972
|
+
<a href="#security-in-v205" class="md-nav__link">
|
|
8931
8973
|
<span class="md-ellipsis">
|
|
8932
|
-
Security
|
|
8974
|
+
Security in v2.0.5
|
|
8933
8975
|
</span>
|
|
8934
8976
|
</a>
|
|
8935
8977
|
|
|
8936
8978
|
</li>
|
|
8937
8979
|
|
|
8938
8980
|
<li class="md-nav__item">
|
|
8939
|
-
<a href="#
|
|
8981
|
+
<a href="#changed-in-v205" class="md-nav__link">
|
|
8940
8982
|
<span class="md-ellipsis">
|
|
8941
|
-
Changed
|
|
8983
|
+
Changed in v2.0.5
|
|
8942
8984
|
</span>
|
|
8943
8985
|
</a>
|
|
8944
8986
|
|
|
8945
8987
|
</li>
|
|
8946
8988
|
|
|
8947
8989
|
<li class="md-nav__item">
|
|
8948
|
-
<a href="#
|
|
8990
|
+
<a href="#fixed-in-v205" class="md-nav__link">
|
|
8949
8991
|
<span class="md-ellipsis">
|
|
8950
|
-
Fixed
|
|
8992
|
+
Fixed in v2.0.5
|
|
8951
8993
|
</span>
|
|
8952
8994
|
</a>
|
|
8953
8995
|
|
|
8954
8996
|
</li>
|
|
8955
8997
|
|
|
8956
8998
|
<li class="md-nav__item">
|
|
8957
|
-
<a href="#
|
|
8999
|
+
<a href="#dependencies-in-v205" class="md-nav__link">
|
|
8958
9000
|
<span class="md-ellipsis">
|
|
8959
|
-
Dependencies
|
|
9001
|
+
Dependencies in v2.0.5
|
|
8960
9002
|
</span>
|
|
8961
9003
|
</a>
|
|
8962
9004
|
|
|
8963
9005
|
</li>
|
|
8964
9006
|
|
|
8965
9007
|
<li class="md-nav__item">
|
|
8966
|
-
<a href="#
|
|
9008
|
+
<a href="#documentation-in-v205" class="md-nav__link">
|
|
8967
9009
|
<span class="md-ellipsis">
|
|
8968
|
-
Documentation
|
|
9010
|
+
Documentation in v2.0.5
|
|
8969
9011
|
</span>
|
|
8970
9012
|
</a>
|
|
8971
9013
|
|
|
8972
9014
|
</li>
|
|
8973
9015
|
|
|
8974
9016
|
<li class="md-nav__item">
|
|
8975
|
-
<a href="#
|
|
9017
|
+
<a href="#housekeeping-in-v205" class="md-nav__link">
|
|
8976
9018
|
<span class="md-ellipsis">
|
|
8977
|
-
Housekeeping
|
|
9019
|
+
Housekeeping in v2.0.5
|
|
8978
9020
|
</span>
|
|
8979
9021
|
</a>
|
|
8980
9022
|
|
|
@@ -8996,54 +9038,54 @@
|
|
|
8996
9038
|
<ul class="md-nav__list">
|
|
8997
9039
|
|
|
8998
9040
|
<li class="md-nav__item">
|
|
8999
|
-
<a href="#
|
|
9041
|
+
<a href="#security-in-v204" class="md-nav__link">
|
|
9000
9042
|
<span class="md-ellipsis">
|
|
9001
|
-
Security
|
|
9043
|
+
Security in v2.0.4
|
|
9002
9044
|
</span>
|
|
9003
9045
|
</a>
|
|
9004
9046
|
|
|
9005
9047
|
</li>
|
|
9006
9048
|
|
|
9007
9049
|
<li class="md-nav__item">
|
|
9008
|
-
<a href="#
|
|
9050
|
+
<a href="#added-in-v204" class="md-nav__link">
|
|
9009
9051
|
<span class="md-ellipsis">
|
|
9010
|
-
Added
|
|
9052
|
+
Added in v2.0.4
|
|
9011
9053
|
</span>
|
|
9012
9054
|
</a>
|
|
9013
9055
|
|
|
9014
9056
|
</li>
|
|
9015
9057
|
|
|
9016
9058
|
<li class="md-nav__item">
|
|
9017
|
-
<a href="#
|
|
9059
|
+
<a href="#changed-in-v204" class="md-nav__link">
|
|
9018
9060
|
<span class="md-ellipsis">
|
|
9019
|
-
Changed
|
|
9061
|
+
Changed in v2.0.4
|
|
9020
9062
|
</span>
|
|
9021
9063
|
</a>
|
|
9022
9064
|
|
|
9023
9065
|
</li>
|
|
9024
9066
|
|
|
9025
9067
|
<li class="md-nav__item">
|
|
9026
|
-
<a href="#
|
|
9068
|
+
<a href="#fixed-in-v204" class="md-nav__link">
|
|
9027
9069
|
<span class="md-ellipsis">
|
|
9028
|
-
Fixed
|
|
9070
|
+
Fixed in v2.0.4
|
|
9029
9071
|
</span>
|
|
9030
9072
|
</a>
|
|
9031
9073
|
|
|
9032
9074
|
</li>
|
|
9033
9075
|
|
|
9034
9076
|
<li class="md-nav__item">
|
|
9035
|
-
<a href="#
|
|
9077
|
+
<a href="#documentation-in-v204" class="md-nav__link">
|
|
9036
9078
|
<span class="md-ellipsis">
|
|
9037
|
-
Documentation
|
|
9079
|
+
Documentation in v2.0.4
|
|
9038
9080
|
</span>
|
|
9039
9081
|
</a>
|
|
9040
9082
|
|
|
9041
9083
|
</li>
|
|
9042
9084
|
|
|
9043
9085
|
<li class="md-nav__item">
|
|
9044
|
-
<a href="#
|
|
9086
|
+
<a href="#housekeeping-in-v204" class="md-nav__link">
|
|
9045
9087
|
<span class="md-ellipsis">
|
|
9046
|
-
Housekeeping
|
|
9088
|
+
Housekeeping in v2.0.4
|
|
9047
9089
|
</span>
|
|
9048
9090
|
</a>
|
|
9049
9091
|
|
|
@@ -9065,54 +9107,54 @@
|
|
|
9065
9107
|
<ul class="md-nav__list">
|
|
9066
9108
|
|
|
9067
9109
|
<li class="md-nav__item">
|
|
9068
|
-
<a href="#
|
|
9110
|
+
<a href="#security-in-v203" class="md-nav__link">
|
|
9069
9111
|
<span class="md-ellipsis">
|
|
9070
|
-
Security
|
|
9112
|
+
Security in v2.0.3
|
|
9071
9113
|
</span>
|
|
9072
9114
|
</a>
|
|
9073
9115
|
|
|
9074
9116
|
</li>
|
|
9075
9117
|
|
|
9076
9118
|
<li class="md-nav__item">
|
|
9077
|
-
<a href="#
|
|
9119
|
+
<a href="#added-in-v203" class="md-nav__link">
|
|
9078
9120
|
<span class="md-ellipsis">
|
|
9079
|
-
Added
|
|
9121
|
+
Added in v2.0.3
|
|
9080
9122
|
</span>
|
|
9081
9123
|
</a>
|
|
9082
9124
|
|
|
9083
9125
|
</li>
|
|
9084
9126
|
|
|
9085
9127
|
<li class="md-nav__item">
|
|
9086
|
-
<a href="#
|
|
9128
|
+
<a href="#changed-in-v203" class="md-nav__link">
|
|
9087
9129
|
<span class="md-ellipsis">
|
|
9088
|
-
Changed
|
|
9130
|
+
Changed in v2.0.3
|
|
9089
9131
|
</span>
|
|
9090
9132
|
</a>
|
|
9091
9133
|
|
|
9092
9134
|
</li>
|
|
9093
9135
|
|
|
9094
9136
|
<li class="md-nav__item">
|
|
9095
|
-
<a href="#
|
|
9137
|
+
<a href="#fixed-in-v203" class="md-nav__link">
|
|
9096
9138
|
<span class="md-ellipsis">
|
|
9097
|
-
Fixed
|
|
9139
|
+
Fixed in v2.0.3
|
|
9098
9140
|
</span>
|
|
9099
9141
|
</a>
|
|
9100
9142
|
|
|
9101
9143
|
</li>
|
|
9102
9144
|
|
|
9103
9145
|
<li class="md-nav__item">
|
|
9104
|
-
<a href="#
|
|
9146
|
+
<a href="#documentation-in-v203" class="md-nav__link">
|
|
9105
9147
|
<span class="md-ellipsis">
|
|
9106
|
-
Documentation
|
|
9148
|
+
Documentation in v2.0.3
|
|
9107
9149
|
</span>
|
|
9108
9150
|
</a>
|
|
9109
9151
|
|
|
9110
9152
|
</li>
|
|
9111
9153
|
|
|
9112
9154
|
<li class="md-nav__item">
|
|
9113
|
-
<a href="#
|
|
9155
|
+
<a href="#housekeeping-in-v203" class="md-nav__link">
|
|
9114
9156
|
<span class="md-ellipsis">
|
|
9115
|
-
Housekeeping
|
|
9157
|
+
Housekeeping in v2.0.3
|
|
9116
9158
|
</span>
|
|
9117
9159
|
</a>
|
|
9118
9160
|
|
|
@@ -9134,54 +9176,54 @@
|
|
|
9134
9176
|
<ul class="md-nav__list">
|
|
9135
9177
|
|
|
9136
9178
|
<li class="md-nav__item">
|
|
9137
|
-
<a href="#
|
|
9179
|
+
<a href="#security-in-v202" class="md-nav__link">
|
|
9138
9180
|
<span class="md-ellipsis">
|
|
9139
|
-
Security
|
|
9181
|
+
Security in v2.0.2
|
|
9140
9182
|
</span>
|
|
9141
9183
|
</a>
|
|
9142
9184
|
|
|
9143
9185
|
</li>
|
|
9144
9186
|
|
|
9145
9187
|
<li class="md-nav__item">
|
|
9146
|
-
<a href="#
|
|
9188
|
+
<a href="#added-in-v202" class="md-nav__link">
|
|
9147
9189
|
<span class="md-ellipsis">
|
|
9148
|
-
Added
|
|
9190
|
+
Added in v2.0.2
|
|
9149
9191
|
</span>
|
|
9150
9192
|
</a>
|
|
9151
9193
|
|
|
9152
9194
|
</li>
|
|
9153
9195
|
|
|
9154
9196
|
<li class="md-nav__item">
|
|
9155
|
-
<a href="#
|
|
9197
|
+
<a href="#changed-in-v202" class="md-nav__link">
|
|
9156
9198
|
<span class="md-ellipsis">
|
|
9157
|
-
Changed
|
|
9199
|
+
Changed in v2.0.2
|
|
9158
9200
|
</span>
|
|
9159
9201
|
</a>
|
|
9160
9202
|
|
|
9161
9203
|
</li>
|
|
9162
9204
|
|
|
9163
9205
|
<li class="md-nav__item">
|
|
9164
|
-
<a href="#
|
|
9206
|
+
<a href="#fixed-in-v202" class="md-nav__link">
|
|
9165
9207
|
<span class="md-ellipsis">
|
|
9166
|
-
Fixed
|
|
9208
|
+
Fixed in v2.0.2
|
|
9167
9209
|
</span>
|
|
9168
9210
|
</a>
|
|
9169
9211
|
|
|
9170
9212
|
</li>
|
|
9171
9213
|
|
|
9172
9214
|
<li class="md-nav__item">
|
|
9173
|
-
<a href="#
|
|
9215
|
+
<a href="#documentation-in-v202" class="md-nav__link">
|
|
9174
9216
|
<span class="md-ellipsis">
|
|
9175
|
-
Documentation
|
|
9217
|
+
Documentation in v2.0.2
|
|
9176
9218
|
</span>
|
|
9177
9219
|
</a>
|
|
9178
9220
|
|
|
9179
9221
|
</li>
|
|
9180
9222
|
|
|
9181
9223
|
<li class="md-nav__item">
|
|
9182
|
-
<a href="#
|
|
9224
|
+
<a href="#housekeeping-in-v202" class="md-nav__link">
|
|
9183
9225
|
<span class="md-ellipsis">
|
|
9184
|
-
Housekeeping
|
|
9226
|
+
Housekeeping in v2.0.2
|
|
9185
9227
|
</span>
|
|
9186
9228
|
</a>
|
|
9187
9229
|
|
|
@@ -9203,18 +9245,18 @@
|
|
|
9203
9245
|
<ul class="md-nav__list">
|
|
9204
9246
|
|
|
9205
9247
|
<li class="md-nav__item">
|
|
9206
|
-
<a href="#
|
|
9248
|
+
<a href="#fixed-in-v201" class="md-nav__link">
|
|
9207
9249
|
<span class="md-ellipsis">
|
|
9208
|
-
Fixed
|
|
9250
|
+
Fixed in v2.0.1
|
|
9209
9251
|
</span>
|
|
9210
9252
|
</a>
|
|
9211
9253
|
|
|
9212
9254
|
</li>
|
|
9213
9255
|
|
|
9214
9256
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9257
|
+
<a href="#housekeeping-in-v201" class="md-nav__link">
|
|
9216
9258
|
<span class="md-ellipsis">
|
|
9217
|
-
Housekeeping
|
|
9259
|
+
Housekeeping in v2.0.1
|
|
9218
9260
|
</span>
|
|
9219
9261
|
</a>
|
|
9220
9262
|
|
|
@@ -9236,27 +9278,27 @@
|
|
|
9236
9278
|
<ul class="md-nav__list">
|
|
9237
9279
|
|
|
9238
9280
|
<li class="md-nav__item">
|
|
9239
|
-
<a href="#
|
|
9281
|
+
<a href="#added-in-v200" class="md-nav__link">
|
|
9240
9282
|
<span class="md-ellipsis">
|
|
9241
|
-
Added
|
|
9283
|
+
Added in v2.0.0
|
|
9242
9284
|
</span>
|
|
9243
9285
|
</a>
|
|
9244
9286
|
|
|
9245
9287
|
</li>
|
|
9246
9288
|
|
|
9247
9289
|
<li class="md-nav__item">
|
|
9248
|
-
<a href="#
|
|
9290
|
+
<a href="#fixed-in-v200" class="md-nav__link">
|
|
9249
9291
|
<span class="md-ellipsis">
|
|
9250
|
-
Fixed
|
|
9292
|
+
Fixed in v2.0.0
|
|
9251
9293
|
</span>
|
|
9252
9294
|
</a>
|
|
9253
9295
|
|
|
9254
9296
|
</li>
|
|
9255
9297
|
|
|
9256
9298
|
<li class="md-nav__item">
|
|
9257
|
-
<a href="#
|
|
9299
|
+
<a href="#documentation-in-v200" class="md-nav__link">
|
|
9258
9300
|
<span class="md-ellipsis">
|
|
9259
|
-
Documentation
|
|
9301
|
+
Documentation in v2.0.0
|
|
9260
9302
|
</span>
|
|
9261
9303
|
</a>
|
|
9262
9304
|
|
|
@@ -9278,72 +9320,72 @@
|
|
|
9278
9320
|
<ul class="md-nav__list">
|
|
9279
9321
|
|
|
9280
9322
|
<li class="md-nav__item">
|
|
9281
|
-
<a href="#
|
|
9323
|
+
<a href="#security-in-v200-rc4" class="md-nav__link">
|
|
9282
9324
|
<span class="md-ellipsis">
|
|
9283
|
-
Security
|
|
9325
|
+
Security in v2.0.0-rc.4
|
|
9284
9326
|
</span>
|
|
9285
9327
|
</a>
|
|
9286
9328
|
|
|
9287
9329
|
</li>
|
|
9288
9330
|
|
|
9289
9331
|
<li class="md-nav__item">
|
|
9290
|
-
<a href="#
|
|
9332
|
+
<a href="#added-in-v200-rc4" class="md-nav__link">
|
|
9291
9333
|
<span class="md-ellipsis">
|
|
9292
|
-
Added
|
|
9334
|
+
Added in v2.0.0-rc.4
|
|
9293
9335
|
</span>
|
|
9294
9336
|
</a>
|
|
9295
9337
|
|
|
9296
9338
|
</li>
|
|
9297
9339
|
|
|
9298
9340
|
<li class="md-nav__item">
|
|
9299
|
-
<a href="#
|
|
9341
|
+
<a href="#changed-in-v200-rc4" class="md-nav__link">
|
|
9300
9342
|
<span class="md-ellipsis">
|
|
9301
|
-
Changed
|
|
9343
|
+
Changed in v2.0.0-rc.4
|
|
9302
9344
|
</span>
|
|
9303
9345
|
</a>
|
|
9304
9346
|
|
|
9305
9347
|
</li>
|
|
9306
9348
|
|
|
9307
9349
|
<li class="md-nav__item">
|
|
9308
|
-
<a href="#
|
|
9350
|
+
<a href="#removed-in-v200-rc4" class="md-nav__link">
|
|
9309
9351
|
<span class="md-ellipsis">
|
|
9310
|
-
Removed
|
|
9352
|
+
Removed in v2.0.0-rc.4
|
|
9311
9353
|
</span>
|
|
9312
9354
|
</a>
|
|
9313
9355
|
|
|
9314
9356
|
</li>
|
|
9315
9357
|
|
|
9316
9358
|
<li class="md-nav__item">
|
|
9317
|
-
<a href="#
|
|
9359
|
+
<a href="#fixed-in-v200-rc4" class="md-nav__link">
|
|
9318
9360
|
<span class="md-ellipsis">
|
|
9319
|
-
Fixed
|
|
9361
|
+
Fixed in v2.0.0-rc.4
|
|
9320
9362
|
</span>
|
|
9321
9363
|
</a>
|
|
9322
9364
|
|
|
9323
9365
|
</li>
|
|
9324
9366
|
|
|
9325
9367
|
<li class="md-nav__item">
|
|
9326
|
-
<a href="#
|
|
9368
|
+
<a href="#dependencies-in-v200-rc4" class="md-nav__link">
|
|
9327
9369
|
<span class="md-ellipsis">
|
|
9328
|
-
Dependencies
|
|
9370
|
+
Dependencies in v2.0.0-rc.4
|
|
9329
9371
|
</span>
|
|
9330
9372
|
</a>
|
|
9331
9373
|
|
|
9332
9374
|
</li>
|
|
9333
9375
|
|
|
9334
9376
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9377
|
+
<a href="#documentation-in-v200-rc4" class="md-nav__link">
|
|
9336
9378
|
<span class="md-ellipsis">
|
|
9337
|
-
Documentation
|
|
9379
|
+
Documentation in v2.0.0-rc.4
|
|
9338
9380
|
</span>
|
|
9339
9381
|
</a>
|
|
9340
9382
|
|
|
9341
9383
|
</li>
|
|
9342
9384
|
|
|
9343
9385
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9386
|
+
<a href="#housekeeping-in-v200-rc4" class="md-nav__link">
|
|
9345
9387
|
<span class="md-ellipsis">
|
|
9346
|
-
Housekeeping
|
|
9388
|
+
Housekeeping in v2.0.0-rc.4
|
|
9347
9389
|
</span>
|
|
9348
9390
|
</a>
|
|
9349
9391
|
|
|
@@ -9365,63 +9407,63 @@
|
|
|
9365
9407
|
<ul class="md-nav__list">
|
|
9366
9408
|
|
|
9367
9409
|
<li class="md-nav__item">
|
|
9368
|
-
<a href="#
|
|
9410
|
+
<a href="#security-in-v200-rc3" class="md-nav__link">
|
|
9369
9411
|
<span class="md-ellipsis">
|
|
9370
|
-
Security
|
|
9412
|
+
Security in v2.0.0-rc.3
|
|
9371
9413
|
</span>
|
|
9372
9414
|
</a>
|
|
9373
9415
|
|
|
9374
9416
|
</li>
|
|
9375
9417
|
|
|
9376
9418
|
<li class="md-nav__item">
|
|
9377
|
-
<a href="#
|
|
9419
|
+
<a href="#added-in-v200-rc3" class="md-nav__link">
|
|
9378
9420
|
<span class="md-ellipsis">
|
|
9379
|
-
Added
|
|
9421
|
+
Added in v2.0.0-rc.3
|
|
9380
9422
|
</span>
|
|
9381
9423
|
</a>
|
|
9382
9424
|
|
|
9383
9425
|
</li>
|
|
9384
9426
|
|
|
9385
9427
|
<li class="md-nav__item">
|
|
9386
|
-
<a href="#
|
|
9428
|
+
<a href="#changed-in-v200-rc3" class="md-nav__link">
|
|
9387
9429
|
<span class="md-ellipsis">
|
|
9388
|
-
Changed
|
|
9430
|
+
Changed in v2.0.0-rc.3
|
|
9389
9431
|
</span>
|
|
9390
9432
|
</a>
|
|
9391
9433
|
|
|
9392
9434
|
</li>
|
|
9393
9435
|
|
|
9394
9436
|
<li class="md-nav__item">
|
|
9395
|
-
<a href="#
|
|
9437
|
+
<a href="#removed-in-v200-rc3" class="md-nav__link">
|
|
9396
9438
|
<span class="md-ellipsis">
|
|
9397
|
-
Removed
|
|
9439
|
+
Removed in v2.0.0-rc.3
|
|
9398
9440
|
</span>
|
|
9399
9441
|
</a>
|
|
9400
9442
|
|
|
9401
9443
|
</li>
|
|
9402
9444
|
|
|
9403
9445
|
<li class="md-nav__item">
|
|
9404
|
-
<a href="#
|
|
9446
|
+
<a href="#fixed-in-v200-rc3" class="md-nav__link">
|
|
9405
9447
|
<span class="md-ellipsis">
|
|
9406
|
-
Fixed
|
|
9448
|
+
Fixed in v2.0.0-rc.3
|
|
9407
9449
|
</span>
|
|
9408
9450
|
</a>
|
|
9409
9451
|
|
|
9410
9452
|
</li>
|
|
9411
9453
|
|
|
9412
9454
|
<li class="md-nav__item">
|
|
9413
|
-
<a href="#
|
|
9455
|
+
<a href="#documentation-in-v200-rc3" class="md-nav__link">
|
|
9414
9456
|
<span class="md-ellipsis">
|
|
9415
|
-
Documentation
|
|
9457
|
+
Documentation in v2.0.0-rc.3
|
|
9416
9458
|
</span>
|
|
9417
9459
|
</a>
|
|
9418
9460
|
|
|
9419
9461
|
</li>
|
|
9420
9462
|
|
|
9421
9463
|
<li class="md-nav__item">
|
|
9422
|
-
<a href="#
|
|
9464
|
+
<a href="#housekeeping-in-v200-rc3" class="md-nav__link">
|
|
9423
9465
|
<span class="md-ellipsis">
|
|
9424
|
-
Housekeeping
|
|
9466
|
+
Housekeeping in v2.0.0-rc.3
|
|
9425
9467
|
</span>
|
|
9426
9468
|
</a>
|
|
9427
9469
|
|
|
@@ -9443,36 +9485,36 @@
|
|
|
9443
9485
|
<ul class="md-nav__list">
|
|
9444
9486
|
|
|
9445
9487
|
<li class="md-nav__item">
|
|
9446
|
-
<a href="#
|
|
9488
|
+
<a href="#added-in-v200rc-2" class="md-nav__link">
|
|
9447
9489
|
<span class="md-ellipsis">
|
|
9448
|
-
Added
|
|
9490
|
+
Added in v2.0.0.rc-2
|
|
9449
9491
|
</span>
|
|
9450
9492
|
</a>
|
|
9451
9493
|
|
|
9452
9494
|
</li>
|
|
9453
9495
|
|
|
9454
9496
|
<li class="md-nav__item">
|
|
9455
|
-
<a href="#
|
|
9497
|
+
<a href="#changed-in-v200rc-2" class="md-nav__link">
|
|
9456
9498
|
<span class="md-ellipsis">
|
|
9457
|
-
Changed
|
|
9499
|
+
Changed in v2.0.0.rc-2
|
|
9458
9500
|
</span>
|
|
9459
9501
|
</a>
|
|
9460
9502
|
|
|
9461
9503
|
</li>
|
|
9462
9504
|
|
|
9463
9505
|
<li class="md-nav__item">
|
|
9464
|
-
<a href="#
|
|
9506
|
+
<a href="#removed-in-v200rc-2" class="md-nav__link">
|
|
9465
9507
|
<span class="md-ellipsis">
|
|
9466
|
-
Removed
|
|
9508
|
+
Removed in v2.0.0.rc-2
|
|
9467
9509
|
</span>
|
|
9468
9510
|
</a>
|
|
9469
9511
|
|
|
9470
9512
|
</li>
|
|
9471
9513
|
|
|
9472
9514
|
<li class="md-nav__item">
|
|
9473
|
-
<a href="#
|
|
9515
|
+
<a href="#fixed-in-v200rc-2" class="md-nav__link">
|
|
9474
9516
|
<span class="md-ellipsis">
|
|
9475
|
-
Fixed
|
|
9517
|
+
Fixed in v2.0.0.rc-2
|
|
9476
9518
|
</span>
|
|
9477
9519
|
</a>
|
|
9478
9520
|
|
|
@@ -9494,63 +9536,63 @@
|
|
|
9494
9536
|
<ul class="md-nav__list">
|
|
9495
9537
|
|
|
9496
9538
|
<li class="md-nav__item">
|
|
9497
|
-
<a href="#
|
|
9539
|
+
<a href="#added-in-v200rc1" class="md-nav__link">
|
|
9498
9540
|
<span class="md-ellipsis">
|
|
9499
|
-
Added
|
|
9541
|
+
Added in v2.0.0rc1
|
|
9500
9542
|
</span>
|
|
9501
9543
|
</a>
|
|
9502
9544
|
|
|
9503
9545
|
</li>
|
|
9504
9546
|
|
|
9505
9547
|
<li class="md-nav__item">
|
|
9506
|
-
<a href="#
|
|
9548
|
+
<a href="#changed-in-v200rc1" class="md-nav__link">
|
|
9507
9549
|
<span class="md-ellipsis">
|
|
9508
|
-
Changed
|
|
9550
|
+
Changed in v2.0.0rc1
|
|
9509
9551
|
</span>
|
|
9510
9552
|
</a>
|
|
9511
9553
|
|
|
9512
9554
|
</li>
|
|
9513
9555
|
|
|
9514
9556
|
<li class="md-nav__item">
|
|
9515
|
-
<a href="#
|
|
9557
|
+
<a href="#removed-in-v200rc1" class="md-nav__link">
|
|
9516
9558
|
<span class="md-ellipsis">
|
|
9517
|
-
Removed
|
|
9559
|
+
Removed in v2.0.0rc1
|
|
9518
9560
|
</span>
|
|
9519
9561
|
</a>
|
|
9520
9562
|
|
|
9521
9563
|
</li>
|
|
9522
9564
|
|
|
9523
9565
|
<li class="md-nav__item">
|
|
9524
|
-
<a href="#
|
|
9566
|
+
<a href="#fixed-in-v200rc1" class="md-nav__link">
|
|
9525
9567
|
<span class="md-ellipsis">
|
|
9526
|
-
Fixed
|
|
9568
|
+
Fixed in v2.0.0rc1
|
|
9527
9569
|
</span>
|
|
9528
9570
|
</a>
|
|
9529
9571
|
|
|
9530
9572
|
</li>
|
|
9531
9573
|
|
|
9532
9574
|
<li class="md-nav__item">
|
|
9533
|
-
<a href="#
|
|
9575
|
+
<a href="#dependencies-in-v200rc1" class="md-nav__link">
|
|
9534
9576
|
<span class="md-ellipsis">
|
|
9535
|
-
Dependencies
|
|
9577
|
+
Dependencies in v2.0.0rc1
|
|
9536
9578
|
</span>
|
|
9537
9579
|
</a>
|
|
9538
9580
|
|
|
9539
9581
|
</li>
|
|
9540
9582
|
|
|
9541
9583
|
<li class="md-nav__item">
|
|
9542
|
-
<a href="#
|
|
9584
|
+
<a href="#documentation-in-v200rc1" class="md-nav__link">
|
|
9543
9585
|
<span class="md-ellipsis">
|
|
9544
|
-
Documentation
|
|
9586
|
+
Documentation in v2.0.0rc1
|
|
9545
9587
|
</span>
|
|
9546
9588
|
</a>
|
|
9547
9589
|
|
|
9548
9590
|
</li>
|
|
9549
9591
|
|
|
9550
9592
|
<li class="md-nav__item">
|
|
9551
|
-
<a href="#
|
|
9593
|
+
<a href="#housekeeping-in-v200rc1" class="md-nav__link">
|
|
9552
9594
|
<span class="md-ellipsis">
|
|
9553
|
-
Housekeeping
|
|
9595
|
+
Housekeeping in v2.0.0rc1
|
|
9554
9596
|
</span>
|
|
9555
9597
|
</a>
|
|
9556
9598
|
|
|
@@ -9572,63 +9614,63 @@
|
|
|
9572
9614
|
<ul class="md-nav__list">
|
|
9573
9615
|
|
|
9574
9616
|
<li class="md-nav__item">
|
|
9575
|
-
<a href="#
|
|
9617
|
+
<a href="#added-in-v200-beta2" class="md-nav__link">
|
|
9576
9618
|
<span class="md-ellipsis">
|
|
9577
|
-
Added
|
|
9619
|
+
Added in v2.0.0-beta.2
|
|
9578
9620
|
</span>
|
|
9579
9621
|
</a>
|
|
9580
9622
|
|
|
9581
9623
|
</li>
|
|
9582
9624
|
|
|
9583
9625
|
<li class="md-nav__item">
|
|
9584
|
-
<a href="#
|
|
9626
|
+
<a href="#changed-in-v200-beta2" class="md-nav__link">
|
|
9585
9627
|
<span class="md-ellipsis">
|
|
9586
|
-
Changed
|
|
9628
|
+
Changed in v2.0.0-beta.2
|
|
9587
9629
|
</span>
|
|
9588
9630
|
</a>
|
|
9589
9631
|
|
|
9590
9632
|
</li>
|
|
9591
9633
|
|
|
9592
9634
|
<li class="md-nav__item">
|
|
9593
|
-
<a href="#
|
|
9635
|
+
<a href="#removed-in-v200-beta2" class="md-nav__link">
|
|
9594
9636
|
<span class="md-ellipsis">
|
|
9595
|
-
Removed
|
|
9637
|
+
Removed in v2.0.0-beta.2
|
|
9596
9638
|
</span>
|
|
9597
9639
|
</a>
|
|
9598
9640
|
|
|
9599
9641
|
</li>
|
|
9600
9642
|
|
|
9601
9643
|
<li class="md-nav__item">
|
|
9602
|
-
<a href="#
|
|
9644
|
+
<a href="#fixed-in-v200-beta2" class="md-nav__link">
|
|
9603
9645
|
<span class="md-ellipsis">
|
|
9604
|
-
Fixed
|
|
9646
|
+
Fixed in v2.0.0-beta.2
|
|
9605
9647
|
</span>
|
|
9606
9648
|
</a>
|
|
9607
9649
|
|
|
9608
9650
|
</li>
|
|
9609
9651
|
|
|
9610
9652
|
<li class="md-nav__item">
|
|
9611
|
-
<a href="#
|
|
9653
|
+
<a href="#dependencies-in-v200-beta2" class="md-nav__link">
|
|
9612
9654
|
<span class="md-ellipsis">
|
|
9613
|
-
Dependencies
|
|
9655
|
+
Dependencies in v2.0.0-beta.2
|
|
9614
9656
|
</span>
|
|
9615
9657
|
</a>
|
|
9616
9658
|
|
|
9617
9659
|
</li>
|
|
9618
9660
|
|
|
9619
9661
|
<li class="md-nav__item">
|
|
9620
|
-
<a href="#
|
|
9662
|
+
<a href="#documentation-in-v200-beta2" class="md-nav__link">
|
|
9621
9663
|
<span class="md-ellipsis">
|
|
9622
|
-
Documentation
|
|
9664
|
+
Documentation in v2.0.0-beta.2
|
|
9623
9665
|
</span>
|
|
9624
9666
|
</a>
|
|
9625
9667
|
|
|
9626
9668
|
</li>
|
|
9627
9669
|
|
|
9628
9670
|
<li class="md-nav__item">
|
|
9629
|
-
<a href="#
|
|
9671
|
+
<a href="#housekeeping-in-v200-beta2" class="md-nav__link">
|
|
9630
9672
|
<span class="md-ellipsis">
|
|
9631
|
-
Housekeeping
|
|
9673
|
+
Housekeeping in v2.0.0-beta.2
|
|
9632
9674
|
</span>
|
|
9633
9675
|
</a>
|
|
9634
9676
|
|
|
@@ -9650,63 +9692,63 @@
|
|
|
9650
9692
|
<ul class="md-nav__list">
|
|
9651
9693
|
|
|
9652
9694
|
<li class="md-nav__item">
|
|
9653
|
-
<a href="#
|
|
9695
|
+
<a href="#added-in-v200-beta1" class="md-nav__link">
|
|
9654
9696
|
<span class="md-ellipsis">
|
|
9655
|
-
Added
|
|
9697
|
+
Added in v2.0.0-beta.1
|
|
9656
9698
|
</span>
|
|
9657
9699
|
</a>
|
|
9658
9700
|
|
|
9659
9701
|
</li>
|
|
9660
9702
|
|
|
9661
9703
|
<li class="md-nav__item">
|
|
9662
|
-
<a href="#
|
|
9704
|
+
<a href="#changed-in-v200-beta1" class="md-nav__link">
|
|
9663
9705
|
<span class="md-ellipsis">
|
|
9664
|
-
Changed
|
|
9706
|
+
Changed in v2.0.0-beta.1
|
|
9665
9707
|
</span>
|
|
9666
9708
|
</a>
|
|
9667
9709
|
|
|
9668
9710
|
</li>
|
|
9669
9711
|
|
|
9670
9712
|
<li class="md-nav__item">
|
|
9671
|
-
<a href="#
|
|
9713
|
+
<a href="#removed-in-v200-beta1" class="md-nav__link">
|
|
9672
9714
|
<span class="md-ellipsis">
|
|
9673
|
-
Removed
|
|
9715
|
+
Removed in v2.0.0-beta.1
|
|
9674
9716
|
</span>
|
|
9675
9717
|
</a>
|
|
9676
9718
|
|
|
9677
9719
|
</li>
|
|
9678
9720
|
|
|
9679
9721
|
<li class="md-nav__item">
|
|
9680
|
-
<a href="#
|
|
9722
|
+
<a href="#fixed-in-v200-beta1" class="md-nav__link">
|
|
9681
9723
|
<span class="md-ellipsis">
|
|
9682
|
-
Fixed
|
|
9724
|
+
Fixed in v2.0.0-beta.1
|
|
9683
9725
|
</span>
|
|
9684
9726
|
</a>
|
|
9685
9727
|
|
|
9686
9728
|
</li>
|
|
9687
9729
|
|
|
9688
9730
|
<li class="md-nav__item">
|
|
9689
|
-
<a href="#
|
|
9731
|
+
<a href="#dependencies-in-v200-beta1" class="md-nav__link">
|
|
9690
9732
|
<span class="md-ellipsis">
|
|
9691
|
-
Dependencies
|
|
9733
|
+
Dependencies in v2.0.0-beta.1
|
|
9692
9734
|
</span>
|
|
9693
9735
|
</a>
|
|
9694
9736
|
|
|
9695
9737
|
</li>
|
|
9696
9738
|
|
|
9697
9739
|
<li class="md-nav__item">
|
|
9698
|
-
<a href="#
|
|
9740
|
+
<a href="#documentation-in-v200-beta1" class="md-nav__link">
|
|
9699
9741
|
<span class="md-ellipsis">
|
|
9700
|
-
Documentation
|
|
9742
|
+
Documentation in v2.0.0-beta.1
|
|
9701
9743
|
</span>
|
|
9702
9744
|
</a>
|
|
9703
9745
|
|
|
9704
9746
|
</li>
|
|
9705
9747
|
|
|
9706
9748
|
<li class="md-nav__item">
|
|
9707
|
-
<a href="#
|
|
9749
|
+
<a href="#housekeeping-in-v200-beta1" class="md-nav__link">
|
|
9708
9750
|
<span class="md-ellipsis">
|
|
9709
|
-
Housekeeping
|
|
9751
|
+
Housekeeping in v2.0.0-beta.1
|
|
9710
9752
|
</span>
|
|
9711
9753
|
</a>
|
|
9712
9754
|
|
|
@@ -9728,45 +9770,45 @@
|
|
|
9728
9770
|
<ul class="md-nav__list">
|
|
9729
9771
|
|
|
9730
9772
|
<li class="md-nav__item">
|
|
9731
|
-
<a href="#
|
|
9773
|
+
<a href="#added-in-v200-alpha3" class="md-nav__link">
|
|
9732
9774
|
<span class="md-ellipsis">
|
|
9733
|
-
Added
|
|
9775
|
+
Added in v2.0.0-alpha.3
|
|
9734
9776
|
</span>
|
|
9735
9777
|
</a>
|
|
9736
9778
|
|
|
9737
9779
|
</li>
|
|
9738
9780
|
|
|
9739
9781
|
<li class="md-nav__item">
|
|
9740
|
-
<a href="#
|
|
9782
|
+
<a href="#changed-in-v200-alpha3" class="md-nav__link">
|
|
9741
9783
|
<span class="md-ellipsis">
|
|
9742
|
-
Changed
|
|
9784
|
+
Changed in v2.0.0-alpha.3
|
|
9743
9785
|
</span>
|
|
9744
9786
|
</a>
|
|
9745
9787
|
|
|
9746
9788
|
</li>
|
|
9747
9789
|
|
|
9748
9790
|
<li class="md-nav__item">
|
|
9749
|
-
<a href="#
|
|
9791
|
+
<a href="#removed-in-v200-alpha3" class="md-nav__link">
|
|
9750
9792
|
<span class="md-ellipsis">
|
|
9751
|
-
Removed
|
|
9793
|
+
Removed in v2.0.0-alpha.3
|
|
9752
9794
|
</span>
|
|
9753
9795
|
</a>
|
|
9754
9796
|
|
|
9755
9797
|
</li>
|
|
9756
9798
|
|
|
9757
9799
|
<li class="md-nav__item">
|
|
9758
|
-
<a href="#
|
|
9800
|
+
<a href="#dependencies-in-v200-alpha3" class="md-nav__link">
|
|
9759
9801
|
<span class="md-ellipsis">
|
|
9760
|
-
Dependencies
|
|
9802
|
+
Dependencies in v2.0.0-alpha.3
|
|
9761
9803
|
</span>
|
|
9762
9804
|
</a>
|
|
9763
9805
|
|
|
9764
9806
|
</li>
|
|
9765
9807
|
|
|
9766
9808
|
<li class="md-nav__item">
|
|
9767
|
-
<a href="#
|
|
9809
|
+
<a href="#housekeeping-in-v200-alpha3" class="md-nav__link">
|
|
9768
9810
|
<span class="md-ellipsis">
|
|
9769
|
-
Housekeeping
|
|
9811
|
+
Housekeeping in v2.0.0-alpha.3
|
|
9770
9812
|
</span>
|
|
9771
9813
|
</a>
|
|
9772
9814
|
|
|
@@ -9788,54 +9830,54 @@
|
|
|
9788
9830
|
<ul class="md-nav__list">
|
|
9789
9831
|
|
|
9790
9832
|
<li class="md-nav__item">
|
|
9791
|
-
<a href="#
|
|
9833
|
+
<a href="#added-in-v200-alpha2" class="md-nav__link">
|
|
9792
9834
|
<span class="md-ellipsis">
|
|
9793
|
-
Added
|
|
9835
|
+
Added in v2.0.0-alpha.2
|
|
9794
9836
|
</span>
|
|
9795
9837
|
</a>
|
|
9796
9838
|
|
|
9797
9839
|
</li>
|
|
9798
9840
|
|
|
9799
9841
|
<li class="md-nav__item">
|
|
9800
|
-
<a href="#
|
|
9842
|
+
<a href="#changed-in-v200-alpha2" class="md-nav__link">
|
|
9801
9843
|
<span class="md-ellipsis">
|
|
9802
|
-
Changed
|
|
9844
|
+
Changed in v2.0.0-alpha.2
|
|
9803
9845
|
</span>
|
|
9804
9846
|
</a>
|
|
9805
9847
|
|
|
9806
9848
|
</li>
|
|
9807
9849
|
|
|
9808
9850
|
<li class="md-nav__item">
|
|
9809
|
-
<a href="#
|
|
9851
|
+
<a href="#removed-in-v200-alpha2" class="md-nav__link">
|
|
9810
9852
|
<span class="md-ellipsis">
|
|
9811
|
-
Removed
|
|
9853
|
+
Removed in v2.0.0-alpha.2
|
|
9812
9854
|
</span>
|
|
9813
9855
|
</a>
|
|
9814
9856
|
|
|
9815
9857
|
</li>
|
|
9816
9858
|
|
|
9817
9859
|
<li class="md-nav__item">
|
|
9818
|
-
<a href="#
|
|
9860
|
+
<a href="#fixed-in-v200-alpha2" class="md-nav__link">
|
|
9819
9861
|
<span class="md-ellipsis">
|
|
9820
|
-
Fixed
|
|
9862
|
+
Fixed in v2.0.0-alpha.2
|
|
9821
9863
|
</span>
|
|
9822
9864
|
</a>
|
|
9823
9865
|
|
|
9824
9866
|
</li>
|
|
9825
9867
|
|
|
9826
9868
|
<li class="md-nav__item">
|
|
9827
|
-
<a href="#
|
|
9869
|
+
<a href="#dependencies-in-v200-alpha2" class="md-nav__link">
|
|
9828
9870
|
<span class="md-ellipsis">
|
|
9829
|
-
Dependencies
|
|
9871
|
+
Dependencies in v2.0.0-alpha.2
|
|
9830
9872
|
</span>
|
|
9831
9873
|
</a>
|
|
9832
9874
|
|
|
9833
9875
|
</li>
|
|
9834
9876
|
|
|
9835
9877
|
<li class="md-nav__item">
|
|
9836
|
-
<a href="#
|
|
9878
|
+
<a href="#housekeeping-in-v200-alpha2" class="md-nav__link">
|
|
9837
9879
|
<span class="md-ellipsis">
|
|
9838
|
-
Housekeeping
|
|
9880
|
+
Housekeeping in v2.0.0-alpha.2
|
|
9839
9881
|
</span>
|
|
9840
9882
|
</a>
|
|
9841
9883
|
|
|
@@ -9857,63 +9899,63 @@
|
|
|
9857
9899
|
<ul class="md-nav__list">
|
|
9858
9900
|
|
|
9859
9901
|
<li class="md-nav__item">
|
|
9860
|
-
<a href="#
|
|
9902
|
+
<a href="#added-in-v200-alpha1" class="md-nav__link">
|
|
9861
9903
|
<span class="md-ellipsis">
|
|
9862
|
-
Added
|
|
9904
|
+
Added in v2.0.0-alpha.1
|
|
9863
9905
|
</span>
|
|
9864
9906
|
</a>
|
|
9865
9907
|
|
|
9866
9908
|
</li>
|
|
9867
9909
|
|
|
9868
9910
|
<li class="md-nav__item">
|
|
9869
|
-
<a href="#
|
|
9911
|
+
<a href="#changed-in-v200-alpha1" class="md-nav__link">
|
|
9870
9912
|
<span class="md-ellipsis">
|
|
9871
|
-
Changed
|
|
9913
|
+
Changed in v2.0.0-alpha.1
|
|
9872
9914
|
</span>
|
|
9873
9915
|
</a>
|
|
9874
9916
|
|
|
9875
9917
|
</li>
|
|
9876
9918
|
|
|
9877
9919
|
<li class="md-nav__item">
|
|
9878
|
-
<a href="#
|
|
9920
|
+
<a href="#removed-in-v200-alpha1" class="md-nav__link">
|
|
9879
9921
|
<span class="md-ellipsis">
|
|
9880
|
-
Removed
|
|
9922
|
+
Removed in v2.0.0-alpha.1
|
|
9881
9923
|
</span>
|
|
9882
9924
|
</a>
|
|
9883
9925
|
|
|
9884
9926
|
</li>
|
|
9885
9927
|
|
|
9886
9928
|
<li class="md-nav__item">
|
|
9887
|
-
<a href="#
|
|
9929
|
+
<a href="#fixed-in-v200-alpha1" class="md-nav__link">
|
|
9888
9930
|
<span class="md-ellipsis">
|
|
9889
|
-
Fixed
|
|
9931
|
+
Fixed in v2.0.0-alpha.1
|
|
9890
9932
|
</span>
|
|
9891
9933
|
</a>
|
|
9892
9934
|
|
|
9893
9935
|
</li>
|
|
9894
9936
|
|
|
9895
9937
|
<li class="md-nav__item">
|
|
9896
|
-
<a href="#
|
|
9938
|
+
<a href="#dependencies-in-v200-alpha1" class="md-nav__link">
|
|
9897
9939
|
<span class="md-ellipsis">
|
|
9898
|
-
Dependencies
|
|
9940
|
+
Dependencies in v2.0.0-alpha.1
|
|
9899
9941
|
</span>
|
|
9900
9942
|
</a>
|
|
9901
9943
|
|
|
9902
9944
|
</li>
|
|
9903
9945
|
|
|
9904
9946
|
<li class="md-nav__item">
|
|
9905
|
-
<a href="#
|
|
9947
|
+
<a href="#documentation-in-v200-alpha1" class="md-nav__link">
|
|
9906
9948
|
<span class="md-ellipsis">
|
|
9907
|
-
Documentation
|
|
9949
|
+
Documentation in v2.0.0-alpha.1
|
|
9908
9950
|
</span>
|
|
9909
9951
|
</a>
|
|
9910
9952
|
|
|
9911
9953
|
</li>
|
|
9912
9954
|
|
|
9913
9955
|
<li class="md-nav__item">
|
|
9914
|
-
<a href="#
|
|
9956
|
+
<a href="#housekeeping-in-v200-alpha1" class="md-nav__link">
|
|
9915
9957
|
<span class="md-ellipsis">
|
|
9916
|
-
Housekeeping
|
|
9958
|
+
Housekeeping in v2.0.0-alpha.1
|
|
9917
9959
|
</span>
|
|
9918
9960
|
</a>
|
|
9919
9961
|
|
|
@@ -10619,9 +10661,9 @@
|
|
|
10619
10661
|
</li>
|
|
10620
10662
|
|
|
10621
10663
|
<li class="md-nav__item">
|
|
10622
|
-
<a href="#generic-role-model-
|
|
10664
|
+
<a href="#migration-to-generic-role-model-1063" class="md-nav__link">
|
|
10623
10665
|
<span class="md-ellipsis">
|
|
10624
|
-
Generic Role Model (#1063)
|
|
10666
|
+
Migration to Generic Role Model (#1063)
|
|
10625
10667
|
</span>
|
|
10626
10668
|
</a>
|
|
10627
10669
|
|
|
@@ -10780,72 +10822,72 @@
|
|
|
10780
10822
|
<ul class="md-nav__list">
|
|
10781
10823
|
|
|
10782
10824
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#security" class="md-nav__link">
|
|
10825
|
+
<a href="#security-in-v206" class="md-nav__link">
|
|
10784
10826
|
<span class="md-ellipsis">
|
|
10785
|
-
Security
|
|
10827
|
+
Security in v2.0.6
|
|
10786
10828
|
</span>
|
|
10787
10829
|
</a>
|
|
10788
10830
|
|
|
10789
10831
|
</li>
|
|
10790
10832
|
|
|
10791
10833
|
<li class="md-nav__item">
|
|
10792
|
-
<a href="#
|
|
10834
|
+
<a href="#added-in-v206" class="md-nav__link">
|
|
10793
10835
|
<span class="md-ellipsis">
|
|
10794
|
-
Added
|
|
10836
|
+
Added in v2.0.6
|
|
10795
10837
|
</span>
|
|
10796
10838
|
</a>
|
|
10797
10839
|
|
|
10798
10840
|
</li>
|
|
10799
10841
|
|
|
10800
10842
|
<li class="md-nav__item">
|
|
10801
|
-
<a href="#
|
|
10843
|
+
<a href="#changed-in-v206" class="md-nav__link">
|
|
10802
10844
|
<span class="md-ellipsis">
|
|
10803
|
-
Changed
|
|
10845
|
+
Changed in v2.0.6
|
|
10804
10846
|
</span>
|
|
10805
10847
|
</a>
|
|
10806
10848
|
|
|
10807
10849
|
</li>
|
|
10808
10850
|
|
|
10809
10851
|
<li class="md-nav__item">
|
|
10810
|
-
<a href="#
|
|
10852
|
+
<a href="#removed-in-v206" class="md-nav__link">
|
|
10811
10853
|
<span class="md-ellipsis">
|
|
10812
|
-
Removed
|
|
10854
|
+
Removed in v2.0.6
|
|
10813
10855
|
</span>
|
|
10814
10856
|
</a>
|
|
10815
10857
|
|
|
10816
10858
|
</li>
|
|
10817
10859
|
|
|
10818
10860
|
<li class="md-nav__item">
|
|
10819
|
-
<a href="#fixed" class="md-nav__link">
|
|
10861
|
+
<a href="#fixed-in-v206" class="md-nav__link">
|
|
10820
10862
|
<span class="md-ellipsis">
|
|
10821
|
-
Fixed
|
|
10863
|
+
Fixed in v2.0.6
|
|
10822
10864
|
</span>
|
|
10823
10865
|
</a>
|
|
10824
10866
|
|
|
10825
10867
|
</li>
|
|
10826
10868
|
|
|
10827
10869
|
<li class="md-nav__item">
|
|
10828
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10870
|
+
<a href="#dependencies-in-v206" class="md-nav__link">
|
|
10829
10871
|
<span class="md-ellipsis">
|
|
10830
|
-
Dependencies
|
|
10872
|
+
Dependencies in v2.0.6
|
|
10831
10873
|
</span>
|
|
10832
10874
|
</a>
|
|
10833
10875
|
|
|
10834
10876
|
</li>
|
|
10835
10877
|
|
|
10836
10878
|
<li class="md-nav__item">
|
|
10837
|
-
<a href="#documentation" class="md-nav__link">
|
|
10879
|
+
<a href="#documentation-in-v206" class="md-nav__link">
|
|
10838
10880
|
<span class="md-ellipsis">
|
|
10839
|
-
Documentation
|
|
10881
|
+
Documentation in v2.0.6
|
|
10840
10882
|
</span>
|
|
10841
10883
|
</a>
|
|
10842
10884
|
|
|
10843
10885
|
</li>
|
|
10844
10886
|
|
|
10845
10887
|
<li class="md-nav__item">
|
|
10846
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10888
|
+
<a href="#housekeeping-in-v206" class="md-nav__link">
|
|
10847
10889
|
<span class="md-ellipsis">
|
|
10848
|
-
Housekeeping
|
|
10890
|
+
Housekeeping in v2.0.6
|
|
10849
10891
|
</span>
|
|
10850
10892
|
</a>
|
|
10851
10893
|
|
|
@@ -10867,54 +10909,54 @@
|
|
|
10867
10909
|
<ul class="md-nav__list">
|
|
10868
10910
|
|
|
10869
10911
|
<li class="md-nav__item">
|
|
10870
|
-
<a href="#
|
|
10912
|
+
<a href="#security-in-v205" class="md-nav__link">
|
|
10871
10913
|
<span class="md-ellipsis">
|
|
10872
|
-
Security
|
|
10914
|
+
Security in v2.0.5
|
|
10873
10915
|
</span>
|
|
10874
10916
|
</a>
|
|
10875
10917
|
|
|
10876
10918
|
</li>
|
|
10877
10919
|
|
|
10878
10920
|
<li class="md-nav__item">
|
|
10879
|
-
<a href="#
|
|
10921
|
+
<a href="#changed-in-v205" class="md-nav__link">
|
|
10880
10922
|
<span class="md-ellipsis">
|
|
10881
|
-
Changed
|
|
10923
|
+
Changed in v2.0.5
|
|
10882
10924
|
</span>
|
|
10883
10925
|
</a>
|
|
10884
10926
|
|
|
10885
10927
|
</li>
|
|
10886
10928
|
|
|
10887
10929
|
<li class="md-nav__item">
|
|
10888
|
-
<a href="#
|
|
10930
|
+
<a href="#fixed-in-v205" class="md-nav__link">
|
|
10889
10931
|
<span class="md-ellipsis">
|
|
10890
|
-
Fixed
|
|
10932
|
+
Fixed in v2.0.5
|
|
10891
10933
|
</span>
|
|
10892
10934
|
</a>
|
|
10893
10935
|
|
|
10894
10936
|
</li>
|
|
10895
10937
|
|
|
10896
10938
|
<li class="md-nav__item">
|
|
10897
|
-
<a href="#
|
|
10939
|
+
<a href="#dependencies-in-v205" class="md-nav__link">
|
|
10898
10940
|
<span class="md-ellipsis">
|
|
10899
|
-
Dependencies
|
|
10941
|
+
Dependencies in v2.0.5
|
|
10900
10942
|
</span>
|
|
10901
10943
|
</a>
|
|
10902
10944
|
|
|
10903
10945
|
</li>
|
|
10904
10946
|
|
|
10905
10947
|
<li class="md-nav__item">
|
|
10906
|
-
<a href="#
|
|
10948
|
+
<a href="#documentation-in-v205" class="md-nav__link">
|
|
10907
10949
|
<span class="md-ellipsis">
|
|
10908
|
-
Documentation
|
|
10950
|
+
Documentation in v2.0.5
|
|
10909
10951
|
</span>
|
|
10910
10952
|
</a>
|
|
10911
10953
|
|
|
10912
10954
|
</li>
|
|
10913
10955
|
|
|
10914
10956
|
<li class="md-nav__item">
|
|
10915
|
-
<a href="#
|
|
10957
|
+
<a href="#housekeeping-in-v205" class="md-nav__link">
|
|
10916
10958
|
<span class="md-ellipsis">
|
|
10917
|
-
Housekeeping
|
|
10959
|
+
Housekeeping in v2.0.5
|
|
10918
10960
|
</span>
|
|
10919
10961
|
</a>
|
|
10920
10962
|
|
|
@@ -10936,54 +10978,54 @@
|
|
|
10936
10978
|
<ul class="md-nav__list">
|
|
10937
10979
|
|
|
10938
10980
|
<li class="md-nav__item">
|
|
10939
|
-
<a href="#
|
|
10981
|
+
<a href="#security-in-v204" class="md-nav__link">
|
|
10940
10982
|
<span class="md-ellipsis">
|
|
10941
|
-
Security
|
|
10983
|
+
Security in v2.0.4
|
|
10942
10984
|
</span>
|
|
10943
10985
|
</a>
|
|
10944
10986
|
|
|
10945
10987
|
</li>
|
|
10946
10988
|
|
|
10947
10989
|
<li class="md-nav__item">
|
|
10948
|
-
<a href="#
|
|
10990
|
+
<a href="#added-in-v204" class="md-nav__link">
|
|
10949
10991
|
<span class="md-ellipsis">
|
|
10950
|
-
Added
|
|
10992
|
+
Added in v2.0.4
|
|
10951
10993
|
</span>
|
|
10952
10994
|
</a>
|
|
10953
10995
|
|
|
10954
10996
|
</li>
|
|
10955
10997
|
|
|
10956
10998
|
<li class="md-nav__item">
|
|
10957
|
-
<a href="#
|
|
10999
|
+
<a href="#changed-in-v204" class="md-nav__link">
|
|
10958
11000
|
<span class="md-ellipsis">
|
|
10959
|
-
Changed
|
|
11001
|
+
Changed in v2.0.4
|
|
10960
11002
|
</span>
|
|
10961
11003
|
</a>
|
|
10962
11004
|
|
|
10963
11005
|
</li>
|
|
10964
11006
|
|
|
10965
11007
|
<li class="md-nav__item">
|
|
10966
|
-
<a href="#
|
|
11008
|
+
<a href="#fixed-in-v204" class="md-nav__link">
|
|
10967
11009
|
<span class="md-ellipsis">
|
|
10968
|
-
Fixed
|
|
11010
|
+
Fixed in v2.0.4
|
|
10969
11011
|
</span>
|
|
10970
11012
|
</a>
|
|
10971
11013
|
|
|
10972
11014
|
</li>
|
|
10973
11015
|
|
|
10974
11016
|
<li class="md-nav__item">
|
|
10975
|
-
<a href="#
|
|
11017
|
+
<a href="#documentation-in-v204" class="md-nav__link">
|
|
10976
11018
|
<span class="md-ellipsis">
|
|
10977
|
-
Documentation
|
|
11019
|
+
Documentation in v2.0.4
|
|
10978
11020
|
</span>
|
|
10979
11021
|
</a>
|
|
10980
11022
|
|
|
10981
11023
|
</li>
|
|
10982
11024
|
|
|
10983
11025
|
<li class="md-nav__item">
|
|
10984
|
-
<a href="#
|
|
11026
|
+
<a href="#housekeeping-in-v204" class="md-nav__link">
|
|
10985
11027
|
<span class="md-ellipsis">
|
|
10986
|
-
Housekeeping
|
|
11028
|
+
Housekeeping in v2.0.4
|
|
10987
11029
|
</span>
|
|
10988
11030
|
</a>
|
|
10989
11031
|
|
|
@@ -11005,54 +11047,54 @@
|
|
|
11005
11047
|
<ul class="md-nav__list">
|
|
11006
11048
|
|
|
11007
11049
|
<li class="md-nav__item">
|
|
11008
|
-
<a href="#
|
|
11050
|
+
<a href="#security-in-v203" class="md-nav__link">
|
|
11009
11051
|
<span class="md-ellipsis">
|
|
11010
|
-
Security
|
|
11052
|
+
Security in v2.0.3
|
|
11011
11053
|
</span>
|
|
11012
11054
|
</a>
|
|
11013
11055
|
|
|
11014
11056
|
</li>
|
|
11015
11057
|
|
|
11016
11058
|
<li class="md-nav__item">
|
|
11017
|
-
<a href="#
|
|
11059
|
+
<a href="#added-in-v203" class="md-nav__link">
|
|
11018
11060
|
<span class="md-ellipsis">
|
|
11019
|
-
Added
|
|
11061
|
+
Added in v2.0.3
|
|
11020
11062
|
</span>
|
|
11021
11063
|
</a>
|
|
11022
11064
|
|
|
11023
11065
|
</li>
|
|
11024
11066
|
|
|
11025
11067
|
<li class="md-nav__item">
|
|
11026
|
-
<a href="#
|
|
11068
|
+
<a href="#changed-in-v203" class="md-nav__link">
|
|
11027
11069
|
<span class="md-ellipsis">
|
|
11028
|
-
Changed
|
|
11070
|
+
Changed in v2.0.3
|
|
11029
11071
|
</span>
|
|
11030
11072
|
</a>
|
|
11031
11073
|
|
|
11032
11074
|
</li>
|
|
11033
11075
|
|
|
11034
11076
|
<li class="md-nav__item">
|
|
11035
|
-
<a href="#
|
|
11077
|
+
<a href="#fixed-in-v203" class="md-nav__link">
|
|
11036
11078
|
<span class="md-ellipsis">
|
|
11037
|
-
Fixed
|
|
11079
|
+
Fixed in v2.0.3
|
|
11038
11080
|
</span>
|
|
11039
11081
|
</a>
|
|
11040
11082
|
|
|
11041
11083
|
</li>
|
|
11042
11084
|
|
|
11043
11085
|
<li class="md-nav__item">
|
|
11044
|
-
<a href="#
|
|
11086
|
+
<a href="#documentation-in-v203" class="md-nav__link">
|
|
11045
11087
|
<span class="md-ellipsis">
|
|
11046
|
-
Documentation
|
|
11088
|
+
Documentation in v2.0.3
|
|
11047
11089
|
</span>
|
|
11048
11090
|
</a>
|
|
11049
11091
|
|
|
11050
11092
|
</li>
|
|
11051
11093
|
|
|
11052
11094
|
<li class="md-nav__item">
|
|
11053
|
-
<a href="#
|
|
11095
|
+
<a href="#housekeeping-in-v203" class="md-nav__link">
|
|
11054
11096
|
<span class="md-ellipsis">
|
|
11055
|
-
Housekeeping
|
|
11097
|
+
Housekeeping in v2.0.3
|
|
11056
11098
|
</span>
|
|
11057
11099
|
</a>
|
|
11058
11100
|
|
|
@@ -11074,54 +11116,54 @@
|
|
|
11074
11116
|
<ul class="md-nav__list">
|
|
11075
11117
|
|
|
11076
11118
|
<li class="md-nav__item">
|
|
11077
|
-
<a href="#
|
|
11119
|
+
<a href="#security-in-v202" class="md-nav__link">
|
|
11078
11120
|
<span class="md-ellipsis">
|
|
11079
|
-
Security
|
|
11121
|
+
Security in v2.0.2
|
|
11080
11122
|
</span>
|
|
11081
11123
|
</a>
|
|
11082
11124
|
|
|
11083
11125
|
</li>
|
|
11084
11126
|
|
|
11085
11127
|
<li class="md-nav__item">
|
|
11086
|
-
<a href="#
|
|
11128
|
+
<a href="#added-in-v202" class="md-nav__link">
|
|
11087
11129
|
<span class="md-ellipsis">
|
|
11088
|
-
Added
|
|
11130
|
+
Added in v2.0.2
|
|
11089
11131
|
</span>
|
|
11090
11132
|
</a>
|
|
11091
11133
|
|
|
11092
11134
|
</li>
|
|
11093
11135
|
|
|
11094
11136
|
<li class="md-nav__item">
|
|
11095
|
-
<a href="#
|
|
11137
|
+
<a href="#changed-in-v202" class="md-nav__link">
|
|
11096
11138
|
<span class="md-ellipsis">
|
|
11097
|
-
Changed
|
|
11139
|
+
Changed in v2.0.2
|
|
11098
11140
|
</span>
|
|
11099
11141
|
</a>
|
|
11100
11142
|
|
|
11101
11143
|
</li>
|
|
11102
11144
|
|
|
11103
11145
|
<li class="md-nav__item">
|
|
11104
|
-
<a href="#
|
|
11146
|
+
<a href="#fixed-in-v202" class="md-nav__link">
|
|
11105
11147
|
<span class="md-ellipsis">
|
|
11106
|
-
Fixed
|
|
11148
|
+
Fixed in v2.0.2
|
|
11107
11149
|
</span>
|
|
11108
11150
|
</a>
|
|
11109
11151
|
|
|
11110
11152
|
</li>
|
|
11111
11153
|
|
|
11112
11154
|
<li class="md-nav__item">
|
|
11113
|
-
<a href="#
|
|
11155
|
+
<a href="#documentation-in-v202" class="md-nav__link">
|
|
11114
11156
|
<span class="md-ellipsis">
|
|
11115
|
-
Documentation
|
|
11157
|
+
Documentation in v2.0.2
|
|
11116
11158
|
</span>
|
|
11117
11159
|
</a>
|
|
11118
11160
|
|
|
11119
11161
|
</li>
|
|
11120
11162
|
|
|
11121
11163
|
<li class="md-nav__item">
|
|
11122
|
-
<a href="#
|
|
11164
|
+
<a href="#housekeeping-in-v202" class="md-nav__link">
|
|
11123
11165
|
<span class="md-ellipsis">
|
|
11124
|
-
Housekeeping
|
|
11166
|
+
Housekeeping in v2.0.2
|
|
11125
11167
|
</span>
|
|
11126
11168
|
</a>
|
|
11127
11169
|
|
|
@@ -11143,18 +11185,18 @@
|
|
|
11143
11185
|
<ul class="md-nav__list">
|
|
11144
11186
|
|
|
11145
11187
|
<li class="md-nav__item">
|
|
11146
|
-
<a href="#
|
|
11188
|
+
<a href="#fixed-in-v201" class="md-nav__link">
|
|
11147
11189
|
<span class="md-ellipsis">
|
|
11148
|
-
Fixed
|
|
11190
|
+
Fixed in v2.0.1
|
|
11149
11191
|
</span>
|
|
11150
11192
|
</a>
|
|
11151
11193
|
|
|
11152
11194
|
</li>
|
|
11153
11195
|
|
|
11154
11196
|
<li class="md-nav__item">
|
|
11155
|
-
<a href="#
|
|
11197
|
+
<a href="#housekeeping-in-v201" class="md-nav__link">
|
|
11156
11198
|
<span class="md-ellipsis">
|
|
11157
|
-
Housekeeping
|
|
11199
|
+
Housekeeping in v2.0.1
|
|
11158
11200
|
</span>
|
|
11159
11201
|
</a>
|
|
11160
11202
|
|
|
@@ -11176,27 +11218,27 @@
|
|
|
11176
11218
|
<ul class="md-nav__list">
|
|
11177
11219
|
|
|
11178
11220
|
<li class="md-nav__item">
|
|
11179
|
-
<a href="#
|
|
11221
|
+
<a href="#added-in-v200" class="md-nav__link">
|
|
11180
11222
|
<span class="md-ellipsis">
|
|
11181
|
-
Added
|
|
11223
|
+
Added in v2.0.0
|
|
11182
11224
|
</span>
|
|
11183
11225
|
</a>
|
|
11184
11226
|
|
|
11185
11227
|
</li>
|
|
11186
11228
|
|
|
11187
11229
|
<li class="md-nav__item">
|
|
11188
|
-
<a href="#
|
|
11230
|
+
<a href="#fixed-in-v200" class="md-nav__link">
|
|
11189
11231
|
<span class="md-ellipsis">
|
|
11190
|
-
Fixed
|
|
11232
|
+
Fixed in v2.0.0
|
|
11191
11233
|
</span>
|
|
11192
11234
|
</a>
|
|
11193
11235
|
|
|
11194
11236
|
</li>
|
|
11195
11237
|
|
|
11196
11238
|
<li class="md-nav__item">
|
|
11197
|
-
<a href="#
|
|
11239
|
+
<a href="#documentation-in-v200" class="md-nav__link">
|
|
11198
11240
|
<span class="md-ellipsis">
|
|
11199
|
-
Documentation
|
|
11241
|
+
Documentation in v2.0.0
|
|
11200
11242
|
</span>
|
|
11201
11243
|
</a>
|
|
11202
11244
|
|
|
@@ -11218,72 +11260,72 @@
|
|
|
11218
11260
|
<ul class="md-nav__list">
|
|
11219
11261
|
|
|
11220
11262
|
<li class="md-nav__item">
|
|
11221
|
-
<a href="#
|
|
11263
|
+
<a href="#security-in-v200-rc4" class="md-nav__link">
|
|
11222
11264
|
<span class="md-ellipsis">
|
|
11223
|
-
Security
|
|
11265
|
+
Security in v2.0.0-rc.4
|
|
11224
11266
|
</span>
|
|
11225
11267
|
</a>
|
|
11226
11268
|
|
|
11227
11269
|
</li>
|
|
11228
11270
|
|
|
11229
11271
|
<li class="md-nav__item">
|
|
11230
|
-
<a href="#
|
|
11272
|
+
<a href="#added-in-v200-rc4" class="md-nav__link">
|
|
11231
11273
|
<span class="md-ellipsis">
|
|
11232
|
-
Added
|
|
11274
|
+
Added in v2.0.0-rc.4
|
|
11233
11275
|
</span>
|
|
11234
11276
|
</a>
|
|
11235
11277
|
|
|
11236
11278
|
</li>
|
|
11237
11279
|
|
|
11238
11280
|
<li class="md-nav__item">
|
|
11239
|
-
<a href="#
|
|
11281
|
+
<a href="#changed-in-v200-rc4" class="md-nav__link">
|
|
11240
11282
|
<span class="md-ellipsis">
|
|
11241
|
-
Changed
|
|
11283
|
+
Changed in v2.0.0-rc.4
|
|
11242
11284
|
</span>
|
|
11243
11285
|
</a>
|
|
11244
11286
|
|
|
11245
11287
|
</li>
|
|
11246
11288
|
|
|
11247
11289
|
<li class="md-nav__item">
|
|
11248
|
-
<a href="#
|
|
11290
|
+
<a href="#removed-in-v200-rc4" class="md-nav__link">
|
|
11249
11291
|
<span class="md-ellipsis">
|
|
11250
|
-
Removed
|
|
11292
|
+
Removed in v2.0.0-rc.4
|
|
11251
11293
|
</span>
|
|
11252
11294
|
</a>
|
|
11253
11295
|
|
|
11254
11296
|
</li>
|
|
11255
11297
|
|
|
11256
11298
|
<li class="md-nav__item">
|
|
11257
|
-
<a href="#
|
|
11299
|
+
<a href="#fixed-in-v200-rc4" class="md-nav__link">
|
|
11258
11300
|
<span class="md-ellipsis">
|
|
11259
|
-
Fixed
|
|
11301
|
+
Fixed in v2.0.0-rc.4
|
|
11260
11302
|
</span>
|
|
11261
11303
|
</a>
|
|
11262
11304
|
|
|
11263
11305
|
</li>
|
|
11264
11306
|
|
|
11265
11307
|
<li class="md-nav__item">
|
|
11266
|
-
<a href="#
|
|
11308
|
+
<a href="#dependencies-in-v200-rc4" class="md-nav__link">
|
|
11267
11309
|
<span class="md-ellipsis">
|
|
11268
|
-
Dependencies
|
|
11310
|
+
Dependencies in v2.0.0-rc.4
|
|
11269
11311
|
</span>
|
|
11270
11312
|
</a>
|
|
11271
11313
|
|
|
11272
11314
|
</li>
|
|
11273
11315
|
|
|
11274
11316
|
<li class="md-nav__item">
|
|
11275
|
-
<a href="#
|
|
11317
|
+
<a href="#documentation-in-v200-rc4" class="md-nav__link">
|
|
11276
11318
|
<span class="md-ellipsis">
|
|
11277
|
-
Documentation
|
|
11319
|
+
Documentation in v2.0.0-rc.4
|
|
11278
11320
|
</span>
|
|
11279
11321
|
</a>
|
|
11280
11322
|
|
|
11281
11323
|
</li>
|
|
11282
11324
|
|
|
11283
11325
|
<li class="md-nav__item">
|
|
11284
|
-
<a href="#
|
|
11326
|
+
<a href="#housekeeping-in-v200-rc4" class="md-nav__link">
|
|
11285
11327
|
<span class="md-ellipsis">
|
|
11286
|
-
Housekeeping
|
|
11328
|
+
Housekeeping in v2.0.0-rc.4
|
|
11287
11329
|
</span>
|
|
11288
11330
|
</a>
|
|
11289
11331
|
|
|
@@ -11305,63 +11347,63 @@
|
|
|
11305
11347
|
<ul class="md-nav__list">
|
|
11306
11348
|
|
|
11307
11349
|
<li class="md-nav__item">
|
|
11308
|
-
<a href="#
|
|
11350
|
+
<a href="#security-in-v200-rc3" class="md-nav__link">
|
|
11309
11351
|
<span class="md-ellipsis">
|
|
11310
|
-
Security
|
|
11352
|
+
Security in v2.0.0-rc.3
|
|
11311
11353
|
</span>
|
|
11312
11354
|
</a>
|
|
11313
11355
|
|
|
11314
11356
|
</li>
|
|
11315
11357
|
|
|
11316
11358
|
<li class="md-nav__item">
|
|
11317
|
-
<a href="#
|
|
11359
|
+
<a href="#added-in-v200-rc3" class="md-nav__link">
|
|
11318
11360
|
<span class="md-ellipsis">
|
|
11319
|
-
Added
|
|
11361
|
+
Added in v2.0.0-rc.3
|
|
11320
11362
|
</span>
|
|
11321
11363
|
</a>
|
|
11322
11364
|
|
|
11323
11365
|
</li>
|
|
11324
11366
|
|
|
11325
11367
|
<li class="md-nav__item">
|
|
11326
|
-
<a href="#
|
|
11368
|
+
<a href="#changed-in-v200-rc3" class="md-nav__link">
|
|
11327
11369
|
<span class="md-ellipsis">
|
|
11328
|
-
Changed
|
|
11370
|
+
Changed in v2.0.0-rc.3
|
|
11329
11371
|
</span>
|
|
11330
11372
|
</a>
|
|
11331
11373
|
|
|
11332
11374
|
</li>
|
|
11333
11375
|
|
|
11334
11376
|
<li class="md-nav__item">
|
|
11335
|
-
<a href="#
|
|
11377
|
+
<a href="#removed-in-v200-rc3" class="md-nav__link">
|
|
11336
11378
|
<span class="md-ellipsis">
|
|
11337
|
-
Removed
|
|
11379
|
+
Removed in v2.0.0-rc.3
|
|
11338
11380
|
</span>
|
|
11339
11381
|
</a>
|
|
11340
11382
|
|
|
11341
11383
|
</li>
|
|
11342
11384
|
|
|
11343
11385
|
<li class="md-nav__item">
|
|
11344
|
-
<a href="#
|
|
11386
|
+
<a href="#fixed-in-v200-rc3" class="md-nav__link">
|
|
11345
11387
|
<span class="md-ellipsis">
|
|
11346
|
-
Fixed
|
|
11388
|
+
Fixed in v2.0.0-rc.3
|
|
11347
11389
|
</span>
|
|
11348
11390
|
</a>
|
|
11349
11391
|
|
|
11350
11392
|
</li>
|
|
11351
11393
|
|
|
11352
11394
|
<li class="md-nav__item">
|
|
11353
|
-
<a href="#
|
|
11395
|
+
<a href="#documentation-in-v200-rc3" class="md-nav__link">
|
|
11354
11396
|
<span class="md-ellipsis">
|
|
11355
|
-
Documentation
|
|
11397
|
+
Documentation in v2.0.0-rc.3
|
|
11356
11398
|
</span>
|
|
11357
11399
|
</a>
|
|
11358
11400
|
|
|
11359
11401
|
</li>
|
|
11360
11402
|
|
|
11361
11403
|
<li class="md-nav__item">
|
|
11362
|
-
<a href="#
|
|
11404
|
+
<a href="#housekeeping-in-v200-rc3" class="md-nav__link">
|
|
11363
11405
|
<span class="md-ellipsis">
|
|
11364
|
-
Housekeeping
|
|
11406
|
+
Housekeeping in v2.0.0-rc.3
|
|
11365
11407
|
</span>
|
|
11366
11408
|
</a>
|
|
11367
11409
|
|
|
@@ -11383,36 +11425,36 @@
|
|
|
11383
11425
|
<ul class="md-nav__list">
|
|
11384
11426
|
|
|
11385
11427
|
<li class="md-nav__item">
|
|
11386
|
-
<a href="#
|
|
11428
|
+
<a href="#added-in-v200rc-2" class="md-nav__link">
|
|
11387
11429
|
<span class="md-ellipsis">
|
|
11388
|
-
Added
|
|
11430
|
+
Added in v2.0.0.rc-2
|
|
11389
11431
|
</span>
|
|
11390
11432
|
</a>
|
|
11391
11433
|
|
|
11392
11434
|
</li>
|
|
11393
11435
|
|
|
11394
11436
|
<li class="md-nav__item">
|
|
11395
|
-
<a href="#
|
|
11437
|
+
<a href="#changed-in-v200rc-2" class="md-nav__link">
|
|
11396
11438
|
<span class="md-ellipsis">
|
|
11397
|
-
Changed
|
|
11439
|
+
Changed in v2.0.0.rc-2
|
|
11398
11440
|
</span>
|
|
11399
11441
|
</a>
|
|
11400
11442
|
|
|
11401
11443
|
</li>
|
|
11402
11444
|
|
|
11403
11445
|
<li class="md-nav__item">
|
|
11404
|
-
<a href="#
|
|
11446
|
+
<a href="#removed-in-v200rc-2" class="md-nav__link">
|
|
11405
11447
|
<span class="md-ellipsis">
|
|
11406
|
-
Removed
|
|
11448
|
+
Removed in v2.0.0.rc-2
|
|
11407
11449
|
</span>
|
|
11408
11450
|
</a>
|
|
11409
11451
|
|
|
11410
11452
|
</li>
|
|
11411
11453
|
|
|
11412
11454
|
<li class="md-nav__item">
|
|
11413
|
-
<a href="#
|
|
11455
|
+
<a href="#fixed-in-v200rc-2" class="md-nav__link">
|
|
11414
11456
|
<span class="md-ellipsis">
|
|
11415
|
-
Fixed
|
|
11457
|
+
Fixed in v2.0.0.rc-2
|
|
11416
11458
|
</span>
|
|
11417
11459
|
</a>
|
|
11418
11460
|
|
|
@@ -11434,63 +11476,63 @@
|
|
|
11434
11476
|
<ul class="md-nav__list">
|
|
11435
11477
|
|
|
11436
11478
|
<li class="md-nav__item">
|
|
11437
|
-
<a href="#
|
|
11479
|
+
<a href="#added-in-v200rc1" class="md-nav__link">
|
|
11438
11480
|
<span class="md-ellipsis">
|
|
11439
|
-
Added
|
|
11481
|
+
Added in v2.0.0rc1
|
|
11440
11482
|
</span>
|
|
11441
11483
|
</a>
|
|
11442
11484
|
|
|
11443
11485
|
</li>
|
|
11444
11486
|
|
|
11445
11487
|
<li class="md-nav__item">
|
|
11446
|
-
<a href="#
|
|
11488
|
+
<a href="#changed-in-v200rc1" class="md-nav__link">
|
|
11447
11489
|
<span class="md-ellipsis">
|
|
11448
|
-
Changed
|
|
11490
|
+
Changed in v2.0.0rc1
|
|
11449
11491
|
</span>
|
|
11450
11492
|
</a>
|
|
11451
11493
|
|
|
11452
11494
|
</li>
|
|
11453
11495
|
|
|
11454
11496
|
<li class="md-nav__item">
|
|
11455
|
-
<a href="#
|
|
11497
|
+
<a href="#removed-in-v200rc1" class="md-nav__link">
|
|
11456
11498
|
<span class="md-ellipsis">
|
|
11457
|
-
Removed
|
|
11499
|
+
Removed in v2.0.0rc1
|
|
11458
11500
|
</span>
|
|
11459
11501
|
</a>
|
|
11460
11502
|
|
|
11461
11503
|
</li>
|
|
11462
11504
|
|
|
11463
11505
|
<li class="md-nav__item">
|
|
11464
|
-
<a href="#
|
|
11506
|
+
<a href="#fixed-in-v200rc1" class="md-nav__link">
|
|
11465
11507
|
<span class="md-ellipsis">
|
|
11466
|
-
Fixed
|
|
11508
|
+
Fixed in v2.0.0rc1
|
|
11467
11509
|
</span>
|
|
11468
11510
|
</a>
|
|
11469
11511
|
|
|
11470
11512
|
</li>
|
|
11471
11513
|
|
|
11472
11514
|
<li class="md-nav__item">
|
|
11473
|
-
<a href="#
|
|
11515
|
+
<a href="#dependencies-in-v200rc1" class="md-nav__link">
|
|
11474
11516
|
<span class="md-ellipsis">
|
|
11475
|
-
Dependencies
|
|
11517
|
+
Dependencies in v2.0.0rc1
|
|
11476
11518
|
</span>
|
|
11477
11519
|
</a>
|
|
11478
11520
|
|
|
11479
11521
|
</li>
|
|
11480
11522
|
|
|
11481
11523
|
<li class="md-nav__item">
|
|
11482
|
-
<a href="#
|
|
11524
|
+
<a href="#documentation-in-v200rc1" class="md-nav__link">
|
|
11483
11525
|
<span class="md-ellipsis">
|
|
11484
|
-
Documentation
|
|
11526
|
+
Documentation in v2.0.0rc1
|
|
11485
11527
|
</span>
|
|
11486
11528
|
</a>
|
|
11487
11529
|
|
|
11488
11530
|
</li>
|
|
11489
11531
|
|
|
11490
11532
|
<li class="md-nav__item">
|
|
11491
|
-
<a href="#
|
|
11533
|
+
<a href="#housekeeping-in-v200rc1" class="md-nav__link">
|
|
11492
11534
|
<span class="md-ellipsis">
|
|
11493
|
-
Housekeeping
|
|
11535
|
+
Housekeeping in v2.0.0rc1
|
|
11494
11536
|
</span>
|
|
11495
11537
|
</a>
|
|
11496
11538
|
|
|
@@ -11512,63 +11554,63 @@
|
|
|
11512
11554
|
<ul class="md-nav__list">
|
|
11513
11555
|
|
|
11514
11556
|
<li class="md-nav__item">
|
|
11515
|
-
<a href="#
|
|
11557
|
+
<a href="#added-in-v200-beta2" class="md-nav__link">
|
|
11516
11558
|
<span class="md-ellipsis">
|
|
11517
|
-
Added
|
|
11559
|
+
Added in v2.0.0-beta.2
|
|
11518
11560
|
</span>
|
|
11519
11561
|
</a>
|
|
11520
11562
|
|
|
11521
11563
|
</li>
|
|
11522
11564
|
|
|
11523
11565
|
<li class="md-nav__item">
|
|
11524
|
-
<a href="#
|
|
11566
|
+
<a href="#changed-in-v200-beta2" class="md-nav__link">
|
|
11525
11567
|
<span class="md-ellipsis">
|
|
11526
|
-
Changed
|
|
11568
|
+
Changed in v2.0.0-beta.2
|
|
11527
11569
|
</span>
|
|
11528
11570
|
</a>
|
|
11529
11571
|
|
|
11530
11572
|
</li>
|
|
11531
11573
|
|
|
11532
11574
|
<li class="md-nav__item">
|
|
11533
|
-
<a href="#
|
|
11575
|
+
<a href="#removed-in-v200-beta2" class="md-nav__link">
|
|
11534
11576
|
<span class="md-ellipsis">
|
|
11535
|
-
Removed
|
|
11577
|
+
Removed in v2.0.0-beta.2
|
|
11536
11578
|
</span>
|
|
11537
11579
|
</a>
|
|
11538
11580
|
|
|
11539
11581
|
</li>
|
|
11540
11582
|
|
|
11541
11583
|
<li class="md-nav__item">
|
|
11542
|
-
<a href="#
|
|
11584
|
+
<a href="#fixed-in-v200-beta2" class="md-nav__link">
|
|
11543
11585
|
<span class="md-ellipsis">
|
|
11544
|
-
Fixed
|
|
11586
|
+
Fixed in v2.0.0-beta.2
|
|
11545
11587
|
</span>
|
|
11546
11588
|
</a>
|
|
11547
11589
|
|
|
11548
11590
|
</li>
|
|
11549
11591
|
|
|
11550
11592
|
<li class="md-nav__item">
|
|
11551
|
-
<a href="#
|
|
11593
|
+
<a href="#dependencies-in-v200-beta2" class="md-nav__link">
|
|
11552
11594
|
<span class="md-ellipsis">
|
|
11553
|
-
Dependencies
|
|
11595
|
+
Dependencies in v2.0.0-beta.2
|
|
11554
11596
|
</span>
|
|
11555
11597
|
</a>
|
|
11556
11598
|
|
|
11557
11599
|
</li>
|
|
11558
11600
|
|
|
11559
11601
|
<li class="md-nav__item">
|
|
11560
|
-
<a href="#
|
|
11602
|
+
<a href="#documentation-in-v200-beta2" class="md-nav__link">
|
|
11561
11603
|
<span class="md-ellipsis">
|
|
11562
|
-
Documentation
|
|
11604
|
+
Documentation in v2.0.0-beta.2
|
|
11563
11605
|
</span>
|
|
11564
11606
|
</a>
|
|
11565
11607
|
|
|
11566
11608
|
</li>
|
|
11567
11609
|
|
|
11568
11610
|
<li class="md-nav__item">
|
|
11569
|
-
<a href="#
|
|
11611
|
+
<a href="#housekeeping-in-v200-beta2" class="md-nav__link">
|
|
11570
11612
|
<span class="md-ellipsis">
|
|
11571
|
-
Housekeeping
|
|
11613
|
+
Housekeeping in v2.0.0-beta.2
|
|
11572
11614
|
</span>
|
|
11573
11615
|
</a>
|
|
11574
11616
|
|
|
@@ -11590,63 +11632,63 @@
|
|
|
11590
11632
|
<ul class="md-nav__list">
|
|
11591
11633
|
|
|
11592
11634
|
<li class="md-nav__item">
|
|
11593
|
-
<a href="#
|
|
11635
|
+
<a href="#added-in-v200-beta1" class="md-nav__link">
|
|
11594
11636
|
<span class="md-ellipsis">
|
|
11595
|
-
Added
|
|
11637
|
+
Added in v2.0.0-beta.1
|
|
11596
11638
|
</span>
|
|
11597
11639
|
</a>
|
|
11598
11640
|
|
|
11599
11641
|
</li>
|
|
11600
11642
|
|
|
11601
11643
|
<li class="md-nav__item">
|
|
11602
|
-
<a href="#
|
|
11644
|
+
<a href="#changed-in-v200-beta1" class="md-nav__link">
|
|
11603
11645
|
<span class="md-ellipsis">
|
|
11604
|
-
Changed
|
|
11646
|
+
Changed in v2.0.0-beta.1
|
|
11605
11647
|
</span>
|
|
11606
11648
|
</a>
|
|
11607
11649
|
|
|
11608
11650
|
</li>
|
|
11609
11651
|
|
|
11610
11652
|
<li class="md-nav__item">
|
|
11611
|
-
<a href="#
|
|
11653
|
+
<a href="#removed-in-v200-beta1" class="md-nav__link">
|
|
11612
11654
|
<span class="md-ellipsis">
|
|
11613
|
-
Removed
|
|
11655
|
+
Removed in v2.0.0-beta.1
|
|
11614
11656
|
</span>
|
|
11615
11657
|
</a>
|
|
11616
11658
|
|
|
11617
11659
|
</li>
|
|
11618
11660
|
|
|
11619
11661
|
<li class="md-nav__item">
|
|
11620
|
-
<a href="#
|
|
11662
|
+
<a href="#fixed-in-v200-beta1" class="md-nav__link">
|
|
11621
11663
|
<span class="md-ellipsis">
|
|
11622
|
-
Fixed
|
|
11664
|
+
Fixed in v2.0.0-beta.1
|
|
11623
11665
|
</span>
|
|
11624
11666
|
</a>
|
|
11625
11667
|
|
|
11626
11668
|
</li>
|
|
11627
11669
|
|
|
11628
11670
|
<li class="md-nav__item">
|
|
11629
|
-
<a href="#
|
|
11671
|
+
<a href="#dependencies-in-v200-beta1" class="md-nav__link">
|
|
11630
11672
|
<span class="md-ellipsis">
|
|
11631
|
-
Dependencies
|
|
11673
|
+
Dependencies in v2.0.0-beta.1
|
|
11632
11674
|
</span>
|
|
11633
11675
|
</a>
|
|
11634
11676
|
|
|
11635
11677
|
</li>
|
|
11636
11678
|
|
|
11637
11679
|
<li class="md-nav__item">
|
|
11638
|
-
<a href="#
|
|
11680
|
+
<a href="#documentation-in-v200-beta1" class="md-nav__link">
|
|
11639
11681
|
<span class="md-ellipsis">
|
|
11640
|
-
Documentation
|
|
11682
|
+
Documentation in v2.0.0-beta.1
|
|
11641
11683
|
</span>
|
|
11642
11684
|
</a>
|
|
11643
11685
|
|
|
11644
11686
|
</li>
|
|
11645
11687
|
|
|
11646
11688
|
<li class="md-nav__item">
|
|
11647
|
-
<a href="#
|
|
11689
|
+
<a href="#housekeeping-in-v200-beta1" class="md-nav__link">
|
|
11648
11690
|
<span class="md-ellipsis">
|
|
11649
|
-
Housekeeping
|
|
11691
|
+
Housekeeping in v2.0.0-beta.1
|
|
11650
11692
|
</span>
|
|
11651
11693
|
</a>
|
|
11652
11694
|
|
|
@@ -11668,45 +11710,45 @@
|
|
|
11668
11710
|
<ul class="md-nav__list">
|
|
11669
11711
|
|
|
11670
11712
|
<li class="md-nav__item">
|
|
11671
|
-
<a href="#
|
|
11713
|
+
<a href="#added-in-v200-alpha3" class="md-nav__link">
|
|
11672
11714
|
<span class="md-ellipsis">
|
|
11673
|
-
Added
|
|
11715
|
+
Added in v2.0.0-alpha.3
|
|
11674
11716
|
</span>
|
|
11675
11717
|
</a>
|
|
11676
11718
|
|
|
11677
11719
|
</li>
|
|
11678
11720
|
|
|
11679
11721
|
<li class="md-nav__item">
|
|
11680
|
-
<a href="#
|
|
11722
|
+
<a href="#changed-in-v200-alpha3" class="md-nav__link">
|
|
11681
11723
|
<span class="md-ellipsis">
|
|
11682
|
-
Changed
|
|
11724
|
+
Changed in v2.0.0-alpha.3
|
|
11683
11725
|
</span>
|
|
11684
11726
|
</a>
|
|
11685
11727
|
|
|
11686
11728
|
</li>
|
|
11687
11729
|
|
|
11688
11730
|
<li class="md-nav__item">
|
|
11689
|
-
<a href="#
|
|
11731
|
+
<a href="#removed-in-v200-alpha3" class="md-nav__link">
|
|
11690
11732
|
<span class="md-ellipsis">
|
|
11691
|
-
Removed
|
|
11733
|
+
Removed in v2.0.0-alpha.3
|
|
11692
11734
|
</span>
|
|
11693
11735
|
</a>
|
|
11694
11736
|
|
|
11695
11737
|
</li>
|
|
11696
11738
|
|
|
11697
11739
|
<li class="md-nav__item">
|
|
11698
|
-
<a href="#
|
|
11740
|
+
<a href="#dependencies-in-v200-alpha3" class="md-nav__link">
|
|
11699
11741
|
<span class="md-ellipsis">
|
|
11700
|
-
Dependencies
|
|
11742
|
+
Dependencies in v2.0.0-alpha.3
|
|
11701
11743
|
</span>
|
|
11702
11744
|
</a>
|
|
11703
11745
|
|
|
11704
11746
|
</li>
|
|
11705
11747
|
|
|
11706
11748
|
<li class="md-nav__item">
|
|
11707
|
-
<a href="#
|
|
11749
|
+
<a href="#housekeeping-in-v200-alpha3" class="md-nav__link">
|
|
11708
11750
|
<span class="md-ellipsis">
|
|
11709
|
-
Housekeeping
|
|
11751
|
+
Housekeeping in v2.0.0-alpha.3
|
|
11710
11752
|
</span>
|
|
11711
11753
|
</a>
|
|
11712
11754
|
|
|
@@ -11728,54 +11770,54 @@
|
|
|
11728
11770
|
<ul class="md-nav__list">
|
|
11729
11771
|
|
|
11730
11772
|
<li class="md-nav__item">
|
|
11731
|
-
<a href="#
|
|
11773
|
+
<a href="#added-in-v200-alpha2" class="md-nav__link">
|
|
11732
11774
|
<span class="md-ellipsis">
|
|
11733
|
-
Added
|
|
11775
|
+
Added in v2.0.0-alpha.2
|
|
11734
11776
|
</span>
|
|
11735
11777
|
</a>
|
|
11736
11778
|
|
|
11737
11779
|
</li>
|
|
11738
11780
|
|
|
11739
11781
|
<li class="md-nav__item">
|
|
11740
|
-
<a href="#
|
|
11782
|
+
<a href="#changed-in-v200-alpha2" class="md-nav__link">
|
|
11741
11783
|
<span class="md-ellipsis">
|
|
11742
|
-
Changed
|
|
11784
|
+
Changed in v2.0.0-alpha.2
|
|
11743
11785
|
</span>
|
|
11744
11786
|
</a>
|
|
11745
11787
|
|
|
11746
11788
|
</li>
|
|
11747
11789
|
|
|
11748
11790
|
<li class="md-nav__item">
|
|
11749
|
-
<a href="#
|
|
11791
|
+
<a href="#removed-in-v200-alpha2" class="md-nav__link">
|
|
11750
11792
|
<span class="md-ellipsis">
|
|
11751
|
-
Removed
|
|
11793
|
+
Removed in v2.0.0-alpha.2
|
|
11752
11794
|
</span>
|
|
11753
11795
|
</a>
|
|
11754
11796
|
|
|
11755
11797
|
</li>
|
|
11756
11798
|
|
|
11757
11799
|
<li class="md-nav__item">
|
|
11758
|
-
<a href="#
|
|
11800
|
+
<a href="#fixed-in-v200-alpha2" class="md-nav__link">
|
|
11759
11801
|
<span class="md-ellipsis">
|
|
11760
|
-
Fixed
|
|
11802
|
+
Fixed in v2.0.0-alpha.2
|
|
11761
11803
|
</span>
|
|
11762
11804
|
</a>
|
|
11763
11805
|
|
|
11764
11806
|
</li>
|
|
11765
11807
|
|
|
11766
11808
|
<li class="md-nav__item">
|
|
11767
|
-
<a href="#
|
|
11809
|
+
<a href="#dependencies-in-v200-alpha2" class="md-nav__link">
|
|
11768
11810
|
<span class="md-ellipsis">
|
|
11769
|
-
Dependencies
|
|
11811
|
+
Dependencies in v2.0.0-alpha.2
|
|
11770
11812
|
</span>
|
|
11771
11813
|
</a>
|
|
11772
11814
|
|
|
11773
11815
|
</li>
|
|
11774
11816
|
|
|
11775
11817
|
<li class="md-nav__item">
|
|
11776
|
-
<a href="#
|
|
11818
|
+
<a href="#housekeeping-in-v200-alpha2" class="md-nav__link">
|
|
11777
11819
|
<span class="md-ellipsis">
|
|
11778
|
-
Housekeeping
|
|
11820
|
+
Housekeeping in v2.0.0-alpha.2
|
|
11779
11821
|
</span>
|
|
11780
11822
|
</a>
|
|
11781
11823
|
|
|
@@ -11797,63 +11839,63 @@
|
|
|
11797
11839
|
<ul class="md-nav__list">
|
|
11798
11840
|
|
|
11799
11841
|
<li class="md-nav__item">
|
|
11800
|
-
<a href="#
|
|
11842
|
+
<a href="#added-in-v200-alpha1" class="md-nav__link">
|
|
11801
11843
|
<span class="md-ellipsis">
|
|
11802
|
-
Added
|
|
11844
|
+
Added in v2.0.0-alpha.1
|
|
11803
11845
|
</span>
|
|
11804
11846
|
</a>
|
|
11805
11847
|
|
|
11806
11848
|
</li>
|
|
11807
11849
|
|
|
11808
11850
|
<li class="md-nav__item">
|
|
11809
|
-
<a href="#
|
|
11851
|
+
<a href="#changed-in-v200-alpha1" class="md-nav__link">
|
|
11810
11852
|
<span class="md-ellipsis">
|
|
11811
|
-
Changed
|
|
11853
|
+
Changed in v2.0.0-alpha.1
|
|
11812
11854
|
</span>
|
|
11813
11855
|
</a>
|
|
11814
11856
|
|
|
11815
11857
|
</li>
|
|
11816
11858
|
|
|
11817
11859
|
<li class="md-nav__item">
|
|
11818
|
-
<a href="#
|
|
11860
|
+
<a href="#removed-in-v200-alpha1" class="md-nav__link">
|
|
11819
11861
|
<span class="md-ellipsis">
|
|
11820
|
-
Removed
|
|
11862
|
+
Removed in v2.0.0-alpha.1
|
|
11821
11863
|
</span>
|
|
11822
11864
|
</a>
|
|
11823
11865
|
|
|
11824
11866
|
</li>
|
|
11825
11867
|
|
|
11826
11868
|
<li class="md-nav__item">
|
|
11827
|
-
<a href="#
|
|
11869
|
+
<a href="#fixed-in-v200-alpha1" class="md-nav__link">
|
|
11828
11870
|
<span class="md-ellipsis">
|
|
11829
|
-
Fixed
|
|
11871
|
+
Fixed in v2.0.0-alpha.1
|
|
11830
11872
|
</span>
|
|
11831
11873
|
</a>
|
|
11832
11874
|
|
|
11833
11875
|
</li>
|
|
11834
11876
|
|
|
11835
11877
|
<li class="md-nav__item">
|
|
11836
|
-
<a href="#
|
|
11878
|
+
<a href="#dependencies-in-v200-alpha1" class="md-nav__link">
|
|
11837
11879
|
<span class="md-ellipsis">
|
|
11838
|
-
Dependencies
|
|
11880
|
+
Dependencies in v2.0.0-alpha.1
|
|
11839
11881
|
</span>
|
|
11840
11882
|
</a>
|
|
11841
11883
|
|
|
11842
11884
|
</li>
|
|
11843
11885
|
|
|
11844
11886
|
<li class="md-nav__item">
|
|
11845
|
-
<a href="#
|
|
11887
|
+
<a href="#documentation-in-v200-alpha1" class="md-nav__link">
|
|
11846
11888
|
<span class="md-ellipsis">
|
|
11847
|
-
Documentation
|
|
11889
|
+
Documentation in v2.0.0-alpha.1
|
|
11848
11890
|
</span>
|
|
11849
11891
|
</a>
|
|
11850
11892
|
|
|
11851
11893
|
</li>
|
|
11852
11894
|
|
|
11853
11895
|
<li class="md-nav__item">
|
|
11854
|
-
<a href="#
|
|
11896
|
+
<a href="#housekeeping-in-v200-alpha1" class="md-nav__link">
|
|
11855
11897
|
<span class="md-ellipsis">
|
|
11856
|
-
Housekeeping
|
|
11898
|
+
Housekeeping in v2.0.0-alpha.1
|
|
11857
11899
|
</span>
|
|
11858
11900
|
</a>
|
|
11859
11901
|
|
|
@@ -11882,8 +11924,6 @@
|
|
|
11882
11924
|
|
|
11883
11925
|
|
|
11884
11926
|
|
|
11885
|
-
<!-- markdownlint-disable MD024 -->
|
|
11886
|
-
|
|
11887
11927
|
<h1 id="nautobot-v20">Nautobot v2.0<a class="headerlink" href="#nautobot-v20" title="Permanent link">¶</a></h1>
|
|
11888
11928
|
<p>This document describes all new features and changes in Nautobot 2.0.</p>
|
|
11889
11929
|
<div class="admonition note">
|
|
@@ -12058,7 +12098,7 @@
|
|
|
12058
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>
|
|
12059
12099
|
<p><code>/dcim/rack-groups/?parent=<name></code> or <code>/dcim/rack-groups/?parent=<uuid></code></p>
|
|
12060
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>
|
|
12061
|
-
<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>
|
|
12062
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>
|
|
12063
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>
|
|
12064
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>
|
|
@@ -12166,35 +12206,34 @@
|
|
|
12166
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>
|
|
12167
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>
|
|
12168
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>
|
|
12169
|
-
<!-- towncrier release notes start -->
|
|
12170
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>
|
|
12171
|
-
<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>
|
|
12172
12211
|
<ul>
|
|
12173
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>
|
|
12174
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>
|
|
12175
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>
|
|
12176
12215
|
</ul>
|
|
12177
|
-
<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>
|
|
12178
12217
|
<ul>
|
|
12179
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>
|
|
12180
12219
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
12181
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>
|
|
12182
12221
|
</ul>
|
|
12183
|
-
<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>
|
|
12184
12223
|
<ul>
|
|
12185
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>
|
|
12186
12225
|
</ul>
|
|
12187
|
-
<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>
|
|
12188
12227
|
<ul>
|
|
12189
12228
|
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Removed unused <code>nautobot.extras.choices.JobSourceChoices</code>.</li>
|
|
12190
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>
|
|
12191
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>
|
|
12192
12231
|
</ul>
|
|
12193
|
-
<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>
|
|
12194
12233
|
<ul>
|
|
12195
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>
|
|
12196
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>
|
|
12197
|
-
<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>
|
|
12198
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>
|
|
12199
12238
|
<li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed incorrect link in TenantGroup template.</li>
|
|
12200
12239
|
<li><a href="https://github.com/nautobot/nautobot/issues/4768">#4768</a> - Fixed ConfigContext not applied to nested TenantGroup objects.</li>
|
|
@@ -12210,7 +12249,7 @@
|
|
|
12210
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>
|
|
12211
12250
|
<li><a href="https://github.com/nautobot/nautobot/issues/4922">#4922</a> - Fixed incorrect position of "actions" column in Location table view.</li>
|
|
12212
12251
|
</ul>
|
|
12213
|
-
<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>
|
|
12214
12253
|
<ul>
|
|
12215
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>
|
|
12216
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>
|
|
@@ -12219,27 +12258,27 @@
|
|
|
12219
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>
|
|
12220
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>
|
|
12221
12260
|
</ul>
|
|
12222
|
-
<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>
|
|
12223
12262
|
<ul>
|
|
12224
12263
|
<li><a href="https://github.com/nautobot/nautobot/issues/4805">#4805</a> - Updated documentation on jobs registration.</li>
|
|
12225
12264
|
<li><a href="https://github.com/nautobot/nautobot/issues/4871">#4871</a> - Removed some duplicate documentation links in the Feature Guides.</li>
|
|
12226
12265
|
<li><a href="https://github.com/nautobot/nautobot/issues/4923">#4923</a> - Fixed border for namespace image in docs.</li>
|
|
12227
12266
|
<li><a href="https://github.com/nautobot/nautobot/issues/4952">#4952</a> - Corrected spelling of "extensions" in the navigation menu.</li>
|
|
12228
12267
|
</ul>
|
|
12229
|
-
<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>
|
|
12230
12269
|
<ul>
|
|
12231
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>
|
|
12232
12271
|
</ul>
|
|
12233
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>
|
|
12234
|
-
<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>
|
|
12235
12274
|
<ul>
|
|
12236
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>
|
|
12237
12276
|
</ul>
|
|
12238
|
-
<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>
|
|
12239
12278
|
<ul>
|
|
12240
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>
|
|
12241
12280
|
</ul>
|
|
12242
|
-
<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>
|
|
12243
12282
|
<ul>
|
|
12244
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>
|
|
12245
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>
|
|
@@ -12249,39 +12288,39 @@
|
|
|
12249
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>
|
|
12250
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>
|
|
12251
12290
|
</ul>
|
|
12252
|
-
<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>
|
|
12253
12292
|
<ul>
|
|
12254
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>
|
|
12255
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>
|
|
12256
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>
|
|
12257
12296
|
</ul>
|
|
12258
|
-
<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>
|
|
12259
12298
|
<ul>
|
|
12260
12299
|
<li><a href="https://github.com/nautobot/nautobot/issues/4008">#4008</a> - Removed CacheOps reference from application stack diagram.</li>
|
|
12261
12300
|
</ul>
|
|
12262
|
-
<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>
|
|
12263
12302
|
<ul>
|
|
12264
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>
|
|
12265
12304
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
12266
12305
|
<li><a href="https://github.com/nautobot/nautobot/issues/4832">#4832</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
12267
12306
|
</ul>
|
|
12268
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>
|
|
12269
|
-
<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>
|
|
12270
12309
|
<ul>
|
|
12271
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>
|
|
12272
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>
|
|
12273
12312
|
</ul>
|
|
12274
|
-
<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>
|
|
12275
12314
|
<ul>
|
|
12276
12315
|
<li><a href="https://github.com/nautobot/nautobot/issues/4349">#4349</a> - Added Note List View.</li>
|
|
12277
12316
|
<li><a href="https://github.com/nautobot/nautobot/issues/4704">#4704</a> - Added missing Rack table to Role Detail View.</li>
|
|
12278
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>
|
|
12279
12318
|
</ul>
|
|
12280
|
-
<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>
|
|
12281
12320
|
<ul>
|
|
12282
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>
|
|
12283
12322
|
</ul>
|
|
12284
|
-
<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>
|
|
12285
12324
|
<ul>
|
|
12286
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>
|
|
12287
12326
|
<li><a href="https://github.com/nautobot/nautobot/issues/4626">#4626</a> - Fixed incorrect "Prefixes" link from VRF detail view.</li>
|
|
@@ -12300,7 +12339,7 @@
|
|
|
12300
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>
|
|
12301
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>
|
|
12302
12341
|
</ul>
|
|
12303
|
-
<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>
|
|
12304
12343
|
<ul>
|
|
12305
12344
|
<li><a href="https://github.com/nautobot/nautobot/issues/3927">#3927</a> - Fixed documentation for creating databases on PostgreSQL version 15.</li>
|
|
12306
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>
|
|
@@ -12311,7 +12350,7 @@
|
|
|
12311
12350
|
<li><a href="https://github.com/nautobot/nautobot/issues/4720">#4720</a> - Added redeployment demo environment step to release-checklist.md.</li>
|
|
12312
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>
|
|
12313
12352
|
</ul>
|
|
12314
|
-
<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>
|
|
12315
12354
|
<ul>
|
|
12316
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>
|
|
12317
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>
|
|
@@ -12319,53 +12358,53 @@
|
|
|
12319
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>
|
|
12320
12359
|
</ul>
|
|
12321
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>
|
|
12322
|
-
<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>
|
|
12323
12362
|
<ul>
|
|
12324
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>
|
|
12325
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>
|
|
12326
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>
|
|
12327
12366
|
</ul>
|
|
12328
|
-
<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>
|
|
12329
12368
|
<ul>
|
|
12330
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>
|
|
12331
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>
|
|
12332
12371
|
</ul>
|
|
12333
|
-
<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>
|
|
12334
12373
|
<ul>
|
|
12335
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>
|
|
12336
12375
|
</ul>
|
|
12337
|
-
<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>
|
|
12338
12377
|
<ul>
|
|
12339
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>
|
|
12340
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>
|
|
12341
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>
|
|
12342
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>
|
|
12343
12382
|
</ul>
|
|
12344
|
-
<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>
|
|
12345
12384
|
<ul>
|
|
12346
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>
|
|
12347
12386
|
</ul>
|
|
12348
|
-
<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>
|
|
12349
12388
|
<ul>
|
|
12350
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>
|
|
12351
12390
|
</ul>
|
|
12352
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>
|
|
12353
|
-
<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>
|
|
12354
12393
|
<ul>
|
|
12355
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>
|
|
12356
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>
|
|
12357
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>
|
|
12358
12397
|
</ul>
|
|
12359
|
-
<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>
|
|
12360
12399
|
<ul>
|
|
12361
12400
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
12362
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>
|
|
12363
12402
|
</ul>
|
|
12364
|
-
<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>
|
|
12365
12404
|
<ul>
|
|
12366
12405
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
12367
12406
|
</ul>
|
|
12368
|
-
<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>
|
|
12369
12408
|
<ul>
|
|
12370
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>
|
|
12371
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>
|
|
@@ -12373,7 +12412,7 @@
|
|
|
12373
12412
|
<li><a href="https://github.com/nautobot/nautobot/issues/4603">#4603</a> - Fixed a bug that makes Manufacturers list fail to load.</li>
|
|
12374
12413
|
<li><a href="https://github.com/nautobot/nautobot/issues/4639">#4639</a> - Fixed the ability to attach images to Locations.</li>
|
|
12375
12414
|
</ul>
|
|
12376
|
-
<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>
|
|
12377
12416
|
<ul>
|
|
12378
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>
|
|
12379
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>
|
|
@@ -12382,33 +12421,33 @@
|
|
|
12382
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>
|
|
12383
12422
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
12384
12423
|
</ul>
|
|
12385
|
-
<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>
|
|
12386
12425
|
<ul>
|
|
12387
12426
|
<li><a href="https://github.com/nautobot/nautobot/issues/4611">#4611</a> - Updated pylint to use multiple threads.</li>
|
|
12388
12427
|
</ul>
|
|
12389
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>
|
|
12390
|
-
<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>
|
|
12391
12430
|
<ul>
|
|
12392
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>
|
|
12393
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>
|
|
12394
12433
|
</ul>
|
|
12395
|
-
<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>
|
|
12396
12435
|
<ul>
|
|
12397
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>
|
|
12398
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>
|
|
12399
12438
|
</ul>
|
|
12400
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>
|
|
12401
|
-
<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>
|
|
12402
12441
|
<ul>
|
|
12403
12442
|
<li><a href="https://github.com/nautobot/nautobot/issues/4553">#4553</a> - Implement table sticky headers.</li>
|
|
12404
12443
|
</ul>
|
|
12405
|
-
<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>
|
|
12406
12445
|
<ul>
|
|
12407
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>
|
|
12408
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>
|
|
12409
12448
|
<li><a href="https://github.com/nautobot/nautobot/issues/4566">#4566</a> - Fixed table sticky headers in Firefox.</li>
|
|
12410
12449
|
</ul>
|
|
12411
|
-
<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>
|
|
12412
12451
|
<ul>
|
|
12413
12452
|
<li><a href="https://github.com/nautobot/nautobot/issues/4489">#4489</a> - Added release note overview to Jobs Overhaul.</li>
|
|
12414
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>
|
|
@@ -12416,11 +12455,11 @@
|
|
|
12416
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>
|
|
12417
12456
|
</ul>
|
|
12418
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>
|
|
12419
|
-
<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>
|
|
12420
12459
|
<ul>
|
|
12421
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>
|
|
12422
12461
|
</ul>
|
|
12423
|
-
<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>
|
|
12424
12463
|
<ul>
|
|
12425
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>
|
|
12426
12465
|
<li><a href="https://github.com/nautobot/nautobot/issues/4418">#4418</a> - Added <code>netutils_parser</code> to <code>network_driver</code>.</li>
|
|
@@ -12436,7 +12475,7 @@
|
|
|
12436
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>
|
|
12437
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>
|
|
12438
12477
|
</ul>
|
|
12439
|
-
<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>
|
|
12440
12479
|
<ul>
|
|
12441
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>
|
|
12442
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>
|
|
@@ -12450,13 +12489,13 @@
|
|
|
12450
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>
|
|
12451
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>
|
|
12452
12491
|
</ul>
|
|
12453
|
-
<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>
|
|
12454
12493
|
<ul>
|
|
12455
12494
|
<li><a href="https://github.com/nautobot/nautobot/issues/4425">#4425</a> - Removed composite key from new UI object-detail "Advanced" tab.</li>
|
|
12456
12495
|
<li><a href="https://github.com/nautobot/nautobot/issues/4448">#4448</a> - Removed composite key from user-facing interfaces (API, UI).</li>
|
|
12457
12496
|
<li><a href="https://github.com/nautobot/nautobot/issues/4538">#4538</a> - Removed unnecessary dependency on <code>semver</code> npm package.</li>
|
|
12458
12497
|
</ul>
|
|
12459
|
-
<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>
|
|
12460
12499
|
<ul>
|
|
12461
12500
|
<li><a href="https://github.com/nautobot/nautobot/issues/4033">#4033</a> - Fixed filtering objects in bulk edit and bulk delete.</li>
|
|
12462
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>
|
|
@@ -12478,12 +12517,12 @@
|
|
|
12478
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>
|
|
12479
12518
|
<li><a href="https://github.com/nautobot/nautobot/issues/4535">#4535</a> - Fixed off-by-one error in new UI date processing.</li>
|
|
12480
12519
|
</ul>
|
|
12481
|
-
<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>
|
|
12482
12521
|
<ul>
|
|
12483
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>
|
|
12484
12523
|
<li><a href="https://github.com/nautobot/nautobot/issues/4538">#4538</a> - Updated npm dependencies via <code>npm update</code>.</li>
|
|
12485
12524
|
</ul>
|
|
12486
|
-
<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>
|
|
12487
12526
|
<ul>
|
|
12488
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>
|
|
12489
12528
|
<li><a href="https://github.com/nautobot/nautobot/issues/3303">#3303</a> - Added TODO comments for each additional section header.</li>
|
|
@@ -12498,17 +12537,17 @@
|
|
|
12498
12537
|
<li><a href="https://github.com/nautobot/nautobot/issues/4493">#4493</a> - Reordered overview items in the 2.0 release-notes.</li>
|
|
12499
12538
|
<li><a href="https://github.com/nautobot/nautobot/issues/4507">#4507</a> - Added Data Validation Engine to list of apps in docs.</li>
|
|
12500
12539
|
</ul>
|
|
12501
|
-
<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>
|
|
12502
12541
|
<ul>
|
|
12503
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>
|
|
12504
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>
|
|
12505
12544
|
</ul>
|
|
12506
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>
|
|
12507
|
-
<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>
|
|
12508
12547
|
<ul>
|
|
12509
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>
|
|
12510
12549
|
</ul>
|
|
12511
|
-
<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>
|
|
12512
12551
|
<ul>
|
|
12513
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>
|
|
12514
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>
|
|
@@ -12518,7 +12557,7 @@
|
|
|
12518
12557
|
<li><a href="https://github.com/nautobot/nautobot/issues/4249">#4249</a> - Added REST API endpoint for the IPAddressToInterface model.</li>
|
|
12519
12558
|
<li><a href="https://github.com/nautobot/nautobot/issues/4346">#4346</a> - Implemented <code>.natural_slug</code> property on all models.</li>
|
|
12520
12559
|
</ul>
|
|
12521
|
-
<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>
|
|
12522
12561
|
<ul>
|
|
12523
12562
|
<li><a href="https://github.com/nautobot/nautobot/issues/4012">#4012</a> - Disable non ready Model View in new-ui sidebar.</li>
|
|
12524
12563
|
<li><a href="https://github.com/nautobot/nautobot/issues/4015">#4015</a> - Refined new-UI IPAddress detail view.</li>
|
|
@@ -12528,14 +12567,14 @@
|
|
|
12528
12567
|
<li><a href="https://github.com/nautobot/nautobot/issues/4333">#4333</a> - Updated Dockerfile not to use Python virtual environment.</li>
|
|
12529
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>
|
|
12530
12569
|
</ul>
|
|
12531
|
-
<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>
|
|
12532
12571
|
<ul>
|
|
12533
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>
|
|
12534
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>
|
|
12535
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>
|
|
12536
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>
|
|
12537
12576
|
</ul>
|
|
12538
|
-
<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>
|
|
12539
12578
|
<ul>
|
|
12540
12579
|
<li><a href="https://github.com/nautobot/nautobot/issues/3934">#3934</a> - Fixed validation logic for VirtualMachine primary ips.</li>
|
|
12541
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>
|
|
@@ -12547,7 +12586,7 @@
|
|
|
12547
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>
|
|
12548
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>
|
|
12549
12588
|
</ul>
|
|
12550
|
-
<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>
|
|
12551
12590
|
<ul>
|
|
12552
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>
|
|
12553
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>
|
|
@@ -12559,7 +12598,7 @@
|
|
|
12559
12598
|
<li><a href="https://github.com/nautobot/nautobot/issues/4326">#4326</a> - Update documentation on Nautobot release workflow.</li>
|
|
12560
12599
|
<li><a href="https://github.com/nautobot/nautobot/issues/4429">#4429</a> - Updated the pylint-nautobot migration steps.</li>
|
|
12561
12600
|
</ul>
|
|
12562
|
-
<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>
|
|
12563
12602
|
<ul>
|
|
12564
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>
|
|
12565
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>
|
|
@@ -12568,11 +12607,11 @@
|
|
|
12568
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>
|
|
12569
12608
|
</ul>
|
|
12570
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>
|
|
12571
|
-
<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>
|
|
12572
12611
|
<ul>
|
|
12573
12612
|
<li><a href="https://github.com/nautobot/nautobot/issues/3794">#3794</a> - Added support for multi-column keys for CSV Import.</li>
|
|
12574
12613
|
</ul>
|
|
12575
|
-
<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>
|
|
12576
12615
|
<ul>
|
|
12577
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>
|
|
12578
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>
|
|
@@ -12585,21 +12624,21 @@
|
|
|
12585
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>
|
|
12586
12625
|
<li><a href="https://github.com/nautobot/nautobot/issues/4305">#4305</a> - Merged develop back into next after release 1.6.1</li>
|
|
12587
12626
|
</ul>
|
|
12588
|
-
<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>
|
|
12589
12628
|
<ul>
|
|
12590
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>
|
|
12591
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>
|
|
12592
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>
|
|
12593
12632
|
<li><a href="https://github.com/nautobot/nautobot/issues/2853">#2853</a> - Removed <code>/extras/jobs/results/<uuid:pk>/</code> URL endpoint.</li>
|
|
12594
12633
|
</ul>
|
|
12595
|
-
<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>
|
|
12596
12635
|
<ul>
|
|
12597
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>
|
|
12598
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>
|
|
12599
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>
|
|
12600
12639
|
</ul>
|
|
12601
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>
|
|
12602
|
-
<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>
|
|
12603
12642
|
<ul>
|
|
12604
12643
|
<li><a href="https://github.com/nautobot/nautobot/issues/1175">#1175</a> - Added "Submit Feedback" functionality to the new UI.</li>
|
|
12605
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>
|
|
@@ -12619,7 +12658,7 @@
|
|
|
12619
12658
|
<li><a href="https://github.com/nautobot/nautobot/issues/4225">#4225</a> - Added Namespace to IPAddressDetailTable.</li>
|
|
12620
12659
|
<li><a href="https://github.com/nautobot/nautobot/issues/4228">#4228</a> - Incorporated all code changes from Nautobot 1.6.0.</li>
|
|
12621
12660
|
</ul>
|
|
12622
|
-
<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>
|
|
12623
12662
|
<ul>
|
|
12624
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>
|
|
12625
12664
|
<li><a href="https://github.com/nautobot/nautobot/issues/3636">#3636</a> - Reintroduced "Assign IP Address" button to Device Interfaces list view.</li>
|
|
@@ -12645,7 +12684,7 @@
|
|
|
12645
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>
|
|
12646
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>
|
|
12647
12686
|
</ul>
|
|
12648
|
-
<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>
|
|
12649
12688
|
<ul>
|
|
12650
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>
|
|
12651
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>
|
|
@@ -12653,7 +12692,7 @@
|
|
|
12653
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>
|
|
12654
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>
|
|
12655
12694
|
</ul>
|
|
12656
|
-
<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>
|
|
12657
12696
|
<ul>
|
|
12658
12697
|
<li><a href="https://github.com/nautobot/nautobot/issues/3904">#3904</a> - Added proper spacing/alignment to pagination section.</li>
|
|
12659
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>
|
|
@@ -12670,7 +12709,7 @@
|
|
|
12670
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>
|
|
12671
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>
|
|
12672
12711
|
</ul>
|
|
12673
|
-
<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>
|
|
12674
12713
|
<ul>
|
|
12675
12714
|
<li><a href="https://github.com/nautobot/nautobot/issues/4125">#4125</a> - Added support for Python 3.11.</li>
|
|
12676
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>
|
|
@@ -12700,7 +12739,7 @@
|
|
|
12700
12739
|
<li><a href="https://github.com/nautobot/nautobot/issues/4143">#4143</a> - Updated <code>packaging</code> dependency to <code>~23.1</code>.</li>
|
|
12701
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>
|
|
12702
12741
|
</ul>
|
|
12703
|
-
<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>
|
|
12704
12743
|
<ul>
|
|
12705
12744
|
<li><a href="https://github.com/nautobot/nautobot/issues/3330">#3330</a> - Added UI configuration documentation.</li>
|
|
12706
12745
|
<li><a href="https://github.com/nautobot/nautobot/issues/3386">#3386</a> - Added documentation linking to best practices for database backup.</li>
|
|
@@ -12712,7 +12751,7 @@
|
|
|
12712
12751
|
<li><a href="https://github.com/nautobot/nautobot/issues/4061">#4061</a> - Fixed a few broken links in the documentation.</li>
|
|
12713
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>
|
|
12714
12753
|
</ul>
|
|
12715
|
-
<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>
|
|
12716
12755
|
<ul>
|
|
12717
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>
|
|
12718
12757
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
@@ -12727,7 +12766,7 @@
|
|
|
12727
12766
|
<li><a href="https://github.com/nautobot/nautobot/issues/4285">#4285</a> - Fixed <code>next</code> container build workflow.</li>
|
|
12728
12767
|
</ul>
|
|
12729
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>
|
|
12730
|
-
<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>
|
|
12731
12770
|
<ul>
|
|
12732
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>
|
|
12733
12772
|
<li><a href="https://github.com/nautobot/nautobot/issues/3526">#3526</a> - Added detail view UI layout config.</li>
|
|
@@ -12745,7 +12784,7 @@
|
|
|
12745
12784
|
<li><a href="https://github.com/nautobot/nautobot/issues/4004">#4004</a> - Added <code>parent</code> filter for <code>Prefix</code> objects.</li>
|
|
12746
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>
|
|
12747
12786
|
</ul>
|
|
12748
|
-
<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>
|
|
12749
12788
|
<ul>
|
|
12750
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>
|
|
12751
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>
|
|
@@ -12759,7 +12798,7 @@
|
|
|
12759
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>
|
|
12760
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>
|
|
12761
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>
|
|
12762
|
-
<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>
|
|
12763
12802
|
<li><a href="https://github.com/nautobot/nautobot/issues/3748">#3748</a> - Updated API serializers to support Namespaces and unskip unit tests</li>
|
|
12764
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>
|
|
12765
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>
|
|
@@ -12792,7 +12831,7 @@
|
|
|
12792
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>
|
|
12793
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>
|
|
12794
12833
|
</ul>
|
|
12795
|
-
<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>
|
|
12796
12835
|
<ul>
|
|
12797
12836
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Removed <code>DeviceType.slug</code> field.</li>
|
|
12798
12837
|
<li><a href="https://github.com/nautobot/nautobot/issues/2662">#2662</a> - Removed <code>Location.slug</code> field.</li>
|
|
@@ -12814,7 +12853,7 @@
|
|
|
12814
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>
|
|
12815
12854
|
<li><a href="https://github.com/nautobot/nautobot/issues/3941">#3941</a> - Removed some overly verbose messaging in IPAM migration utilities.</li>
|
|
12816
12855
|
</ul>
|
|
12817
|
-
<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>
|
|
12818
12857
|
<ul>
|
|
12819
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>
|
|
12820
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>
|
|
@@ -12846,18 +12885,18 @@
|
|
|
12846
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>
|
|
12847
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>
|
|
12848
12887
|
</ul>
|
|
12849
|
-
<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>
|
|
12850
12889
|
<ul>
|
|
12851
12890
|
<li><a href="https://github.com/nautobot/nautobot/issues/3883">#3883</a> - Updated nautobot-ui package in next.</li>
|
|
12852
12891
|
</ul>
|
|
12853
|
-
<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>
|
|
12854
12893
|
<ul>
|
|
12855
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>
|
|
12856
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>
|
|
12857
12896
|
<li><a href="https://github.com/nautobot/nautobot/issues/3940">#3940</a> - Added Jobs migration docs.</li>
|
|
12858
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>
|
|
12859
12898
|
</ul>
|
|
12860
|
-
<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>
|
|
12861
12900
|
<ul>
|
|
12862
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>
|
|
12863
12902
|
<li><a href="https://github.com/nautobot/nautobot/issues/3424">#3424</a> - Unskipped <code>nautobot.ipam.tests.test_forms.IPAddressFormTest</code></li>
|
|
@@ -12871,7 +12910,7 @@
|
|
|
12871
12910
|
<li><a href="https://github.com/nautobot/nautobot/issues/4078">#4078</a> - Fixed prerelease workflow referenced <code>ci_integration.yml</code> file.</li>
|
|
12872
12911
|
</ul>
|
|
12873
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>
|
|
12874
|
-
<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>
|
|
12875
12914
|
<ul>
|
|
12876
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>
|
|
12877
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>
|
|
@@ -12906,7 +12945,7 @@
|
|
|
12906
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>
|
|
12907
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>
|
|
12908
12947
|
</ul>
|
|
12909
|
-
<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>
|
|
12910
12949
|
<ul>
|
|
12911
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>
|
|
12912
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>
|
|
@@ -12951,7 +12990,7 @@
|
|
|
12951
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>
|
|
12952
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>
|
|
12953
12992
|
</ul>
|
|
12954
|
-
<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>
|
|
12955
12994
|
<ul>
|
|
12956
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>
|
|
12957
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>
|
|
@@ -12977,7 +13016,7 @@
|
|
|
12977
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>
|
|
12978
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>
|
|
12979
13018
|
</ul>
|
|
12980
|
-
<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>
|
|
12981
13020
|
<ul>
|
|
12982
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>
|
|
12983
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>
|
|
@@ -13008,16 +13047,16 @@
|
|
|
13008
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>
|
|
13009
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>
|
|
13010
13049
|
</ul>
|
|
13011
|
-
<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>
|
|
13012
13051
|
<ul>
|
|
13013
13052
|
<li><a href="https://github.com/nautobot/nautobot/issues/1721">#1721</a> - Removed dependency on <code>django-cacheops</code>.</li>
|
|
13014
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>
|
|
13015
13054
|
</ul>
|
|
13016
|
-
<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>
|
|
13017
13056
|
<ul>
|
|
13018
13057
|
<li><a href="https://github.com/nautobot/nautobot/issues/3591">#3591</a> - Fixed a few errors in the v2.0 migration documentation.</li>
|
|
13019
13058
|
</ul>
|
|
13020
|
-
<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>
|
|
13021
13060
|
<ul>
|
|
13022
13061
|
<li><a href="https://github.com/nautobot/nautobot/issues/1633">#1633</a> - Removed monkey-patching of <code>taggit.managers.TaggableManager</code>.</li>
|
|
13023
13062
|
<li><a href="https://github.com/nautobot/nautobot/issues/3378">#3378</a> - Re-enabled skipped tests.</li>
|
|
@@ -13030,11 +13069,11 @@
|
|
|
13030
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>
|
|
13031
13070
|
</ul>
|
|
13032
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>
|
|
13033
|
-
<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>
|
|
13034
13073
|
<ul>
|
|
13035
13074
|
<li><a href="https://github.com/nautobot/nautobot/issues/3337">#3337</a> - Add <code>Namespace</code> model to IPAM.</li>
|
|
13036
13075
|
</ul>
|
|
13037
|
-
<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>
|
|
13038
13077
|
<ul>
|
|
13039
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>
|
|
13040
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>
|
|
@@ -13042,12 +13081,12 @@
|
|
|
13042
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>
|
|
13043
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>
|
|
13044
13083
|
</ul>
|
|
13045
|
-
<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>
|
|
13046
13085
|
<ul>
|
|
13047
13086
|
<li><a href="https://github.com/nautobot/nautobot/issues/3439">#3439</a> - Removed <code>slug</code> field from many database models.</li>
|
|
13048
13087
|
<li><a href="https://github.com/nautobot/nautobot/issues/3523">#3523</a> - Removed <code>nat_outside</code> getter-setter in IPAddress model.</li>
|
|
13049
13088
|
</ul>
|
|
13050
|
-
<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>
|
|
13051
13090
|
<ul>
|
|
13052
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>
|
|
13053
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>
|
|
@@ -13063,12 +13102,12 @@
|
|
|
13063
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>
|
|
13064
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>
|
|
13065
13104
|
</ul>
|
|
13066
|
-
<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>
|
|
13067
13106
|
<ul>
|
|
13068
13107
|
<li><a href="https://github.com/nautobot/nautobot/issues/2316">#2316</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
13069
13108
|
</ul>
|
|
13070
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>
|
|
13071
|
-
<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>
|
|
13072
13111
|
<ul>
|
|
13073
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>
|
|
13074
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>
|
|
@@ -13084,7 +13123,7 @@
|
|
|
13084
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>
|
|
13085
13124
|
<li><a href="https://github.com/nautobot/nautobot/issues/3418">#3418</a> - Added ObjectPermission Data Migration from Region/Site to Location.</li>
|
|
13086
13125
|
</ul>
|
|
13087
|
-
<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>
|
|
13088
13127
|
<ul>
|
|
13089
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>
|
|
13090
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>
|
|
@@ -13128,7 +13167,7 @@
|
|
|
13128
13167
|
<li><a href="https://github.com/nautobot/nautobot/issues/3351">#3351</a> - Changed extras abstract model ForeignKeys to use ForeignKeyWithAutoRelatedName.</li>
|
|
13129
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>
|
|
13130
13169
|
</ul>
|
|
13131
|
-
<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>
|
|
13132
13171
|
<ul>
|
|
13133
13172
|
<li><a href="https://github.com/nautobot/nautobot/issues/824">#824</a> - Removed <code>name</code> field from CustomField model class.</li>
|
|
13134
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>
|
|
@@ -13143,7 +13182,7 @@
|
|
|
13143
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>
|
|
13144
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>
|
|
13145
13184
|
</ul>
|
|
13146
|
-
<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>
|
|
13147
13186
|
<ul>
|
|
13148
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>
|
|
13149
13188
|
<li><a href="https://github.com/nautobot/nautobot/issues/1362">#1362</a> - Fixed migrations for <code>Prefix.type</code>.</li>
|
|
@@ -13158,18 +13197,18 @@
|
|
|
13158
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>
|
|
13159
13198
|
<li><a href="https://github.com/nautobot/nautobot/issues/3457">#3457</a> - Fixed bug preventing scheduled job from running.</li>
|
|
13160
13199
|
</ul>
|
|
13161
|
-
<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>
|
|
13162
13201
|
<ul>
|
|
13163
13202
|
<li><a href="https://github.com/nautobot/nautobot/issues/2521">#2521</a> - Removed dependency on <code>django-cryptography</code>.</li>
|
|
13164
13203
|
<li><a href="https://github.com/nautobot/nautobot/issues/2524">#2524</a> - Removed no-longer-used <code>drf-yasg</code> dependency.</li>
|
|
13165
13204
|
</ul>
|
|
13166
|
-
<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>
|
|
13167
13206
|
<ul>
|
|
13168
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>
|
|
13169
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>
|
|
13170
13209
|
</ul>
|
|
13171
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>
|
|
13172
|
-
<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>
|
|
13173
13212
|
<ul>
|
|
13174
13213
|
<li><a href="https://github.com/nautobot/nautobot/issues/1731">#1731</a> - Added missing filters to <code>circuits</code> app.</li>
|
|
13175
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>
|
|
@@ -13177,7 +13216,7 @@
|
|
|
13177
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>
|
|
13178
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>
|
|
13179
13218
|
</ul>
|
|
13180
|
-
<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>
|
|
13181
13220
|
<ul>
|
|
13182
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>
|
|
13183
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>
|
|
@@ -13197,7 +13236,7 @@
|
|
|
13197
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>
|
|
13198
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>
|
|
13199
13238
|
</ul>
|
|
13200
|
-
<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>
|
|
13201
13240
|
<ul>
|
|
13202
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>
|
|
13203
13242
|
<li><a href="https://github.com/nautobot/nautobot/issues/1731">#1731</a> - Removed redundant filters from <code>circuits</code> app.</li>
|
|
@@ -13209,14 +13248,14 @@
|
|
|
13209
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>
|
|
13210
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>
|
|
13211
13250
|
</ul>
|
|
13212
|
-
<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>
|
|
13213
13252
|
<ul>
|
|
13214
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>
|
|
13215
13254
|
<li><a href="https://github.com/nautobot/nautobot/issues/2808">#2808</a> - Fixed incorrectly named filters in <code>circuits</code> app.</li>
|
|
13216
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>
|
|
13217
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>
|
|
13218
13257
|
</ul>
|
|
13219
|
-
<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>
|
|
13220
13259
|
<ul>
|
|
13221
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>
|
|
13222
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>
|
|
@@ -13224,11 +13263,11 @@
|
|
|
13224
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>
|
|
13225
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>
|
|
13226
13265
|
</ul>
|
|
13227
|
-
<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>
|
|
13228
13267
|
<ul>
|
|
13229
13268
|
<li><a href="https://github.com/nautobot/nautobot/issues/204">#204</a> - Added style guide documentation for importing python modules in Nautobot.</li>
|
|
13230
13269
|
</ul>
|
|
13231
|
-
<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>
|
|
13232
13271
|
<ul>
|
|
13233
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>
|
|
13234
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>
|
|
@@ -13384,7 +13423,7 @@
|
|
|
13384
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>
|
|
13385
13424
|
|
|
13386
13425
|
|
|
13387
|
-
<script src="../assets/javascripts/bundle.
|
|
13426
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
13388
13427
|
|
|
13389
13428
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
13390
13429
|
|