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/13 16:56:12 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.7.5 updated (e37c143f09 -> 6e48e9fea4)

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


    omit e37c143f09 build(deps-dev): bump @typescript-eslint/eslint-plugin
     add eb9cd2a2a5 refactor: Issue #25040; Refactored sync_role_definition function in order to reduce number of query.  (#25340)
     add 52f631a038 fix: thubmnails loading - Talisman default config (#25486)
     add 1f20214244 docs: Add timezone information (#19056)
     add d0f2c5581d build(deps): bump postcss from 8.3.11 to 8.4.31 in /docs (#25502)
     add be3714e131 fix(Presto): catch DatabaseError when testing Presto views (#25559)
     add f556ef53f3 fix(Charts): Set max row limit + removed the option to use an empty row limit value (#25579)
     add b97f8f03ac fix(window): unavailable localStorage and sessionStorage (#25599)
     add 63964bb520 fix(test-db): engine params (#25615)
     add 62bffaf935 fix: finestTemporalGrainFormatter (#25618)
     add 2dc5c5f53f feat(sqllab): Add keyboard shortcut helper (#25542)
     add ef1807cd7e chore(feature?): Bump `scarf-js` to 1.3.0 to get more telemetry data (#25602)
     add e56e0de458 fix: revert fix(sqllab): Force trino client async execution (#24859) (#25541)
     add 003001f19f fix(sqllab): Allow opening of SQL Lab in new browser tab  (#25582)
     add a520124a78 fix(sqllab): Mistitled for new tab after rename (#25523)
     add 59fc5a6184 docs: BugHerd Tasks 88, 89, 90, 91 (#25567)
     add bfcca8cbab chore(helm): spelling: initialize (#25455)
     add 4a01b6006c build(deps-dev): bump @types/node from 20.8.4 to 20.8.5 in /superset-websocket (#25632)
     add 6e48e9fea4 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   (e37c143f09)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.7.5 (6e48e9fea4)

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/configuring-superset.mdx    |  47 +++++++-
 .../installing-superset-from-scratch.mdx           |   6 +-
 docs/docs/miscellaneous/timezones.mdx              |  50 ++++++++
 docs/docs/security/security.mdx                    |  16 ++-
 docs/yarn.lock                                     |  46 ++------
 helm/superset/Chart.yaml                           |   2 +-
 helm/superset/README.md                            |   4 +-
 helm/superset/values.yaml                          |   2 +-
 superset-frontend/package-lock.json                |  14 +--
 superset-frontend/package.json                     |   2 +-
 .../src/shared-controls/sharedControls.tsx         |   9 +-
 .../superset-ui-core/src/validator/index.ts        |   1 +
 .../src/validator/validateMaxValue.ts              |   8 ++
 ...ateInteger.test.ts => validateMaxValue.test.ts} |  22 ++--
 superset-frontend/src/SqlLab/actions/sqlLab.js     |  17 ++-
 .../src/SqlLab/actions/sqlLab.test.js              |  22 +++-
 .../SqlLab/components/AceEditorWrapper/index.tsx   |   5 +-
 .../KeyboardShortcutButton.test.tsx}               |  24 ++--
 .../components/KeyboardShortcutButton/index.tsx    | 129 +++++++++++++++++++++
 .../src/SqlLab/components/SqlEditor/index.tsx      |  48 ++++++--
 .../src/SqlLab/reducers/getInitialState.ts         |  94 ++++++++-------
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |  49 +++++---
 .../src/components/Chart/chartAction.js            |  19 ++-
 .../explore/components/DatasourcePanel/index.tsx   |  14 ++-
 .../components/ExploreChartHeader/index.jsx        |   4 +-
 .../src/explore/components/SaveModal.tsx           |  19 ++-
 .../controls/DatasourceControl/index.jsx           |  37 +++++-
 .../components/controls/ViewQueryModalFooter.tsx   |  33 ++++--
 .../useExploreAdditionalActionsMenu/index.jsx      |   2 +-
 .../queries/SavedQueryPreviewModal.test.jsx        |   2 +-
 .../features/queries/SavedQueryPreviewModal.tsx    |   6 +-
 .../components/Select/SelectFilterPlugin.tsx       |   4 +-
 superset-frontend/src/hooks/useTabId.ts            |  23 +++-
 .../src/pages/SavedQueryList/index.tsx             |  11 +-
 superset-websocket/package-lock.json               |  14 +--
 superset-websocket/package.json                    |   2 +-
 superset/cli/test_db.py                            |  30 ++---
 superset/config.py                                 |   4 +-
 superset/db_engine_specs/base.py                   |  18 ---
 superset/db_engine_specs/presto.py                 |   6 +-
 superset/db_engine_specs/trino.py                  |  66 +----------
 superset/security/manager.py                       |  35 ++++--
 superset/sql_lab.py                                |   7 +-
 superset/views/base.py                             |   5 +-
 superset/views/sqllab.py                           |  12 +-
 .../db_engine_specs/presto_tests.py                |   4 +-
 tests/unit_tests/db_engine_specs/test_trino.py     |  31 +----
 tests/unit_tests/sql_lab_test.py                   |  10 +-
 48 files changed, 668 insertions(+), 367 deletions(-)
 create mode 100644 docs/docs/miscellaneous/timezones.mdx
 create mode 100644 superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts
 copy superset-frontend/packages/superset-ui-core/test/validator/{validateInteger.test.ts => validateMaxValue.test.ts} (63%)
 copy superset-frontend/src/{views/routes.test.tsx => SqlLab/components/KeyboardShortcutButton/KeyboardShortcutButton.test.tsx} (61%)
 create mode 100644 superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx