This is an automated email from the ASF dual-hosted git repository. villebro pushed a commit to branch 1.3 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 56897ab14cf4353b253430604f328a8b5941e151 Author: Evan Rusackas <[email protected]> AuthorDate: Thu Aug 12 15:32:39 2021 -0600 fix: Remove Advanced Analytics tag for 2 charts (#16240) * removing AA tag from TimeTableChartPlugin * package bump for echarts (removes AA tag there) * package-lock bump for new echarts plugin (cherry picked from commit cdcc16184692386e44f44fff27166e84f4d49e88) --- superset-frontend/package-lock.json | 14 +++++++------- superset-frontend/package.json | 2 +- .../src/visualizations/TimeTable/TimeTableChartPlugin.js | 1 - 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/superset-frontend/package-lock.json b/superset-frontend/package-lock.json index 810e98b..7a4d26c 100644 --- a/superset-frontend/package-lock.json +++ b/superset-frontend/package-lock.json @@ -39,7 +39,7 @@ "@superset-ui/legacy-preset-chart-big-number": "^0.17.82", "@superset-ui/legacy-preset-chart-deckgl": "^0.4.10", "@superset-ui/legacy-preset-chart-nvd3": "^0.17.81", - "@superset-ui/plugin-chart-echarts": "^0.17.81", + "@superset-ui/plugin-chart-echarts": "^0.17.83", "@superset-ui/plugin-chart-pivot-table": "^0.17.81", "@superset-ui/plugin-chart-table": "^0.17.82", "@superset-ui/plugin-chart-word-cloud": "^0.17.81", @@ -12686,9 +12686,9 @@ } }, "node_modules/@superset-ui/plugin-chart-echarts": { - "version": "0.17.81", - "resolved": "https://registry.npmjs.org/@superset-ui/plugin-chart-echarts/-/plugin-chart-echarts-0.17.81.tgz", - "integrity": "sha512-pQ91Y7ZzmMkRs8XdMMyP/tq2t431MQnlDFiQv5XUkoBtOhWqVH2KVm9dk7AYwufuuwcLcm48Ab4vRDT8oQKKNw==", + "version": "0.17.83", + "resolved": "https://registry.npmjs.org/@superset-ui/plugin-chart-echarts/-/plugin-chart-echarts-0.17.83.tgz", + "integrity": "sha512-Xrq+90LV3twY68pTMU8kwibecwozEY8gYzEOOIMDS+Ccnh6pVXpec/585ne5i2CL4KGVLFoNXBUyJ0cXk6BUvw==", "dependencies": { "@superset-ui/chart-controls": "0.17.81", "@superset-ui/core": "0.17.81", @@ -62117,9 +62117,9 @@ } }, "@superset-ui/plugin-chart-echarts": { - "version": "0.17.81", - "resolved": "https://registry.npmjs.org/@superset-ui/plugin-chart-echarts/-/plugin-chart-echarts-0.17.81.tgz", - "integrity": "sha512-pQ91Y7ZzmMkRs8XdMMyP/tq2t431MQnlDFiQv5XUkoBtOhWqVH2KVm9dk7AYwufuuwcLcm48Ab4vRDT8oQKKNw==", + "version": "0.17.83", + "resolved": "https://registry.npmjs.org/@superset-ui/plugin-chart-echarts/-/plugin-chart-echarts-0.17.83.tgz", + "integrity": "sha512-Xrq+90LV3twY68pTMU8kwibecwozEY8gYzEOOIMDS+Ccnh6pVXpec/585ne5i2CL4KGVLFoNXBUyJ0cXk6BUvw==", "requires": { "@superset-ui/chart-controls": "0.17.81", "@superset-ui/core": "0.17.81", diff --git a/superset-frontend/package.json b/superset-frontend/package.json index 1fe7775..6d7376c 100644 --- a/superset-frontend/package.json +++ b/superset-frontend/package.json @@ -91,7 +91,7 @@ "@superset-ui/legacy-preset-chart-big-number": "^0.17.82", "@superset-ui/legacy-preset-chart-deckgl": "^0.4.10", "@superset-ui/legacy-preset-chart-nvd3": "^0.17.81", - "@superset-ui/plugin-chart-echarts": "^0.17.81", + "@superset-ui/plugin-chart-echarts": "^0.17.83", "@superset-ui/plugin-chart-pivot-table": "^0.17.81", "@superset-ui/plugin-chart-table": "^0.17.82", "@superset-ui/plugin-chart-word-cloud": "^0.17.81", diff --git a/superset-frontend/src/visualizations/TimeTable/TimeTableChartPlugin.js b/superset-frontend/src/visualizations/TimeTable/TimeTableChartPlugin.js index 6e070ae..9604439 100644 --- a/superset-frontend/src/visualizations/TimeTable/TimeTableChartPlugin.js +++ b/superset-frontend/src/visualizations/TimeTable/TimeTableChartPlugin.js @@ -27,7 +27,6 @@ const metadata = new ChartMetadata({ 'Compare multiple time series charts (as sparklines) and related metrics quickly.', ), tags: [ - t('Advanced-Analytics'), t('Multi-Variables'), t('Comparison'), t('Legacy'),
