This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch
dependabot/npm_and_yarn/superset-frontend/packages/superset-ui-demo/storybook/addon-controls-9.0.8
in repository https://gitbox.apache.org/repos/asf/superset.git
omit c46ce92d87 chore: update package-lock.json
omit 3a2fac65bb chore(deps): bump @storybook/addon-controls
add 8aebfe1105 fix: display correct icon for Multi Chart in quick switcher
(#37256)
add 95a465ad7c feat(sqllab): add getActivePanel API for panel visibility
tracking (#37448)
add f2fc5dec11 chore(deps): bump ag-grid-react from 34.3.1 to 35.0.1 in
/superset-frontend (#37419)
add 695e295333 chore(deps): bump ag-grid-community from 34.3.1 to 35.0.1
in /superset-frontend (#37386)
add 89b998d6b7 chore(deps): bump react-intersection-observer from 10.0.0
to 10.0.2 in /superset-frontend (#37338)
add 647f21c26a chore(deps): bump hot-shots from 13.0.0 to 13.1.0 in
/superset-websocket (#37436)
add 0fd528c7af feat(sqllab): Improved query status indicator bar (#36936)
add 4db6f9e04c chore(trino): Add progress_text for additional running
state info (#36909)
add 26ac832138 chore(deps): update @luma.gl/engine requirement from ~9.2.4
to ~9.2.6 in /superset-frontend/plugins/legacy-preset-chart-deckgl (#37440)
add 290bcc1dbb feat(cache): use configurable hash algorithm for
flask-caching (#37361)
add 10a9b4bb94 fix: update Apache Superset website footer copyright year
(#37435)
add 73d4332b51 feat(database): SIP-195 Add MongoDB database engine support
(#37368)
add 7fc9974a7c fix(deps): remove encodable dependency and pin query-string
to fix Dependabot CI failures (#37450)
add 6e54a2a356 chore(deps): bump @storybook/addon-controls
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 (c46ce92d87)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/packages/superset-ui-demo/storybook/addon-controls-9.0.8
(6e54a2a356)
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/i18n/en/docusaurus-theme-classic/footer.json | 2 +-
docs/static/img/databases/mongodb.png | Bin 0 -> 22190 bytes
superset-frontend/package-lock.json | 2234 +++++++++++++++-----
superset-frontend/package.json | 7 +-
.../packages/superset-core/src/api/sqlLab.ts | 14 +
.../packages/superset-ui-core/package.json | 4 +-
.../src/components/Icons/index.tsx | 1 +
.../src/components/Timer/index.tsx | 4 +-
.../superset-ui-core/src/query/types/Query.ts | 1 +
.../packages/superset-ui-demo/package.json | 1 -
.../legacy-preset-chart-deckgl/package.json | 2 +-
.../plugins/plugin-chart-echarts/package.json | 1 +
.../plugins/plugin-chart-word-cloud/package.json | 3 +-
.../src/chart/WordCloud.tsx | 201 +-
.../src/configureEncodable.ts | 83 -
.../plugins/plugin-chart-word-cloud/src/index.ts | 1 -
.../plugin-chart-word-cloud/src/plugin/index.ts | 3 -
superset-frontend/src/SqlLab/actions/sqlLab.ts | 2 +-
.../QueryStatusBar/QueryStatusBar.test.tsx | 161 ++
.../src/SqlLab/components/QueryStatusBar/index.tsx | 214 ++
.../SqlLab/components/ResultSet/ResultSet.test.tsx | 46 -
.../src/SqlLab/components/ResultSet/index.tsx | 29 +-
.../src/SqlLab/components/SouthPane/Results.tsx | 51 +-
.../assets/images/icons/multiple.svg} | Bin 1045 -> 1287 bytes
superset-frontend/src/core/sqlLab/index.ts | 6 +
.../controls/VizTypeControl/FastVizSwitcher.tsx | 6 +-
.../VizTypeControl/VizTypeControl.test.tsx | 29 +
.../controls/VizTypeControl/constants.tsx | 6 +
superset-websocket/package-lock.json | 14 +-
superset-websocket/package.json | 2 +-
.../db_engine_specs/{dynamodb.py => mongodb.py} | 77 +-
superset/db_engine_specs/trino.py | 12 +
superset/utils/cache.py | 3 +-
superset/utils/cache_manager.py | 141 +-
tests/unit_tests/db_engine_specs/test_mongodb.py | 125 ++
tests/unit_tests/db_engine_specs/test_trino.py | 171 ++
tests/unit_tests/utils/test_cache_manager.py | 171 ++
37 files changed, 3011 insertions(+), 817 deletions(-)
create mode 100644 docs/static/img/databases/mongodb.png
delete mode 100644
superset-frontend/plugins/plugin-chart-word-cloud/src/configureEncodable.ts
create mode 100644
superset-frontend/src/SqlLab/components/QueryStatusBar/QueryStatusBar.test.tsx
create mode 100644
superset-frontend/src/SqlLab/components/QueryStatusBar/index.tsx
copy
superset-frontend/{packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/type-icons/field_num.svg
=> src/assets/images/icons/multiple.svg} (62%)
copy superset/db_engine_specs/{dynamodb.py => mongodb.py} (52%)
create mode 100644 tests/unit_tests/db_engine_specs/test_mongodb.py
create mode 100644 tests/unit_tests/utils/test_cache_manager.py