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/10/09 17:00:08 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.7.4 updated (63fdb0fe0a -> dce0027b95)

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/typescript-eslint/eslint-plugin-6.7.4
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 63fdb0fe0a build(deps-dev): bump @typescript-eslint/eslint-plugin
     add b92957e510 fix(sqllab): Broken query containing 'children' (#25490)
     add ba541e8022 chore: Expand error detail on screencapture (#25519)
     add 87c8e872ee docs: fix for domain sharding results in failed requests with "Missing Authorization Header" (#24481)
     add af661ceee2 chore(tags): move tags column in dashboard and chart list (#25504)
     add 5ab1e7eae4 feat(sqllab): SPA migration (#25151)
     add 1fb2c62c02 chore(tags): don't allow users to create new tags from property dropdowns (#25507)
     add 50b0816e37 fix: tags permissions error message (#25516)
     add c81c60c91f feat: Adds the ECharts Bubble chart (#22107)
     add 34f99708d4 chore(sqllab): Typescript for SqlEditor component (#25228)
     add dcfebfce9d fix(tags): fix clears delete on Tags Modal (#25470)
     add 4532079c71 fix(tags): Update loading + pagination for Tags Page (#25473)
     add 89b05993a3 fix(test-db): removed attribute (#25525)
     add 0c40bea064 fix: Tags Page ListView size to 10 (#25536)
     add 17792a507c feat(plugin-chart-echarts): Echarts Waterfall (#17906)
     add 58fcd292a9 fix: Apply normalization to all dttm columns (#25147)
     add 178607093f fix: Make `host.docker.internal` available on linux (#25547)
     add e0a7488005 build(deps-dev): bump eslint from 8.49.0 to 8.51.0 in /superset-websocket (#25574)
     add dce0027b95 build(deps-dev): bump @typescript-eslint/eslint-plugin

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   (63fdb0fe0a)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.7.4 (dce0027b95)

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:
 docker-compose.yml                                 |   2 +
 docs/docs/installation/networking-settings.mdx     |   9 +
 .../e2e/sqllab/_skip.sourcePanel.index.test.js     |   2 +-
 .../cypress-base/cypress/e2e/sqllab/query.test.ts  |   2 +-
 .../cypress/e2e/sqllab/sqllab.applitools.test.ts   |   2 +-
 .../cypress-base/cypress/e2e/sqllab/tabs.test.ts   |   2 +-
 superset-frontend/package-lock.json                |  15 +-
 superset-frontend/package.json                     |   1 +
 .../plugin-chart-echarts/Bubble/Stories.tsx        | 128 +++++++
 .../plugins/plugin-chart-echarts/Bubble/data.ts    |  80 ++++
 .../plugin-chart-echarts/Waterfall/Stories.tsx     |  69 ++++
 .../plugins/plugin-chart-echarts/Waterfall/data.ts |  80 ++++
 .../legacy-preset-chart-nvd3/src/Bubble/index.js   |   9 +-
 .../src/Bubble/EchartsBubble.tsx}                  |  16 +-
 .../plugin-chart-echarts/src/Bubble/buildQuery.ts} |  35 +-
 .../plugin-chart-echarts/src/Bubble/constants.ts}  |  25 +-
 .../src/Bubble/controlPanel.tsx                    | 287 +++++++++++++++
 .../src/Bubble/images/example1.png                 | Bin 0 -> 134620 bytes
 .../src/Bubble/images/example2.png                 | Bin 0 -> 107431 bytes
 .../src/Bubble/images/thumbnail.png                | Bin 0 -> 114350 bytes
 .../plugin-chart-echarts/src/Bubble/index.ts       |  60 +++
 .../src/Bubble/transformProps.ts                   | 229 ++++++++++++
 .../plugin-chart-echarts/src/Bubble/types.ts       |  57 +++
 .../src/Waterfall/EchartsWaterfall.tsx             |  84 +++++
 .../src/Waterfall/buildQuery.ts}                   |  12 +-
 .../src/Waterfall/constants.ts}                    |  14 +-
 .../src/Waterfall/controlPanel.tsx                 | 142 ++++++++
 .../src/Waterfall/images/thumbnail.png             | Bin 0 -> 77020 bytes
 .../plugin-chart-echarts/src/Waterfall/index.ts    |  59 +++
 .../src/Waterfall/transformProps.ts                | 401 +++++++++++++++++++++
 .../plugin-chart-echarts/src/Waterfall/types.ts    |  66 ++++
 .../plugins/plugin-chart-echarts/src/index.ts      |   4 +
 .../test/Bubble/buildQuery.test.ts                 |  93 +++++
 .../test/Bubble/transformProps.test.ts             | 160 ++++++++
 .../test/Waterfall/buildQuery.test.ts}             |  26 +-
 .../test/Waterfall/transformProps.test.ts          | 121 +++++++
 superset-frontend/spec/helpers/reducerIndex.ts     |   3 +-
 superset-frontend/src/SqlLab/App.jsx               |  84 -----
 .../SqlLab/components/AceEditorWrapper/index.tsx   |   3 +-
 .../AceEditorWrapper/useKeywords.test.ts           |   2 +-
 .../src/SqlLab/components/App/App.test.jsx         |   5 +-
 .../src/SqlLab/components/App/index.jsx            |  12 +-
 .../src/SqlLab/components/QueryTable/index.tsx     |   2 +-
 .../components/RunQueryActionButton/index.tsx      |   3 +-
 .../src/SqlLab/components/SaveQuery/index.tsx      |   7 +-
 .../components/ScheduleQueryButton/index.tsx       |   2 +-
 .../{SqlEditor.test.jsx => SqlEditor.test.tsx}     |  43 ++-
 .../components/SqlEditor/{index.jsx => index.tsx}  | 198 +++++-----
 .../SqlEditorLeftBar/SqlEditorLeftBar.test.jsx     |   2 +-
 .../SqlLab/components/SqlEditorLeftBar/index.tsx   |  10 +-
 .../TabbedSqlEditors/TabbedSqlEditors.test.jsx     |  14 +-
 .../SqlLab/components/TabbedSqlEditors/index.jsx   |   5 +-
 .../components/TemplateParamsEditor/index.tsx      |   2 +-
 superset-frontend/src/SqlLab/constants.ts          |   3 +-
 superset-frontend/src/SqlLab/types.ts              |   2 +
 .../src/components/Chart/chartAction.js            |  12 +-
 .../src/components/DatabaseSelector/index.tsx      |   8 +-
 .../components/ErrorMessage/ErrorAlert.test.tsx    |  24 ++
 .../src/components/ErrorMessage/ErrorAlert.tsx     |   6 +-
 .../FilterableTable/FilterableTable.test.tsx       |   8 +-
 .../src/components/FilterableTable/index.tsx       |   1 +
 superset-frontend/src/components/Table/index.tsx   |  10 +
 superset-frontend/src/components/Tags/utils.tsx    |   2 +-
 .../dashboard/components/PropertiesModal/index.tsx |   1 -
 .../components/ExploreChartHeader/index.jsx        |  13 +-
 .../explore/components/PropertiesModal/index.tsx   |   1 -
 .../DatasourceControl/DatasourceControl.test.tsx   |  84 +++--
 .../controls/DatasourceControl/index.jsx           |  50 +--
 .../components/controls/ViewQueryModalFooter.tsx   |  11 +-
 .../controls/VizTypeControl/VizTypeGallery.tsx     |   1 +
 .../src/features/allEntities/AllEntitiesTable.tsx  |  46 +--
 .../databases/DatabaseModal/index.test.tsx         |   2 +
 .../src/features/databases/DatabaseModal/index.tsx |  14 +-
 superset-frontend/src/features/databases/types.ts  |   5 +-
 .../AddDataset/DatasetPanel/DatasetPanel.test.tsx  |  19 +-
 .../AddDataset/DatasetPanel/MessageContent.tsx     |  15 +-
 .../datasets/DatasetLayout/DatasetLayout.test.tsx  |  15 +-
 .../src/features/home/ActivityTable.tsx            |   2 +-
 superset-frontend/src/features/home/EmptyState.tsx |  28 +-
 superset-frontend/src/features/home/Menu.test.tsx  |   2 +-
 .../src/features/home/RightMenu.test.tsx           |   2 +-
 superset-frontend/src/features/home/RightMenu.tsx  |   2 +-
 .../src/features/home/SavedQueries.tsx             |  25 +-
 superset-frontend/src/features/home/SubMenu.tsx    |   2 +-
 .../src/features/home/commonMenuData.ts            |   2 +-
 .../src/hooks/apiResources/queryApi.ts             |   9 +-
 superset-frontend/src/pages/AllEntities/index.tsx  |  59 ++-
 superset-frontend/src/pages/ChartList/index.tsx    |  42 +--
 .../src/pages/DashboardList/index.tsx              |  51 ++-
 .../pages/DatasetCreation/DatasetCreation.test.tsx |   2 +-
 .../src/pages/QueryHistoryList/index.tsx           |  10 +-
 .../src/pages/SavedQueryList/index.tsx             |  17 +-
 .../index.js => pages/SqlLab/LocationContext.tsx}  |  31 +-
 superset-frontend/src/pages/SqlLab/SqlLab.test.tsx |  99 +++++
 superset-frontend/src/pages/SqlLab/index.tsx       |  78 ++++
 superset-frontend/src/views/CRUD/hooks.ts          |   4 +-
 superset-frontend/src/views/routes.tsx             |  10 +-
 .../src/visualizations/presets/MainPreset.js       |   6 +
 superset-frontend/webpack.config.js                |   1 -
 superset-websocket/package-lock.json               |  30 +-
 superset-websocket/package.json                    |   2 +-
 superset/cli/test_db.py                            | 104 ++----
 superset/common/query_context_factory.py           |   1 +
 superset/common/query_context_processor.py         |   5 +-
 superset/common/query_object_factory.py            |  66 +++-
 superset/daos/tag.py                               |   7 +-
 superset/db_engine_specs/lib.py                    |   2 -
 superset/initialization/__init__.py                |   6 +-
 superset/jinja_context.py                          |   2 +-
 superset/models/core.py                            |   2 +-
 superset/models/sql_lab.py                         |   4 +-
 superset/sqllab/api.py                             |   2 +
 superset/tags/commands/create.py                   |  61 ++--
 superset/tags/commands/update.py                   |  15 +-
 superset/tags/schemas.py                           |   4 +-
 superset/views/core.py                             |  27 +-
 superset/views/sqllab.py                           |  46 +++
 tests/integration_tests/core_tests.py              |  21 +-
 tests/integration_tests/query_context_tests.py     |   8 +-
 tests/integration_tests/sqllab_tests.py            |   4 +-
 .../unit_tests/common/test_query_object_factory.py |  90 ++++-
 tests/unit_tests/tags/commands/create_test.py      |  26 +-
 122 files changed, 3334 insertions(+), 727 deletions(-)
 create mode 100644 superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Bubble/Stories.tsx
 create mode 100644 superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Bubble/data.ts
 create mode 100644 superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Waterfall/Stories.tsx
 create mode 100644 superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Waterfall/data.ts
 rename superset-frontend/{src/SqlLab/reducers/localStorageUsage.js => plugins/plugin-chart-echarts/src/Bubble/EchartsBubble.tsx} (67%)
 copy superset-frontend/{src/features/home/commonMenuData.ts => plugins/plugin-chart-echarts/src/Bubble/buildQuery.ts} (62%)
 copy superset-frontend/{src/SqlLab/reducers/index.js => plugins/plugin-chart-echarts/src/Bubble/constants.ts} (64%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Bubble/images/example1.png
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Bubble/images/example2.png
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Bubble/images/thumbnail.png
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Bubble/transformProps.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Bubble/types.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/EchartsWaterfall.tsx
 rename superset-frontend/{src/SqlLab/reducers/common.js => plugins/plugin-chart-echarts/src/Waterfall/buildQuery.ts} (70%)
 rename superset-frontend/{src/SqlLab/index.tsx => plugins/plugin-chart-echarts/src/Waterfall/constants.ts} (76%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/images/thumbnail.png
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/transformProps.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/types.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/test/Bubble/buildQuery.test.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/test/Bubble/transformProps.test.ts
 copy superset-frontend/{cypress-base/cypress/e2e/sqllab/sqllab.applitools.test.ts => plugins/plugin-chart-echarts/test/Waterfall/buildQuery.test.ts} (58%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/test/Waterfall/transformProps.test.ts
 delete mode 100644 superset-frontend/src/SqlLab/App.jsx
 rename superset-frontend/src/SqlLab/components/SqlEditor/{SqlEditor.test.jsx => SqlEditor.test.tsx} (88%)
 rename superset-frontend/src/SqlLab/components/SqlEditor/{index.jsx => index.tsx} (87%)
 rename superset-frontend/src/{SqlLab/reducers/index.js => pages/SqlLab/LocationContext.tsx} (56%)
 create mode 100644 superset-frontend/src/pages/SqlLab/SqlLab.test.tsx
 create mode 100644 superset-frontend/src/pages/SqlLab/index.tsx
 create mode 100644 superset/views/sqllab.py