Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Management Api - add to migration guide #56892

Merged
merged 3 commits into from
Feb 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/core/MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -1163,6 +1163,7 @@ import { setup, start } from '../core_plugins/visualizations/public/legacy';

| Legacy Platform | New Platform | Notes |
| ------------------------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
| `import 'ui/management'` | `management.sections` | |
| `import 'ui/apply_filters'` | N/A. Replaced by triggering an APPLY_FILTER_TRIGGER trigger. | Directive is deprecated. |
| `import 'ui/filter_bar'` | `import { FilterBar } from '../data/public'` | Directive is deprecated. |
| `import 'ui/query_bar'` | `import { QueryStringInput } from '../data/public'` | Directives are deprecated. |
Expand Down Expand Up @@ -1240,7 +1241,7 @@ This table shows where these uiExports have moved to in the New Platform. In mos
| `inspectorViews` | | Should be an API on the data (?) plugin. |
| `interpreter` | | Should be an API on the interpreter plugin. |
| `links` | n/a | Not necessary, just register your app via `core.application.register` |
| `managementSections` | [`plugins.management.sections.register`](/rfcs/text/0006_management_section_service.md) | API finalized, implementation in progress. |
| `managementSections` | [`plugins.management.sections.register`](/rfcs/text/0006_management_section_service.md) | |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you also a row the table on line 1164 that shows where ui/management went?

| `mappings` | | Part of SavedObjects, see [#33587](https://github.com/elastic/kibana/issues/33587) |
| `migrations` | | Part of SavedObjects, see [#33587](https://github.com/elastic/kibana/issues/33587) |
| `navbarExtensions` | n/a | Deprecated |
Expand Down