You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by gi...@apache.org on 2023/01/17 03:54:34 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/ws-and-types/ws-8.12.0 updated (485d94b2d6 -> adc33ba44f)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/superset-websocket/ws-and-types/ws-8.12.0
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 485d94b2d6 build(deps): bump ws and @types/ws in /superset-websocket
     add 80b31130b4 fix(async-queries): make global async. queries cookie SameSite option configurable (#21185)
     add 3ed288d4ee chore: Migrate /superset/stop_query/ to API v1 (#22624)
     add 6d37e66cd1 chore: Use redis 7 on tests and pin on local dev and non-dev (#22742)
     add d2a355b2fb feat: Updates button styles of Modal pre-defined functions (#22737)
     add b53941fb3e feat(plugin-chart-echarts): supports sunburst chart v2 [WIP] (#21625)
     add cf3d4f720e build(deps): bump loader-utils from 1.4.0 to 1.4.2 in /superset-frontend (#22138)
     add adc33ba44f build(deps): bump ws and @types/ws in /superset-websocket

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   (485d94b2d6)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-websocket/ws-and-types/ws-8.12.0 (adc33ba44f)

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:
 .github/workflows/superset-applitool-cypress.yml   |    2 +-
 .github/workflows/superset-cli.yml                 |    2 +-
 .github/workflows/superset-e2e.yml                 |    2 +-
 .../workflows/superset-python-integrationtest.yml  |    6 +-
 .github/workflows/superset-python-presto-hive.yml  |    4 +-
 CONTRIBUTING.md                                    |    1 +
 docker-compose-non-dev.yml                         |    4 +-
 docker-compose.yml                                 |    2 +-
 docs/static/resources/openapi.json                 | 1258 +++++++++++++-------
 superset-frontend/.storybook/preview.jsx           |    8 +-
 superset-frontend/package-lock.json                |  204 ++--
 .../EchartsSunburst.tsx}                           |   85 +-
 .../src/{Funnel => Sunburst}/buildQuery.ts         |    0
 .../src/{Treemap => Sunburst}/controlPanel.tsx     |   87 +-
 .../src/Sunburst}/images/thumbnail.png             |  Bin
 .../src/{Tree => Sunburst}/index.ts                |   21 +-
 .../src/Sunburst/transformProps.ts                 |  362 ++++++
 .../src/{Treemap => Sunburst}/types.ts             |   49 +-
 .../plugin-chart-echarts/src/Treemap/constants.ts  |    2 +-
 .../src/Treemap/transformProps.ts                  |  144 +--
 .../plugin-chart-echarts/src/Treemap/types.ts      |    7 +-
 .../plugins/plugin-chart-echarts/src/index.ts      |    2 +
 .../plugins/plugin-chart-echarts/src/types.ts      |    9 +-
 .../plugin-chart-echarts/src/utils/treeBuilder.ts  |   87 ++
 .../test/utils/treeBuilder.test.ts                 |  274 +++++
 superset-frontend/src/GlobalStyles.tsx             |   33 +
 superset-frontend/src/SqlLab/actions/sqlLab.js     |    6 +-
 .../src/SqlLab/actions/sqlLab.test.js              |   11 +-
 .../src/components/Modal/Modal.stories.tsx         |   15 +
 superset-frontend/src/components/Modal/Modal.tsx   |   20 +-
 superset/config.py                                 |    5 +-
 superset/constants.py                              |    1 +
 superset/exceptions.py                             |    4 +
 superset/queries/api.py                            |   78 +-
 superset/queries/dao.py                            |   27 +
 superset/queries/schemas.py                        |    8 +
 superset/utils/async_query_manager.py              |    5 +-
 superset/views/core.py                             |    1 +
 tests/integration_tests/queries/api_tests.py       |   52 +
 tests/unit_tests/dao/queries_test.py               |  165 ++-
 40 files changed, 2300 insertions(+), 753 deletions(-)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Treemap/EchartsTreemap.tsx => Sunburst/EchartsSunburst.tsx} (63%)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Funnel => Sunburst}/buildQuery.ts (100%)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Treemap => Sunburst}/controlPanel.tsx (63%)
 copy superset-frontend/{packages/generator-superset/generators/plugin-chart/templates/src => plugins/plugin-chart-echarts/src/Sunburst}/images/thumbnail.png (100%)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Tree => Sunburst}/index.ts (68%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Treemap => Sunburst}/types.ts (57%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/utils/treeBuilder.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/test/utils/treeBuilder.test.ts