This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/superset-frontend/d3-scale-4.0.0
in repository https://gitbox.apache.org/repos/asf/superset.git.
discard e7bccde build(deps): bump d3-scale from 2.1.2 to 4.0.0 in
/superset-frontend
add d408ff8 fix(explore): show multi queries results in View query modal
and data pane (#15840)
add f9b7250 fix: revert DEFAULT_SQLLAB_LIMIT to default (#15869)
add 73b436a fix: Unable to create alerts/report after introduced
creation_method (#15760)
add 4ba1709 fix: Ensure SupersetError.extra is always a dict (#15848)
add 65728ea fix(15482): Propagate SupersetSecurityException error (#15874)
add 7330aef feat: deprecate plugins by their metadata (#15882)
add 9c81599 chore: Adds the tests that need to be coded for the Select
component (#15885)
add 6d3e19d fix(15403): Re-enable canceling query for Hive and Presto
(#15878)
add b81f120 add timezone selector component (#15880)
add 873daf3 chore: bumping superset-ui 0.17.72 (#15895)
add a0f36c0 build(deps): bump d3-scale from 2.1.2 to 4.0.0 in
/superset-frontend
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 (e7bccde)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/d3-scale-4.0.0 (a0f36c0)
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/.storybook/main.js | 2 +-
superset-frontend/babel.config.js | 1 +
superset-frontend/package-lock.json | 51572 ++++++++++++++++++-
superset-frontend/package.json | 55 +-
.../ErrorMessage/DatabaseErrorMessage.tsx | 11 +-
.../src/components/Select/Select.test.tsx | 82 +
superset-frontend/src/components/Select/Select.tsx | 2 +-
.../TimezoneSelector.stories.tsx} | 39 +-
.../TimezoneSelector/TimezoneSelector.test.tsx} | 32 +-
.../src/components/TimezoneSelector/index.tsx | 132 +
.../DataTablesPane/DataTablesPane.test.tsx | 6 +-
.../explore/components/DataTablesPane/index.tsx | 24 +-
.../explore/components/controls/ViewQueryModal.tsx | 59 +-
.../controls/VizTypeControl/VizTypeGallery.tsx | 5 +-
.../src/views/CRUD/alert/AlertReportModal.tsx | 1 +
superset/config.py | 2 +-
superset/db_engine_specs/base.py | 15 +
superset/db_engine_specs/hive.py | 12 +
superset/db_engine_specs/presto.py | 12 +
superset/exceptions.py | 1 -
superset/sql_lab.py | 17 +-
superset/views/base.py | 2 -
superset/views/core.py | 18 +-
.../integration_tests/databases/commands_tests.py | 2 +-
tests/integration_tests/sqllab_tests.py | 10 +
25 files changed, 51085 insertions(+), 1029 deletions(-)
create mode 100644 superset-frontend/src/components/Select/Select.test.tsx
copy superset-frontend/src/components/{Radio/Radio.stories.tsx =>
TimezoneSelector/TimezoneSelector.stories.tsx} (61%)
copy
superset-frontend/{spec/javascripts/explore/components/ControlRow_spec.tsx =>
src/components/TimezoneSelector/TimezoneSelector.test.tsx} (52%)
create mode 100644 superset-frontend/src/components/TimezoneSelector/index.tsx