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/04/05 19:26:49 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-5.57.1 updated (f98ebdb83d -> 44a9f3c70f)

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


 discard f98ebdb83d build(deps-dev): bump @typescript-eslint/eslint-plugin
     add 4452a65095 feat: drill by display chart (#23524)
     add d966db61af feat: Add metadata bar to drill by modal (#23542)
     add a4d4084d08 fix: tags features flag on base models (#23548)
     add 08375ca31a chore: Remove wrong information from the Alerts & Reports docs (#23544)
     add 61e71bb455 fix: QueryParamProvider error on backend rendered views (#23567)
     add 9d2f43d312 fix(dashboard): Cross filters badge for cols with verbose names (#23576)
     add 117360cd57 feat: Drill by open in Explore (#23575)
     add 3cff2b0a58 fix: Removes Redux state mutations - iteration 2 (#23535)
     add b58d17f4b8 fix(revert): "fix: cache warmup solution non legacy charts. (#23012)" (#23579)
     add 6daca46782 build(deps-dev): bump prettier from 2.8.6 to 2.8.7 in /superset-websocket (#23496)
     add 3d7a5d282d build(deps): bump pre-commit from 3.2.0 to 3.2.2 in /requirements (#23571)
     add cd498c18ba build(deps-dev): bump @types/node from 18.15.5 to 18.15.11 in /superset-websocket (#23518)
     add 44a9f3c70f 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   (f98ebdb83d)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-5.57.1 (44a9f3c70f)

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:
 docs/docs/installation/alerts-reports.mdx          |   4 +-
 requirements/integration.txt                       |   2 +-
 .../superset-ui-core/src/query/types/Filter.ts     |  12 ++-
 .../spec/fixtures/mockChartQueries.js              |   1 +
 .../components/Chart/DrillBy/DrillByChart.test.tsx |  70 ++++++++++++
 .../src/components/Chart/DrillBy/DrillByChart.tsx  |  62 +++++++++++
 .../Chart/DrillBy/DrillByMenuItems.test.tsx        | 114 ++++++++++----------
 .../components/Chart/DrillBy/DrillByMenuItems.tsx  |  25 ++++-
 .../components/Chart/DrillBy/DrillByModal.test.tsx |  82 +++++++++++---
 .../src/components/Chart/DrillBy/DrillByModal.tsx  | 120 +++++++++++++++++----
 .../Chart/DrillDetail/DrillDetailPane.test.tsx     |  16 +--
 .../Chart/DrillDetail/DrillDetailPane.tsx          |   5 +-
 .../src/components/Chart/DrillDetail/types.ts      |  19 ----
 .../components/Chart/MenuItemWithTruncation.tsx    |   3 +-
 .../components/Chart/{DrillDetail => }/types.ts    |   8 --
 .../src/dashboard/actions/nativeFilters.ts         |  23 +++-
 .../dashboard/components/FiltersBadge/index.tsx    |  27 ++---
 .../FilterBar/CrossFilters/selectors.ts            |  13 ++-
 .../FiltersConfigModal/FiltersConfigModal.tsx      |  11 +-
 .../components/nativeFilters/selectors.ts          |   7 +-
 .../src/dashboard/reducers/nativeFilters.ts        |  13 +++
 .../getFormDataWithDashboardContext.ts             |  74 ++++---------
 .../metadataBar/DatasetMetadataBar.stories.tsx     |   2 +-
 .../metadataBar/useDatasetMetadataBar.test.tsx     |  70 ++++++++----
 .../datasets/metadataBar/useDatasetMetadataBar.tsx |  41 +++++--
 superset-frontend/src/utils/simpleFilterToAdhoc.ts |  69 ++++++++++++
 superset-frontend/src/views/menu.tsx               |  14 ++-
 superset-websocket/package-lock.json               |  28 ++---
 superset-websocket/package.json                    |   4 +-
 superset/charts/commands/export.py                 |   2 +-
 superset/models/dashboard.py                       |  15 ++-
 superset/models/slice.py                           |  15 ++-
 superset/models/sql_lab.py                         |  17 ++-
 superset/views/core.py                             |  46 ++++----
 tests/integration_tests/charts/api_tests.py        |   1 +
 tests/integration_tests/charts/commands_tests.py   |  48 ++++++++-
 tests/integration_tests/dashboards/api_tests.py    |   1 +
 tests/integration_tests/tags/dao_tests.py          |   5 +-
 .../integration_tests/tasks/async_queries_tests.py |   1 +
 39 files changed, 755 insertions(+), 335 deletions(-)
 create mode 100644 superset-frontend/src/components/Chart/DrillBy/DrillByChart.test.tsx
 create mode 100644 superset-frontend/src/components/Chart/DrillBy/DrillByChart.tsx
 copy superset-frontend/src/components/Chart/{DrillDetail => }/types.ts (86%)
 create mode 100644 superset-frontend/src/utils/simpleFilterToAdhoc.ts