This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/superset-embedded-sdk/terser-5.14.2
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 5858d0f136 chore(deps): bump terser from 5.10.0 to 5.14.2 in
/superset-embedded-sdk
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 8d0d778d1a chore(mypy): enable warn_unused_ignores (#20884)
add 90460f1333 Unskip Cypress test. (#20915)
add e7acb1a79d chore(explore): update Explore icons and icon colors
(#20612)
add e739ff5076 feat: allow more HTML tags in report description (#20908)
add 5ae0e83b8a fix(sqllab): hide tracking url when fetching (#20905)
add de84186200 chore(deps): bump tox from 3.24.1 to 3.25.1 in
/requirements (#20822)
add adf1f5cccf chore(deps): bump terser from 4.6.3 to 4.8.1 in
/superset-frontend (#20787)
add 6b18a7a699 chore(deps): bump terser from 5.10.0 to 5.14.2 in
/superset-embedded-sdk
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 (5858d0f136)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-embedded-sdk/terser-5.14.2
(6b18a7a699)
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 +-
requirements/integration.txt | 8 +-
setup.cfg | 2 +-
.../cypress/integration/explore/link.test.ts | 2 +-
.../explore/visualizations/line.test.ts | 11 +-
superset-frontend/package-lock.json | 283 +++++++++++----------
.../PivotTableStories.tsx} | 52 +++-
.../plugins/plugin-chart-pivot-table/testData.ts | 126 +++++++++
.../src/react-pivottable/utilities.js | 12 +-
.../src/SqlLab/components/ResultSet/index.tsx | 27 +-
.../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/explore/components/ControlHeader.tsx | 54 +++-
.../explore/components/ControlPanelsContainer.tsx | 96 +++++--
.../src/filters/components/GroupBy/types.ts | 3 +-
.../src/filters/components/TimeColumn/types.ts | 3 +-
.../src/filters/components/TimeGrain/types.ts | 3 +-
superset/connectors/sqla/models.py | 11 +-
superset/dashboards/api.py | 8 +-
superset/dashboards/filters.py | 2 +-
superset/exceptions.py | 8 +
superset/models/helpers.py | 14 +-
superset/models/sql_lab.py | 4 +-
superset/reports/notifications/email.py | 38 ++-
superset/sql_parse.py | 2 +-
superset/sqllab/command.py | 25 +-
superset/utils/core.py | 12 +-
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 +
tests/unit_tests/notifications/email_tests.py | 47 ++++
45 files changed, 1216 insertions(+), 788 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%)
create mode 100644 tests/unit_tests/notifications/email_tests.py