You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/10/12 17:11:09 UTC

[superset] branch ts-conversions updated (6489e04c20 -> a864960df1)

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

rusackas pushed a change to branch ts-conversions
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 6489e04c20 adding types for npm packages
 discard 66addb66fa mainPreset to TS
     add cef68f8a9a fix: Breaking change in MachineAuthProvider constructor (#25532)
     add 3f85239053 build(deps-dev): bump @types/ws from 8.5.6 to 8.5.7 in /superset-websocket (#25606)
     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 4d6e2e2d74 mainPreset to TS
     add a864960df1 adding types for npm packages

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   (6489e04c20)
            \
             N -- N -- N   refs/heads/ts-conversions (a864960df1)

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/miscellaneous/timezones.mdx              |  50 ++++++++
 docs/yarn.lock                                     |  46 ++------
 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 ++--
 .../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 +++++---
 .../explore/components/DatasourcePanel/index.tsx   |  14 ++-
 .../src/explore/components/SaveModal.tsx           |  19 ++-
 .../components/Select/SelectFilterPlugin.tsx       |   4 +-
 superset-frontend/src/hooks/useTabId.ts            |  23 +++-
 superset-websocket/package-lock.json               |  14 +--
 superset-websocket/package.json                    |   2 +-
 superset/cli/test_db.py                            |  30 ++---
 superset/config.py                                 |   5 +-
 superset/db_engine_specs/presto.py                 |   6 +-
 superset/security/manager.py                       |  35 ++++--
 superset/utils/machine_auth.py                     |  17 +--
 .../db_engine_specs/presto_tests.py                |   4 +-
 26 files changed, 466 insertions(+), 208 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