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/03/05 19:13:55 UTC

[superset] branch hugh/use-event-db updated (f9d5f3f -> 538d9dd)

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

hugh pushed a change to branch hugh/use-event-db
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from f9d5f3f  add logs to test_connection
     add dc1eb30  refactor: convert controlUtils to TypeScript (1 of 2) (#13401)
     add cfc83c2  chore: Moves TableSelector tests to component's folder (#13411)
     add ca27b00  chore: disable drag metrics and columns in datasourcePanel (#13450)
     add 7f0fbb5  refactor: add set data mask to build query (#13417)
     add 6026e7d  chore: Improve japannese translation (#13376)
     add 09e5ea1  docs: Fix typo in footer (#13455)
     add 95809e5  Adding v0 import/export fields to dashboard metadata schema (#13425)
     add 483405f  chore: Migrating dashboard/components/menu from jsx to tsx (#13361)
     add 0318b6d  feat: Add error pages (#13144)
     add c3c7376  fix: url shortener invalid input (#13461)
     add 58fcd28  Merge branch 'master' of https://github.com/apache/incubator-superset into hugh/event-logger-refactor
     add 47fe377  fix pylint
     add 2fda45e  Merge branch 'hugh/event-logger-refactor' of https://github.com/apache/incubator-superset into hugh/use-event-db
     add d2e03ab  fix: Remove view in sql lab from druid datasources (#13469)
     add 35763ef  Merge branch 'master' of https://github.com/apache/incubator-superset into hugh/event-logger-refactor
     add 31abdc8  pylint
     add 12e7731  Merge branch 'hugh/event-logger-refactor' of https://github.com/apache/incubator-superset into hugh/use-event-db
     add 528ea9c  fix: SHOW is not DML (#13464)
     add 9fc03f0  fix: API to allow importing old exports (JSON/YAML) (#13444)
     add e0871f0  Merge branch 'master' of https://github.com/apache/incubator-superset into hugh/event-logger-refactor
     add bcf85f8  fix celery test
     add f42efe2  fix celery test
     add 82612ea  fix all cta test
     add 9d7fc0e  add exception block for no user
     add bfa5477  fixed test
     add 68f25d0  reup celery test
     add f483764  pylint
     add 538d9dd  Merge branch 'hugh/event-logger-refactor' of https://github.com/apache/incubator-superset into hugh/use-event-db

No new revisions were added by this update.

Summary of changes:
 docs/src/components/footer.tsx                     |    2 +-
 superset-frontend/images/error404.png              |  Bin 0 -> 66799 bytes
 superset-frontend/images/error500.png              |  Bin 0 -> 78026 bytes
 superset-frontend/package-lock.json                |  323 ++---
 superset-frontend/package.json                     |    1 +
 .../explore/components/DatasourceControl_spec.jsx  |   22 +
 superset-frontend/src/chart/chartAction.js         |    9 +
 .../TableSelector/TableSelector.test.jsx}          |    2 +-
 .../{TableSelector.tsx => TableSelector/index.tsx} |    6 +-
 ...yleDropdown.jsx => BackgroundStyleDropdown.tsx} |   24 +-
 .../menu/{HoverMenu.jsx => HoverMenu.tsx}          |   28 +-
 ...wnModeDropdown.jsx => MarkdownModeDropdown.tsx} |   17 +-
 .../{PopoverDropdown.jsx => PopoverDropdown.tsx}   |   76 +-
 .../{WithPopoverMenu.jsx => WithPopoverMenu.tsx}   |   81 +-
 .../src/explore/components/Control.tsx             |    2 +-
 .../explore/components/ControlPanelsContainer.tsx  |   12 +-
 .../{ => DatasourcePanel}/DatasourcePanel.tsx      |   39 +-
 .../DateFilterControl => DatasourcePanel}/index.ts |    2 +-
 .../components/controls/DatasourceControl.jsx      |    9 +-
 .../controlPanels/{sections.jsx => sections.tsx}   |   13 +-
 .../src/explore/controlUtils/getControlConfig.ts   |   68 +
 .../explore/controlUtils/getSectionsToRender.ts    |   95 ++
 .../src/explore/controlUtils/index.js              |  107 +-
 superset-frontend/src/explore/exploreUtils.js      |   20 +-
 superset-frontend/src/staticPages/404.html         |   93 ++
 superset-frontend/src/staticPages/500.html         |   92 ++
 superset-frontend/webpack.config.js                |   28 +
 superset/charts/api.py                             |    3 +
 superset/dashboards/api.py                         |   13 +-
 superset/dashboards/commands/importers/v0.py       |    5 +-
 superset/dashboards/schemas.py                     |    3 +
 superset/databases/api.py                          |    3 +
 superset/datasets/api.py                           |   13 +-
 superset/db_engine_specs/base.py                   |    6 +-
 superset/translations/ja/LC_MESSAGES/messages.json | 1421 +++++++++++---------
 superset/translations/ja/LC_MESSAGES/messages.po   | 1232 ++++++++---------
 superset/utils/log.py                              |   15 +-
 superset/views/redirects.py                        |   22 +-
 tests/core_tests.py                                |   22 +
 tests/dashboards/api_tests.py                      |   31 +
 tests/datasets/api_tests.py                        |   26 +
 tests/db_engine_specs/base_engine_spec_tests.py    |    4 +-
 42 files changed, 2279 insertions(+), 1711 deletions(-)
 create mode 100644 superset-frontend/images/error404.png
 create mode 100644 superset-frontend/images/error500.png
 rename superset-frontend/{spec/javascripts/components/TableSelector_spec.jsx => src/components/TableSelector/TableSelector.test.jsx} (99%)
 rename superset-frontend/src/components/{TableSelector.tsx => TableSelector/index.tsx} (98%)
 rename superset-frontend/src/dashboard/components/menu/{BackgroundStyleDropdown.jsx => BackgroundStyleDropdown.tsx} (81%)
 rename superset-frontend/src/dashboard/components/menu/{HoverMenu.jsx => HoverMenu.tsx} (74%)
 rename superset-frontend/src/dashboard/components/menu/{MarkdownModeDropdown.jsx => MarkdownModeDropdown.tsx} (82%)
 rename superset-frontend/src/dashboard/components/menu/{PopoverDropdown.jsx => PopoverDropdown.tsx} (69%)
 rename superset-frontend/src/dashboard/components/menu/{WithPopoverMenu.jsx => WithPopoverMenu.tsx} (67%)
 rename superset-frontend/src/explore/components/{ => DatasourcePanel}/DatasourcePanel.tsx (86%)
 copy superset-frontend/src/explore/components/{controls/DateFilterControl => DatasourcePanel}/index.ts (94%)
 rename superset-frontend/src/explore/controlPanels/{sections.jsx => sections.tsx} (94%)
 create mode 100644 superset-frontend/src/explore/controlUtils/getControlConfig.ts
 create mode 100644 superset-frontend/src/explore/controlUtils/getSectionsToRender.ts
 create mode 100644 superset-frontend/src/staticPages/404.html
 create mode 100644 superset-frontend/src/staticPages/500.html