You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2021/12/17 16:28:44 UTC

[superset] branch rm-pg-bar updated (ad37d85 -> b98ef0d)

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

hugh pushed a change to branch rm-pg-bar
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from ad37d85  lit
     add bcd698d  chore: print test runtime (#17770)
     add 3657cbe  fix(dashboard): commit update once (#17781)
     add d9acb28  fix: New Members per Month time range (#17783)
     add afd2e9f  chore: update fixtures scope that are loading data into the analytical db (#17780)
     add 4beaa81  docs: Fix typo on line 967 (#17785)
     add c5af7a4  fix: [alert] allow decimal for alert threshold value (#17751)
     add 9c9edbe  chore(plugin-chart-pivot-table): migrate react-pivottable into superset codebase (#17769)
     add b5dca4e  chore(plugin-chart-pivot-table): swap order of Columns and Rows controls (#17798)
     add a2d8b94  chore(plugin-chart-table): move adhoc filters control closer to the metrics (#17797)
     add f396818  fix(docs): bump broken packages (#17800)
     add b98ef0d  Merge branch 'master' of https://github.com/apache/superset into rm-pg-bar

No new revisions were added by this update.

Summary of changes:
 .github/workflows/superset-python-unittest.yml     |     2 +-
 CONTRIBUTING.md                                    |     2 +-
 docs/package-lock.json                             | 34113 ++++++++++++++++++-
 docs/package.json                                  |     4 +-
 scripts/python_tests.sh                            |     2 +-
 superset-frontend/package-lock.json                |    76 +-
 .../plugins/plugin-chart-pivot-table/package.json  |     3 +-
 .../src/PivotTableChart.tsx                        |   151 +-
 .../src/plugin/controlPanel.tsx                    |    12 +-
 .../src/react-pivottable/PivotTable.jsx}           |    17 +-
 .../src/react-pivottable/Styles.js                 |   139 +
 .../src/react-pivottable/TableRenderers.jsx        |   890 +
 .../src/react-pivottable/index.js}                 |     4 +-
 .../src/react-pivottable/utilities.js              |   853 +
 .../plugin-chart-table/src/controlPanel.tsx        |     2 +-
 .../src/views/CRUD/alert/AlertReportModal.tsx      |     8 +-
 superset/dashboards/commands/update.py             |     6 +-
 .../configs/charts/New_Members_per_Month.yaml      |     2 +-
 superset/reports/schemas.py                        |     2 +-
 tests/integration_tests/access_tests.py            |     3 +
 tests/integration_tests/alerts_tests.py            |     3 +
 tests/integration_tests/base_api_tests.py          |     1 +
 tests/integration_tests/cache_tests.py             |     1 +
 tests/integration_tests/celery_tests.py            |     1 +
 tests/integration_tests/charts/api_tests.py        |     4 +
 tests/integration_tests/charts/commands_tests.py   |     1 +
 tests/integration_tests/charts/data/api_tests.py   |     1 +
 tests/integration_tests/charts/schema_tests.py     |     1 +
 tests/integration_tests/cli_tests.py               |     1 +
 tests/integration_tests/core_tests.py              |     3 +
 tests/integration_tests/dashboard_tests.py         |     4 +
 tests/integration_tests/dashboard_utils.py         |    35 +-
 tests/integration_tests/dashboards/api_tests.py    |     2 +
 .../integration_tests/dashboards/commands_tests.py |     1 +
 tests/integration_tests/dashboards/dao_tests.py    |     1 +
 .../dashboards/filter_state/api_tests.py           |     1 +
 .../dashboards/security/security_dataset_tests.py  |     1 +
 .../dashboards/security/security_rbac_tests.py     |     1 +
 tests/integration_tests/databases/api_tests.py     |     4 +
 .../integration_tests/databases/commands_tests.py  |     2 +
 tests/integration_tests/datasets/api_tests.py      |     2 +
 tests/integration_tests/datasets/commands_tests.py |     2 +
 tests/integration_tests/datasource_tests.py        |     1 +
 .../db_engine_specs/base_engine_spec_tests.py      |    10 +-
 .../db_engine_specs/bigquery_tests.py              |     1 +
 tests/integration_tests/fixtures/__init__.py       |     2 +-
 .../fixtures/birth_names_dashboard.py              |    91 +-
 .../integration_tests/fixtures/energy_dashboard.py |    54 +-
 .../fixtures/unicode_dashboard.py                  |    52 +-
 .../fixtures/world_bank_dashboard.py               |    64 +-
 tests/integration_tests/import_export_tests.py     |     3 +
 tests/integration_tests/model_tests.py             |     6 +-
 tests/integration_tests/query_context_tests.py     |     1 +
 tests/integration_tests/reports/api_tests.py       |     1 +
 tests/integration_tests/reports/commands_tests.py  |    18 +-
 tests/integration_tests/schedules_test.py          |     1 +
 tests/integration_tests/security_tests.py          |     4 +
 tests/integration_tests/sqla_models_tests.py       |     1 +
 tests/integration_tests/sqllab_tests.py            |     1 +
 tests/integration_tests/strategy_tests.py          |     8 +-
 .../integration_tests/tasks/async_queries_tests.py |     1 +
 tests/integration_tests/utils_tests.py             |     2 +
 tox.ini                                            |     2 +-
 63 files changed, 35922 insertions(+), 766 deletions(-)
 copy superset-frontend/{src/SqlLab/components/TabStatusIcon/index.tsx => plugins/plugin-chart-pivot-table/src/react-pivottable/PivotTable.jsx} (72%)
 create mode 100644 superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/Styles.js
 create mode 100644 superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx
 copy superset-frontend/{packages/superset-ui-core/src/types/index.ts => plugins/plugin-chart-pivot-table/src/react-pivottable/index.js} (90%)
 create mode 100644 superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js