From 822a957be8afd960786a3f0ffa562f7b3eae7a75 Mon Sep 17 00:00:00 2001 From: gchaps <33642766+gchaps@users.noreply.github.com> Date: Tue, 12 Nov 2019 14:51:02 -0800 Subject: [PATCH 1/2] [DOCS] Adds breaking changes to 7.5 (#50432) --- docs/migration.asciidoc | 1 + docs/migration/migrate_7_5.asciidoc | 34 +++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 docs/migration/migrate_7_5.asciidoc diff --git a/docs/migration.asciidoc b/docs/migration.asciidoc index 108a023b2702e..c560026eeed33 100644 --- a/docs/migration.asciidoc +++ b/docs/migration.asciidoc @@ -15,6 +15,7 @@ your application from one version of Kibana to another. See also <> and <>. -- +include::migration/migrate_7_5.asciidoc[] include::migration/migrate_7_4.asciidoc[] include::migration/migrate_7_3.asciidoc[] include::migration/migrate_7_2.asciidoc[] diff --git a/docs/migration/migrate_7_5.asciidoc b/docs/migration/migrate_7_5.asciidoc new file mode 100644 index 0000000000000..841188a706c16 --- /dev/null +++ b/docs/migration/migrate_7_5.asciidoc @@ -0,0 +1,34 @@ +[[breaking-changes-7.5]] +== Breaking changes in 7.5 +++++ +7.5 +++++ + +This page discusses the breaking changes that you need to be aware of when migrating +your application to Kibana 7.5. + +//See also <> and <>. + +//NOTE: The notable-breaking-changes tagged regions are re-used in the +//Installation and Upgrade Guide + +//// +The following section is re-used in the Installation and Upgrade Guide +[[breaking_70_notable]] +=== Notable breaking changes +//// +// tag::notable-breaking-changes[] + +[float] +[[breaking_75_change_default_setting]] +=== The default setting for `courier:batchSearches` is now `false` + +*Details:* +Changing the default setting for `courier:batchSearches` to `false` means +that search requests will use the `_search` {es} endpoint rather than `_msearch`. + +*Impact:* +Dashboard panels will load individually, and search requests will terminate +when users navigate away or update the query. + +// end::notable-breaking-changes[] \ No newline at end of file From b0941dff6aa0e6f2ad65cd731f25b915c1a0278c Mon Sep 17 00:00:00 2001 From: Tyler Smalley Date: Tue, 12 Nov 2019 15:17:21 -0800 Subject: [PATCH 2/2] [7.5] Skips failing Area Chart axis scaling test https://github.com/elastic/kibana/issues/50290 Signed-off-by: Tyler Smalley --- test/functional/apps/visualize/_area_chart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/apps/visualize/_area_chart.js b/test/functional/apps/visualize/_area_chart.js index 963b7f25bc1c9..f419276f53c06 100644 --- a/test/functional/apps/visualize/_area_chart.js +++ b/test/functional/apps/visualize/_area_chart.js @@ -136,7 +136,7 @@ export default function ({ getService, getPageObjects }) { }); describe('axis scaling', () => { - it('does not scale by default', async () => { + it.skip('does not scale by default', async () => { const expectedTableData = [ [ '2015-09-20 00:00', '6' ], [ '2015-09-20 01:00', '9' ],