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/urijs-1.19.6
in repository https://gitbox.apache.org/repos/asf/superset.git.
discard 25d0c3d build(deps): bump urijs from 1.19.4 to 1.19.6 in
/superset-frontend
add 488da65 feat(viz): implement time picker on filter box (#13377)
add f19a830 refactor(self-trigger): Split native filters state (#13137)
add b04aebf fix(alerts&reports): Alerts & Reports will use values from
WEBDRIVER_WINDOW option (#13157)
add 70e12ed chore: bump pyarrow and pandas (#12882)
add 7b2b371 build(deps): bump urijs from 1.19.4 to 1.19.6 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 (25d0c3d)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/urijs-1.19.6 (7b2b371)
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:
requirements/base.txt | 396 ++++++++++----
setup.py | 4 +-
superset-frontend/package-lock.json | 582 ++++++++++----------
superset-frontend/package.json | 54 +-
.../spec/fixtures/mockNativeFilters.ts | 54 +-
.../dashboard/components/Dashboard_spec.jsx | 1 +
.../dashboard/fixtures/mockNativeFilters.js | 10 +-
.../util/getFormDataWithExtraFilters_spec.ts | 12 +-
.../explore/components/DateFilterControl_spec.jsx | 148 -----
superset-frontend/src/chart/ChartContainer.jsx | 4 +-
superset-frontend/src/chart/ChartRenderer.jsx | 18 +-
.../src/dashboard/actions/nativeFilters.ts | 49 +-
.../src/dashboard/components/Dashboard.jsx | 23 +-
.../dashboard/components/FiltersBadge/selectors.ts | 3 +-
.../dashboard/components/gridComponents/Chart.jsx | 3 +
.../FilterBar/CascadeFilterControl.tsx | 9 +-
.../nativeFilters/FilterBar/CascadePopover.tsx | 17 +-
.../nativeFilters/FilterBar/FilterBar.tsx | 85 ++-
.../nativeFilters/FilterBar/FilterValue.tsx | 17 +-
.../components/nativeFilters/FilterBar/state.ts | 51 +-
.../components/nativeFilters/FilterBar/types.ts | 9 +-
.../FiltersConfigForm/DefaultValue.tsx | 13 +-
.../FiltersConfigForm/FiltersConfigForm.tsx | 1 +
.../dashboard/components/nativeFilters/utils.ts | 8 +-
.../src/dashboard/containers/Chart.jsx | 1 +
.../src/dashboard/containers/Dashboard.jsx | 1 +
.../src/dashboard/reducers/nativeFilters.ts | 81 ++-
superset-frontend/src/dashboard/reducers/types.ts | 41 +-
.../dashboard/util/activeDashboardNativeFilters.ts | 45 +-
.../util/charts/getFormDataWithExtraFilters.ts | 15 +-
.../src/dashboard/util/charts/getOwnDataCharts.ts | 50 ++
.../components/controls/DateFilterControl.jsx | 600 ---------------------
.../components/controls/DateFilterControl.less | 23 -
.../{DateFilterControl.tsx => DateFilterLabel.tsx} | 10 +-
.../{frame => components}/AdvancedFrame.tsx | 2 +-
.../{frame => components}/CalendarFrame.tsx | 5 +-
.../{frame => components}/CommonFrame.tsx | 10 +-
.../{frame => components}/CustomFrame.tsx | 6 +-
.../{frame => components}/DateFunctionTooltip.tsx | 0
.../{frame => components}/index.ts | 0
.../utils => DateFilterControl}/index.ts | 2 +-
.../DateFilterControl/{ => utils}/constants.ts | 2 +-
.../{utils.ts => utils/dateParser.ts} | 2 +-
.../controls/DateFilterControl/utils}/index.ts | 4 +-
.../src/explore/components/controls/index.js | 2 +-
.../filters/components/Range/RangeFilterPlugin.tsx | 27 +-
.../src/filters/components/Range/transformProps.ts | 7 +-
.../src/filters/components/Range/types.ts | 6 +-
.../Select/SelectFilterPlugin.stories.tsx | 2 +-
.../components/Select/SelectFilterPlugin.tsx | 25 +-
.../filters/components/Select/transformProps.ts | 7 +-
.../src/filters/components/Select/types.ts | 6 +-
.../filters/components/Time/TimeFilterPlugin.tsx | 24 +-
.../src/filters/components/Time/transformProps.ts | 7 +-
.../src/filters/components/Time/types.ts | 6 +-
.../src/visualizations/FilterBox/FilterBox.jsx | 2 +-
superset/common/query_context.py | 2 +-
superset/reports/commands/execute.py | 12 +-
superset/utils/core.py | 6 +-
superset/utils/screenshots.py | 26 +-
superset/viz.py | 2 +-
tests/utils_tests.py | 26 +-
62 files changed, 1152 insertions(+), 1514 deletions(-)
delete mode 100644
superset-frontend/spec/javascripts/explore/components/DateFilterControl_spec.jsx
create mode 100644
superset-frontend/src/dashboard/util/charts/getOwnDataCharts.ts
delete mode 100644
superset-frontend/src/explore/components/controls/DateFilterControl.jsx
delete mode 100644
superset-frontend/src/explore/components/controls/DateFilterControl.less
rename
superset-frontend/src/explore/components/controls/DateFilterControl/{DateFilterControl.tsx
=> DateFilterLabel.tsx} (97%)
rename
superset-frontend/src/explore/components/controls/DateFilterControl/{frame =>
components}/AdvancedFrame.tsx (96%)
rename
superset-frontend/src/explore/components/controls/DateFilterControl/{frame =>
components}/CalendarFrame.tsx (93%)
rename
superset-frontend/src/explore/components/controls/DateFilterControl/{frame =>
components}/CommonFrame.tsx (87%)
rename
superset-frontend/src/explore/components/controls/DateFilterControl/{frame =>
components}/CustomFrame.tsx (98%)
rename
superset-frontend/src/explore/components/controls/DateFilterControl/{frame =>
components}/DateFunctionTooltip.tsx (100%)
rename
superset-frontend/src/explore/components/controls/DateFilterControl/{frame =>
components}/index.ts (100%)
copy
superset-frontend/src/explore/components/controls/{DndColumnSelectControl/utils
=> DateFilterControl}/index.ts (94%)
rename superset-frontend/src/explore/components/controls/DateFilterControl/{
=> utils}/constants.ts (98%)
rename
superset-frontend/src/explore/components/controls/DateFilterControl/{utils.ts
=> utils/dateParser.ts} (99%)
copy superset-frontend/src/{common/components/Tabs =>
explore/components/controls/DateFilterControl/utils}/index.ts (93%)