You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by gi...@apache.org on 2022/08/17 17:46:02 UTC

[superset] branch dependabot/npm_and_yarn/superset-frontend/async-2.6.4 updated (5a4b64ba73 -> 3d78a7f7a4)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/npm_and_yarn/superset-frontend/async-2.6.4
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 5a4b64ba73 chore(deps): bump async from 2.6.3 to 2.6.4 in /superset-frontend
     add e13c5b2b7b fix: take form_data reference for metrics for pivot_v2 table reports (#21029)
     add a8ba544e60 fix(plugin-chart-echarts): invalid total label location for negative values in stacked bar chart (#21032)
     add 2d1ba46844 fix(plugin-chart-echarts): missing value format in mixed timeseries (#21044)
     add 5113b01031 feat(trino): add query cancellation (#21035)
     add 394d62ee51 Add embedded docs config details to extensions registry (#21052)
     add d817a1dc87 chore(deps): unpin holidays dependency version (#21091)
     add 83dd85166f feat: add extension point for workspace home page (#21033)
     add 5c2a1f85ff fix(database-modal): 'CTAS & CVAS SCHEMA' getting cut off (#21004)
     add b303d1e156 fix(plugin-chart-echarts): gauge chart enhancements and fixes (#21007)
     add 0c84203053 fix: Unable to sync columns when dataset name has '+' (#21019)
     add 495a205dec Memoize the common_bootstrap_payload (#21018)
     add d3684c0937 fix(dashboard): Dashboard header overflowing in edit mode (#21100)
     add 6f3a555e58 fix(dashboard): Fix scroll behaviour in DashboardBuilderSidepane (#20969)
     add 8005b7f8c7 fix(plugin-chart-table): Upgrade old color formats (#21101)
     add 94e8fd3b35 update makefile with reports and alerts (#21102)
     add 76d6a9af91 chore: Support Python 3.10 and bump pandas 1.4 and pyarrow 6 (#21002)
     add db7e2b2e37 docs: improve encrypted field adapter docs (#21111)
     add 151795663b feat: Adds the MetadataBar component (#21090)
     add 3d78a7f7a4 chore(deps): bump async from 2.6.3 to 2.6.4 in /superset-frontend

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5a4b64ba73)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-frontend/async-2.6.4 (3d78a7f7a4)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CONTRIBUTING.md                                    |     2 +-
 Makefile                                           |    12 +-
 UPDATING.md                                        |     1 +
 requirements/base.txt                              |     8 +-
 setup.py                                           |     7 +-
 superset-frontend/.eslintrc.js                     |     1 +
 superset-frontend/.storybook/main.js               |     4 +-
 superset-frontend/.storybook/preview.jsx           |     1 +
 superset-frontend/package-lock.json                | 36949 ++++++++++---------
 superset-frontend/package.json                     |     1 +
 .../src/ui-overrides/ExtensionsRegistry.ts         |     7 +
 .../MixedTimeseries/Stories.tsx                    |    64 +-
 .../MixedTimeseries/negativeData.ts}               |    39 +-
 .../plugin-chart-echarts/Timeseries/Stories.tsx    |    35 +-
 .../Timeseries/negativeNumData.ts                  |   111 +
 .../src/Gauge/controlPanel.tsx                     |     6 +-
 .../src/Gauge/transformProps.ts                    |    79 +-
 .../plugin-chart-echarts/src/Gauge/types.ts        |     8 +-
 .../src/MixedTimeseries/transformProps.ts          |    34 +-
 .../src/Timeseries/transformProps.ts               |     2 +
 .../src/Timeseries/transformers.ts                 |     5 +-
 .../plugin-chart-echarts/src/utils/series.ts       |    15 +-
 .../plugin-chart-echarts/test/utils/series.test.ts |   119 +
 .../src/components/Datasource/DatasourceEditor.jsx |     4 +-
 .../Datasource/DatasourceEditor.test.jsx           |    12 +-
 .../src/components/ListViewCard/index.tsx          |    49 +-
 .../src/components/MetadataBar/ContentConfig.tsx   |   143 +
 .../src/components/MetadataBar/ContentType.ts      |    91 +
 .../components/MetadataBar/MetadataBar.stories.tsx |   109 +
 .../components/MetadataBar/MetadataBar.test.tsx    |   257 +
 .../components/MetadataBar/Overview.stories.mdx    |   137 +
 .../src/components/MetadataBar/index.tsx           |   190 +
 superset-frontend/src/components/Radio/index.tsx   |     1 +
 .../components/AddSliceCard/AddSliceCard.tsx       |     2 +-
 .../components/BuilderComponentPane/index.tsx      |    15 +-
 .../DashboardBuilder/DashboardBuilder.tsx          |     1 +
 .../components/DashboardEmbedControls.tsx          |    25 +-
 .../src/dashboard/components/Header/index.jsx      |     1 +
 .../CRUD/data/database/DatabaseModal/styles.ts     |     2 +-
 .../src/views/CRUD/welcome/Welcome.tsx             |   143 +-
 superset-frontend/webpack.config.js                |    19 +
 superset/charts/api.py                             |     4 +
 superset/charts/post_processing.py                 |     4 +
 superset/config.py                                 |    25 +-
 superset/db_engine_specs/trino.py                  |    42 +-
 superset/examples/bart_lines.py                    |     6 +-
 superset/examples/birth_names.py                   |     5 +-
 superset/examples/country_map.py                   |     8 +-
 superset/examples/energy.py                        |     6 +-
 superset/examples/flights.py                       |    10 +-
 superset/examples/helpers.py                       |    16 +-
 superset/examples/long_lat.py                      |     6 +-
 superset/examples/multiformat_time_series.py       |     6 +-
 superset/examples/paris.py                         |     6 +-
 superset/examples/random_time_series.py            |     6 +-
 superset/examples/sf_population_polygons.py        |     6 +-
 superset/examples/world_bank.py                    |     6 +-
 ...665d_fix_table_chart_conditional_formatting_.py |    82 +
 superset/queries/saved_queries/api.py              |     1 +
 superset/result_set.py                             |     3 +
 .../utils/pandas_postprocessing/contribution.py    |     3 +
 superset/views/base.py                             |     8 +-
 superset/viz.py                                    |     4 +-
 tests/integration_tests/charts/api_tests.py        |    15 +-
 tests/integration_tests/core_tests.py              |     4 +-
 .../queries/saved_queries/api_tests.py             |     4 +-
 tests/unit_tests/charts/test_post_processing.py    |    68 +
 .../unit_tests/db_engine_specs/test_trino.py       |    27 +-
 68 files changed, 21419 insertions(+), 17673 deletions(-)
 copy superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/{legacy-plugin-chart-sankey-loop/data.ts => plugin-chart-echarts/MixedTimeseries/negativeData.ts} (63%)
 create mode 100644 superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Timeseries/negativeNumData.ts
 create mode 100644 superset-frontend/src/components/MetadataBar/ContentConfig.tsx
 create mode 100644 superset-frontend/src/components/MetadataBar/ContentType.ts
 create mode 100644 superset-frontend/src/components/MetadataBar/MetadataBar.stories.tsx
 create mode 100644 superset-frontend/src/components/MetadataBar/MetadataBar.test.tsx
 create mode 100644 superset-frontend/src/components/MetadataBar/Overview.stories.mdx
 create mode 100644 superset-frontend/src/components/MetadataBar/index.tsx
 create mode 100644 superset/migrations/versions/2022-08-16_15-23_6d3c6f9d665d_fix_table_chart_conditional_formatting_.py
 copy superset/sqllab/validators.py => tests/unit_tests/db_engine_specs/test_trino.py (50%)