Skip to content

Commit

Permalink
[DOCS] Adds missing breaking change (#20057)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl committed Jun 20, 2018
1 parent 737b987 commit 9232aec
Showing 1 changed file with 16 additions and 0 deletions.
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

0 comments on commit 9232aec

Please sign in to comment.