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/ajv-and-react-jsonschema-form-6.12.6
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 2a484142aa chore(deps): bump ajv and react-jsonschema-form in
/superset-frontend
add 9832bbd469 build: Mutli-stage build and slim image for websocket
container (#21954)
add c870fbe9e2 feat: Add 3 new extension points for inserting custom icons
(#22027)
add 358a4ecedd fix: deprecate approve and request_access endpoint (#22022)
add e33a08693b fix: datasource save, improve data validation (#22038)
add aa48cae6fb chore: Adds RTL tests to DropdownContainer (#22041)
add 7a52b22237 test: Fix act errors in DndMetricSelect test (#22048)
add cd1b379bdf fix: accept only JSON credentials (#22040)
add ef6b9a97d5 feat(dashboard): confirm overwrite to prevent unintended
changes (#21819)
add 6500d661d2 chore(deps): bump ajv and react-jsonschema-form 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 (2a484142aa)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/ajv-and-react-jsonschema-form-6.12.6
(6500d661d2)
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:
.github/workflows/docker_build_push.sh | 13 ++
RESOURCES/FEATURE_FLAGS.md | 1 +
UPDATING.md | 1 +
superset-frontend/package-lock.json | 122 +++++++++++-
superset-frontend/package.json | 2 +
.../src/ui-overrides/ExtensionsRegistry.ts | 20 ++
.../superset-ui-core/src/utils/featureFlags.ts | 1 +
.../spec/fixtures/mockDashboardState.js | 86 +++++++++
.../DropdownContainer.stories.tsx | 6 +-
.../DropdownContainer/DropdownContainer.test.tsx | 143 ++++++++++++++
.../DropdownContainer/Overview.stories.mdx | 17 ++
.../src/components/DropdownContainer/index.tsx | 54 +++---
.../ReportModal/HeaderReportDropdown/index.tsx | 28 ++-
superset-frontend/src/components/Select/styles.tsx | 3 +
.../src/dashboard/actions/dashboardState.js | 114 ++++++++---
.../src/dashboard/actions/dashboardState.test.js | 80 +++++++-
.../src/dashboard/components/Header/index.jsx | 3 +
.../OverwriteConfirm/OverwriteConfirm.test.tsx} | 42 +++--
.../OverwriteConfirmModal.test.tsx | 90 +++++++++
.../OverwriteConfirm/OverwriteConfirmModal.tsx | 209 +++++++++++++++++++++
.../components/OverwriteConfirm/index.tsx} | 38 ++--
superset-frontend/src/dashboard/constants.ts | 1 +
.../src/dashboard/reducers/dashboardState.js | 7 +
superset-frontend/src/dashboard/types.ts | 11 ++
superset-frontend/src/dashboard/util/constants.ts | 1 +
...oardEmpty.test.ts => getOverwriteItems.test.ts} | 51 +++--
.../src/dashboard/util/getOverwriteItems.ts | 44 +++++
.../DndMetricSelect.test.tsx | 7 +
superset-frontend/src/logger/LogUtils.ts | 3 +
.../src/views/CRUD/alert/AlertList.tsx | 33 +++-
.../DatabaseConnectionForm/EncryptedField.tsx | 1 +
.../src/views/components/RightMenu.tsx | 22 ++-
superset-websocket/Dockerfile | 25 ++-
superset-websocket/package-lock.json | 2 +-
superset/config.py | 3 +
superset/utils/urls.py | 19 +-
superset/views/core.py | 16 +-
superset/views/datasource/views.py | 17 +-
tests/integration_tests/access_tests.py | 6 +-
tests/integration_tests/datasource_tests.py | 38 ++++
tests/unit_tests/utils/urls_tests.py | 26 +++
41 files changed, 1274 insertions(+), 132 deletions(-)
create mode 100644
superset-frontend/src/components/DropdownContainer/DropdownContainer.test.tsx
create mode 100644
superset-frontend/src/components/DropdownContainer/Overview.stories.mdx
copy superset-frontend/src/{SqlLab/components/App/App.test.jsx =>
dashboard/components/OverwriteConfirm/OverwriteConfirm.test.tsx} (51%)
create mode 100644
superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.test.tsx
create mode 100644
superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx
copy superset-frontend/src/{components/Pagination/Next.test.tsx =>
dashboard/components/OverwriteConfirm/index.tsx} (60%)
copy superset-frontend/src/dashboard/util/{isDashboardEmpty.test.ts =>
getOverwriteItems.test.ts} (50%)
create mode 100644 superset-frontend/src/dashboard/util/getOverwriteItems.ts