You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by jo...@apache.org on 2022/07/29 05:58:40 UTC

[superset] branch john-bodley-patch-5 updated (1086037fd5 -> 9529337341)

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

johnbodley pushed a change to branch john-bodley-patch-5
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 1086037fd5 Update setup.cfg
     add 99085d583d fix(viz): Header scrolling for Time Table in dashboard (#20874)
     add 234c44626d TableChart: (#20833)
     add 07ce33d142 Reports: (#20753)
     add c77ea1bb6a chore(deps): bump terser from 5.9.0 to 5.14.2 in /docs (#20786)
     add ab415fddd9 chore: adding Bazaar Technologies to Superset Users (#20669)
     add 8b354b4b69 fix: Published Dashboard without charts don't show up for non admin users (#20638)
     add 383313b105 fix(sql lab): Syntax errors should return with 422 status (#20491)
     add 718bc3062e fix: invalid metric should raise an exception (#20882)
     add fe91974163 chore: Remove unecessary code from async and sync select components (#20690)
     add d50784dd80 feat(dashboard): Add thumbnails to dashboard edit draggable chart list (#20528)
     add 3f124d9d67 fix(plugin-chart-pivot-table): Invalid Formats Date Fields (#20909)
     add 50d2e5a15d fix: Address performance regression introduced in #11785 (#20893)
     add 9529337341 Update setup.cfg

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   (1086037fd5)
            \
             N -- N -- N   refs/heads/john-bodley-patch-5 (9529337341)

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:
 .pylintrc                                          |   4 +-
 RESOURCES/INTHEWILD.md                             |   1 +
 docs/yarn.lock                                     |  89 ++++---
 .../PivotTableStories.tsx}                         |  52 +++-
 .../plugins/plugin-chart-pivot-table/testData.ts   | 126 ++++++++++
 .../src/react-pivottable/utilities.js              |  12 +-
 .../plugins/plugin-chart-table/src/TableChart.tsx  |  58 ++++-
 .../src/components/DatabaseSelector/index.tsx      |   1 -
 .../src/components/ListView/Filters/Select.tsx     |  42 +++-
 .../src/components/Select/AsyncSelect.test.tsx     | 150 +++++++----
 .../src/components/Select/AsyncSelect.tsx          |  73 +++---
 .../src/components/Select/Select.stories.tsx       |  28 ++-
 .../src/components/Select/Select.test.tsx          |  27 +-
 superset-frontend/src/components/Select/Select.tsx | 280 +--------------------
 .../src/components/TableSelector/index.tsx         |   1 -
 .../src/dashboard/actions/sliceEntities.js         |   2 +
 .../src/dashboard/components/AddSliceCard.jsx      | 148 -----------
 .../components/AddSliceCard/AddSliceCard.test.tsx  |  62 +++++
 .../components/AddSliceCard/AddSliceCard.tsx       | 279 ++++++++++++++++++++
 .../dashboard/components/AddSliceCard}/index.ts    |   4 +-
 .../src/dashboard/components/SliceAdder.jsx        |   3 +-
 .../src/filters/components/GroupBy/types.ts        |   3 +-
 .../src/filters/components/TimeColumn/types.ts     |   3 +-
 .../src/filters/components/TimeGrain/types.ts      |   3 +-
 superset-frontend/src/reports/actions/reports.js   |   5 +-
 .../src/visualizations/TimeTable/TimeTable.jsx     |   3 +-
 superset/connectors/sqla/models.py                 |  11 +-
 superset/dashboards/api.py                         |   8 +-
 superset/dashboards/filters.py                     |   2 +-
 superset/exceptions.py                             |   8 +
 superset/models/sql_lab.py                         |   4 +-
 superset/sql_parse.py                              |   2 +-
 superset/sqllab/command.py                         |  25 +-
 superset/utils/core.py                             |  10 +-
 superset/views/core.py                             |  15 +-
 .../fixtures/deck_geojson_form_data.json           |   2 +-
 .../fixtures/deck_path_form_data.json              |   2 +-
 tests/integration_tests/viz_tests.py               |  16 +-
 tests/unit_tests/core_tests.py                     |  12 +
 39 files changed, 930 insertions(+), 646 deletions(-)
 copy superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/{legacy-plugin-chart-chord/Stories.tsx => plugin-chart-pivot-table/PivotTableStories.tsx} (52%)
 create mode 100644 superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-pivot-table/testData.ts
 delete mode 100644 superset-frontend/src/dashboard/components/AddSliceCard.jsx
 create mode 100644 superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.test.tsx
 create mode 100644 superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx
 copy superset-frontend/{packages/superset-ui-core/src/dynamic-plugins => src/dashboard/components/AddSliceCard}/index.ts (91%)