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/react-select-4.1.0
in repository https://gitbox.apache.org/repos/asf/superset.git.
discard 9a8db2c build(deps): bump react-select from 3.1.0 to 4.1.0 in
/superset-frontend
add 85d0262 fix(explore): Enable selecting an option not included in
suggestions (#13029)
add 956f276 feat(cross-filters): add cross filters (#12662)
add acca3a4 Force pod restart on config changes (#13056)
add d6fc720 feat(native-filters): Time native filter (#12992)
add dae1258 feat(native-filters): add storybook entry for select filter
(#13005)
add 56fca17 Update http error code from 400 to 403 (#13061)
add 6b615c4 Custom superset_config.py + secret envs (#13096)
add bc4c837 fix(native-filters): set currentValue null when empty (#13000)
add 2010e64 refactor(native-filters): decouple params from filter config
modal (first phase) (#13021)
add d55a040 feat(native-filters): hide filterBar and toggle icon when in
editMode (#13108)
add 5b669b3 fix: Add some missing Chinese translation content, including
superset-ui project (#13022)
add 1029665 build: add more files to .dockerignore (#13113)
add 312cbf7 feat(dashboard_rbac): add support for related roles (#13035)
add 24ebf10 feat: add sort_by_metric for charts with single metric
(#13058)
add 18e0157 build(deps): bump react-select from 3.1.0 to 4.1.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 (9a8db2c)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/react-select-4.1.0
(18e0157)
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:
.dockerignore | 10 +-
helm/superset/templates/_helpers.tpl | 9 +
helm/superset/templates/deployment.yaml | 12 +-
helm/superset/templates/secret-env.yaml | 5 +
helm/superset/values.yaml | 31 +
superset-frontend/.storybook/main.js | 2 +-
superset-frontend/package-lock.json | 58090 +------------------
superset-frontend/package.json | 56 +-
.../spec/fixtures/mockNativeFilters.ts | 236 +-
.../util/getFormDataWithExtraFilters_spec.ts | 27 +-
superset-frontend/src/chart/ChartContainer.jsx | 2 +
superset-frontend/src/chart/ChartRenderer.jsx | 3 +
.../src/dashboard/components/DashboardBuilder.jsx | 2 +-
.../nativeFilters/FilterBar/CascadePopover.tsx | 2 +-
.../nativeFilters/FilterBar/FilterBar.tsx | 24 +-
.../nativeFilters/FilterBar/FilterValue.tsx | 16 +-
.../FilterConfigModal/FilterConfigForm.tsx | 87 +-
.../FilterConfigModal/FilterConfigModal.tsx | 9 +-
.../nativeFilters/FilterConfigModal/state.ts | 6 +-
.../nativeFilters/FilterConfigModal/types.ts | 8 +-
.../nativeFilters/FilterConfigModal/utils.ts | 29 +-
.../dashboard/components/nativeFilters/types.ts | 7 +-
.../dashboard/components/nativeFilters/utils.ts | 42 +-
.../src/dashboard/containers/Chart.jsx | 1 +
.../util/charts/getFormDataWithExtraFilters.ts | 6 +-
.../src/explore/components/OptionControls.tsx | 24 +-
.../DateFilterControl/DateFilterControl.tsx | 8 +-
.../AdhocFilterEditPopoverSimpleTabContent.jsx | 20 +
.../controls/FilterControl/AdhocFilterOption.jsx | 1 +
.../FilterControl/AdhocFilterPopoverTrigger.tsx | 38 +-
.../explore/components/controls/VizTypeControl.jsx | 14 +-
superset-frontend/src/featureFlags.ts | 1 +
.../src/filters/components/Range/controlPanel.ts | 23 +-
.../components/Select/AntdSelectFilter.stories.tsx | 62 +
.../filters/components/Select/AntdSelectFilter.tsx | 9 +-
.../src/filters/components/Select/controlPanel.ts | 46 +-
.../src/filters/components/Select/types.ts | 4 +-
.../src/filters/components/Time/AntdTimeFilter.tsx | 70 +
.../components/Time/controlPanel.ts} | 14 +-
.../{Select => Time}/images/thumbnail.png | Bin
.../filters/components/{Range => Time}/index.ts | 10 +-
.../components/{Range => Time}/transformProps.ts | 6 +-
.../filters/components/{Range => Time}/types.ts | 23 +-
superset-frontend/src/filters/components/index.ts | 1 +
.../src/visualizations/presets/MainPreset.js | 2 +
superset/config.py | 1 +
superset/dashboards/api.py | 5 +-
superset/dashboards/filters.py | 32 +-
superset/translations/zh/LC_MESSAGES/messages.json | 2981 +-
superset/translations/zh/LC_MESSAGES/messages.po | 3843 +-
superset/utils/core.py | 46 +-
superset/views/core.py | 8 +-
superset/viz.py | 12 +
tests/dashboards/api_tests.py | 36 +-
tests/utils_tests.py | 30 +
55 files changed, 6270 insertions(+), 59822 deletions(-)
create mode 100644
superset-frontend/src/filters/components/Select/AntdSelectFilter.stories.tsx
create mode 100644
superset-frontend/src/filters/components/Time/AntdTimeFilter.tsx
copy superset-frontend/src/{SqlLab/components/TabStatusIcon.jsx =>
filters/components/Time/controlPanel.ts} (76%)
copy superset-frontend/src/filters/components/{Select =>
Time}/images/thumbnail.png (100%)
copy superset-frontend/src/filters/components/{Range => Time}/index.ts (82%)
copy superset-frontend/src/filters/components/{Range =>
Time}/transformProps.ts (90%)
copy superset-frontend/src/filters/components/{Range => Time}/types.ts (70%)