Skip to content

Commit

Permalink
[DOCS] Adds another plugin breaking change (#82990) (#82995)
Browse files Browse the repository at this point in the history
  • Loading branch information
gchaps committed Nov 9, 2020
1 parent c572e49 commit 8d998a3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/migration/migrate_7_10.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -731,3 +731,26 @@ know about each plugin that wants to gain access
*via https://github.com/elastic/kibana/pull/74357[#74357]*
====

[discrete]
[[breaking_plugin_v7.10.0_77327]]
.Settings per case per connector
[%collapsible]
====
- To create a case (`POST <kibana host>:<port>/api/cases`), you must provide a `connector`.
Requests without a `connector` get a `400 Bad Request`.
- To update the connector of a case (`PATCH <kibana host>:<port>/api/cases`),
you must provide the `connector`. The `connector_id` attribute has been
removed in favor of the `connector` attribute.
- To set the default connector (`POST <kibana host>:<port>/api/cases/configure`),
you must provide a `connector`. The `connector_id` and `connector_name`
attributes have been removed in favor of the `connector` attribute.
- To update the connector’s case closure settings
(`PATCH <kibana host>:<port>/api/cases/configure`), you must provide a `connector`.
The `connector_id` and `connector_name` attributes have been removed in
favor of the `connector` attribute.
*via https://github.com/elastic/kibana/pull/77327[#77327]*
====

0 comments on commit 8d998a3

Please sign in to comment.