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 55bf638 build(deps): bump d3-scale from 2.1.2 to 4.0.0 in
/superset-frontend
add 834bb94 fix(datasets): consistent dataset list (#15014)
add 65714cc fix(dnd): add isExtra prop to Option (#15080)
add 8aaa603 fix(native-filters): remove hard-coded default time range
(#15015)
add 1468026 chore: Improves the native filters UI/UX - iteration 7
(#15017)
add 6c9f15a fix(native-filters): show error if default value query failed
(#15005)
add c0eff8f fix(native-filters): empty label indicator (#15084)
add f8b270d fix(explore): Explore page boolean filter is broken for
Presto DB (#14952)
add cc2b4fe fix: show custom errors in SQL Lab (#14959)
add 7d5bc24 chore: rename 'tables' to 'datasets' in error message (#15078)
add 31da394 Stop using deprecated task API (#15062)
add 3456dd5 fix(native-filters): fix Select filter crashing when changing
filter type (#15090)
add 5e825cf fix(native-filters): handle descending sorting correctly
(#15112)
add 51f0d4f feat(native-filters): Hide filters which don't affect any
visible charts (#15063)
add 535ca73 docs: add Ontruck to users list (#14928)
add ff2d588 feat(native-filters): Defer loading filters data until filter
is visible (#15120)
add 53df152 feat: show spinner on exports (#15107)
add 8e6a5a6 chore: Homepage cleanup (#14823)
add 856a2bd fix(explore): fix y-axis lower bound 0 value (#15091)
add 57035c1 fix: improve dashboard fullscreen text (#15139)
add 3866044 fix(native-filters): Don't send unnecessary PUT request on
dashboard render (#15146)
add 82ad053 fix: Filter overlay in dashboard when scrolling (#15140)
add 143a1b0 fix: Test connection before starting on create transaction
(#15100)
add 448c689 Fix typo in contributing.md (#15152)
add 6ed0a3a chore: update documentation for frontend feature flags
(#15093)
add 045fa1b feat(dashboard): Let users download full CSV of a table
(#15046)
add 8235123 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 (55bf638)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/d3-scale-4.0.0 (8235123)
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:
CONTRIBUTING.md | 19 +-
RESOURCES/INTHEWILD.md | 1 +
superset-frontend/package-lock.json | 604 ++++++++++-----------
superset-frontend/package.json | 56 +-
.../dashboard/components/DashboardBuilder_spec.jsx | 8 +-
.../components/gridComponents/ChartHolder_spec.jsx | 2 +
.../components/gridComponents/Chart_spec.jsx | 32 +-
.../components/gridComponents/Column_spec.jsx | 6 +-
.../components/gridComponents/Row_spec.jsx | 6 +-
.../components/gridComponents/Tab_spec.jsx | 10 +-
.../components/gridComponents/Tabs_spec.jsx | 10 +-
.../datasource/ChangeDatasourceModal_spec.jsx | 2 +-
.../explore/components/BoundsControl_spec.jsx | 9 +
superset-frontend/src/common/components/index.tsx | 4 +-
.../src/components/Select/NativeSelect.tsx | 5 +
.../src/components/TableView/TableView.tsx | 47 +-
.../src/components/TableView/types.ts | 12 +-
.../src/dashboard/actions/dashboardState.js | 6 +-
superset-frontend/src/dashboard/actions/hydrate.js | 2 +-
.../src/dashboard/actions/nativeFilters.ts | 25 +
.../DashboardBuilder/DashboardContainer.tsx | 32 +-
.../components/FiltersBadge/DetailsPanel/index.tsx | 1 +
.../dashboard/components/FiltersBadge/selectors.ts | 4 +-
.../HeaderActionsDropdown.test.tsx | 2 +-
.../Header/HeaderActionsDropdown/index.jsx | 4 +-
.../components/SliceHeader/SliceHeader.test.tsx | 8 +-
.../src/dashboard/components/SliceHeader/index.tsx | 28 +-
.../SliceHeaderControls.test.tsx | 50 +-
.../SliceHeaderControls/{index.jsx => index.tsx} | 148 ++---
.../dashboard/components/gridComponents/Chart.jsx | 14 +-
.../components/gridComponents/ChartHolder.test.tsx | 28 +-
.../dashboard/components/gridComponents/Tabs.jsx | 35 +-
.../CascadeFilters/CascadePopover/index.tsx | 4 +
.../nativeFilters/FilterBar/FilterBar.test.tsx | 39 +-
.../FilterBar/FilterControls/FilterControl.tsx | 2 +
.../FilterBar/FilterControls/FilterControls.tsx | 33 +-
.../FilterBar/FilterControls/FilterValue.tsx | 13 +
.../FilterBar/FilterControls/types.ts | 1 +
.../components/nativeFilters/FilterBar/index.tsx | 20 +
.../FiltersConfigForm/ColumnSelect.tsx | 79 ++-
.../FiltersConfigForm/DefaultValue.tsx | 2 +-
.../FiltersConfigForm/FiltersConfigForm.tsx | 129 +++--
.../FiltersConfigModal/FiltersConfigModal.test.tsx | 425 +++++++++------
.../dashboard/components/nativeFilters/state.ts | 74 ++-
.../src/dashboard/containers/Chart.jsx | 2 +
.../dashboard/containers/DashboardComponent.jsx | 9 +-
.../src/dashboard/reducers/dashboardState.js | 6 +-
.../src/dashboard/reducers/nativeFilters.ts | 2 +
superset-frontend/src/dashboard/types.ts | 3 +-
.../src/datasource/ChangeDatasourceModal.tsx | 104 ++--
.../explore/components/controls/BoundsControl.jsx | 4 +-
.../DndColumnSelectControl/DndFilterSelect.tsx | 17 +-
.../DndColumnSelectControl/Option.test.tsx | 11 +
.../controls/DndColumnSelectControl/Option.tsx | 18 +-
.../DndColumnSelectControl/OptionWrapper.tsx | 8 +-
.../controls/DndColumnSelectControl/types.ts | 1 +
.../FilterControl/AdhocFilter/AdhocFilter.test.js | 39 ++
.../controls/FilterControl/AdhocFilter/index.js | 54 +-
.../AdhocFilterControl/AdhocFilterControl.test.jsx | 16 +-
.../FilterControl/AdhocFilterControl/index.jsx | 13 +-
...AdhocFilterEditPopoverSimpleTabContent.test.jsx | 277 ----------
...AdhocFilterEditPopoverSimpleTabContent.test.tsx | 322 +++++++++++
.../index.jsx | 457 ----------------
.../index.tsx | 463 ++++++++++++++++
.../controls/FilterControl/adhocFilterType.js | 3 -
.../MetricControl/FilterDefinitionOption.jsx | 1 +
superset-frontend/src/explore/constants.ts | 96 ++--
.../src/explore/exploreUtils/index.js | 10 +-
.../components/Select/SelectFilterPlugin.test.tsx | 4 +-
.../components/Select/SelectFilterPlugin.tsx | 4 +-
.../filters/components/Select/buildQuery.test.ts | 41 +-
.../src/filters/components/Select/buildQuery.ts | 4 +-
.../src/filters/components/Select/types.ts | 2 +-
.../filters/components/Time/TimeFilterPlugin.tsx | 34 +-
.../src/{setup/setupClient.ts => utils/export.ts} | 42 +-
.../src/views/CRUD/chart/ChartCard.tsx | 4 +-
.../src/views/CRUD/chart/ChartList.tsx | 14 +-
.../src/views/CRUD/dashboard/DashboardCard.tsx | 8 +-
.../src/views/CRUD/dashboard/DashboardList.tsx | 14 +-
.../src/views/CRUD/data/database/DatabaseList.tsx | 16 +-
.../src/views/CRUD/data/dataset/DatasetList.tsx | 39 +-
.../CRUD/data/dataset/constants.ts} | 36 +-
.../CRUD/data/savedquery/SavedQueryList.test.jsx | 9 -
.../views/CRUD/data/savedquery/SavedQueryList.tsx | 15 +-
.../index.js => src/views/CRUD/storageKeys.ts} | 10 +-
superset-frontend/src/views/CRUD/types.ts | 5 +
superset-frontend/src/views/CRUD/utils.tsx | 28 +-
.../src/views/CRUD/welcome/ActivityTable.test.tsx | 13 +-
.../src/views/CRUD/welcome/ActivityTable.tsx | 49 +-
.../src/views/CRUD/welcome/ChartTable.test.tsx | 12 +-
.../src/views/CRUD/welcome/ChartTable.tsx | 49 +-
.../src/views/CRUD/welcome/DashboardTable.tsx | 60 +-
.../src/views/CRUD/welcome/Welcome.test.tsx | 4 +-
.../src/views/CRUD/welcome/Welcome.tsx | 30 +-
superset/charts/api.py | 6 +-
superset/config.py | 3 +
superset/dashboards/api.py | 6 +-
superset/databases/api.py | 6 +-
superset/databases/commands/create.py | 22 +-
superset/databases/commands/exceptions.py | 2 +-
superset/datasets/api.py | 6 +-
superset/db_engine_specs/postgres.py | 14 +-
superset/queries/saved_queries/api.py | 6 +-
superset/sql_lab.py | 2 +-
superset/utils/core.py | 4 +-
superset/views/base.py | 3 +
superset/views/core.py | 11 +-
tests/celery_tests.py | 5 +-
tests/sqllab_tests.py | 6 +-
109 files changed, 2747 insertions(+), 1878 deletions(-)
rename
superset-frontend/src/dashboard/components/SliceHeaderControls/{index.jsx =>
index.tsx} (76%)
delete mode 100644
superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/AdhocFilterEditPopoverSimpleTabContent.test.jsx
create mode 100644
superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/AdhocFilterEditPopoverSimpleTabContent.test.tsx
delete mode 100644
superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.jsx
create mode 100644
superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx
copy superset-frontend/src/{setup/setupClient.ts => utils/export.ts} (53%)
copy superset-frontend/src/{dashboard/components/MissingChart.jsx =>
views/CRUD/data/dataset/constants.ts} (54%)
copy superset-frontend/{cypress-base/cypress/plugins/index.js =>
src/views/CRUD/storageKeys.ts} (76%)