You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2024/03/29 19:03:40 UTC

(superset) branch pyproject.toml updated (0334f31400 -> 23b1c12e83)

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a change to branch pyproject.toml
in repository https://gitbox.apache.org/repos/asf/superset.git


    omit 0334f31400 flaky test
    omit e83f1d7b5c fix pip-compile-multi bug
    omit e22e255f61 rm artefact
    omit 8b210ca785 point of no return
    omit f8d6ee91ad add label
    omit 2cd80320a7 trigger CI
    omit caad75ce22 lint
    omit 7b8596c5d1 handle the pip-compile-multi bug
    omit e1f76d372f git clean
    omit 7365691d5c handling all group
    omit 389b34ee94 adding optional-deps support
    omit 3d8e6cb246 add from & to information as requested
    omit 58b57436dc checks:write
    omit a248da8153 actions:write
    omit ce29735f3a improvements
    omit bc6779968c shell bash
    omit d8a2ffee5b feat: make supersetbot do what dependabot should do
     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 6aa6e464e6 feat: make supersetbot do what dependabot should do
     add 2867d9aad6 shell bash
     add 9959f89cdc improvements
     add 2bcbbffda2 actions:write
     add 5f98da965d checks:write
     add b393f319e9 add from & to information as requested
     add 60a99e867b adding optional-deps support
     add 05714256be handling all group
     add edc3c814c7 git clean
     add 756f1c4410 handle the pip-compile-multi bug
     add 9302d88951 lint
     add e697ee5fc1 trigger CI
     add 33c761d41d add label
     add 821dde2072 point of no return
     add a4ec3e37e3 rm artefact
     add 4eea3afd77 fix pip-compile-multi bug
     add f5aa780875 flaky test
     add 23b1c12e83 rebase

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   (0334f31400)
            \
             N -- N -- N   refs/heads/pyproject.toml (23b1c12e83)

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                                        |   4 +-
 .../installing-superset-using-docker-compose.mdx   |   8 +-
 docs/docs/quickstart.mdx                           |  84 +++----
 requirements/development.txt                       |  63 ++---
 .../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/db_engine_specs/duckdb.py                 |  26 +-
 .../migrations/shared/migrate_viz/processors.py    |  15 ++
 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 ++++++
 41 files changed, 964 insertions(+), 443 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