You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yj...@apache.org on 2020/11/30 23:04:43 UTC

[incubator-superset] branch perf-recent-activity updated (d73cf14 -> 7746bd0)

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

yjc pushed a change to branch perf-recent-activity
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


 discard d73cf14  fix pylint
 discard 4d91953  perf: improve loading speed of recent activities
     add 462b39d  fix: update chart doesn't remove all connections to dashboards (#11830)
     add b1a963b  fix: security converge downgrade procedure (#11852)
     add a4f4425  Fix chart select borders in BuilderComponentPane (#11766)
     add 0e9898c  feat(welcome): add SQL snippets to saved queries card (#11678)
     add a0b8135  fix(datasets): renaming openAPI columns (#11858)
     add 3cd94d6  feat:  Create api abstraction layer for dataset network calls (#11855)
     add 0117247  feat: list view filters for Query History  (#11702)
     add 84e0606  chore: move fixtures and helpers to root (#11812)
     add 49c490d  perf: improve loading speed of recent activities
     add 7746bd0  fix pylint

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   (d73cf14)
            \
             N -- N -- N   refs/heads/perf-recent-activity (7746bd0)

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:
 superset-frontend/images/empty-query.svg           |  25 ++
 superset-frontend/package-lock.json                | 422 +++++++++++----------
 superset-frontend/package.json                     |   4 +-
 .../dashboard => }/fixtures/mockChartQueries.js    |   2 +-
 .../dashboard => }/fixtures/mockDashboardData.js   |   0
 .../fixtures/mockDashboardFilters.js               |   0
 .../dashboard => }/fixtures/mockDashboardInfo.js   |   0
 .../dashboard => }/fixtures/mockDashboardLayout.js |   0
 .../dashboard => }/fixtures/mockDashboardState.js  |   0
 .../dashboard => }/fixtures/mockSliceEntities.js   |   2 +-
 .../dashboard => }/fixtures/mockState.js           |   4 +-
 .../dashboard => }/fixtures/mockStore.js           |   0
 .../dashboard => }/helpers/WithDragDropContext.jsx |   0
 superset-frontend/spec/helpers/shim.ts             |  13 +
 .../spec/javascripts/CRUD/CollectionTable_spec.jsx |   2 +-
 .../components/ListView/ListView_spec.jsx          |  64 ++--
 .../dashboard/actions/dashboardState_spec.js       |   6 +-
 .../dashboard/components/DashboardBuilder_spec.jsx |   6 +-
 .../dashboard/components/Dashboard_spec.jsx        |  12 +-
 .../dashboard/components/FiltersBadge_spec.tsx     |   8 +-
 .../dashboard/components/PropertiesModal_spec.jsx  |   2 +-
 .../dashboard/components/SliceAdder_spec.jsx       |   2 +-
 .../components/gridComponents/ChartHolder_spec.jsx |   8 +-
 .../components/gridComponents/Chart_spec.jsx       |   6 +-
 .../components/gridComponents/Column_spec.jsx      |   6 +-
 .../components/gridComponents/Divider_spec.jsx     |   2 +-
 .../components/gridComponents/Header_spec.jsx      |   4 +-
 .../components/gridComponents/Markdown_spec.jsx    |   6 +-
 .../components/gridComponents/Row_spec.jsx         |   6 +-
 .../components/gridComponents/Tab_spec.jsx         |   6 +-
 .../components/gridComponents/Tabs_spec.jsx        |   6 +-
 .../new/DraggableNewComponent_spec.jsx             |   2 +-
 .../dashboard/reducers/dashboardFilters_spec.js    |   6 +-
 .../util/getLeafComponentIdFromPath_spec.js        |   4 +-
 .../util/updateComponentParentsList_spec.js        |   2 +-
 .../datasource/ChangeDatasourceModal_spec.jsx      |   2 +-
 .../datasource/DatasourceEditor_spec.jsx           |   2 +-
 .../datasource/DatasourceModal_spec.jsx            |   2 +-
 .../components/FilterBoxItemControl_spec.jsx       |   2 +-
 superset-frontend/src/api/dataset.ts               |  61 +++
 .../ListView/Filters/Base.ts}                      |  23 +-
 .../src/components/ListView/Filters/DateRange.tsx  |  75 ++++
 .../src/components/ListView/Filters/Search.tsx     |  61 +++
 .../ListView/{Filters.tsx => Filters/Select.tsx}   | 140 +------
 .../src/components/ListView/Filters/index.tsx      | 108 ++++++
 superset-frontend/src/components/ListView/types.ts |  69 +++-
 superset-frontend/src/components/ListView/utils.ts |  62 ++-
 .../src/components/ListViewCard/index.tsx          |   4 +-
 .../dashboard/components/BuilderComponentPane.jsx  |  12 +-
 .../src/views/CRUD/annotation/AnnotationModal.tsx  |   1 -
 .../src/views/CRUD/data/query/QueryList.test.tsx   |  29 +-
 .../src/views/CRUD/data/query/QueryList.tsx        | 124 ++++--
 superset-frontend/src/views/CRUD/types.ts          |  19 +
 superset-frontend/src/views/CRUD/utils.tsx         |  17 +-
 .../src/views/CRUD/welcome/SavedQueries.tsx        | 120 ++++--
 superset/charts/commands/update.py                 |  13 +-
 superset/datasets/api.py                           |   2 +-
 superset/datasets/commands/update.py               |   1 -
 superset/migrations/shared/security_converge.py    |   4 +-
 superset/queries/api.py                            |  10 +-
 tests/charts/api_tests.py                          |  61 +++
 61 files changed, 1117 insertions(+), 545 deletions(-)
 create mode 100644 superset-frontend/images/empty-query.svg
 rename superset-frontend/spec/{javascripts/dashboard => }/fixtures/mockChartQueries.js (97%)
 rename superset-frontend/spec/{javascripts/dashboard => }/fixtures/mockDashboardData.js (100%)
 rename superset-frontend/spec/{javascripts/dashboard => }/fixtures/mockDashboardFilters.js (100%)
 rename superset-frontend/spec/{javascripts/dashboard => }/fixtures/mockDashboardInfo.js (100%)
 rename superset-frontend/spec/{javascripts/dashboard => }/fixtures/mockDashboardLayout.js (100%)
 rename superset-frontend/spec/{javascripts/dashboard => }/fixtures/mockDashboardState.js (100%)
 rename superset-frontend/spec/{javascripts/dashboard => }/fixtures/mockSliceEntities.js (98%)
 rename superset-frontend/spec/{javascripts/dashboard => }/fixtures/mockState.js (90%)
 rename superset-frontend/spec/{javascripts/dashboard => }/fixtures/mockStore.js (100%)
 rename superset-frontend/spec/{javascripts/dashboard => }/helpers/WithDragDropContext.jsx (100%)
 create mode 100644 superset-frontend/src/api/dataset.ts
 copy superset-frontend/src/{SqlLab/components/TabStatusIcon.jsx => components/ListView/Filters/Base.ts} (66%)
 create mode 100644 superset-frontend/src/components/ListView/Filters/DateRange.tsx
 create mode 100644 superset-frontend/src/components/ListView/Filters/Search.tsx
 rename superset-frontend/src/components/ListView/{Filters.tsx => Filters/Select.tsx} (56%)
 create mode 100644 superset-frontend/src/components/ListView/Filters/index.tsx