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 a0f36c0 build(deps): bump d3-scale from 2.1.2 to 4.0.0 in
/superset-frontend
add 2f95f81 feat: apply post processing to chart data (#15843)
add fb5dce0 chore: implement new mockup to the new viz gallery (2nd
iteration) (#15868)
add 16a26ba fix: New time range filter initially show advance section
(#15889)
add f6115a7 fix: Side menu of the dashboard component will scroll out of
dashboard (#15888)
add 7aeb150 fix: Download as image of dashboard chart did not work
(#15897)
add 5be0a89 fix: Charts sort by in edit mode gets cut off (#15896)
add 62550db fix: Update Query Context on Explore loading (#15865)
add 1297fd9 fix(dashboard): Refresh Native Filters when Dashboard
refreshes (#15890)
add e6a3702 fix(Explore): "Customize" tab rendering behavior (#15841)
add 2d00565 Incorrect translations (#15813)
add eeba326 chore: set UUID of examples DB (#15724)
add 315c52a fix: dashboard url error when edit slug (#15893)
add 94e759d chore: bumping superset-ui 0.17.73 (#15901)
add dc09d73 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 (a0f36c0)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/d3-scale-4.0.0 (dc09d73)
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:
.../images/icons/{circle.svg => ballot.svg} | 5 +-
.../images/icons/{minus.svg => category.svg} | 5 +-
.../images/icons/{grid.svg => tags.svg} | 5 +-
superset-frontend/package-lock.json | 513 +++++++++++----------
superset-frontend/package.json | 55 +--
.../dashboard/components/SliceAdder_spec.jsx | 4 +-
.../explore/components/VizTypeControl_spec.jsx | 2 +-
superset-frontend/src/components/Icons/index.tsx | 3 +
superset-frontend/src/components/Select/Select.tsx | 6 +
.../src/dashboard/actions/dashboardState.js | 26 ++
superset-frontend/src/dashboard/actions/hydrate.js | 1 +
.../DashboardBuilder/DashboardBuilder.tsx | 6 +-
.../dashboard/components/Header/Header.test.tsx | 3 +-
.../src/dashboard/components/Header/index.jsx | 4 +-
.../src/dashboard/components/Header/types.ts | 1 +
.../src/dashboard/components/SliceAdder.jsx | 5 +-
.../FilterBar/FilterControls/FilterValue.tsx | 16 +-
.../FiltersConfigForm/FiltersConfigForm.tsx | 6 +-
.../src/dashboard/containers/DashboardHeader.jsx | 2 +
.../src/dashboard/reducers/dashboardState.js | 14 +
superset-frontend/src/dashboard/types.ts | 1 +
.../explore/components/ControlPanelsContainer.tsx | 32 +-
.../explore/components/PropertiesModal/index.tsx | 23 +-
.../VizTypeControl/VizTypeControl.test.tsx | 4 +-
.../controls/VizTypeControl/VizTypeGallery.tsx | 330 +++++++++----
superset-frontend/src/utils/downloadAsImage.ts | 18 +-
.../src/views/CRUD/dashboard/DashboardList.tsx | 2 +
superset/charts/api.py | 47 +-
superset/charts/post_processing.py | 100 ++++
superset/commands/importers/v1/examples.py | 21 +-
superset/common/query_actions.py | 6 +-
superset/constants.py | 4 +
.../examples/users_channels-uzooNNtSRO.yaml | 2 +-
superset/translations/zh/LC_MESSAGES/messages.po | 6 +-
superset/utils/core.py | 11 +-
tests/integration_tests/charts/api_tests.py | 3 +
36 files changed, 845 insertions(+), 447 deletions(-)
copy superset-frontend/images/icons/{circle.svg => ballot.svg} (60%)
copy superset-frontend/images/icons/{minus.svg => category.svg} (52%)
copy superset-frontend/images/icons/{grid.svg => tags.svg} (66%)
create mode 100644 superset/charts/post_processing.py