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 2022/04/01 10:13:56 UTC

[superset] branch dependabot/npm_and_yarn/superset-frontend/emotion/react-11.8.2 updated (4eccbf2 -> b6dcb2a)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/superset-frontend/emotion/react-11.8.2
in repository https://gitbox.apache.org/repos/asf/superset.git.


 discard 4eccbf2  chore(deps): bump @emotion/react in /superset-frontend
     add 85e330e  fix(drill): specify an SA URL parm of `impersonation_target` for drill+sadrill (#19252)
     add 1a1322d  feat(explore): Move chart actions into dropdown (#19446)
     add 6828624  feat: improve adhoc SQL validation (#19454)
     add 7f85da6  fix: handle null params in #18936 migration (#19474)
     add ab37706  chore!: remove `ROW_LEVEL_SECURITY` feature flag (permanently enable) (#19230)
     add eab9388  feat(sql lab): enable ACE editor search in SQL editors (#19328)
     add 2a75e4c  test(native filter): add new test for dependent filter (#19392)
     add d684ad0  fix: request samples with default row limit (#19456)
     add d954c3d  fix: can't sync temporal flag on virtual table (#19366)
     add a2e921b  fix: flaky test for dashboard changed on (#19483)
     add 11bf0d0  chore(plugin-chart-echarts): upgrade echarts 5.3.2 (#19481)
     add b6dcb2a  chore(deps): bump @emotion/react in /superset-frontend

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   (4eccbf2)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-frontend/emotion/react-11.8.2 (b6dcb2a)

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:
 RELEASING/release-notes-1-0/README.md              |   1 -
 RESOURCES/FEATURE_FLAGS.md                         |   1 -
 UPDATING.md                                        |   1 +
 docker/docker-init.sh                              |   2 +-
 .../integration/dashboard/dashboard.helper.ts      | 120 ++++++
 .../integration/dashboard/nativeFilters.test.ts    |  97 +++--
 .../cypress/integration/explore/control.test.ts    |   2 +-
 .../cypress/integration/explore/link.test.ts       |   9 +-
 .../cypress/integration/sqllab/query.test.ts       |   4 +-
 .../cypress-base/cypress/support/index.d.ts        |  14 +
 .../cypress-base/cypress/support/index.ts          |  86 ++++
 superset-frontend/package-lock.json                |  16 +-
 .../plugins/plugin-chart-echarts/package.json      |   2 +-
 .../SqlLab/components/AceEditorWrapper/index.tsx   |   2 -
 .../src/SqlLab/components/ResultSet/index.tsx      |   3 +-
 superset-frontend/src/SqlLab/fixtures.ts           |  38 +-
 superset-frontend/src/SqlLab/types.ts              |   4 +-
 .../src/components/AsyncAceEditor/index.tsx        |   4 +-
 .../src/components/ModalTrigger/index.jsx          |   2 +
 .../src/components/ReportModal/index.tsx           |  25 +-
 .../src/dashboard/components/Header/index.jsx      |  10 +-
 .../src/explore/components/EmbedCodeButton.jsx     | 168 --------
 .../explore/components/EmbedCodeButton.test.jsx    |  62 ---
 .../src/explore/components/EmbedCodeContent.jsx    | 153 +++++++
 .../components/EmbedCodeContent.test.jsx}          |  39 +-
 .../components/ExploreActionButtons.test.jsx       | 117 -----
 .../explore/components/ExploreActionButtons.tsx    | 234 ----------
 .../ExploreAdditionalActionsMenu.test.jsx          |  60 ---
 .../ExploreAdditionalActionsMenu.test.tsx          | 198 ++++++++-
 .../ExploreAdditionalActionsMenu/ExploreReport.tsx |  92 ++++
 .../ExploreAdditionalActionsMenu/index.jsx         | 476 +++++++++++++++++----
 .../ExploreChartHeader/ExploreChartHeader.test.tsx |  10 +-
 .../components/ExploreChartHeader/index.jsx        |  84 +---
 .../src/explore/exploreUtils/index.js              |  10 +-
 superset-frontend/src/types/brace.d.ts             |   1 +
 superset/common/query_actions.py                   |  26 +-
 superset/common/query_object.py                    |   4 +-
 superset/config.py                                 |   8 -
 superset/connectors/sqla/models.py                 |  44 +-
 superset/connectors/sqla/utils.py                  |  43 +-
 superset/connectors/sqla/views.py                  |  13 +-
 superset/db_engine_specs/base.py                   |   7 +-
 superset/db_engine_specs/drill.py                  |   7 +-
 superset/db_engine_specs/presto.py                 |  34 +-
 superset/initialization/__init__.py                |   3 -
 .../ab9a9d86e695_deprecate_time_range_endpoints.py |   2 +-
 superset/result_set.py                             |   8 +-
 superset/security/manager.py                       |   5 +-
 superset/sql_parse.py                              |  84 ++--
 superset/superset_typing.py                        |  10 +
 superset/views/core.py                             |   2 +-
 tests/integration_tests/celery_tests.py            |   4 +-
 tests/integration_tests/charts/api_tests.py        |   9 +-
 .../db_engine_specs/presto_tests.py                | 114 +++--
 tests/integration_tests/result_set_tests.py        |  20 +-
 tests/integration_tests/sqla_views_tests.py        |  40 --
 tests/integration_tests/sqllab_tests.py            |   8 +-
 tests/unit_tests/db_engine_specs/test_drill.py     |  24 +-
 tests/unit_tests/sql_parse_tests.py                |  80 +++-
 59 files changed, 1577 insertions(+), 1169 deletions(-)
 delete mode 100644 superset-frontend/src/explore/components/EmbedCodeButton.jsx
 delete mode 100644 superset-frontend/src/explore/components/EmbedCodeButton.test.jsx
 create mode 100644 superset-frontend/src/explore/components/EmbedCodeContent.jsx
 copy superset-frontend/src/{dashboard/components/resizable/ResizableHandle.test.tsx => explore/components/EmbedCodeContent.test.jsx} (51%)
 delete mode 100644 superset-frontend/src/explore/components/ExploreActionButtons.test.jsx
 delete mode 100644 superset-frontend/src/explore/components/ExploreActionButtons.tsx
 delete mode 100644 superset-frontend/src/explore/components/ExploreAdditionalActionsMenu/ExploreAdditionalActionsMenu.test.jsx
 create mode 100644 superset-frontend/src/explore/components/ExploreAdditionalActionsMenu/ExploreReport.tsx
 delete mode 100644 tests/integration_tests/sqla_views_tests.py