This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a change to branch supersetbot-bump-flask-session
in repository https://gitbox.apache.org/repos/asf/superset.git
omit eb7131a21f chore(🦾): bump python flask-session 0.5.0 -> 0.8.0
add a52f0d6947 chore(🦾): bump python xlsxwriter 3.0.7 -> 3.0.9 (#27747)
add 951d7d66ac chore(🦾): bump python pandas-gbq 0.19.1 -> 0.22.0 (#27750)
add bbcb722e50 fix: Removes filter plugins from viz gallery (#27763)
add d69a1870a0 fix: Select onChange is fired when the same item is
selected in single mode (#27706)
add 546d48adbb feat: Adds the ECharts Heatmap chart (#25353)
add 8ae4662f17 chore(docs): Cleanup UPDATING.md (#27768)
add fcf90dffa8 feat(db_engine): Add custom_user_agent when connecting to
MotherDuck (#27665)
add 79cf2060e5 docs: simplify the Quickstart guide (#27612)
add c0f8dfc7f9 chore(🦾): bump python thrift 0.16.0 -> 0.20.0 (#27754)
add 356b0d8ee5 feat: Adds Heatmap chart migration logic (#27771)
add 5b1d6b2850 fix: Select's storybook (#27785)
add a23bfeda0a chore: Updates translation owners (#27839)
add a664e21054 chore(🦾): bump python simplejson 3.17.3 -> 3.19.2 (#27757)
add 333b69fed9 chore(🦾): bump python flask-session 0.5.0 -> 0.8.0
add d085830d69 deprecating SESSION_USE_SIGNER
add 7e01e03e6e try noqa
add 62a10e88fb fix
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 (eb7131a21f)
\
N -- N -- N refs/heads/supersetbot-bump-flask-session
(62a10e88fb)
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:
UPDATING.md | 7 +-
.../installing-superset-using-docker-compose.mdx | 8 +-
docs/docs/quickstart.mdx | 84 +++----
requirements/base.txt | 4 +-
requirements/development.txt | 13 +-
.../src/operators/index.ts | 1 +
.../{flattenOperator.ts => rankOperator.ts} | 8 +-
.../src/operators/types.ts | 2 +-
...butionOperator.test.ts => rankOperator.test.ts} | 35 ++-
.../src/query/types/PostProcessing.ts | 12 +-
.../legacy-plugin-chart-heatmap/src/index.js | 9 +-
.../plugins/plugin-chart-echarts/package.json | 35 +--
.../EchartsBubble.tsx => Heatmap/Heatmap.tsx} | 6 +-
.../src/{Waterfall => Heatmap}/buildQuery.ts | 40 ++-
.../src/Heatmap}/controlPanel.tsx | 207 +++++++---------
.../src/Heatmap/images/example1.png | Bin 0 -> 69070 bytes
.../src/Heatmap/images/example2.png | Bin 0 -> 101622 bytes
.../src/Heatmap/images/example3.png | Bin 0 -> 76688 bytes
.../src/Heatmap/images/thumbnail.png | Bin 0 -> 66135 bytes
.../src/Heatmap/index.ts} | 23 +-
.../src/Heatmap/transformProps.ts | 243 +++++++++++++++++++
.../plugin-chart-echarts/src/Heatmap/types.ts | 53 ++++
.../plugins/plugin-chart-echarts/src/index.ts | 2 +
.../src/components/Select/AsyncSelect.test.tsx | 12 +
.../src/components/Select/AsyncSelect.tsx | 13 +-
.../src/components/Select/Select.stories.tsx | 269 ++++++++++-----------
.../src/components/Select/Select.test.tsx | 12 +
superset-frontend/src/components/Select/Select.tsx | 12 +-
superset-frontend/src/components/Select/utils.tsx | 18 +-
superset-frontend/src/constants.ts | 8 +
.../explore/components/controls/BoundsControl.tsx | 14 +-
.../controls/VizTypeControl/VizTypeGallery.tsx | 1 +
.../components/controls/VizTypeControl/index.tsx | 5 +-
.../src/pages/ChartCreation/index.tsx | 6 +-
.../src/visualizations/presets/MainPreset.js | 17 +-
superset/cli/viz_migrations.py | 3 +
superset/config.py | 3 +-
superset/db_engine_specs/duckdb.py | 26 +-
.../migrations/shared/migrate_viz/processors.py | 15 ++
superset/utils/hashing.py | 4 +-
superset/utils/pandas_postprocessing/__init__.py | 2 +
.../utils/pandas_postprocessing/rank.py | 27 ++-
tests/unit_tests/db_engine_specs/test_duckdb.py | 34 +++
.../migrations/viz/heatmap_v1_v2_test.py | 78 ++++++
44 files changed, 945 insertions(+), 426 deletions(-)
copy
superset-frontend/packages/superset-ui-chart-controls/src/operators/{flattenOperator.ts
=> rankOperator.ts} (84%)
copy
superset-frontend/packages/superset-ui-chart-controls/test/operators/{contributionOperator.test.ts
=> rankOperator.test.ts} (63%)
copy
superset-frontend/plugins/plugin-chart-echarts/src/{Bubble/EchartsBubble.tsx =>
Heatmap/Heatmap.tsx} (89%)
copy superset-frontend/plugins/plugin-chart-echarts/src/{Waterfall =>
Heatmap}/buildQuery.ts (50%)
copy superset-frontend/plugins/{legacy-plugin-chart-heatmap/src =>
plugin-chart-echarts/src/Heatmap}/controlPanel.tsx (78%)
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/images/example1.png
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/images/example2.png
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/images/example3.png
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/images/thumbnail.png
copy superset-frontend/plugins/{legacy-plugin-chart-heatmap/src/index.js =>
plugin-chart-echarts/src/Heatmap/index.ts} (71%)
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/transformProps.ts
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/types.ts
copy tests/unit_tests/utils/excel_tests.py =>
superset/utils/pandas_postprocessing/rank.py (60%)
create mode 100644 tests/unit_tests/migrations/viz/heatmap_v1_v2_test.py