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/moment-2.29.4
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 02909dacdc chore(deps): bump moment from 2.29.2 to 2.29.4 in
/superset-frontend
add 1109fe5fb7 chore: Split Select component into Async and Sync
components (#20466)
add e33164024a Database Modal: (#20637)
add 4e6e87f62e feat: Area viz migration (#20359)
add 9856d88c03 feat(handlebars plugin): adding handlebars helpers for
common math operations (#20648)
add 0907b374fd chore(deps): bump moment from 2.29.2 to 2.29.4 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 (02909dacdc)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/moment-2.29.4 (0907b374fd)
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/package-lock.json | 49 ++-
.../plugins/plugin-chart-handlebars/package.json | 5 +-
.../src/components/Handlebars/HandlebarsViewer.tsx | 3 +
.../plugin-chart-handlebars/types/external.d.ts | 2 +
.../src/addSlice/AddSliceContainer.test.tsx | 4 +-
.../src/addSlice/AddSliceContainer.tsx | 4 +-
.../src/components/DatabaseSelector/index.tsx | 4 +-
.../src/components/Datasource/DatasourceEditor.jsx | 4 +-
.../{Select.test.tsx => AsyncSelect.test.tsx} | 327 +++++-------------
.../Select/{Select.tsx => AsyncSelect.tsx} | 12 +-
.../src/components/Select/Select.stories.tsx | 24 +-
.../src/components/Select/Select.test.tsx | 367 +--------------------
superset-frontend/src/components/index.ts | 1 +
.../dashboard/components/PropertiesModal/index.tsx | 8 +-
.../FiltersConfigForm/DatasetSelect.tsx | 4 +-
.../explore/components/PropertiesModal/index.tsx | 4 +-
.../src/views/CRUD/alert/AlertReportModal.test.jsx | 14 +-
.../src/views/CRUD/alert/AlertReportModal.tsx | 12 +-
.../CRUD/data/database/DatabaseModal/styles.ts | 2 +-
...cf3d64daf4_add_user_id_dttm_idx_to_log_model.py | 4 +-
...13-00_c747c78868b6_migrating_legacy_treemap.py} | 4 +-
...07_14-00_06e1e70058c7_migrating_legacy_area.py} | 23 +-
superset/utils/migrate_viz.py | 38 ++-
.../utils/viz_migration/area_migration_test.py | 99 ++++++
24 files changed, 354 insertions(+), 664 deletions(-)
copy superset-frontend/src/components/Select/{Select.test.tsx =>
AsyncSelect.test.tsx} (65%)
copy superset-frontend/src/components/Select/{Select.tsx => AsyncSelect.tsx}
(98%)
copy
superset/migrations/versions/{2022-06-30_22-04_c747c78868b6_migrating_legacy_treemap.py
=> 2022-07-07_13-00_c747c78868b6_migrating_legacy_treemap.py} (98%)
rename
superset/migrations/versions/{2022-06-30_22-04_c747c78868b6_migrating_legacy_treemap.py
=> 2022-07-07_14-00_06e1e70058c7_migrating_legacy_area.py} (84%)
create mode 100644 tests/unit_tests/utils/viz_migration/area_migration_test.py