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

[DOCS] Adds missing breaking change #20057

Merged
merged 1 commit into from
Jun 20, 2018
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
16 changes: 16 additions & 0 deletions docs/migration/migrate_6_0.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ your application to Kibana 6.0.

See also <<release-highlights>> and <<release-notes>>.

[float]
=== Saved objects `bulk_get` and `find` endpoints renamed
//{pull}17512[#17512]

*Details:*
To support sending larger and more expressive queries to the Saved Objects find
API, we added a POST endpoint for find and therefore needed a way to disambiguate
the find API from from the POST API used to create Saved Objects.

*Impact:*
Starting in {kib} 6.3, endpoints that are not simple CRUD operations on a single
object will be named and their name will start with an underscore. For example,
{es} `GET /api/saved_objects` is now `GET /api/saved_objects/_find`,
`GET /api/saved_objects/{type}` is now `GET /api/saved_objects/_find?type={type}`,
and `GET /api/saved_objects/bulk_get` is now `GET /api/saved_objects/_bulk_get`.

[float]
=== Types removed from Kibana index
*Details:*
Expand Down