You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/04/13 16:19:35 UTC

[superset] branch Flag-category-upgates updated (a9e1c5658a -> d8222a7b43)

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

rusackas pushed a change to branch Flag-category-upgates
in repository https://gitbox.apache.org/repos/asf/superset.git


    from a9e1c5658a chore(feature flags): updating the status of a few flags
     add d581d698b6 chore: Refactor ExploreMixin to power both Datasets (SqlaTable) and Query models (#22853)
     add a41f3ebea3 chore: Refactor ExploreMixin to power both Datasets (SqlaTable) and Query models (#22853)
     add e8f32c4bc4 fix(saved_queries): wrong enum for object_type of saved_query (#23611)
     add ca408a7159 chore(feature flag): removing unused ENFORCE_DB_ENCRYPTION_UI flag (#23640)
     add 8bd8276791 fix: Removes Redux state mutations - iteration 3 (#23637)
     add 02275587d1 feat: implement drill by table (#23603)
     add 825006d906 docs: update CHANGELOG with 2.1.0 (#23646)
     add a6f74f10ad build(deps-dev): bump @typescript-eslint/parser from 5.57.1 to 5.58.0 in /superset-websocket (#23643)
     add 61ddfe6972 fix(migration): Only attempt to drop types if they exist (#23650)
     add 983acf7103 build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.57.1 to 5.58.0 in /superset-websocket (#23642)
     add a5b6ccc1ec fix(sqllab): rendering performance regression (#23653)
     add c8fa44e9e9 feat(dashboard): make color indices referable (#23657)
     add 587e7759b1 feat: Support further drill by in the modal (#23615)
     add f49702feff feat(plugin-chart-echarts): add x-axis sort to multi series (#23644)
     add 350723bff8 fix: update log message for ALERT_REPORTS_NOTIFICATION_DRY_RUN (#23604)
     add 75021a1eac refactor: introduce redux toolkit (#23460)
     add 976e33330f fix: presto CI failed test (#23666)
     add b35b5a6e05 chore(db_engine_specs): Refactor get_index (#23656)
     add 40bf1a550b fix(sqllab): Revert "rendering performance regression (#23653)" (#23671)
     add 0974fa1172 chore: Enables GENERIC_CHART_AXES by default (#23652)
     add 04bd528bed chore: Removes the UX_BETA feature flag (#23651)
     add d8222a7b43 Merge branch 'master' into Flag-category-upgates

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md                                       | 1177 ++++++++++++++++++++
 RESOURCES/FEATURE_FLAGS.md                         |    3 +-
 UPDATING.md                                        |    2 +
 .../explore/visualizations/table.test.ts           |    4 +-
 superset-frontend/package-lock.json                |   95 +-
 superset-frontend/package.json                     |    3 +-
 .../superset-ui-chart-controls/src/constants.ts    |   20 +-
 .../src/sections/echartsTimeSeriesQuery.tsx        |    6 +-
 .../src/shared-controls/customControls.tsx         |   49 +
 .../superset-ui-chart-controls/src/types.ts        |   13 +
 .../src/chart/components/SuperChart.tsx            |   10 +-
 .../src/chart/components/SuperChartCore.tsx        |   28 +-
 .../src/color/CategoricalColorScale.ts             |   20 +-
 .../packages/superset-ui-core/src/color/types.ts   |    4 +
 .../superset-ui-core/src/utils/featureFlags.ts     |    1 -
 .../test/color/CategoricalColorScale.test.ts       |   15 +
 .../src/Timeseries/constants.ts                    |    6 +-
 .../src/Timeseries/transformProps.ts               |    6 +
 .../plugins/plugin-chart-echarts/src/constants.ts  |    7 -
 .../plugins/plugin-chart-echarts/src/controls.tsx  |   17 +-
 .../plugins/plugin-chart-echarts/src/types.ts      |   13 -
 .../plugin-chart-echarts/src/utils/series.ts       |  106 +-
 .../plugin-chart-echarts/test/utils/series.test.ts |  137 ++-
 .../preset-chart-xy/src/components/Line/Line.tsx   |   10 +-
 .../src/utils/createMarginSelector.tsx             |   10 +-
 superset-frontend/spec/fixtures/mockStore.js       |   47 +-
 superset-frontend/spec/helpers/testing-library.tsx |   19 +-
 superset-frontend/src/SqlLab/App.jsx               |   29 +-
 .../SqlLab/components/SaveDatasetModal/index.tsx   |    6 +-
 superset-frontend/src/SqlLab/fixtures.ts           |    6 +-
 superset-frontend/src/SqlLab/reducers/index.js     |    6 +-
 .../{ => ChartContextMenu}/ChartContextMenu.tsx    |   65 +-
 .../Chart/ChartContextMenu/useContextMenu.test.tsx |   86 ++
 .../Chart/ChartContextMenu/useContextMenu.tsx      |   82 ++
 .../src/components/Chart/ChartRenderer.jsx         |   17 +-
 .../components/Chart/DrillBy/DrillByChart.test.tsx |   47 +-
 .../src/components/Chart/DrillBy/DrillByChart.tsx  |   61 +-
 .../Chart/DrillBy/DrillByMenuItems.test.tsx        |   70 +-
 .../components/Chart/DrillBy/DrillByMenuItems.tsx  |   51 +-
 .../components/Chart/DrillBy/DrillByModal.test.tsx |   44 +-
 .../src/components/Chart/DrillBy/DrillByModal.tsx  |  181 ++-
 superset-frontend/src/components/Chart/types.ts    |    7 +
 superset-frontend/src/dashboard/styles.ts          |    3 +
 .../DndColumnSelectControl/DndFilterSelect.tsx     |    2 +-
 .../DndColumnSelectControl/DndMetricSelect.tsx     |   18 +-
 .../controls/MetricControl/AdhocMetricOption.jsx   |    2 +-
 superset-frontend/src/views/menu.tsx               |    2 +-
 superset-frontend/src/views/store.ts               |   62 +-
 superset-websocket/package-lock.json               |  164 +--
 superset-websocket/package.json                    |    4 +-
 superset/config.py                                 |    6 +-
 superset/connectors/base/models.py                 |    4 +-
 superset/connectors/sqla/models.py                 |  769 +------------
 superset/db_engine_specs/base.py                   |   22 +
 superset/db_engine_specs/bigquery.py               |   22 +
 superset/db_engine_specs/presto.py                 |   16 +-
 ...2af1b_drop_postgres_enum_constrains_for_tags.py |    4 +-
 superset/models/core.py                            |    3 +-
 superset/models/helpers.py                         |  488 +++++---
 superset/models/sql_lab.py                         |   67 +-
 superset/reports/commands/execute.py               |    4 +-
 superset/utils/core.py                             |   16 +-
 superset/views/core.py                             |    2 +-
 tests/integration_tests/charts/data/api_tests.py   |    4 +-
 tests/integration_tests/datasets/api_tests.py      |    2 +-
 tests/integration_tests/datasets/commands_tests.py |    2 +-
 .../db_engine_specs/base_engine_spec_tests.py      |   23 +
 .../db_engine_specs/bigquery_tests.py              |   83 +-
 tests/integration_tests/sqllab_tests.py            |   24 +-
 69 files changed, 2959 insertions(+), 1445 deletions(-)
 rename superset-frontend/src/components/Chart/{ => ChartContextMenu}/ChartContextMenu.tsx (80%)
 create mode 100644 superset-frontend/src/components/Chart/ChartContextMenu/useContextMenu.test.tsx
 create mode 100644 superset-frontend/src/components/Chart/ChartContextMenu/useContextMenu.tsx