This is an automated email from the ASF dual-hosted git repository.
jli pushed a change to branch showtime-master
in repository https://gitbox.apache.org/repos/asf/superset.git
omit 7d6526be5e chore: fix spacing in AGENTS.md
add adb575be2f chore(deps-dev): bump typescript-eslint from 8.50.1 to
8.52.0 in /docs (#36913)
add fa3d4a75ca chore(deps): bump actions/download-artifact from 6 to 7
(#36699)
add 7503ee4e09 feat(sqllab): primary/secondary action extensions (#36644)
add 462fffc23c fix(docs): Update references from LLMS.md to AGENTS.md
(#37060)
add 481bfa0f68 feat(starrocks): add catalog support for StarRocks database
connections (#37026)
add 5f58241795 fix(explore): dispatch NumberControl value on blur to allow
field clearing (#37007)
add ad3812edd7 fix(table): keep d3-format semantics when applying currency
formatting (#37039)
add 936e37bd02 chore(deps-dev): bump @babel/node from 7.28.0 to 7.28.6 in
/superset-frontend (#37089)
add e17bfae6bd chore(deps-dev): bump webpack from 5.103.0 to 5.104.1 in
/superset-frontend (#37083)
add fc67569cd4 fix(datasets): ui bug fixes (#37058)
add 23a47e2f5a chore(deps-dev): bump webpack-dev-server from 5.2.2 to
5.2.3 in /superset-frontend (#37088)
add 3a3cbc2900 chore(deps-dev): bump @types/node from 25.0.3 to 25.0.7 in
/superset-websocket (#37081)
add 6c75365427 chore(deps-dev): bump typescript-eslint from 8.52.0 to
8.53.0 in /docs (#37076)
add 5d5012aa9f chore(deps-dev): bump @types/lodash from 4.17.21 to 4.17.23
in /superset-frontend (#37077)
add 560da50df8 chore(deps): bump @babel/runtime from 7.28.4 to 7.28.6 in
/superset-frontend (#37080)
add 393259bb9e chore(deps-dev): bump typescript-eslint from 8.52.0 to
8.53.0 in /superset-websocket (#37082)
add 0b4fcce03b chore(deps-dev): bump cross-env from 10.0.0 to 10.1.0 in
/superset-frontend (#36657)
add 1166df3579 docs(inthewild): Dark mode issues on InTheWild page (#37034)
add 0c490dc1ab docs(exploring-data): add overview to tutorial (#37028)
add 15b1c309cd chore: fix spacing in AGENTS.md
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 (7d6526be5e)
\
N -- N -- N refs/heads/showtime-master (15b1c309cd)
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:
.github/workflows/superset-frontend.yml | 2 +-
docs/docs/contributing/development.mdx | 6 +-
docs/docs/using-superset/exploring-data.mdx | 8 +-
docs/package.json | 2 +-
docs/src/pages/inTheWild.tsx | 2 +-
docs/src/styles/custom.css | 9 +
docs/yarn.lock | 250 ++++--------
superset-frontend/package-lock.json | 446 ++++++++++++++++-----
superset-frontend/package.json | 10 +-
.../packages/superset-core/package.json | 2 +-
.../packages/superset-ui-core/package.json | 4 +-
.../src/components/AsyncAceEditor/index.tsx | 2 -
.../src/components/EmptyState/index.tsx | 87 ++--
.../src/components/EmptyState/types.ts | 3 +
.../src/components/Icons/AntdEnhanced.tsx | 2 +
.../src/currency-format/CurrencyFormatter.ts | 11 +-
.../test/currency-format/CurrencyFormatter.test.ts | 6 +-
.../plugins/plugin-chart-handlebars/package.json | 2 +-
.../SqlLab/components/AceEditorWrapper/index.tsx | 26 +-
.../src/SqlLab/components/AppLayout/index.tsx | 22 +-
.../EstimateQueryCostButton.test.tsx | 28 +-
.../components/EstimateQueryCostButton/index.tsx | 9 +-
.../QueryLimitSelect/QueryLimitSelect.test.tsx | 3 +-
.../SqlLab/components/QueryLimitSelect/index.tsx | 28 +-
.../RunQueryActionButton.test.tsx | 1 -
.../components/RunQueryActionButton/index.tsx | 38 +-
.../SaveDatasetActionButton.test.tsx | 39 +-
.../components/SaveDatasetActionButton/index.tsx | 47 +--
.../SqlLab/components/SaveQuery/SaveQuery.test.tsx | 23 +-
.../src/SqlLab/components/SaveQuery/index.tsx | 22 +-
.../SqlLab/components/ShareSqlLabQuery/index.tsx | 10 +-
.../src/SqlLab/components/SouthPane/index.tsx | 23 +-
.../SqlLab/components/SqlEditor/SqlEditor.test.tsx | 6 +-
.../src/SqlLab/components/SqlEditor/index.tsx | 249 +++++-------
.../SqlLab/components/SqlEditorLeftBar/index.tsx | 90 +----
.../SqlEditorTopBar/SqlEditorTopBar.test.tsx | 130 ++++++
.../SqlLab/components/SqlEditorTopBar/index.tsx | 62 +++
.../SqlEditorTopBar/useDatabaseSelector.test.ts | 320 +++++++++++++++
.../SqlEditorTopBar/useDatabaseSelector.ts | 126 ++++++
.../components/StatusBar/StatusBar.test.tsx} | 28 +-
.../src/SqlLab/components/StatusBar/index.tsx | 57 +++
.../SqlLab/components/TabbedSqlEditors/index.tsx | 40 +-
superset-frontend/src/SqlLab/constants.ts | 3 +-
superset-frontend/src/SqlLab/contributions.ts | 4 +-
.../MenuListExtension/MenuListExtension.test.tsx | 374 +++++++++++++++++
.../src/components/MenuListExtension/index.tsx | 157 ++++++++
.../ViewListExtension/ViewListExtension.test.tsx | 198 +++++++++
.../ViewListExtension/index.tsx} | 31 +-
.../controls/NumberControl/NumberControl.test.tsx | 50 ++-
.../components/controls/NumberControl/index.tsx | 14 +-
.../AddDataset/DatasetPanel/DatasetPanel.tsx | 25 +-
.../AddDataset/DatasetPanel/MessageContent.tsx | 3 +-
superset-websocket/package-lock.json | 258 ++++++------
superset-websocket/package.json | 4 +-
superset/db_engine_specs/starrocks.py | 155 +++++--
tests/unit_tests/db_engine_specs/test_starrocks.py | 116 +++++-
56 files changed, 2732 insertions(+), 941 deletions(-)
create mode 100644
superset-frontend/src/SqlLab/components/SqlEditorTopBar/SqlEditorTopBar.test.tsx
create mode 100644
superset-frontend/src/SqlLab/components/SqlEditorTopBar/index.tsx
create mode 100644
superset-frontend/src/SqlLab/components/SqlEditorTopBar/useDatabaseSelector.test.ts
create mode 100644
superset-frontend/src/SqlLab/components/SqlEditorTopBar/useDatabaseSelector.ts
copy
superset-frontend/src/{explore/components/controls/MetricControl/AggregateOption.test.tsx
=> SqlLab/components/StatusBar/StatusBar.test.tsx} (57%)
create mode 100644 superset-frontend/src/SqlLab/components/StatusBar/index.tsx
create mode 100644
superset-frontend/src/components/MenuListExtension/MenuListExtension.test.tsx
create mode 100644 superset-frontend/src/components/MenuListExtension/index.tsx
create mode 100644
superset-frontend/src/components/ViewListExtension/ViewListExtension.test.tsx
copy superset-frontend/src/{core/extensions/index.ts =>
components/ViewListExtension/index.tsx} (55%)