From d6a758faa5017211f2b4b20687615ca95ecb6fe3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 28 Jun 2023 23:36:06 -0300 Subject: [PATCH] Update dependency @elastic/charts to v59 (main) (#160700) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@elastic/charts](https://togithub.com/elastic/elastic-charts) | [`58.2.0` -> `59.0.0`](https://renovatebot.com/diffs/npm/@elastic%2fcharts/58.2.0/59.0.0) | [![age](https://badges.renovateapi.com/packages/npm/@elastic%2fcharts/59.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@elastic%2fcharts/59.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@elastic%2fcharts/59.0.0/compatibility-slim/58.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@elastic%2fcharts/59.0.0/confidence-slim/58.2.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
elastic/elastic-charts (@​elastic/charts) ### [`v59.0.0`](https://togithub.com/elastic/elastic-charts/blob/HEAD/CHANGELOG.md#​5900-httpsgithubcomelasticelastic-chartscomparev5821v5900-2023-06-27) [Compare Source](https://togithub.com/elastic/elastic-charts/compare/v58.2.1...v59.0.0) ##### Bug Fixes - **legend:** use reading direction sorting for stacked bar charts ([#​2080](https://togithub.com/elastic/elastic-charts/issues/2080)) ([be9c839](https://togithub.com/elastic/elastic-charts/commit/be9c83906ab58ac6193fdc9219951741d284447b)) ##### BREAKING CHANGES - **legend:** the sorting order of the legend is now inverted for stacked charts, following the reading direction of the legend (top-to-bottom in insertion order) #### [58.2.1](https://togithub.com/elastic/elastic-charts/compare/v58.2.0...v58.2.1) (2023-06-23) ##### Bug Fixes - remove unused redux dev tools ([#​2079](https://togithub.com/elastic/elastic-charts/issues/2079)) ([1870303](https://togithub.com/elastic/elastic-charts/commit/18703038807b784c347348bd8e88b9f5ae47f67e)) ### [`v58.2.1`](https://togithub.com/elastic/elastic-charts/blob/HEAD/CHANGELOG.md#​5821-httpsgithubcomelasticelastic-chartscomparev5820v5821-2023-06-23) [Compare Source](https://togithub.com/elastic/elastic-charts/compare/v58.2.0...v58.2.1) ##### Bug Fixes - remove unused redux dev tools ([#​2079](https://togithub.com/elastic/elastic-charts/issues/2079)) ([1870303](https://togithub.com/elastic/elastic-charts/commit/18703038807b784c347348bd8e88b9f5ae47f67e))
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/elastic/kibana). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Marco Vettorello Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> (cherry picked from commit a5ff6e6c7621bcc52738cc0a2e67438ed5110d4c) --- package.json | 2 +- .../group1/_discover_histogram_breakdown.ts | 4 +-- .../_vertical_bar_chart.ts | 34 +++++++++---------- .../_vertical_bar_chart_nontimeindex.ts | 32 ++++++++--------- .../apps/discover/visualize_field.ts | 2 +- yarn.lock | 8 ++--- 6 files changed, 41 insertions(+), 41 deletions(-) diff --git a/package.json b/package.json index 52e08f2a33609..b930a1c7848ac 100644 --- a/package.json +++ b/package.json @@ -94,7 +94,7 @@ "@dnd-kit/utilities": "^2.0.0", "@elastic/apm-rum": "^5.12.0", "@elastic/apm-rum-react": "^1.4.2", - "@elastic/charts": "58.2.0", + "@elastic/charts": "59.0.0", "@elastic/datemath": "5.0.3", "@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@8.8.0-canary.2", "@elastic/ems-client": "8.4.0", diff --git a/test/functional/apps/discover/group1/_discover_histogram_breakdown.ts b/test/functional/apps/discover/group1/_discover_histogram_breakdown.ts index 805d59aee937d..86ec135ab0089 100644 --- a/test/functional/apps/discover/group1/_discover_histogram_breakdown.ts +++ b/test/functional/apps/discover/group1/_discover_histogram_breakdown.ts @@ -34,7 +34,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.discover.chooseBreakdownField('extension.raw'); await PageObjects.header.waitUntilLoadingHasFinished(); const list = await PageObjects.discover.getHistogramLegendList(); - expect(list).to.eql(['Other', 'png', 'css', 'jpg']); + expect(list).to.eql(['jpg', 'css', 'png', 'Other']); }); it('should add filter using histogram legend values', async () => { @@ -55,7 +55,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.discover.loadSavedSearch('with breakdown'); await PageObjects.header.waitUntilLoadingHasFinished(); const list = await PageObjects.discover.getHistogramLegendList(); - expect(list).to.eql(['Other', 'png', 'css', 'jpg']); + expect(list).to.eql(['jpg', 'css', 'png', 'Other']); }); }); } diff --git a/test/functional/apps/visualize/replaced_vislib_chart_types/_vertical_bar_chart.ts b/test/functional/apps/visualize/replaced_vislib_chart_types/_vertical_bar_chart.ts index 896f2ed238067..12a7f62a2801d 100644 --- a/test/functional/apps/visualize/replaced_vislib_chart_types/_vertical_bar_chart.ts +++ b/test/functional/apps/visualize/replaced_vislib_chart_types/_vertical_bar_chart.ts @@ -299,7 +299,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.visChart.waitForVisualizationRenderingStabilized(); await PageObjects.visEditor.clickGo(true); - const expectedEntries = ['503', '404', '200']; // sorting aligned with rendered geometries + const expectedEntries = ['200', '404', '503']; // sorting order aligned with the reading direction const legendEntries = await PageObjects.visChart.getLegendEntriesXYCharts(xyChartSelector); expect(legendEntries).to.eql(expectedEntries); }); @@ -309,7 +309,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.visEditor.selectCustomSortMetric(3, 'Min', 'bytes'); await PageObjects.visEditor.clickGo(true); - const expectedEntries = ['503', '200', '404']; + const expectedEntries = ['404', '200', '503']; const legendEntries = await PageObjects.visChart.getLegendEntriesXYCharts(xyChartSelector); expect(legendEntries).to.eql(expectedEntries); }); @@ -343,21 +343,21 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.visEditor.clickGo(true); const expectedEntries = [ - '404 - win xp', - '404 - win 8', - '404 - win 7', - '404 - osx', - '503 - win xp', - '503 - win 8', - '503 - win 7', - '503 - osx', - '503 - ios', - '404 - ios', - '200 - win 7', - '200 - osx', - '200 - ios', - '200 - win xp', '200 - win 8', + '200 - win xp', + '200 - ios', + '200 - osx', + '200 - win 7', + '404 - ios', + '503 - ios', + '503 - osx', + '503 - win 7', + '503 - win 8', + '503 - win xp', + '404 - osx', + '404 - win 7', + '404 - win 8', + '404 - win xp', ]; const legendEntries = await PageObjects.visChart.getLegendEntriesXYCharts(xyChartSelector); expect(legendEntries).to.eql(expectedEntries); @@ -369,7 +369,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.visEditor.toggleDisabledAgg(3); await PageObjects.visEditor.clickGo(true); - const expectedEntries = ['win 7', 'osx', 'ios', 'win xp', 'win 8']; + const expectedEntries = ['win 8', 'win xp', 'ios', 'osx', 'win 7']; const legendEntries = await PageObjects.visChart.getLegendEntriesXYCharts(xyChartSelector); expect(legendEntries).to.eql(expectedEntries); }); diff --git a/test/functional/apps/visualize/replaced_vislib_chart_types/_vertical_bar_chart_nontimeindex.ts b/test/functional/apps/visualize/replaced_vislib_chart_types/_vertical_bar_chart_nontimeindex.ts index 7d8ffe17566fe..712acac080dd8 100644 --- a/test/functional/apps/visualize/replaced_vislib_chart_types/_vertical_bar_chart_nontimeindex.ts +++ b/test/functional/apps/visualize/replaced_vislib_chart_types/_vertical_bar_chart_nontimeindex.ts @@ -184,7 +184,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.visEditor.clickGo(true); await PageObjects.header.waitUntilLoadingHasFinished(); - const expectedEntries = ['503', '404', '200']; // sorting aligned with rendered geometries + const expectedEntries = ['200', '404', '503']; // sorting order aligned with reading direction top-bottom const legendEntries = await PageObjects.visChart.getLegendEntriesXYCharts(xyChartSelector); expect(legendEntries).to.eql(expectedEntries); @@ -212,21 +212,21 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.header.waitUntilLoadingHasFinished(); const expectedEntries = [ - '404 - win xp', - '404 - win 8', - '404 - win 7', - '404 - osx', - '503 - win xp', - '503 - win 8', - '503 - win 7', - '503 - osx', - '503 - ios', - '404 - ios', - '200 - win 7', - '200 - osx', - '200 - ios', - '200 - win xp', '200 - win 8', + '200 - win xp', + '200 - ios', + '200 - osx', + '200 - win 7', + '404 - ios', + '503 - ios', + '503 - osx', + '503 - win 7', + '503 - win 8', + '503 - win xp', + '404 - osx', + '404 - win 7', + '404 - win 8', + '404 - win xp', ]; const legendEntries = await PageObjects.visChart.getLegendEntriesXYCharts(xyChartSelector); expect(legendEntries).to.eql(expectedEntries); @@ -237,7 +237,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.visEditor.clickGo(true); await PageObjects.header.waitUntilLoadingHasFinished(); - const expectedEntries = ['win 7', 'osx', 'ios', 'win xp', 'win 8']; + const expectedEntries = ['win 8', 'win xp', 'ios', 'osx', 'win 7']; const legendEntries = await PageObjects.visChart.getLegendEntriesXYCharts(xyChartSelector); expect(legendEntries).to.eql(expectedEntries); }); diff --git a/x-pack/test/functional/apps/discover/visualize_field.ts b/x-pack/test/functional/apps/discover/visualize_field.ts index cfafd4e77b5d5..bb914c45fa2b7 100644 --- a/x-pack/test/functional/apps/discover/visualize_field.ts +++ b/x-pack/test/functional/apps/discover/visualize_field.ts @@ -114,7 +114,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { ); expect(await breakdownLabel.getVisibleText()).to.eql('Top 3 values of extension.raw'); - expect(values).to.eql(['Other', 'png', 'css', 'jpg']); + expect(values).to.eql(['jpg', 'css', 'png', 'Other']); }); }); diff --git a/yarn.lock b/yarn.lock index 2c6b48aa91c77..24c3586e0c3d9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1469,10 +1469,10 @@ dependencies: object-hash "^1.3.0" -"@elastic/charts@58.2.0": - version "58.2.0" - resolved "https://registry.yarnpkg.com/@elastic/charts/-/charts-58.2.0.tgz#bd2010a4081b565f539abc75938431c7590213cc" - integrity sha512-ZhW+3SHz6txVdrncSt3njTunmUwdL4JF5lSXy5NG8qrx0r4SKi3yLbLc83xAsv7T1hxbTgsfS4GgGMhWoBBiyg== +"@elastic/charts@59.0.0": + version "59.0.0" + resolved "https://registry.yarnpkg.com/@elastic/charts/-/charts-59.0.0.tgz#c81a82c389011f52ac79e7c59b0551439a0e90b2" + integrity sha512-itEam7dpyHxMNl8eNnZbQa/7M6D741/qsZWjDnXXlirvRsMzpRwhuB0WGxGNXxCuuW/GqWXNlhsqXgKqERS4yw== dependencies: "@popperjs/core" "^2.4.0" bezier-easing "^2.1.0"