You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ta...@apache.org on 2021/02/23 16:46:59 UTC

[superset] branch master updated (99a0c8a -> 6297ad7)

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

tai pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 99a0c8a  refactor: Move raise_for_dashboard_access to security manager (#13235)
     add 6297ad7  test: Switching FlashProvider to function component & creating tests (#13220)

No new revisions were added by this update.

Summary of changes:
 superset-frontend/package-lock.json                | 147 ++++++++++++++++++++-
 superset-frontend/package.json                     |   1 +
 .../hooks/useComponentDidMount/index.ts}           |   2 +-
 .../useComponentDidMount.test.ts}                  |  13 +-
 .../useComponentDidMount/useComponentDidMount.ts}  |  14 +-
 .../FlashProvider/FlashProvider.test.tsx           |  66 +++++++++
 .../{FlashProvider.tsx => FlashProvider/index.tsx} |  36 +++--
 .../explore/components/ExploreViewContainer.jsx    |   8 +-
 superset-frontend/src/views/App.tsx                |  16 +--
 .../getChartIdsFromLayout.js => views/store.ts}    |  30 +++--
 10 files changed, 260 insertions(+), 73 deletions(-)
 copy superset-frontend/src/{types/files.d.ts => common/hooks/useComponentDidMount/index.ts} (95%)
 copy superset-frontend/{spec/helpers/setup.ts => src/common/hooks/useComponentDidMount/useComponentDidMount.test.ts} (68%)
 copy superset-frontend/src/{dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/types.ts => common/hooks/useComponentDidMount/useComponentDidMount.ts} (80%)
 create mode 100644 superset-frontend/src/components/FlashProvider/FlashProvider.test.tsx
 rename superset-frontend/src/components/{FlashProvider.tsx => FlashProvider/index.tsx} (64%)
 copy superset-frontend/src/{dashboard/util/getChartIdsFromLayout.js => views/store.ts} (59%)