Evan and Claude Opus 4.8
a8ef5227d0
test(async): assert _jwt_needs_refresh handles already-expired tokens
...
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
2026-06-03 08:06:55 -07:00
Claude Code
da3b6d656f
fix(async): add expiration to async-queries JWT with sliding refresh
...
The async-queries JWT was minted without an exp claim, so a leaked async-token
cookie granted access to the user's async event channel indefinitely.
Add iat/exp to the token (lifetime configurable via the new
GLOBAL_ASYNC_QUERIES_JWT_EXP_SECONDS, default 1h) and refresh it transparently:
the after_request handler now reissues the cookie whenever the token is
missing, legacy (no exp), expired, or past the first half of its lifetime,
reusing the existing channel so an active session is never disrupted. The
cookie also gets a matching max_age. PyJWT validates exp on decode, so an
expired (e.g. leaked) token is rejected by parse_channel_id_from_request and by
the websocket server.
DRAFT: behavior-sensitive (session/cookie lifetime). Needs validation that a
long-idle session (idle beyond the token lifetime) refreshes cleanly and does
not surface a transient async-query failure on the first request after expiry.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com >
2026-06-03 08:05:51 -07:00
faisal2901
accc94da51
fix(users): show 0 for null login_count and fail_login_count ( #40281 )
2026-06-03 10:14:46 -04:00
Evan Rusackas and Claude Opus 4.8
c914df5a67
ci: harden CI against Docker Hub registry flakes (retries + auth) ( #40700 )
...
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com >
2026-06-03 19:53:24 +07:00
Shaitan and Claude Opus 4.7
e3ba85b1a5
fix(redirect): normalize browser-stripped whitespace before protocol-relative check ( #40566 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-06-03 12:56:10 +01:00
Shaitan and Claude Opus 4.7
b8a2f925ee
fix(views): enforce per-chart access check in legacy form_data endpoint ( #40497 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-06-03 12:56:03 +01:00
Shaitan and Claude Sonnet 4
77c2bed5f7
fix(dashboards): narrow datasets payload to callers with read access ( #40396 )
...
Co-authored-by: Claude Sonnet 4 <noreply@anthropic.com >
2026-06-03 12:55:57 +01:00
Shaitan and Claude Opus 4.7
56fd991efd
fix(dataset): unify validation for stored and adhoc SQL expressions ( #40392 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-06-03 12:55:50 +01:00
Shaitan and Claude Sonnet 4.6
61b32d1b7d
fix(chart): standardize dashboard validation across chart create/update ( #40336 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-03 12:55:44 +01:00
Shaitan and Claude Sonnet 4.6
3191b0fdcd
fix: apply dashboard access check in related_objects endpoints ( #40333 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-03 12:55:38 +01:00
+2
cf08a5ebf7
feat(docker): add environment-based debugger control ( #40327 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Jay Masiwal <masiwaljay.02@gmail.com >
Co-authored-by: JUST.in DO IT <justin.park@airbnb.com >
Co-authored-by: Copilot <copilot@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Amin Ghadersohi <amin.ghadersohi@gmail.com >
Co-authored-by: chaselynisabella <chaselynisabella@gmail.com >
2026-06-03 12:55:31 +01:00
Shaitan and Claude Sonnet 4.6
f7f50a7977
fix(sqllab): quote CTAS target identifiers and validate tmp_table_name format ( #40245 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-03 12:55:25 +01:00
Shaitan and Claude Sonnet 4.6
725f5ed2a9
fix(api): enforce per-object ownership validation in chart, dataset, and report commands ( #39303 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-03 12:55:15 +01:00
Shaitan and Claude Sonnet 4.6
faa76f6741
fix(embedding): add optional dataset allowlist to guest tokens ( #39302 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-03 12:55:09 +01:00
Shaitan and Claude Opus 4.7
8e4a460cc7
fix(charts): apply DISALLOWED_SQL_FUNCTIONS gate to adhoc expressions ( #40568 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-06-03 12:52:22 +01:00
Evan Rusackas and Claude Code
b9dc9d722e
fix(export): sanitize user-supplied CSV export filename (charts + SQL Lab) ( #40632 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-03 00:14:48 -07:00
Evan Rusackas and Claude Code
fa41769a08
fix(embedded): enforce configured allowed domains for postMessage origin ( #40629 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 22:58:30 -07:00
Evan Rusackas and Claude Code
df21fe6571
chore(mcp): return a generic error from the webdriver pool-stats endpoint ( #40559 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 21:51:32 -07:00
Evan Rusackas and Claude Code
12bef03f4a
fix(jinja): apply consistent escaping to url_param values from request args ( #40633 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 21:23:48 -07:00
Evan Rusackas and Claude Code
0b9764aed5
fix(mcp): honor AUTH_ROLE_ADMIN and warn on permission-less protected tools ( #40659 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 21:20:11 -07:00
Evan Rusackas and Claude Code
ac522ded1c
fix(ssh-tunnel): validate server_address format (SSRF defense-in-depth) ( #40665 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 21:19:24 -07:00
Evan Rusackas and Claude Code
c54990c861
fix(plugin-chart-ag-grid-table): validate filter values/operators in state converter ( #40623 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 18:44:29 -07:00
Evan Rusackas and Claude Opus 4.8
3bbb35e8a3
ci(bashlib): drop the dead bc-based NONCE (perf + reliability) ( #40691 )
...
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com >
2026-06-02 16:49:49 -07:00
a2a369cb5c
fix(charts): sanitize tooltip HTML across nvd3, rose and partition plugins ( #40502 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-06-02 16:45:38 -07:00
Evan Rusackas and Claude Code
9af6746dbe
fix(models): HTML-escape data-controlled values in dashboard_link and Slice.icons ( #40639 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 16:15:11 -07:00
Evan Rusackas and Claude Code
6abee0289b
fix(reports): guard SUCCESS-state report execution against duplicate sends and stuck WORKING state ( #40657 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 15:09:14 -07:00
Evan Rusackas and Claude Code
8c62f533d7
fix(core): restrict allowed CSS properties in sanitized HTML ( #40627 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 14:24:00 -07:00
Oleg Ovcharuk
17d1a45bc9
feat(ydb): switch to native YDB sqlglot dialect ( #40170 )
2026-06-02 17:13:41 -04:00
Shaitan and Claude Opus 4.7
6eaee211aa
fix(sqllab): require dataset match for raw query access ( #40409 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-06-02 21:50:27 +01:00
Evan Rusackas and Claude Code
3e589436fa
fix(reports): sanitize error text in email notification template ( #40641 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 13:40:10 -07:00
Evan Rusackas and Claude Opus 4.8
a9df2c7e5e
fix(mcp): address post-approval review feedback on auth logging PR #40646 ( #40684 )
...
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com >
2026-06-02 13:39:23 -07:00
8508af3201
chore(key_value): prune expired entries from the key-value store ( #40663 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Ville Brofeldt <ville.v.brofeldt@gmail.com >
2026-06-02 12:36:32 -07:00
Evan Rusackas and Claude Opus 4.8
49f3dbba73
fix(dashboard): address post-approval review feedback on #40528 ( #40685 )
...
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com >
2026-06-02 12:16:15 -07:00
Amin Ghadersohi
616c243278
fix(deps): revert joserfc JWT error migration — fastmcp still uses authlib ( #40688 )
2026-06-02 12:02:17 -07:00
Evan Rusackas and Claude Code
00dd31494d
fix: sanitize URL sinks and trim sensitive log fields ( #40546 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 11:52:02 -07:00
Evan Rusackas and Claude Code
b97d3ef520
fix(api,sql): use json_response in Api.query and log dialect fallback ( #40644 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 11:48:46 -07:00
Evan Rusackas and Claude Code
4d2b10d916
chore(excel): strip document metadata from Excel exports ( #40661 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 11:48:36 -07:00
86fa5bb46f
feat(table v2): agGridTableChart add row numer column ( #39284 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-06-02 11:37:26 -07:00
Evan Rusackas and Claude Code
19c2b67d09
fix(websocket): validate last_id query param format ( #40626 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 11:36:33 -07:00
Jean Massucatto
d2d46169bf
fix(explore): tighten popover title-to-tabs spacing to 12px ( #40410 )
2026-06-02 11:30:27 -07:00
Jean Massucatto
1b8099811b
fix(chart-list): sort by changed_on instead of last_saved_at ( #39984 )
2026-06-02 10:58:23 -07:00
Evan Rusackas and Claude Sonnet 4.6
242c27a974
test(presto): 401 Unauthorized must surface as CONNECTION_ACCESS_DENIED_ERROR ( #33554 ) ( #40618 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-02 10:49:58 -07:00
Evan Rusackas and Claude Sonnet 4.6
24422c8311
test(histogram): metric filters require aggregation in buildQuery ( #30330 ) ( #40617 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-02 10:49:43 -07:00
Evan Rusackas and Claude Sonnet 4.6
1632b235ae
fix(sqllab): surface stacktrace in SQL Lab error responses ( #28248 ) ( #40585 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-02 10:41:39 -07:00
Evan Rusackas and Claude Code
093b43c7a5
fix(exports,email,logs): csv formula escaping, subject CRLF stripping, UTC log pruning ( #40645 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 18:32:36 +01:00
Durgaprasad M L and Sam Firke
4996d7c277
fix: avoid warning spam when default spinner SVG is missing ( #40481 )
...
Co-authored-by: Sam Firke <sfirke@users.noreply.github.com >
2026-06-02 10:26:37 -07:00
Evan Rusackas and Claude Code
d26a7aac3d
fix(dashboard): hide Edit button in embedded dashboards ( #40687 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 10:17:10 -07:00
jesperct
699e741c69
fix(time-comparison): shift offset filter when X-axis is adhoc Custom SQL ( #40586 )
2026-06-02 09:52:42 -07:00
Jean Massucatto
fc0245bdb0
fix(charts): show non-filterable columns in metric section for table … ( #39524 )
2026-06-02 18:31:42 +02:00
Jean Massucatto
7275116f4c
fix(world-map): preserve bubbles and exclude only null metrics from color scale ( #39926 )
2026-06-02 18:05:49 +02:00
88abd41c8b
fix(sql-lab): prevent crash when host shell lacks useAppDispatch export ( #40591 )
...
Co-authored-by: yousoph <sophieyou12@gmail.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-02 12:52:01 -03:00
Jean Massucatto
ddb647cd3a
fix(dashboard): clear undo history ( #40569 )
2026-06-02 17:47:27 +02:00
Evan Rusackas and Claude Code
aba6ea536c
fix(dashboard): prevent "undefined undefined" owner names in properties modal ( #40528 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 08:31:37 -07:00
Evan Rusackas and Claude Code
ca8855dc03
fix(mcp): generic auth errors, required token expiry, and safer auth logging ( #40646 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 08:31:05 -07:00
Evan Rusackas and Claude Code
052e567f77
fix: guard dynamic dispatch and bound a regex quantifier ( #40547 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-02 08:09:22 -07:00
Mehmet Salih Yavuz
e2ed989639
fix(reports): skip permalink when dashboard state has no anchor or filters ( #40530 )
2026-06-02 11:37:30 +03:00
Kamil Gabryjelski and Claude Opus 4.7
2abbb64e6b
feat(gsheets): restore public/private sheet selector ( #40466 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-06-02 07:10:21 +02:00
Evan Rusackas and Claude Sonnet 4.6
c6faa50338
fix(cli): encrypt sqlalchemy_uri password on import_datasources ( #31983 ) ( #40584 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-01 22:08:48 -07:00
Evan Rusackas and Claude Code
817a35f445
fix(mcp): deny deactivated user accounts in MCP authentication ( #40631 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-01 22:08:29 -07:00
Amin Ghadersohi
a6d2c95480
chore(deps): migrate MCP service JWT errors from authlib.jose to joserfc ( #40582 )
2026-06-02 00:41:17 -04:00
c29591b3b1
chore(deps): update @babel/runtime requirement from ^7.29.2 to ^7.29.7 in /superset-frontend/packages/superset-ui-core ( #40606 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan <evan@preset.io >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-01 20:11:00 -07:00
365914f1c7
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.59.4 to 8.60.0 in /superset-websocket ( #40595 )
...
Co-authored-by: Evan <evan@preset.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 20:10:34 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41da35e9db
chore(deps-dev): bump typescript-eslint from 8.59.4 to 8.60.0 in /docs ( #40598 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 17:03:52 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
861e668f74
chore(deps-dev): bump @babel/preset-env from 7.29.5 to 7.29.7 in /superset-frontend ( #40601 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 17:03:37 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41059c68bb
chore(deps-dev): bump @babel/plugin-transform-modules-commonjs from 7.28.6 to 7.29.7 in /superset-frontend ( #40603 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 17:03:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
94092d2f72
chore(deps-dev): bump @babel/preset-typescript from 7.28.5 to 7.29.7 in /superset-frontend ( #40604 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 17:03:22 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
986148d924
chore(deps-dev): bump typescript-eslint from 8.59.4 to 8.60.0 in /superset-websocket ( #40596 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:42:12 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f04221a06c
chore(deps-dev): bump webpack from 5.107.1 to 5.107.2 in /docs ( #40597 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:42:05 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
70aa96458a
chore(deps-dev): bump @babel/cli from 7.28.6 to 7.29.7 in /superset-frontend ( #40599 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:41:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8beea84952
chore(deps-dev): bump @typescript-eslint/parser from 8.59.4 to 8.60.0 in /docs ( #40600 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:41:16 -07:00
3f0fbbaac9
chore(deps-dev): update @babel/types requirement from ^7.29.0 to ^7.29.7 in /superset-frontend/plugins/plugin-chart-pivot-table ( #40605 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan <evan@preset.io >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-01 16:40:36 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ce602fc5a8
chore(deps-dev): bump @babel/types from 7.29.0 to 7.29.7 in /superset-frontend ( #40608 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:40:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8731974e5c
chore(deps-dev): bump @babel/preset-react from 7.28.5 to 7.29.7 in /superset-frontend ( #40609 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:40:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a06eb8fc78
chore(deps): bump react-arborist from 3.7.0 to 3.8.0 in /superset-frontend ( #40610 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:39:55 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aa8b474c58
chore(deps-dev): bump @babel/plugin-transform-export-namespace-from from 7.27.1 to 7.29.7 in /superset-frontend ( #40611 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:39:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
efdfefeea2
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.59.4 to 8.60.0 in /superset-frontend ( #40613 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:39:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f77fa3ae39
chore(deps-dev): bump @babel/plugin-transform-runtime from 7.29.0 to 7.29.7 in /superset-frontend ( #40614 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:39:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bffc3fc58f
chore(deps-dev): bump @babel/eslint-parser from 7.28.6 to 7.29.7 in /superset-frontend ( #40615 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-01 16:39:23 -07:00
Evan Rusackas and Claude Code
2b8e31bf68
ci(docs): skip Netlify docs preview on PRs that don't touch docs ( #40590 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-01 19:06:57 -04:00
Ville Brofeldt
74d1c83ec5
ci: preserve PR translation updates during regression checks ( #40581 )
2026-06-01 15:54:20 -07:00
1523d797ca
chore(deps-dev): bump pyinstrument from 4.4.0 to 5.1.2 ( #40377 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Evan <evan@preset.io >
2026-06-01 13:34:12 -07:00
Amin Ghadersohi
97be689b5c
fix(daos): lazy-import SoftDeleteMixin to fix pytest collection error ( #40573 )
2026-06-01 15:09:43 -04:00
dab628c13a
fix(i18n): auto-add ASF license header in backfill_po.py ( #40395 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-01 11:53:35 -07:00
e1bc8e7ae8
chore(deps): bump uuid, qs, js-yaml, and @cypress/request in frontend lockfiles ( #40561 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-06-01 11:43:24 -07:00
Amin Ghadersohi and Richard Fogaça
5312d0adf8
feat(mcp): add list_reports and get_report_info tools ( #40348 )
...
Co-authored-by: Richard Fogaça <richardfogaca@gmail.com >
2026-06-01 14:23:53 -04:00
041ecbc248
fix(embedded): resolve guest user permissions in user_view_menu_names ( #39197 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-06-01 10:30:05 -07:00
Joe Li and Claude Opus 4.7
a33fcb0edd
feat: add embedded dashboard E2E tests to Playwright CI ( #39300 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-06-01 09:42:08 -07:00
Jean Massucatto
316dd3db22
fix(dataset): sort by data type when clicking Datatype column header ( #40411 )
2026-06-01 09:32:33 -07:00
jesperct
d52e28c564
fix(dashboard): preserve user selection when Dynamic Group By overlaps base ( #40031 )
2026-06-01 09:24:45 -07:00
jesperct
a2eda11a81
fix(dataset): validate catalog against allow_multi_catalog on import ( #40376 )
2026-06-01 09:24:28 -07:00
Shaitan and Claude Sonnet 4.6
63249c8c97
fix(chart): add regression coverage for UpdateChartCommand ownership ( #39997 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-01 09:15:38 -07:00
Ville Brofeldt
acc80242f0
chore: fix translations ( #40564 )
2026-05-31 21:43:55 -07:00
Ville Brofeldt
a621520387
fix(ci): repair Python version extraction in uv-pip-compile.sh ( #40565 )
2026-06-01 00:30:07 +07:00
Hugh A. Miles II and Claude Opus 4.7
9a79588d35
feat(dashboard): add Rison-encoded URL filter support ( #39795 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-31 08:06:09 -04:00
Evan Rusackas and Claude Code
7e8b8e25a5
chore(ci): resolve remaining GitHub Actions static-analysis findings ( #40556 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-31 17:55:26 +07:00
Evan Rusackas and Claude Code
ab5ea1f7d3
chore(deps): force d3-color 3.1.0 in docs ( #40541 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-31 00:33:05 -07:00
Evan Rusackas and Claude Code
a340293fef
chore(deps): bump idna, Authlib, fontTools, python-ldap, virtualenv ( #40560 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-31 11:08:27 +07:00
Evan Rusackas and Claude Code
469979714f
chore(deps): force serialize-javascript 7.0.5 in docs ( #40540 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-31 10:54:45 +07:00
585745695c
fix(chart): load viz_type from request params when creating chart via API ( #40536 )
...
Co-authored-by: hdahme <harrison.dahme@gmail.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-31 10:44:09 +07:00
Evan Rusackas and Claude Sonnet 4.6
c7bbfff475
fix(ci): gate welcome message on first-time contributor association ( #40543 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-31 10:39:38 +07:00
Shaitan and Claude Opus 4.7
8e47eb1cc1
docs(security): explicit security model, role/capability matrix, AGENTS.md linkage ( #40503 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-30 13:27:00 -07:00
Shaitan and Claude Opus 4.7
afc4f3c9b3
fix(database): extend URI blocklist to cover duckdb dialect ( #40402 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-30 13:26:38 -07:00
35125d8521
chore(deps-dev): bump syntaqlite from 0.1.0 to 0.5.9 ( #40548 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan <evan@preset.io >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-30 13:24:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ab66f0066a
chore(deps-dev): update sqlalchemy-cratedb requirement from <1,>=0.40.1 to >=0.41.0,<1 ( #40549 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-30 13:24:21 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dfa4dbb96c
chore(deps-dev): update denodo-sqlalchemy requirement from <2.1.0,>=1.0.6 to >=2.0.5,<2.1.0 ( #40550 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-30 13:24:00 -07:00
f10a296ed0
chore(deps): bump nh3 from 0.2.21 to 0.3.5 ( #40551 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan <evan@preset.io >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-30 13:23:28 -07:00
f17e4de9cd
fix(superset-frontend): color formats big numbers when value is 0 ( #28038 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Joe Li <joe@preset.io >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-30 10:30:22 -07:00
Amin Ghadersohi
87be424f9c
feat(mcp): add list and get tools for row level security and plugins ( #40347 )
2026-05-30 10:41:12 -04:00
Kasia
4d95a8d034
feat(listview): compact filter pills with popover for CRUD views ( #40169 )
2026-05-30 10:30:40 +02:00
Đỗ Trọng Hải and Evan Rusackas
2d6e68b5f2
fix(ci): remove deprecated ephemeral env workflows + resolve fixable GHA-related security issues ( #40121 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-30 14:09:46 +07:00
Evan Rusackas and Claude Code
2e7bec3646
chore(ci): harden GitHub Actions workflows per static analysis ( #40545 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-30 13:13:43 +07:00
Evan Rusackas and Claude Code
f4787a4f25
chore(deps): bump ws to 8.20.1 in docs ( #40538 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-30 13:08:13 +07:00
Evan Rusackas and Claude Code
fa4e571db5
chore(deps): force uuid 11.1.1 in docs ( #40542 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-30 13:04:31 +07:00
Evan Rusackas and Claude Code
838ee27c29
chore(deps): bump protobuf to 5.29.6 and google-cloud-bigquery-storage to 2.26.0 ( #40537 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-30 11:49:15 +07:00
7f54b0b13d
test(database): regression test for sqla engine creation ( #27897 ) ( #40237 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-29 21:47:49 -07:00
Evan Rusackas and Claude Code
f165c3fa78
fix(ci): grant security-events write to GHA validator workflow ( #40539 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-29 21:46:54 -07:00
Evan Rusackas and Claude Code
8c6271e9ff
chore(deps): bump urllib3, Mako, and python-multipart for high-severity CVEs ( #40534 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-30 11:39:33 +07:00
Evan Rusackas and Claude Code
44a8d9d469
chore(deps): pin lodash, lodash-es, and yaml in docs to patched releases ( #40535 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-29 21:26:39 -07:00
Amin Ghadersohi
d350792d43
feat(mcp): add list and get tools for CSS templates and themes ( #40343 )
2026-05-30 00:20:48 -04:00
c9136af8b6
fix(ci): trigger python dep check when pyproject.toml changes ( #39792 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-29 21:13:56 -07:00
David Kopelent and Evan Rusackas
f0838353a5
feat(i18n): add Czech (cs) locale support for dates ( #40241 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-29 21:13:52 -07:00
16b56873b0
fix(ci): restrict workflow_run jobs to trusted origins and add zizmor audit ( #40533 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-30 11:11:40 +07:00
Amin Ghadersohi and Claude Sonnet 4.6
62b4ee3d9e
feat(mcp): add list and get tools for users and roles ( #40345 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-29 23:46:30 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43c3c06035
chore(deps): bump vm2 from 3.11.3 to 3.11.5 in /superset-frontend ( #40529 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 20:25:32 -07:00
Amin Ghadersohi
40de44f6de
feat(mcp): add list and get tools for action log and tasks ( #40344 )
2026-05-29 23:16:10 -04:00
Đỗ Trọng Hải
b8ea4448d6
feat(ci): perform static security analysis for GHA workflows ( #40510 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-05-29 20:15:14 -07:00
Amin Ghadersohi and Claude Sonnet 4.6
8d8eeb3505
feat(mcp): add list_tags and get_tag_info MCP tools ( #40349 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-29 22:16:59 -04:00
Amin Ghadersohi and Claude Sonnet 4.6
a69bbcb044
feat(mcp): add list and get tools for saved queries and query history ( #40346 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-29 22:16:11 -04:00
Amin Ghadersohi
f614863ed7
feat(mcp): add list and get tools for annotation layers and annotations ( #40342 )
2026-05-29 22:14:28 -04:00
53e2793bc3
fix: coerce out-of-bounds nanosecond timestamps to NaT instead of raising ( #40127 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Matt Fitzgerald <matt.fitzgerald@preset.io >
2026-05-29 14:32:33 -07:00
e73d2d0bf6
chore(deps): bump tmp from 0.2.4 to 0.2.7 in /superset-frontend/cypress-base ( #40476 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-29 13:43:14 -07:00
ae5823fb9c
chore(deps-dev): bump tmp from 0.2.5 to 0.2.7 in /superset-frontend ( #40480 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-29 13:42:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
63e3a18e8f
chore(deps): bump baseline-browser-mapping from 2.10.31 to 2.10.32 in /docs ( #40484 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 13:42:32 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
661ff31c6d
chore(deps): bump yeoman-generator from 8.1.2 to 8.2.2 in /superset-frontend ( #40485 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 13:42:19 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ead21d9789
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #40486 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 13:42:04 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c3bda6baea
chore(deps): bump fs-extra from 11.3.2 to 11.3.5 in /superset-frontend ( #40487 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 13:41:50 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
61cb0aeae7
chore(deps): bump @swc/core from 1.15.33 to 1.15.40 in /docs ( #40515 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 13:41:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cf9ee99b5a
chore(deps-dev): bump eslint-plugin-react-you-might-not-need-an-effect from 0.10.1 to 0.10.2 in /superset-frontend ( #40516 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 13:41:22 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e1948c87c6
chore(deps-dev): bump webpack-sources from 3.4.1 to 3.5.0 in /superset-frontend ( #40517 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 13:41:08 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
63ae80ab62
chore(deps-dev): bump baseline-browser-mapping from 2.10.31 to 2.10.32 in /superset-frontend ( #40518 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 13:40:53 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8f88bbcc79
chore(deps-dev): bump @swc/core from 1.15.33 to 1.15.40 in /superset-frontend ( #40519 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 13:40:39 -07:00
b2320820b4
feat(core): SoftDeleteMixin and restore infrastructure ( #39977 )
...
Co-authored-by: Mike Bridge <michael.bridge@ext.preset.io >
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-29 13:08:10 -07:00
Mehmet Salih Yavuz
8853ab5c75
feat(mcp): add get_dashboard_layout companion tool ( #40328 )
2026-05-29 14:31:16 +03:00
Evan Rusackas and Claude Code
b0da0cf202
chore(ci): update GHA actions to Node.js 24-compatible versions ( #40477 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-29 11:12:41 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96b96ad7d4
chore(deps): bump ws from 8.20.1 to 8.21.0 in /superset-websocket ( #40483 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-29 11:10:18 +07:00
Shrey Shekhar
f7e1f96894
fix(i18n): Wrapped default Chat Error message in t() to support translation ( #40504 )
2026-05-29 11:04:15 +07:00
Nishita Matlani and Đỗ Trọng Hải
ec09cec6bd
fix(ci): correct first-interaction inputs in welcome workflow ( #40508 )
...
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-29 10:53:38 +07:00
Shaitan and Claude Sonnet 4.6
f663f47628
fix(embedding): require non-default JWT secret when embedded dashboards are enabled ( #39999 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-28 14:26:40 -07:00
Abdul Rehman and Đỗ Trọng Hải
8a0026b173
fix(groups): display user full name in role edit user dropdown ( #39942 )
...
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-28 14:25:45 -07:00
Elizabeth Thompson and Claude Sonnet 4.6
f037449b75
fix(roles): resolve HTTP 429 and 414 errors on role management page ( #39465 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-28 13:34:54 -07:00
Gabriel Torres Ruiz
e68251fa70
feat(mcp): support custom SQL metrics in generate_chart and update_chart ( #40448 )
2026-05-28 14:52:43 -03:00
Amin Ghadersohi and Claude Sonnet 4.6
0dc58d1042
feat(mcp): browser hello page with working middleware and config-driven content ( #40471 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-28 11:47:38 -04:00
jesperct
c73106b7a2
fix(chart-echarts): drop white textBorder from Funnel segment labels ( #40468 )
2026-05-27 23:59:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9441240e5c
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #40436 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-27 15:28:56 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
08164e33bb
chore(deps): bump d3-cloud from 1.2.8 to 1.2.9 in /superset-frontend ( #40437 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-27 15:28:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
894058fe3d
chore(deps): bump fs-extra from 11.3.2 to 11.3.5 in /superset-frontend ( #40438 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-27 15:28:24 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6bd1b46216
chore(deps): bump github/codeql-action from 4.35.5 to 4.36.0 ( #40458 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-27 15:28:06 -07:00
Deva
ef4514f5ab
fix(treemap): remove gaps between chart nodes ( #40181 )
2026-05-27 22:35:06 +03:00
Amin Ghadersohi
e041f25385
fix(mcp): return error when target_tab not found in add_chart_to_existing_dashboard ( #40124 )
2026-05-27 14:29:43 -04:00
d744f5715c
fix(dashboard-export): include and re-attach roles in import/export ( #21000 ) ( #40136 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: SBIN2010 <Sbin2010@mail.ru >
2026-05-27 10:49:07 -07:00
Amin Ghadersohi
fb60662353
chore(mcp): revert browser-friendly hello page for GET /mcp from browsers ( #40467 )
2026-05-27 11:43:01 -04:00
Onur Taşhan and Claude Sonnet 4.6
207a7bf7f9
fix: preserve dashboard certification when saving layout changes ( #40193 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-27 10:03:43 -04:00
Amin Ghadersohi and Claude Sonnet 4.6
09a94fa26b
feat(mcp): return browser-friendly hello page for GET /mcp from browsers ( #40309 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-26 18:52:37 -07:00
Mike Bridge and Mike Bridge
7e088792b9
test(model): roll back uncommitted ds_col mutations in timestamp-expression tests ( #40451 )
...
Co-authored-by: Mike Bridge <michael.bridge@ext.preset.io >
2026-05-26 21:17:08 -03:00
Maxime Beauchemin and Amin Ghadersohi
b6f545e61e
feat(mcp): resolve call_tool proxy name and capture error_type in logging ( #38915 )
...
Co-authored-by: Amin Ghadersohi <amin.ghadersohi@gmail.com >
2026-05-26 14:37:37 -04:00
Amin Ghadersohi
952a6f3a23
fix(mcp): prevent encoding error on tools/list when middleware raises ( #40446 )
2026-05-26 12:50:31 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8b551d3f74
chore(deps-dev): bump duckdb from 1.4.2 to 1.5.2 ( #40381 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-25 22:56:50 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
709ef9b615
chore(deps): bump d3-cloud from 1.2.8 to 1.2.9 in /superset-frontend ( #40321 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-25 19:08:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e9d46d843f
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #40415 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-25 19:07:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9cc2deb903
chore(deps): update zod requirement from ^4.4.1 to ^4.4.3 in /superset-frontend/plugins/plugin-chart-echarts ( #40416 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-25 19:07:27 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
03d25277ba
chore(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1 ( #40417 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-25 19:07:14 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bbe2f207d2
chore(deps): bump fs-extra from 11.3.2 to 11.3.5 in /superset-frontend ( #40418 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-25 19:07:00 -07:00
c381677dfd
chore(deps): bump click from 8.2.1 to 8.4.0 ( #40312 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-25 18:55:38 -07:00
09572cd5ef
chore(deps): bump tabulate from 0.9.0 to 0.10.0 ( #40315 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Evan <evan@preset.io >
2026-05-25 18:55:24 -07:00
Alexandru Soare
33585b0480
feat(mcp): make form_data_key optional in update_chart_preview ( #39680 )
2026-05-25 15:09:36 +03:00
Alexandru Soare
b64561f3a3
chore(mcp): Simplify chart preview response ( #40020 )
2026-05-25 13:16:27 +03:00
xavier-GitHub76
fe484f6bb2
fix(UserListModal): Success notification mentions user and not group ( #40284 )
2026-05-25 00:03:14 +03:00
8caa74354f
chore(deps): bump markdown from 3.8.1 to 3.10.2 ( #40389 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-23 23:18:33 -07:00
9c90a6854c
ci(translations): hard-block translation regressions in CI ( #39443 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-23 16:30:14 -07:00
2fef4e41f2
feat(i18n): add Finnish (fi) translations (AI-generated, needs review) ( #40390 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-23 16:29:44 -07:00
Jean Massucatto
965ec47296
fix(explore): hide value input for unary filter operators ( #39924 )
2026-05-23 11:43:49 -07:00
b21450681d
feat(i18n): add Thai (th) translations (AI-generated, needs review) ( #40391 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-23 11:35:19 -07:00
Torsten Stöter
5003ee1499
docs: remove out-of-place phrase ( #40226 )
2026-05-23 13:42:52 +07:00
Abdul Rehman and Đỗ Trọng Hải
816794b198
fix(frontend): handle null/undefined path in ensureAppRoot ( #39940 )
...
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-23 13:22:27 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
841871f1e7
chore(deps): bump qs from 6.14.2 to 6.15.2 in /superset-websocket/utils/client-ws-app ( #40382 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-23 12:00:20 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55203bbc74
chore(deps): bump qs from 6.14.2 to 6.15.2 in /docs ( #40383 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-23 11:55:04 +07:00
2fa3bbd91c
chore(ci): limit /app/prefix matrix variant to master merges ( #40385 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-22 21:11:21 -07:00
168b49bf34
chore(cypress): remove dead _skip spec files and skipped inline tests ( #40384 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-22 21:11:13 -07:00
838ac8f553
fix(ci): stop cancelling Hold Label Check runs ( #40380 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-22 21:10:23 -07:00
Evan Rusackas and Claude Code
42668cf634
ci(docker): pin QEMU binfmt image to stabilize arm64 builds ( #40235 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-22 21:09:54 -07:00
Evan Rusackas and Claude Code
8d985d223b
ci(e2e): run backend under gunicorn instead of flask dev server ( #40234 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-22 21:09:14 -07:00
e57387098b
fix(bigquery): limit result set size to prevent browser memory crashes ( #38588 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: ethan-l-geotab <ethanliong@geotab.com >
2026-05-22 21:07:45 -07:00
af6ac4d09c
feat(i18n): AI-assisted translation backfill tooling + Spanish translations ( #39448 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
Co-authored-by: Claude <claude@anthropic.com >
2026-05-22 21:07:27 -07:00
yousoph and Claude Sonnet 4.6
f8e13770fc
fix(dashboard): add top padding to "Create new chart" button in builder pane ( #40033 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-22 17:37:04 -07:00
Miha Rejec and Miha Rejec
5cdd542ae5
fix(i18n): translate DateFilter tooltip for time range values ( #40286 )
...
Co-authored-by: Miha Rejec <mihar@comland.si >
2026-05-23 00:22:31 +03:00
e40648dfcb
chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 in /superset-websocket ( #39425 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 11:39:07 -07:00
c728b4a11f
chore(deps): bump sqlglot from 28.10.0 to 30.8.0 ( #40186 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Claude <claude@anthropic.com >
2026-05-22 11:35:30 -07:00
0febe32dc9
chore(deps): bump geostyler from 18.5.1 to 18.6.0 in /superset-frontend ( #40323 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-22 11:34:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2a0ebd7055
chore(deps-dev): bump ts-jest from 29.4.10 to 29.4.11 in /superset-websocket ( #40363 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 11:34:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6e23e4541d
chore(deps): bump yeoman-generator from 8.1.2 to 8.2.2 in /superset-frontend ( #40365 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 11:33:58 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5af8fe77fa
chore(deps): bump zod from 4.4.1 to 4.4.3 in /superset-frontend ( #40367 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 11:33:44 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3599c78a03
chore(deps): bump react-arborist from 3.6.1 to 3.7.0 in /superset-frontend ( #40371 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 11:33:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d97b5d6509
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #40372 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 11:33:12 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
869ab37f59
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #40366 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 11:28:14 -07:00
Joe Li and Claude Sonnet 4.6
3b4892c48c
fix(select): replace cached options with search results in AsyncSelect ( #40039 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-22 11:25:03 -07:00
Đỗ Trọng Hải and Copilot
91d96419fe
feat(sec): delays version-bumping PR to avoid prematurely usage of compromised packages ( #39783 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Copilot <copilot@github.com >
2026-05-22 11:01:10 -07:00
Ali Gouta and Evan Rusackas
42149f6a78
fix(chart): fix label and description translation on UI and enhance french translations ( #40229 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-22 10:47:55 -07:00
c945ef6763
chore(oxlint): enable import/newline-after-import + react/no-unstable-nested-components ( #40319 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-22 10:11:38 -07:00
Beto Dealmeida
21059b54f0
feat(semantic layers): form for SL with a single SV ( #40280 )
2026-05-22 12:04:25 -04:00
Mehmet Salih Yavuz
8ab4695ba3
fix(mcp): use name URL param so AI-generated SQL Lab titles render ( #40288 )
2026-05-22 17:35:08 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b0d26196fc
chore(deps-dev): bump @swc/plugin-emotion from 14.9.0 to 14.10.0 in /superset-frontend ( #40368 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 21:31:01 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
df8222ffcd
chore(deps-dev): bump ts-jest from 29.4.10 to 29.4.11 in /superset-frontend ( #40369 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 21:28:40 +07:00
Đỗ Trọng Hải
64f0e88de7
chore(backend/build): upgrade Gunicorn from v22 to v25 ( #38788 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-05-22 21:24:58 +07:00
Đỗ Trọng Hải
f4af6a2caf
fix(docker): add missing service-worker.js into built container image ( #39596 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-05-22 21:23:21 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31087177ab
chore(deps-dev): bump webpack from 5.107.0 to 5.107.1 in /docs ( #40364 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 21:21:22 +07:00
Shaitan
8e98ca6569
docs: expand out-of-scope vulnerability definitions ( #40332 )
2026-05-22 21:20:57 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f7f6c29adf
chore(deps-dev): bump webpack from 5.106.2 to 5.107.1 in /superset-frontend ( #40370 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 21:15:44 +07:00
Miha Rejec and Miha Rejec
a94edfe418
fix(i18n): add Slovenian translation for 'Range type' in DateFilter ( #40287 )
...
Co-authored-by: Miha Rejec <mihar@comland.si >
2026-05-22 09:58:27 -04:00
David Kopelent
5549100601
feat(i18n): add missing Slovak translations ( #40219 )
2026-05-22 09:56:43 -04:00
Alexandru Soare
558ff4452b
fix(preview): fix chart preview bugs ( #40063 )
2026-05-22 13:42:59 +03:00
Amin Ghadersohi and Claude Sonnet 4.6
5966bb1c1e
feat(mcp): add series_limit to generate_chart XY config ( #40307 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-21 20:36:30 -04:00
chaselynisabella
ac035083d7
feat(path): support metric-based color scales & line width by metric ( #39165 )
2026-05-21 19:31:15 -04:00
Amin Ghadersohi and Claude Sonnet 4.6
e25d708197
fix(mcp): hide write tools from users without write permissions ( #40098 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-21 19:11:46 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
48cb3f5885
chore(deps-dev): bump baseline-browser-mapping from 2.10.29 to 2.10.31 in /superset-frontend ( #40320 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-21 13:45:02 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dcef6f8a41
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #40322 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-21 13:44:46 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f09fd63495
chore(deps): bump @googleapis/sheets from 13.0.1 to 13.0.2 in /superset-frontend ( #40324 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-21 13:44:05 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bc26006a43
chore(deps-dev): update sqlalchemy-drill requirement from <2,>=1.1.4 to >=1.1.10,<2 ( #40310 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-21 13:42:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8b483f320e
chore(deps): bump fs-extra from 11.3.2 to 11.3.5 in /superset-frontend ( #40325 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-21 13:41:40 -07:00
Evan Rusackas and Claude Opus 4.5
89c2a47433
fix(TableView): reset pagination when data reduces below current page ( #34562 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-05-21 13:39:05 -07:00
JUST.in DO IT and Copilot
b8b91574e0
fix(view query): Update style for code viewer container ( #39635 )
...
Co-authored-by: Copilot <copilot@github.com >
2026-05-21 13:37:56 -07:00
Jay Masiwal
5526464def
fix(frontend): update safeStringify to surface [Circular] and DRY plugin code ( #39156 )
2026-05-21 13:37:05 -07:00
Evan Rusackas and Claude Code
73f66e4c14
fix(datasets): isolate filter state to fix concurrent /dataset race ( #39685 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-21 11:12:32 -07:00
Elizabeth Thompson
f187a8e1c4
fix(reports): guard null dashboard height in Playwright screenshots ( #40179 )
2026-05-21 09:19:29 -07:00
Mehmet Salih Yavuz
4c3f65ef0b
feat(mcp): make config optional in generate_explore_link ( #39559 )
2026-05-21 18:01:59 +03:00
Mehmet Salih Yavuz and Claude Opus 4.7
53d8e5bdfa
feat(mcp): include applied dashboard filters in get_chart_info ( #39620 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-21 17:48:21 +03:00
Mehmet Salih Yavuz and Claude Opus 4.7
2f95d288dd
fix(mcp): eager-load dataset.metrics to prevent Excel export DetachedInstanceError ( #39483 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-21 16:34:38 +03:00
Beto Dealmeida
2f5fcc21f9
fix(semantic layers): coerce filter types ( #40222 )
2026-05-21 09:25:27 -04:00
Mehmet Salih Yavuz and Claude Opus 4.7
d1d07112aa
feat(mcp): add find_users tool and owner filter columns for listings ( #39679 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-21 15:59:09 +03:00
Alexandru Soare
e3711bec39
fix(recommandation): Fix chart recommandation ( #39886 )
2026-05-21 15:16:16 +03:00
Mehmet Salih Yavuz
ce9cab098f
feat(mcp): chart formatting options across all supported chart types ( #39887 )
2026-05-21 15:00:32 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a183582291
chore(deps): bump markdown-to-jsx from 9.8.0 to 9.8.1 in /superset-frontend ( #40316 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 22:33:08 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3acef94ef6
chore(deps): update zod requirement from ^4.4.1 to ^4.4.3 in /superset-frontend/plugins/plugin-chart-echarts ( #40313 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 22:32:46 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9638eecdb1
chore(deps-dev): bump oxlint from 1.65.0 to 1.66.0 in /superset-frontend ( #40318 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 22:29:45 -07:00
Evan Rusackas and Claude
7e74fc4192
fix(charts): handle PostgreSQL INTERVAL type in bar and pie charts ( #34513 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-05-20 22:26:59 -07:00
Evan Rusackas and Claude Opus 4.7
cdca6f7fdc
fix(sqllab): keep saved-query list working when Jinja dataset(id) references a deleted dataset ( #39703 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-20 21:19:19 -07:00
b1ca8cac6b
fix(tests): fix flaky FileHandler test by awaiting LaunchQueue consumer in afterEach ( #39508 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: sadpandajoe <jcli38@gmail.com >
2026-05-20 19:31:01 -07:00
Evan Rusackas and Claude Code
2cd5efa627
ci(deps): bump lower bound on pip dependabot PRs ( #40308 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-21 08:53:57 +07:00
a273fe4d62
fix(list-view): preserve user name in filter pill after navigation ( #39505 )
...
Co-authored-by: Joe Li <joe@preset.io >
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-20 16:54:49 -07:00
d203f0de33
chore(sql-lab): finish SqlLab typed-dispatch migration for SaveDatasetModal ( #40040 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Claude <claude@anthropic.com >
2026-05-20 16:04:38 -07:00
a75f9b67b2
chore(superset-ui-switchboard): forward-compat fixes for TypeScript 6.0 (Phase E) ( #40028 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-20 15:37:52 -07:00
Evan Rusackas and Claude Code
3f0858e35d
chore(sql-lab): migrate useDispatch to useAppDispatch ( #40037 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-20 15:36:27 -07:00
Beto Dealmeida
68c145adc3
feat(semantic layers): add metadata on additive metrics ( #40279 )
2026-05-20 18:29:28 -04:00
4a9aecda4a
fix(dashboard-import): remap chartsInScope on import ( #26338 ) ( #40140 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Claude <claude@anthropic.com >
2026-05-20 13:41:14 -07:00
Evan Rusackas and Claude Code
46b2d7d7a9
test(dashboard-import): pin native filter scope rootPath preservation ( #19944 ) ( #40135 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-20 12:25:34 -07:00
Evan Rusackas and Claude Code
f8600471fa
test(datasets): regression test for Jinja not rendered on sync columns ( #25839 ) ( #40224 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-20 11:46:36 -07:00
Evan Rusackas and Claude Code
b23c65e04f
test(charts): regression for last-modified sort order ( #27500 ) ( #40231 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-20 11:43:19 -07:00
Evan Rusackas and Claude Code
aa8255c55c
test(reports): regression for alerts CSV missing chart time filters ( #25538 ) ( #40232 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-20 11:42:52 -07:00
Evan Rusackas and Claude Code
10b7bfc8c1
test(helpers): regression for humanize locale activation ( #28331 ) ( #40233 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-20 11:42:17 -07:00
Evan Rusackas and Claude
89cab1860e
chore(codeowners): add @rusackas as translations maintainer ( #40295 )
...
Co-authored-by: Claude <claude@anthropic.com >
2026-05-20 11:41:58 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b7585122c8
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.59.3 to 8.59.4 in /superset-websocket ( #40250 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 10:45:00 -07:00
f2d80a183e
chore(deps): bump content-disposition from 1.1.0 to 2.0.0 in /superset-frontend ( #40109 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-20 10:41:34 -07:00
Shaitan and Claude Sonnet 4.6
69adecd6a3
fix(reports): enforce server-side recipient on chart/dashboard report subscriptions ( #38847 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-20 10:36:42 -07:00
fbffae0444
fix(dataset-editor): drop null warning_markdown from extra JSON serialisation ( #39706 )
...
Co-authored-by: Mike Bridge <michael.bridge@ext.preset.io >
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-20 10:34:03 -07:00
6ce7c2e8de
chore(deps-dev): bump react-resizable and @types/react-resizable in /superset-frontend ( #40110 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-20 10:32:38 -07:00
SkinnyPigeon
105820f1f4
docs(reports): playwright setup clarification ( #40168 )
2026-05-20 10:32:02 -07:00
Evan Rusackas and Claude Code
92b1b0a219
ci(docs): soft-fail badge localization on transient fetch errors ( #40236 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-20 10:21:58 -07:00
Evan Rusackas and Claude Code
c39a47cbac
test(sql-parser): pin WITH+UNION as non-mutating across dialects ( #25659 ) ( #40138 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-20 10:08:21 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dacda71f77
chore(deps-dev): bump typescript-eslint from 8.59.3 to 8.59.4 in /superset-websocket ( #40251 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 09:57:53 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
12a21c8933
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.59.3 to 8.59.4 in /superset-frontend ( #40256 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 09:57:01 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
13fa3810a8
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #40262 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 09:56:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3356f4d3e1
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #40265 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 09:56:17 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4a17c49d74
chore(deps): bump zod from 4.4.1 to 4.4.3 in /superset-frontend ( #40272 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 09:55:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ea1ce7140c
chore(deps-dev): bump webpack from 5.106.2 to 5.107.0 in /docs ( #40291 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 22:35:32 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
038414ea5c
chore(deps-dev): bump ts-jest from 29.4.9 to 29.4.10 in /superset-websocket ( #40290 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-20 22:34:25 +07:00
jesperct
5bb54cc96b
fix(echarts): preserve dataZoom range across setOption(notMerge) ( #40173 )
2026-05-20 17:33:29 +02:00
Alexandru Soare
fb276b08dd
fix(mcp): Skip misleading trend analysis for categorical ASCII charts ( #39761 )
2026-05-20 18:04:21 +03:00
Alexandru Soare
6e8b3bf976
fix(mcp): raise right error ( #39964 )
2026-05-20 14:32:45 +03:00
Alexandru Soare
55024e8f4d
feat(mcp): Add mcp_call_id to tool responses for server log correlation ( #39776 )
2026-05-20 14:30:22 +03:00
Alexandru Soare
b98bd2a07a
fix(mcp): Block destructive DDL (DROP, TRUNCATE, ALTER) in execute_sql ( #39621 )
2026-05-20 14:29:15 +03:00
Alexandru Soare
0a3a35018c
fix(mcp): changed_on_humanized null in write tool responses (generate_dashboard, generate_chart) ( #39488 )
2026-05-20 14:08:51 +03:00
Jean Massucatto
e6179036ec
fix(sqllab): handle scientific notation in big number JSON responses ( #39994 )
2026-05-20 07:39:47 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
81b4d580db
chore(deps-dev): bump @types/node from 25.8.0 to 25.9.1 in /superset-websocket ( #40249 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:54:36 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9acfac1523
chore(deps-dev): bump @typescript-eslint/parser from 8.59.3 to 8.59.4 in /superset-websocket ( #40252 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:53:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aa9af6c307
chore(deps-dev): bump typescript-eslint from 8.59.3 to 8.59.4 in /docs ( #40254 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:52:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fbb3056508
chore(deps): bump baseline-browser-mapping from 2.10.30 to 2.10.31 in /docs ( #40255 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:51:56 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ffbce27c9b
chore(deps): bump codecov/codecov-action from 6.0.0 to 6.0.1 ( #40269 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:51:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fe8b218a5f
chore(deps): bump mapbox-gl from 3.23.1 to 3.24.0 in /superset-frontend ( #40258 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:50:31 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f5fe9bfa26
chore(deps-dev): bump ts-jest from 29.4.9 to 29.4.10 in /superset-frontend ( #40260 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:50:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7f1c47521e
chore(deps-dev): bump @typescript-eslint/parser from 8.59.3 to 8.59.4 in /superset-frontend ( #40263 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:50:03 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0fffa74bc6
chore(deps-dev): bump tsx from 4.22.0 to 4.22.3 in /superset-frontend ( #40267 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:49:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
738ebf9cc6
chore(deps-dev): bump @types/node from 25.8.0 to 25.9.1 in /superset-frontend ( #40268 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 21:49:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
98dff2e170
chore(deps): bump yeoman-generator from 8.1.2 to 8.2.2 in /superset-frontend ( #40271 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 20:03:44 -07:00
Evan Rusackas and Claude Code
b5ad4a7a07
test(sql-parser): pin TimescaleDB hyperfunctions parse on postgresql ( #32028 ) ( #40142 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-19 19:53:33 -07:00
Evan Rusackas and Claude Code
1230b9091b
docs: hide Component Playground top-level nav item ( #40247 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-19 09:32:53 -07:00
madhushreeag and madhushree agarwal
852d0182b5
fix(roles): prevent 404 and silent user removal on large role edits ( #40178 )
...
Co-authored-by: madhushree agarwal <madhushree_agarwal@apple.com >
2026-05-19 09:13:43 -07:00
ac5e8f1308
chore(deps): bump swagger-ui-react from 5.32.5 to 5.32.6 in /docs ( #40056 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-18 21:51:35 -07:00
f98edc351e
chore(deps): coordinated bump jest 30.3→30.4 + jest-environment-jsdom 29→30 ( #40206 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-19 11:35:19 +07:00
4ceefb7e40
chore(deps): bump fs-extra from 11.3.2 to 11.3.5 in /superset-frontend ( #39936 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-18 20:38:57 -07:00
1b9f06c840
chore(deps-dev): bump eslint-plugin-react-you-might-not-need-an-effect from 0.10.0 to 0.10.1 in /superset-frontend ( #39902 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-18 16:28:05 -07:00
Evan Rusackas and Claude Code
9bfa0642a1
test(sql-parser): pin quoted identifiers with spaces are not subqueries ( #32541 , #32684 ) ( #40143 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-18 14:21:59 -07:00
Beto Dealmeida
e874e5cbaf
fix: OAuth2 trigger ( #40097 )
2026-05-18 17:00:06 -04:00
ef0efb7493
fix(mcp): exclude self-referencing filter columns from get_schema output ( #39826 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Amin Ghadersohi <amin.ghadersohi@gmail.com >
2026-05-18 13:51:25 -07:00
alex and Claude Opus 4.7
0e46d21205
fix(deckgl): emit usable cross-filter values from polygon and geojson clicks ( #39906 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-18 22:07:05 +02:00
Evan Rusackas and Claude Code
6fa0b48752
docs: cut 6.1.0 versions for user_docs, admin_docs, developer_docs, components ( #40126 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-18 12:59:39 -07:00
43231d56df
chore(deps): update dompurify requirement from ^3.4.3 to ^3.4.5 in /superset-frontend/plugins/legacy-preset-chart-nvd3 ( #40213 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-18 12:03:03 -07:00
9d8293f815
chore(deps): update reselect requirement from ^5.1.1 to ^5.2.0 in /superset-frontend/packages/superset-ui-core ( #40214 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-18 12:02:52 -07:00
b7f125e48d
chore(deps): update dompurify requirement from ^3.4.2 to ^3.4.5 in /superset-frontend/packages/superset-ui-core ( #40216 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-18 12:02:39 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
522b6a2296
chore(deps): bump webpack-dev-server from 5.2.2 to 5.2.4 in /docs ( #40227 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-18 12:01:08 -07:00
dependabot[bot] and Claude
00d3a7dd1e
chore(deps-dev): bump oxlint from 1.63.0 to 1.64.0 in /superset-frontend ( #40160 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: Claude <claude@anthropic.com >
2026-05-18 10:28:13 -07:00
jesperct
5393fdfabf
fix(echarts): suppress phantom x-axis label at axis edge when no time grain ( #39972 )
2026-05-18 09:52:48 -07:00
Jean Massucatto
054aeb3bae
fix(explore): prevent unnecessary scrollbars during chart rendering ( #39291 )
2026-05-18 09:51:06 -07:00
Richard Fogaca Nienkotter
47bc1a3b4b
fix(deckgl): render all MultiPolygon parts in Polygon chart ( #40100 )
2026-05-18 13:46:58 -03:00
Vitor Avila
d40a5cad5d
fix(OAuth2): Re-query the OAuth2 token to avoid stale reference ( #40071 )
2026-05-18 13:07:54 -03:00
Evan Rusackas and Claude
38546d7a3d
chore(deps): coordinated bump ag-grid-community + ag-grid-react 35.2.1→35.3.0 ( #40205 )
...
Co-authored-by: Claude <claude@anthropic.com >
2026-05-18 22:18:37 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6e5dfa0dd4
chore(deps): bump baseline-browser-mapping from 2.10.29 to 2.10.30 in /docs ( #40211 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-18 22:14:27 +07:00
SkinnyPigeon
70419e9d8f
feat: Allow specific mcp tools to be disabled ( #39835 )
2026-05-18 07:22:02 -07:00
Evan Rusackas and Claude Code
34281f54a6
test(prophet): pin yhat_lower can be negative for negative series ( #21734 ) ( #40141 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-18 07:21:04 -07:00
Evan Rusackas and Claude Code
53d5c41a72
test(security): regression test for session cookie after logout ( #24713 ) ( #40201 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-18 07:20:51 -07:00
Evan Rusackas and Claude Code
453f49ce33
test(api): regression test for Admin empty dashboard/chart list ( #25890 ) ( #40202 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-18 07:20:37 -07:00
b66c104fde
fix(sqllab): execute prequeries on streaming connection to fix PostgreSQL CSV export ( #40194 )
...
Co-authored-by: Matt Fitzgerald <matt.fitzgerald@preset.io >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-18 09:43:06 -04:00
61b77fa35d
chore(deps-dev): bump ip-address from 10.1.0 to 10.2.0 in /superset-frontend ( #40199 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-18 06:29:05 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0da0767780
chore(deps-dev): bump eslint from 10.3.0 to 10.4.0 in /superset-websocket ( #40208 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-18 06:28:43 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e2ff2d5d41
chore(deps): bump reselect from 5.1.1 to 5.2.0 in /docs ( #40209 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-18 06:28:25 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6a6be4c385
chore(deps): bump antd from 6.4.2 to 6.4.3 in /docs ( #40210 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-18 06:28:00 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cf831388d8
chore(deps): bump caniuse-lite from 1.0.30001792 to 1.0.30001793 in /docs ( #40212 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-18 06:27:36 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
684a66aee6
chore(deps): update zod requirement from ^4.4.1 to ^4.4.3 in /superset-frontend/plugins/plugin-chart-echarts ( #40215 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-18 06:27:09 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
80a200820c
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #40217 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-18 06:26:50 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f47300102c
chore(deps): bump github/codeql-action from 4.35.4 to 4.35.5 ( #40218 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-18 06:26:20 -07:00
Alejandro Solares
dd523c1a7b
fix(deps): patch fast-xml-parser CVE-2026-33036 and CVE-2026-33349 ( #40118 )
2026-05-18 08:30:17 +01:00
02a8196a6d
chore(deps): update dompurify requirement from ^3.4.1 to ^3.4.2 in /superset-frontend/packages/superset-ui-core ( #39808 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-17 20:16:45 -07:00
4e13512ed8
chore(deps-dev): update jest requirement from ^30.3.0 to ^30.4.2 in /superset-frontend/plugins/plugin-chart-handlebars ( #40015 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-17 20:16:14 -07:00
268dadbb5b
chore(deps-dev): update jest requirement from ^30.3.0 to ^30.4.2 in /superset-frontend/plugins/plugin-chart-pivot-table ( #40018 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-17 20:15:58 -07:00
427e7e53cd
chore(deps-dev): update jest requirement from ^30.3.0 to ^30.4.2 in /superset-frontend/packages/generator-superset ( #40019 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-17 20:15:44 -07:00
78f54b68ac
chore(deps): update dompurify requirement from ^3.4.1 to ^3.4.3 in /superset-frontend/plugins/legacy-preset-chart-nvd3 ( #40106 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-17 20:15:07 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6c4c3dc71c
chore(deps): bump serialize-javascript and terser-webpack-plugin in /superset-frontend/cypress-base ( #40174 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 20:13:36 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26925af9ed
chore(deps): bump minimatch from 3.1.3 to 3.1.5 in /superset-frontend/cypress-base ( #40198 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 19:59:44 -07:00
fdb62d8f35
chore(deps): bump yeoman-generator from 8.1.2 to 8.2.2 in /superset-frontend ( #40154 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-17 19:59:29 -07:00
Evan Rusackas and Claude Code
3a9c54a672
fix(date_parser): suppress noisy parsedatetime DEBUG logs ( #33365 ) ( #40144 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-17 19:58:08 -07:00
Evan Rusackas and Claude Code
e6755d508d
fix(rls): align view permission name with REST API canonical name ( #33744 ) ( #40145 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-17 19:57:57 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b09ef7a406
chore(deps): bump minimatch from 3.1.2 to 3.1.5 in /superset-embedded-sdk ( #40176 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 10:27:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9eecc5a2a6
chore(deps): bump axios from 1.15.0 to 1.16.1 in /docs ( #40177 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 10:26:44 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d308649a65
chore(deps-dev): bump @types/node from 25.7.0 to 25.8.0 in /superset-frontend ( #40157 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 10:25:08 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dd4e2e2e44
chore(deps-dev): update sqlalchemy-exasol requirement from <3.0,>=2.4.0 to >=2.4.0,<8.0 ( #40182 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 10:24:53 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6165a2531f
chore(deps): bump fast-uri from 3.0.6 to 3.1.2 in /superset-frontend ( #40175 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 10:24:24 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9439d4db09
chore(deps-dev): update clickhouse-connect requirement from <1.0,>=0.13.0 to >=0.13.0,<2.0 ( #40184 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 10:24:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6b425ab559
chore(deps-dev): bump hdbcli from 2.4.162 to 2.28.20 ( #40185 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 10:23:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4ded665495
chore(deps): bump flask-migrate from 3.1.0 to 4.1.0 ( #40187 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 10:23:23 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37638e750d
chore(deps): bump greenlet from 3.1.1 to 3.5.0 ( #40188 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-17 10:23:06 -07:00
Evan Rusackas and Claude Code
8a86ab7319
chore(docs): rename default docs plugin to user_docs for consistent versioned dir naming ( #40171 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-15 22:26:43 -07:00
Elizabeth Thompson and Claude Sonnet 4.6
8d2b655c22
fix(reports): narrow spinner checks to viewport and tighten exception handling ( #39895 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-15 13:35:07 -07:00
Abdul Rehman and Đỗ Trọng Hải
29b94ced71
fix(i18n): correct Czech translation variables for SQL Lab query message ( #40166 )
...
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-15 14:06:25 -04:00
Beto Dealmeida
736a51c13f
fix: OAuth2 exception should be 403 ( #40074 )
2026-05-15 14:53:02 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34c28f7b76
chore(deps): bump zod from 4.4.1 to 4.4.3 in /superset-frontend ( #40155 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:35:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
62c86abcd1
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #40152 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:35:45 -07:00
caa357e0d2
chore(deps): bump @ant-design/icons from 6.2.2 to 6.2.3 in /superset-frontend ( #40112 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-15 10:35:33 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cc21683118
chore(deps): bump fast-xml-builder from 1.1.5 to 1.2.0 in /superset-frontend ( #40103 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:35:21 -07:00
114d88468b
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #39821 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-15 10:35:06 -07:00
48c0bea906
chore(deps): bump d3-cloud from 1.2.8 to 1.2.9 in /superset-frontend ( #39699 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-15 10:34:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a46925d431
chore(deps-dev): bump @types/node from 25.7.0 to 25.8.0 in /superset-websocket ( #40148 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:33:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0df9cc986a
chore(deps): bump immer from 11.1.7 to 11.1.8 in /superset-frontend ( #40158 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:33:23 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ade901ed04
chore(deps): bump react-arborist from 3.5.0 to 3.6.1 in /superset-frontend ( #40159 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 10:33:07 -07:00
Richard Fogaca Nienkotter
1e2d0b5f5b
fix(mcp): defer chart preview command imports ( #40164 )
2026-05-15 12:15:33 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
59b5f69627
chore(deps): bump antd from 6.3.7 to 6.4.2 in /docs ( #40149 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 21:54:22 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c2980c7c42
chore(deps-dev): bump webpack-dev-server from 5.2.3 to 5.2.4 in /superset-frontend ( #40161 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 21:53:22 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
982881ac1c
chore(deps-dev): bump tsx from 4.21.0 to 4.22.0 in /superset-frontend ( #40162 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-15 21:52:50 +07:00
Shaitan and Claude Sonnet 4.6
2e7a2b1f2d
fix: escape SQL identifiers in db engine spec prequeries and metadata queries ( #39840 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-15 09:48:38 -04:00
Michael S. Molina and Claude Sonnet 4.6
a06e6ea19b
fix(extensions): add cache headers and strip Vary: Cookie for extension static assets ( #40120 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-15 09:23:39 -03:00
Shaitan and Claude Sonnet 4.6
ee9eec25f9
fix(dataset): validate datasource access during import ( #39998 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-15 12:06:47 +01:00
Shaitan and Claude Sonnet 4.6
ffa32414ef
fix(query): restrict query cancellation to the query owner ( #39996 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-15 12:05:38 +01:00
Shaitan and Claude Sonnet 4.6
407321e394
fix(database): extend shillelagh URI pattern to cover all driver variants ( #39995 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-15 12:04:34 +01:00
JUST.in DO IT
2b71d964cc
fix(sqllab): missing estimate action button ( #40101 )
2026-05-14 14:43:07 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f02e5b7e83
chore(deps-dev): bump babel-jest from 30.3.0 to 30.4.1 in /superset-frontend ( #40090 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-14 13:52:53 -07:00
5fa9657528
chore(deps): update @ant-design/icons requirement from ^6.2.2 to ^6.2.3 in /superset-frontend/packages/superset-ui-core ( #40092 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: sadpandajoe <jcli38@gmail.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-14 13:52:37 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d853930840
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #40107 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-14 13:52:14 -07:00
4e09889607
test(datasets): regression coverage for #16141 (export with same table name, different schemas) ( #40123 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-14 11:08:23 -07:00
Evan Rusackas and Claude Code
672e9a1477
fix(docs): tighten onBrokenLinks to throw and fix surfaced broken links ( #40102 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-14 11:07:18 -07:00
Richard Fogaca Nienkotter
8fa5a75c70
fix(mcp): apply cached adhoc filters to chart retrieval ( #40099 )
2026-05-14 14:21:54 -03:00
144dae7c43
fix(dashboard): use datasetUuid instead of datasetId in display controls export/import (SC-104655) ( #40008 )
...
Co-authored-by: Matt Fitzgerald <matt.fitzgerald@preset.io >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-14 10:18:57 -07:00
Arpit Jain
62dc237014
chore(ci): add explicit permissions to additional workflows ( #40067 )
2026-05-14 23:24:46 +07:00
Sandesh Devaraju and Amin Ghadersohi
823eb905d3
fix(mcp): JSON-serialize order_by_cols and support sort direction ( #39952 )
...
Co-authored-by: Amin Ghadersohi <amin.ghadersohi@gmail.com >
2026-05-14 11:19:37 -04:00
Alexandru Soare
966e97989b
chore(mcp): Standardize error response shapes across chart tools ( #39905 )
2026-05-14 18:07:31 +03:00
Mehmet Salih Yavuz and Claude Opus 4.7
8b0e63b58c
fix(rls): prevent double-apply when converting physical dataset to virtual ( #39725 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-14 18:05:48 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64dae07675
chore(deps): bump markdown-to-jsx from 9.7.16 to 9.8.0 in /superset-frontend ( #40111 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-14 21:39:48 +07:00
Evan Rusackas and Claude Code
e56883baef
fix(ci): handle schedule event in change_detector and actually trigger all-changed ( #40105 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-14 21:39:07 +07:00
Mehmet Salih Yavuz and Geidō
a62bf2b0bb
fix: chart rendering race condition and homepage connection reset ( #40065 )
...
Co-authored-by: Geidō <60598000+geido@users.noreply.github.com >
2026-05-14 17:10:11 +03:00
01224007da
fix(mixed-timeseries): preserve all-NaN metric columns after pivot when Jinja evaluates to NULL ( #40005 )
...
Co-authored-by: Matt Fitzgerald <matt.fitzgerald@preset.io >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-14 07:46:34 -03:00
Evan Rusackas and Claude Code
d1e9a5df06
chore(docs): clean up version-cutting tooling and finish developer_portal rename ( #39837 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-13 20:14:52 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
48530cb888
chore(deps-dev): bump @babel/register from 7.28.6 to 7.29.3 in /superset-frontend ( #39818 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 19:17:21 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
676979643f
chore(deps-dev): bump @babel/preset-env from 7.29.3 to 7.29.5 in /superset-frontend ( #39934 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 16:11:01 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
21e62d594e
chore(deps-dev): bump wait-on from 9.0.6 to 9.0.10 in /superset-frontend ( #40087 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 16:09:03 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5bad4f55fb
chore(deps-dev): bump @playwright/test from 1.59.1 to 1.60.0 in /superset-frontend ( #40088 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 16:01:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17a5f69339
chore(deps): bump chrono-node from 2.9.0 to 2.9.1 in /superset-frontend ( #39939 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 15:59:36 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d690aa7eb4
chore(deps): bump immer from 11.1.4 to 11.1.7 in /superset-frontend ( #39941 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 15:58:20 -07:00
d6c458abd4
chore(deps-dev): bump oxlint from 1.62.0 to 1.63.0 in /superset-frontend ( #39937 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
2026-05-13 15:57:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c233bf6171
chore(deps-dev): bump baseline-browser-mapping from 2.10.24 to 2.10.29 in /superset-frontend ( #39903 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 15:56:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
992f561ab9
chore(deps): bump mapbox-gl from 3.23.0 to 3.23.1 in /superset-frontend ( #39879 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 15:55:54 -07:00
Joe Li and Claude Opus 4.6
d7fa9301cc
fix(dashboard): restore top-level tab drop target for dashboards with content ( #39423 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-13 15:31:29 -07:00
Elizabeth Thompson and Claude Sonnet 4.6
958d4aa3de
fix(export): fix double app-root prefix in chart/drill-detail export URLs ( #39710 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-13 15:17:13 -07:00
Richard Fogaca Nienkotter
2a1dcb79e3
fix(mcp): expose table chart type labels in chart responses ( #40060 )
2026-05-13 16:38:31 -03:00
Michael S. Molina
817814d4f6
chore: Bump core packages to 0.1.0 ( #40029 )
2026-05-13 16:32:19 -03:00
Jean-Baptiste Braun and Claude Code
1a7a14c357
fix(explore): remove leftover debug console.log in ZoomConfigControl ( #39991 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-13 10:55:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
85c4411041
chore(deps-dev): bump @babel/plugin-transform-modules-systemjs from 7.25.0 to 7.29.4 in /superset-embedded-sdk ( #39983 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 10:10:38 -07:00
Mayank Aggarwal
a50de459ae
fix(dashboard): restore spacing for charts inside Tabs layout ( #38729 )
2026-05-13 09:44:05 -07:00
6216e57490
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #39698 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-13 09:35:42 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cdddb99e9a
chore(deps): bump yeoman-generator from 8.1.2 to 8.2.2 in /superset-frontend ( #39880 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 09:34:42 -07:00
803fed28b8
chore(deps): update react requirement from ^19.2.5 to ^19.2.6 in /superset-frontend/plugins/legacy-plugin-chart-chord ( #39929 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-13 09:34:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8074ae2e38
chore(deps): bump fast-uri from 3.1.0 to 3.1.2 in /superset-frontend/cypress-base ( #39974 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 09:34:11 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
577085eece
chore(deps-dev): bump fast-uri from 3.0.1 to 3.1.2 in /superset-embedded-sdk ( #39978 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 09:33:57 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5d40d8aeac
chore(deps): bump actions/dependency-review-action from 4.9.0 to 5.0.0 ( #40016 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 09:33:14 -07:00
b4cb780e74
chore(deps): update ace-builds requirement from ^1.43.6 to ^1.44.0 in /superset-frontend/packages/superset-ui-core ( #40017 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-13 09:32:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aebc6fbf34
chore(deps-dev): bump @types/node from 25.6.0 to 25.7.0 in /superset-websocket ( #40052 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 09:32:19 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9e749da93c
chore(deps): bump ws from 8.20.0 to 8.20.1 in /superset-websocket ( #40085 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 09:32:05 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2c7e418d7b
chore(deps): bump @ant-design/icons from 6.2.2 to 6.2.3 in /docs ( #40086 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 09:31:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6a1305fe53
chore(deps): update zod requirement from ^4.4.1 to ^4.4.3 in /superset-frontend/plugins/plugin-chart-echarts ( #40091 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-13 09:12:39 -07:00
Amin Ghadersohi
726d83d758
fix(mcp): remove stale created_by_fk filter references from MCP privacy layer ( #39955 )
2026-05-13 11:27:10 -04:00
jesperct and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
6cebba49ca
fix(AlertReportModal): TypeError when pasting text into the Alerts content form search field ( #39298 )
...
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-05-13 17:38:55 +03:00
Luiz Otavio
940779ad5f
feat(event-log): add event logging for embedded Superset ( #40083 )
2026-05-13 09:59:48 -03:00
Richard Fogaca Nienkotter
c59ab8bffd
feat(mcp): add data boundary instruction to harden against prompt injection ( #40080 )
2026-05-13 09:40:44 -03:00
Evan Rusackas and Claude Code
e2a8a88d36
docs: Update documentation link for ENABLE_SUPERSET_META_DB ( #40076 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-12 20:39:39 -07:00
0d9ecb7664
chore(deps-dev): update @types/node requirement from ^25.6.0 to ^25.7.0 in /superset-frontend/packages/superset-ui-core ( #40059 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-12 20:34:10 -07:00
1d220f7172
chore(deps-dev): update fs-extra requirement from ^11.3.4 to ^11.3.5 in /superset-frontend/packages/generator-superset ( #39930 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-12 20:33:47 -07:00
Ville Brofeldt
af4dc3a9aa
fix(re-encrypt): handle non-id PKs and make command idempotent ( #40079 )
2026-05-12 17:59:52 -07:00
Richard Fogaca Nienkotter
fa06989ed7
fix(mcp): return requested update chart previews ( #40077 )
2026-05-12 21:23:49 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4d0cc1d7a6
chore(deps): bump zod from 4.4.1 to 4.4.3 in /superset-frontend ( #39904 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-12 17:23:14 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d8b2c5872b
chore(deps-dev): bump @swc/core from 1.15.32 to 1.15.33 in /superset-frontend ( #39935 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-12 17:22:58 -07:00
Elizabeth Thompson and Claude Sonnet 4.6
86ba63b072
fix(dashboard): prevent duplicate subdirectory prefix when toggling fullscreen ( #39534 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-12 16:51:37 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4c14e16e58
chore(deps): bump @babel/plugin-transform-modules-systemjs from 7.20.11 to 7.29.4 in /superset-frontend/cypress-base ( #39982 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-12 16:25:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fe22e06011
chore(deps): bump mermaid from 11.10.0 to 11.15.0 in /docs ( #40038 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-12 16:25:09 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9160da0d27
chore(deps-dev): bump yeoman-test from 11.3.1 to 11.5.2 in /superset-frontend ( #40058 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-12 16:24:55 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43a89f8710
chore(deps-dev): bump terser-webpack-plugin from 5.5.0 to 5.6.0 in /superset-frontend ( #40061 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-12 16:24:37 -07:00
a77fec68d4
fix(drill-detail): make page-size selector functionally adjustable ( #37975 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-12 13:39:41 -07:00
Abdul Rehman and Claude Opus 4.6
e94465208f
fix(bar-chart): cap bar width so a single data point doesn't stretch across the chart ( #39588 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-12 13:24:46 -07:00
Abdul Rehman and Claude Opus 4.6
f2eee4ef46
fix(frontend): prevent LanguagePicker crash when locale is missing from LANGUAGES config ( #39585 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-12 13:22:36 -07:00
yeaight
7445105735
fix(explore): explain disabled chart overwrite option ( #39796 )
2026-05-12 12:53:59 -07:00
2392c8e624
fix(Select): fix Russian translations for Select ( #35751 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Sam Firke <sfirke@users.noreply.github.com >
2026-05-12 13:48:42 -04:00
Arpit Jain
39ad6b200f
docs(update): fix typos in UPDATING.md ( #40068 )
2026-05-12 23:40:22 +07:00
Igor Khrol and Joe Li
3363b48180
fix(spark): register Spark SQLAlchemy dialect so spark:// URIs resolve to SparkEngineSpec ( #38299 )
...
Co-authored-by: Joe Li <joe@preset.io >
2026-05-12 12:33:17 -04:00
c9fb1bc10f
chore(deps-dev): bump @typescript-eslint/parser from 8.59.2 to 8.59.3 in /superset-frontend ( #40057 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-05-12 22:27:58 +07:00
658907a0a6
fix(gha): use sound condition gating for latest-tag step ( #40035 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-12 22:27:26 +07:00
Đỗ Trọng Hải
4a79896bb2
chore(build): replace replaceable jest-mock-console with native Jest spies ( #38643 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-05-12 21:32:08 +07:00
Đỗ Trọng Hải
b0c5b061c5
fix(sqllab): display horizontal scrollbar in data preview modal ( #39799 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-05-12 21:30:54 +07:00
Kasia
c394405fc1
fix(explore): restore spacing between tabs and content in control popovers ( #40023 )
2026-05-12 14:30:41 +02:00
Kasia
d2ae5fb275
fix(ux): remove CSS-forced uppercase from button labels ( #40049 )
2026-05-12 14:28:39 +02:00
Amin Ghadersohi and Copilot Autofix powered by AI
460992d89b
fix(mcp): improve not-found errors to suggest corresponding list_* tools ( #39919 )
...
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
2026-05-12 02:38:10 -04:00
Amin Ghadersohi
85935b0b88
fix(mcp): handle SSL connection drop during pre-call session teardown ( #39917 )
2026-05-12 02:32:14 -04:00
innovark
fa168fcc8a
fix(Label): use correct color for label component ( #38707 )
2026-05-11 21:40:31 -07:00
Andy and Claude Opus 4.7
a6ad0bf169
fix(re-encrypt-secrets): use db.Model.metadata to discover encrypted … ( #39390 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-05-11 21:16:41 -07:00
Abdul Rehman and Claude Opus 4.6
fed29b3017
fix(deploy): prevent double-prefix of logo URL in subdirectory deployments ( #39472 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-05-11 21:13:26 -07:00
Nitish Agarwal
24d76b4249
fix(sunburst): remove label text outline in dark theme ( #39774 )
2026-05-11 20:24:25 -07:00
5ab8583cd0
chore(gha): pin github/codeql-action to a SHA ( #40043 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-11 20:18:55 -07:00
e66fbc91c2
chore(gha): pass commenter login through env in claude.yml ( #40042 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-11 20:00:27 -07:00
Mafi and Richard Fogaca Nienkotter
187bb416e7
fix(plugin-chart-ag-grid-table): use display text for filter and sort on HTML cells ( #39885 )
...
Co-authored-by: Richard Fogaca Nienkotter <63572350+richardfogaca@users.noreply.github.com >
2026-05-11 20:29:16 -03:00
cfb704dbeb
test(sqllab): stabilize SaveDatasetModal overwrite-flow test helper ( #40036 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-11 15:48:10 -07:00
Evan Rusackas and Claude Code
e77f6ece92
fix(ci): serialize Docs Deployment runs to avoid push races ( #40030 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-11 11:25:31 -07:00
Evan Rusackas and Claude Code
785a08c7d5
chore(frontend): export typed useAppDispatch / useAppSelector hooks ( #40027 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-11 11:01:57 -07:00
Maxime Beauchemin and Claude Opus 4.6
d90d3a2dea
fix(importexport): honor overwrite flag on /api/v1/assets/import ( #39502 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-05-11 10:24:42 -07:00
Maxime Beauchemin and Claude Opus 4.6
6ee4d694bc
fix(sqllab): include template_params when overwriting a dataset ( #39501 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-05-11 10:24:15 -07:00
Evan Rusackas and Claude Sonnet 4.6
006a1800be
chore(lint): convert react-pivottable components to function components ( #39453 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-11 10:19:05 -07:00
Evan Rusackas and Claude Sonnet 4.6
2fe6269c22
chore(lint): convert ChartDataProvider and StatefulChart to function components ( #39456 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-11 09:55:27 -07:00
26ef4b7ed3
fix(sqla): pass catalog and schema to get_sqla_engine in values_for_column ( #38681 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Claude <claude@anthropic.com >
2026-05-11 09:54:48 -07:00
a7aa854968
fix(big-number): guard against null colorPicker in transformProps ( #39110 )
...
Co-authored-by: Amin Ghadersohi <amin.ghadersohi@gmail.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-11 09:54:08 -07:00
Evan Rusackas and Claude Sonnet 4.6
db0c5b32da
chore(lint): convert SuperChart and SuperChartCore to function components ( #39457 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-11 09:51:52 -07:00
Evan Rusackas and Claude Opus 4.7
96ad20318d
chore(superset-core): forward-compat fixes for TypeScript 6.0 - Phase C ( #39537 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-11 09:50:07 -07:00
Evan Rusackas and Claude Code
516bb19e10
feat(frontend): enable React StrictMode at root ( #39893 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-11 09:48:54 -07:00
Evan Rusackas and Claude Code
2cc20d3284
perf(explore): use useDeferredValue for explore menu search and JS editor parse ( #39975 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-11 09:48:07 -07:00
Evan Rusackas and Claude Code
3e3c5c36c3
perf(explore): use useDeferredValue for datasource panel search ( #39970 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-11 09:47:50 -07:00
Evan Rusackas and Claude Code
eed7098093
perf(sql-lab): use useDeferredValue for schema browser search ( #39928 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-05-11 09:47:24 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1d1a0e6fec
chore(deps-dev): update sqlalchemy-firebird requirement from <0.8,>=0.7.0 to >=0.7.0,<2.2 ( #39755 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 09:00:12 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
494c29f5bf
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.59.1 to 8.59.2 in /superset-frontend ( #39878 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:59:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ad7075d2aa
chore(deps): bump fast-uri from 3.0.6 to 3.1.2 in /docs ( #39979 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:59:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3e1cfc6d69
chore(deps): bump @babel/plugin-transform-modules-systemjs from 7.27.1 to 7.29.4 in /docs ( #39981 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:59:04 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fcf3f6c0d5
chore(deps-dev): update pinotdb requirement from <6.0.0,>=5.0.0 to >=5.0.0,<10.0.0 ( #39985 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:58:44 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
14ba666594
chore(deps-dev): update ibm-db-sa requirement from <=0.4.0,>0.3.8 to >0.3.8,<=0.4.4 ( #39986 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:58:14 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1c795418d2
chore(deps-dev): bump pyinstrument from 4.4.0 to 5.1.2 ( #39987 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:57:47 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6271272e60
chore(deps): bump nh3 from 0.2.21 to 0.3.5 ( #39988 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:57:05 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2cf4a2c31f
chore(deps-dev): bump databricks-sql-connector from 4.1.2 to 4.2.6 ( #39989 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:54:57 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2adb6f64eb
chore(deps): bump baseline-browser-mapping from 2.10.27 to 2.10.29 in /docs ( #40013 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:54:43 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5a453fe95d
chore(deps-dev): bump wait-on from 9.0.5 to 9.0.6 in /superset-frontend ( #40014 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-11 08:54:26 -07:00
245fffca79
fix(dashboard): Clear All filters now stages changes until Apply ( #39778 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
Co-authored-by: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com >
2026-05-11 17:15:35 +03:00
Mehmet Salih Yavuz
372b50e19d
fix(dashboard): row limit warning missing for non-table charts ( #39911 )
2026-05-11 17:14:55 +03:00
Oleg Ovcharuk and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
d83b0c5ce3
feat: support creating datasets for schema-less databases ( #39433 )
...
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-05-11 08:30:13 -04:00
Evan Rusackas and Claude Opus 4.7
f81821086a
chore(releasing): fix email parsing in verify_release.py ( #39602 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-09 08:57:33 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f67dd4a8f3
chore(deps): bump geostyler from 18.5.0 to 18.5.1 in /superset-frontend ( #39702 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-08 16:17:31 -07:00
68fa8e2733
fix(viz): flatten MultiIndex columns in Time-Series Table for multiple Group By ( #37869 )
...
Co-authored-by: Claude Opus 4 <noreply@anthropic.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-08 16:11:13 -07:00
a60860c969
fix(table): fall back to datasource columns for conditional formatting when query results are empty ( #39345 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: Joe Li <joe@preset.io >
2026-05-08 16:10:41 -07:00
Maxime Beauchemin
d023fe1703
fix(trino/presto): use equality for boolean filters to support computed columns ( #39500 )
2026-05-08 16:10:27 -07:00
Amin Ghadersohi
547660dcc4
fix(mcp): ASCII chart crashes with NaN when dataset contains null values ( #39916 )
2026-05-08 17:35:15 -04:00
Joe Li and Claude Opus 4.6
e934f2af92
fix(tests): prevent jest hangs caused by MessageChannel-mocked React scheduler ( #39957 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-05-08 14:27:03 -07:00
Amin Ghadersohi
cfb0b6e811
fix(mcp): clarify request wrapper in list_datasets, list_charts, list_dashboards ( #39920 )
2026-05-08 16:01:07 -04:00
Amin Ghadersohi
ff7dc53853
fix(mcp): get_chart_sql drops x_axis on echarts_timeseries_* and only renders one query for mixed_timeseries ( #39865 )
2026-05-08 15:29:28 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dce3317bc9
chore(deps-dev): bump typescript-eslint from 8.59.1 to 8.59.2 in /docs ( #39876 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-08 11:24:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dc22b82d88
chore(deps-dev): bump @typescript-eslint/parser from 8.59.1 to 8.59.2 in /superset-websocket ( #39874 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-08 11:24:22 -07:00
Evan Rusackas and Claude Opus 4.7
0250092378
chore(frontend): TypeScript 6.0 readiness — declaration emit fixes (Phase A) ( #39530 )
...
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-08 10:42:07 -07:00
Beto Dealmeida
4311a15eb2
feat(sqlglot): Vertica dialect ( #39969 )
2026-05-08 14:34:34 -03:00
b899556130
docs: Superset 6.1 documentation catch-up (security, alerts/reports, theming, config) ( #39440 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-08 10:11:09 -07:00
2f82236b29
feat(docs): expand docs:screenshots generator with manifest and tutorial captures ( #39444 )
...
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Superset Dev <dev@superset.apache.org >
2026-05-08 10:02:19 -07:00
5bde86785f
fix(docs): read capability flags from engine specs in database docs generator ( #39449 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-08 09:13:08 -07:00
Mehmet Salih Yavuz
69fbbfd7ce
fix(table): consolidate visual column options under Visual formatting section ( #39856 )
2026-05-08 10:43:38 +03:00
Enzo Martellucci
d3784879c2
fix(embedded-sdk): grant fullscreen and clipboard-write by default ( #39943 )
2026-05-08 09:28:55 +02:00
Vitor Avila
ad5e3170dd
fix: OpenSearch dialect identifier delimiters ( #39953 )
2026-05-07 16:19:27 -03:00
aa710672ed
fix(ui): remove makeUrl() double-prefix bugs under subdirectory deployment ( #39503 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: Vitor Avila <96086495+Vitor-Avila@users.noreply.github.com >
2026-05-07 15:39:38 -03:00
Richard Fogaca Nienkotter
8c80caefa3
fix(explore): preserve preview chart name on save ( #39908 )
2026-05-07 13:08:28 -03:00
Richard Fogaca Nienkotter
8088c5d1de
fix(dashboard): match auto-refresh paused-dot outline to icon color ( #39909 )
2026-05-07 13:07:52 -03:00
Amin Ghadersohi
9b520312a1
fix(mcp): use tiktoken for response-size-guard token estimation ( #39912 )
2026-05-07 11:51:31 -04:00
Amin Ghadersohi
9ac4711ac8
fix(mcp): prevent DetachedInstanceError in get_chart_preview ( #39921 )
2026-05-07 11:44:11 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7593d2a164
chore(deps): bump caniuse-lite from 1.0.30001791 to 1.0.30001792 in /docs ( #39933 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-07 21:57:29 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d3c44e311e
chore(deps): bump aws-actions/amazon-ecr-login from 2.1.4 to 2.1.5 ( #39931 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-07 21:54:59 +07:00
Enzo Martellucci
b5186d1c65
fix(reports): keep body sized so standalone screenshots don't time out ( #39944 )
2026-05-07 12:26:50 +02:00
5b5dd01028
fix(sqla): parenthesize calculated column expressions in WHERE clause ( #39793 )
...
Co-authored-by: Brian Donovan <briand@netflix.com >
Co-authored-by: Vitor Avila <96086495+Vitor-Avila@users.noreply.github.com >
2026-05-06 19:45:27 -03:00
bialkou and bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
4aa4415d8f
fix(i18n): update Russian translations ( #39589 )
...
Co-authored-by: bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
2026-05-06 13:05:23 -04:00
Sebastian Mohr
e667ceb6cf
feat(themes): expose active theme mode via data-theme-mode attribute ( #39063 )
2026-05-06 18:17:54 +03:00
Enzo Martellucci
9aaa12c7d4
fix(reports): preserve urlParams in multi-tab report fan-out ( #39884 )
2026-05-06 16:29:45 +02:00
Alexandru Soare
adfbbf1433
fix(sql): quote identifiers in transpile_to_dialect to fix case-sensitive column filters ( #39521 )
2026-05-06 10:53:09 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d7663a9a1c
chore(deps-dev): update denodo-sqlalchemy requirement from ~=1.0.6 to >=1.0.6,<2.1.0 ( #39832 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-05 22:17:21 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7290d3c452
chore(deps-dev): update pyathena requirement from <3,>=2 to >=2,<4 ( #39830 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-05 22:17:00 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d7beffcec1
chore(deps-dev): bump eslint-plugin-react-you-might-not-need-an-effect from 0.9.3 to 0.10.0 in /superset-frontend ( #39853 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-05 22:15:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f018b67895
chore(deps-dev): update sqlalchemy-vertica-python requirement from <0.6,>=0.5.9 to >=0.5.9,<0.7 ( #39831 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-05 22:14:08 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5e2c6d8c9e
chore(deps): bump nanoid from 5.1.9 to 5.1.11 in /superset-frontend ( #39820 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-05 22:13:52 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b305c8681c
chore(deps-dev): update impyla requirement from <0.17,>0.16.2 to >0.16.2,<0.23 ( #39833 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-05 22:09:37 -07:00
d578fa1949
chore(deps): bump @deck.gl/mapbox from 9.3.1 to 9.3.2 in /superset-frontend ( #39814 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-05 22:09:33 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
14d28c34fd
chore(deps-dev): update cx-oracle requirement from <8.1,>8.0.0 to >8.0.0,<8.4 ( #39753 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-05 22:05:54 -07:00
c06aee8513
chore(deps-dev): bump jsdom from 29.1.0 to 29.1.1 in /superset-frontend ( #39815 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-05-05 22:04:47 -07:00
d0ef19953a
chore(deps): bump memoize-one from 5.2.1 to 6.0.0 in /superset-frontend/plugins/plugin-chart-ag-grid-table ( #37910 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-05-05 21:38:49 -07:00
Vitor Avila
3745e37182
fix(OAuth2): Support OAuth2 exception with legacy endpoint ( #39897 )
2026-05-05 21:21:48 -03:00
Joe Li and Claude Opus 4.6
4b17ac2629
fix(explore): add matrixify_enable guard to prevent stale validators on pre-revamp charts ( #38765 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-05-05 16:45:38 -07:00
Amin Ghadersohi
4a21a5365f
fix(mcp): validate column refs in generate_explore_link, update_chart_preview, and update_chart ( #39797 )
2026-05-05 19:12:31 -04:00
Richard Fogaca Nienkotter and Copilot Autofix powered by AI
9459bc7bf4
fix(mcp): warn on invalid chart preview form data key ( #39891 )
...
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
2026-05-05 16:40:00 -03:00
Beto Dealmeida
cb53745d43
feat: semantic layer extension ( #37815 )
2026-05-05 12:07:46 -04:00
jesperct and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
9e91ae8cff
fix(colors): reassign colliding series when dashboard locks shared dimension color ( #39297 )
...
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-05-05 08:38:19 -07:00
jesperct
5b5f23d127
test(plugin-chart-echarts): regression guards for temporal x-axis labels on timeseries charts ( #39208 )
2026-05-05 08:37:35 -07:00
Mehmet Salih Yavuz
8173cfe9e3
fix(CollectionControl): assign stable ids to keyless items ( #39862 )
2026-05-05 17:52:36 +03:00
Mehmet Salih Yavuz
586de12a05
fix(embedded): prevent duplicate React root on rehandshake ( #39860 )
2026-05-05 17:52:01 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d6188374b4
chore(deps): bump docusaurus-theme-openapi-docs from 5.0.1 to 5.0.2 in /docs ( #39846 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-05 09:16:53 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2edae162f0
chore(deps): bump baseline-browser-mapping from 2.10.24 to 2.10.27 in /docs ( #39848 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-05 09:16:33 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e80207218b
chore(deps-dev): bump eslint from 10.2.1 to 10.3.0 in /superset-websocket ( #39843 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-04 17:02:27 -07:00
Beto Dealmeida
76955017eb
chore: bump shillelagh to 1.4.4 ( #39870 )
2026-05-04 19:39:38 -04:00
Beto Dealmeida
5325b87e73
fix(clickhouse): prevent expensive table scan ( #39867 )
2026-05-04 19:39:10 -04:00
Đỗ Trọng Hải
e76318633e
fix(helm): allow chart to work out-of-the-box with legacy Bitnami images ( #39839 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-05-04 15:54:01 -07:00
Sam Firke
c2725e86f3
fix(markdown): Allow "target" attribute ( #39868 )
2026-05-04 18:27:43 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2f605724e7
chore(deps-dev): bump globals from 17.5.0 to 17.6.0 in /superset-websocket ( #39844 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-04 15:09:36 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ebb02d0ecf
chore(deps): bump @swc/core from 1.15.32 to 1.15.33 in /docs ( #39845 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-04 15:09:21 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
319b8a1124
chore(deps-dev): bump globals from 17.5.0 to 17.6.0 in /docs ( #39847 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-04 15:08:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2be971ce77
chore(deps): bump docusaurus-plugin-openapi-docs from 5.0.1 to 5.0.2 in /docs ( #39849 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-04 15:08:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
812f4ae080
chore(deps): update zod requirement from ^4.4.1 to ^4.4.3 in /superset-frontend/plugins/plugin-chart-echarts ( #39850 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-04 15:07:55 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
af8d15fdfc
chore(deps): bump yeoman-generator from 8.1.2 to 8.2.2 in /superset-frontend ( #39852 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-04 15:07:41 -07:00
Amin Ghadersohi
673634f7af
fix(mcp): point get_dataset_info url to explore view instead of legacy tablemodelview edit ( #39838 )
2026-05-04 13:39:05 -04:00
41a22d7918
chore: Upgrade to React 18 ( #38563 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-05-04 19:19:36 +03:00
Amin Ghadersohi
28239c18d4
feat(mcp): warn when execute_sql template_params used with templating disabled ( #39858 )
2026-05-04 12:14:44 -04:00
dependabot[bot]
6205afbaa0
chore(deps-dev): bump webpack-sources from 3.4.0 to 3.4.1 in /superset-frontend ( #39851 )
2026-05-04 22:25:31 +07:00
EMMANUELA OPURUM and Emmanuela Opurum
dc1c0f6ba1
docs: add user-facing Handlebars chart page with full helpers reference ( #39591 )
...
Co-authored-by: Emmanuela Opurum <youremail@example.com >
2026-05-02 13:16:39 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ad73395c89
chore(deps-dev): bump yeoman-test from 11.3.1 to 11.4.2 in /superset-frontend ( #39816 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-02 13:46:47 +07:00
867e173427
chore(deps): drop stale legacy-plugin-chart-map-box lockfile entry ( #39825 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-05-02 13:35:25 +07:00
c90c8612ad
chore(deps): bump @docusaurus/faster from 3.10.0 to 3.10.1 in /docs ( #39804 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-05-02 13:32:37 +07:00
Abdul Rehman
b14cca15f6
fix(table): preserve decimals in totals row when Time Comparison is enabled ( #39747 )
2026-05-02 13:31:54 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9d4384e49e
chore(deps-dev): bump @babel/preset-env from 7.29.2 to 7.29.3 in /superset-frontend ( #39822 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-02 12:38:54 +07:00
jesperct
d8dd2d99b3
fix(time-comparison): use chart row_limit instead of instance config in offset queries ( #39490 )
2026-05-01 16:24:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dbe26d81ce
chore(deps-dev): bump baseline-browser-mapping from 2.10.21 to 2.10.24 in /superset-frontend ( #39759 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-01 16:24:23 -07:00
Elizabeth Thompson and Claude Sonnet 4.6
98eaaaa6d6
fix(mcp): clear stale thread-local DB session in sync tool wrapper ( #39798 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-01 09:24:48 -07:00
cb74438865
fix(viz): correct table chart drill-to-detail temporal boundaries and null handling ( #39668 )
...
Co-authored-by: Samuelinto <samuel.mantilla@mail.utoronto.ca >
Co-authored-by: Amin Ghadersohi <amin.ghadersohi@gmail.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-01 11:46:18 -04:00
Danylo Korostil
e77fb5e3fc
feat(i18n): updated Ukrainian translation ( #39720 )
2026-05-01 11:12:05 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1ac113fd44
chore(deps): bump aws-actions/amazon-ecs-render-task-definition from 1.8.4 to 1.8.5 ( #39809 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-01 06:31:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6bfdee98cd
chore(deps-dev): bump @docusaurus/tsconfig from 3.10.0 to 3.10.1 in /docs ( #39811 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-01 09:31:29 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
de45f3a928
chore(deps): bump aws-actions/amazon-ecs-deploy-task-definition from 2.6.1 to 2.6.2 ( #39806 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-01 09:30:49 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2ec53c0694
chore(deps): bump mapbox-gl from 3.22.0 to 3.23.0 in /superset-frontend ( #39769 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-01 09:30:21 -04:00
Michael S. Molina
d23b0cad92
chore: Bump core packages to 0.1.0 RC3 ( #39823 )
2026-05-01 09:54:39 -03:00
Evan Rusackas and Claude Code
e585406fff
chore(codeowners): notify @sfirke on translation changes ( #39794 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-04-30 23:07:29 -04:00
Amin Ghadersohi
957b298ae1
fix(mcp): add default request parameter to list_charts and list_dashboards ( #39730 )
2026-04-30 18:04:39 -04:00
Amin Ghadersohi
f29d82b3b1
feat(mcp): add query_dataset tool to query datasets using semantic layer ( #39727 )
2026-04-30 18:03:41 -04:00
Vitor Avila
3f550f166f
fix(GSheets OAuth2): Re-add UnauthenticatedError ( #39785 )
2026-04-30 18:57:00 -03:00
Vitor Avila
86eb6176d1
fix: Enforce per-user caching on legacy API endpoint ( #39789 )
2026-04-30 18:04:33 -03:00
Joe Li and Claude Sonnet 4.6
4244ae87bf
fix(deps): regenerate pinned requirements for psycopg2-binary 2.9.12 ( #39790 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-30 17:46:23 -03:00
512ba43e76
feat(i18n): add Czech translations ( #36153 )
...
Co-authored-by: Jakub Hrubý <jakub.hruby@orgis.cz >
Co-authored-by: Jezevec <panjzvc@gmail.com >
Co-authored-by: David Kopelent <david.kopelent@saltpay.co >
Co-authored-by: David Kopelent <66686489+davidkopelent@users.noreply.github.com >
2026-04-30 11:14:58 -04:00
xavier-GitHub76
f57ba7645d
fix(CountryMap): ISO updated for France overseas (complete run) ( #36055 )
2026-04-30 11:13:51 -04:00
marun and Claude
12f69760f9
fix(table): conditionally render search dropdown only when search input is enabled ( #35204 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-04-30 11:08:01 -04:00
Geidō and Claude Opus 4.7
4fcb3144ff
fix(dashboard): prevent duplicate screenshot downloads ( #39525 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-04-30 18:04:24 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3f68104007
chore(deps-dev): bump @swc/plugin-emotion from 14.8.0 to 14.9.0 in /superset-frontend ( #39715 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 10:55:08 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9faeda5723
chore(deps): bump @ant-design/icons from 6.2.0 to 6.2.2 in /docs ( #39691 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 10:54:04 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c15b208fda
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #39745 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 10:34:21 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6ad503201b
chore(deps): bump zod from 4.3.6 to 4.4.1 in /superset-frontend ( #39770 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 20:58:22 +07:00
Hardik Thaker and Evan Rusackas
56e9331dad
chore: add Aadhar Housing Finance Limited to INTHEWILD ( #38366 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-04-30 06:57:49 -07:00
a135e29035
fix(time-format): handle string input in TimeFormatter to fix pivot table NaN dates ( #38949 )
...
Co-authored-by: RD-Dan <mapledan@staff.ruten.com.tw >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-04-30 09:51:37 -04:00
EPoikans and Đỗ Trọng Hải
bc875aa3e3
feat: Latvian localization ( #38965 )
...
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-04-30 06:19:42 -07:00
Joe Li and Claude Opus 4.6
7842a9b05d
fix(playwright): remove Google Sheets dependency from dataset tests ( #39143 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-30 06:18:50 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1061b0612c
chore(deps-dev): bump eslint-plugin-no-only-tests from 3.3.0 to 3.4.0 in /superset-frontend ( #39768 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 06:16:27 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bfacc3b5ac
chore(deps): bump xlsxwriter from 3.0.9 to 3.2.9 ( #39757 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 06:15:12 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9001e7dcf2
chore(deps): bump pandas from 2.1.4 to 2.3.3 ( #39754 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 06:14:20 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a4532844f4
chore(deps): bump msgpack from 1.0.8 to 1.1.2 ( #39752 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 06:12:33 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43a2cd3660
chore(deps-dev): bump psycopg2-binary from 2.9.9 to 2.9.12 ( #39749 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 06:11:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c895c4ffa9
chore(deps): bump yeoman-generator from 8.1.2 to 8.2.2 in /superset-frontend ( #39744 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 06:11:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ce3f19d373
chore(deps): bump swagger-ui-react from 5.32.4 to 5.32.5 in /docs ( #39693 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 06:10:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2c26914c2e
chore(deps-dev): bump typescript-eslint from 8.59.0 to 8.59.1 in /docs ( #39694 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-30 06:08:58 -07:00
innovark and Evan Rusackas
f7c955f81a
feat: provide full endpoint URL construction for plugin developers ( #37360 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-04-30 05:59:11 -07:00
Jean Massucatto
9c3c8dcc0b
fix(table): restore dropdown arrow visibility on paginated table page… ( #39305 )
2026-04-30 05:56:51 -07:00
Luiz Otavio and Michael S. Molina
df396aa6e9
fix(drill-to-detail): drill to detail by correctly filtering by metric ( #39766 )
...
Co-authored-by: Michael S. Molina <michael.s.molina@gmail.com >
2026-04-30 08:40:16 -03:00
Enzo Martellucci and Claude Opus 4.7
e4fe08ab9e
feat(mcp): add generate_bug_report tool with PII sanitization ( #39595 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-04-30 12:47:14 +02:00
Dhananjay Mohan
ae4c765d7d
fix(docs): fix embedding page frontmatter and title capitalization ( #39765 )
2026-04-29 21:01:53 -04:00
Declan Zhao
49c249c7a9
fix(cache-warmup): add missing dashboard context in DashboardTagsStrategy ( #39531 )
2026-04-29 21:18:47 -03:00
Richard Fogaca Nienkotter
c2b9272f4c
fix(mcp): sanitize read path output for LLM context ( #39738 )
2026-04-29 19:06:19 -03:00
Amin Ghadersohi
81a08f0a0e
chore(deps): bump fastmcp from 3.1.0 to 3.2.4 ( #39349 )
2026-04-29 17:39:48 -04:00
Enzo Martellucci and Claude Opus 4.7
e3e834bbf7
fix(mcp): fall back to title match when dashboard slug lookup misses ( #39567 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-04-29 23:03:16 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ebb43404c8
chore(deps): bump baseline-browser-mapping from 2.10.23 to 2.10.24 in /docs ( #39741 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-29 16:01:44 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4c4f3341de
chore(deps): bump dawidd6/action-download-artifact from 20 to 21 ( #39742 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-29 16:01:28 -04:00
979f60a6d4
docs: Superset 6.1 documentation catch-up — batch 4 ( #39446 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2026-04-29 15:26:09 -03:00
Michael S. Molina
6ce3885f2e
chore(build): remove thread-loader from webpack build ( #39763 )
2026-04-29 15:04:34 -03:00
Elizabeth Thompson and Claude Sonnet 4.6
8d17c34068
feat(mcp): restore self-lookup via created_by_me flag ( #39638 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-29 11:03:28 -07:00
b4f595953e
docs: Superset 6.1 documentation catch-up — batch 3 ( #39445 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2026-04-29 15:00:29 -03:00
2b623fd09a
docs: Superset 6.1 documentation catch-up — batch 2 ( #39441 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-29 14:43:37 -03:00
fe074c0d76
docs(mcp): update MCP server docs for 6.1 ( #39422 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-29 14:42:55 -03:00
Richard Fogaca Nienkotter
549aff7cf9
fix(mcp): clarify chart preview URL metadata ( #39731 )
2026-04-29 12:37:40 -03:00
Daniel Vaz Gaspar and Claude Opus 4.6
c7c9a17d6b
fix(mysql): fallback to pymysql when MySQLdb is not installed in get_datatype() ( #39729 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-29 14:40:39 +01:00
JUST.in DO IT and Michael S. Molina
54f1e32763
fix(dashboard): escape emoji in position_json before saving to prevent truncation ( #39737 )
...
Co-authored-by: Michael S. Molina <michael.s.molina@gmail.com >
2026-04-29 10:08:50 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2a884e8456
chore(deps-dev): bump @swc/core from 1.15.30 to 1.15.32 in /superset-frontend ( #39692 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-29 09:03:54 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7b02c21bff
chore(deps): bump @ant-design/icons from 6.1.1 to 6.2.2 in /superset-frontend ( #39697 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-29 09:03:32 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1dd28c6fcd
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.59.0 to 8.59.1 in /superset-frontend ( #39696 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-29 09:03:16 -04:00
Daniel Vaz Gaspar and Claude Opus 4.6
eba08ae52a
fix(ci): switch Dependabot Python ecosystem from uv to pip ( #39726 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-29 12:30:38 +01:00
Jean Massucatto and Enzo Martellucci
171414f165
fix(chart): use categorical axis for bar charts with numeric x-axis ( #39141 )
...
Co-authored-by: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com >
2026-04-29 09:41:19 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dbd7984ce9
chore(deps-dev): bump oxlint from 1.61.0 to 1.62.0 in /superset-frontend ( #39701 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-29 00:19:48 -04:00
Amin Ghadersohi
4b42f82f13
fix(mcp): restore typed ChartConfig in tool schemas for LLM visibility ( #39732 )
2026-04-28 19:46:57 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ea3a1955b7
chore(deps): bump @swc/core from 1.15.30 to 1.15.32 in /docs ( #39695 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-28 16:26:57 -04:00
Richard Fogaca Nienkotter
d0abb66fdf
fix(mcp): default chart previews to ascii ( #39719 )
2026-04-28 13:30:39 -03:00
Shantanu Khond
ef50b688ee
fix(docs): add split Get Started button to main docs page with audience links ( #39467 )
2026-04-28 10:35:26 -04:00
Daniel Vaz Gaspar
3aa99c577e
chore(deps): bump python-dotenv from 1.1.0 to 1.2.2 ( #39723 )
2026-04-28 14:53:57 +01:00
Amin Ghadersohi
09c7e1fc08
fix(mcp): rename _FastMCPValidationFilter to public symbol ( #39722 )
2026-04-28 09:53:13 -04:00
6947881ba7
fix(mcp): classify user errors as WARNING, system errors as ERROR ( #39634 )
...
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-28 08:55:17 -04:00
Michael S. Molina and Claude Sonnet 4.6
7bee2afa8e
fix(theme): set color-scheme on html to fix dark mode scrollbars ( #39704 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-28 09:17:11 -03:00
Michael S. Molina and Claude Sonnet 4.6
c4a8b34b11
fix(query-history): enable sorting by Duration column ( #39637 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-28 08:49:58 -03:00
Sam Firke
3395620b6e
fix(table chart): fix rerender bug that continuously cleared search box ( #39707 )
2026-04-28 08:40:56 -03:00
Mehmet Salih Yavuz and Claude Opus 4.7
3f28f5d012
fix(mcp): surface structured errors for generate_chart validation failures ( #39484 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-04-28 11:13:53 +03:00
Mehmet Salih Yavuz and Claude Opus 4.7
cf587caca7
fix(plugin-chart-handlebars): preserve template on explore open ( #39442 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-04-28 11:13:37 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
523ecb65a4
chore(deps-dev): bump typescript-eslint from 8.59.0 to 8.59.1 in /superset-websocket ( #39687 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-27 19:46:11 -04:00
Đỗ Trọng Hải and Evan Rusackas
5fe3a1c2cd
fix(dev): revert react-checkbox-tree from 2.1.0 to 1.8.0 in /superset-frontend ( #39660 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-27 14:17:17 -04:00
SkinnyPigeon and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
90f8fafbb4
docs(rls): adding additional rls filter documentation ( #38829 )
...
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-04-27 14:12:25 -04:00
Amin Ghadersohi
7774ec7e3c
fix(mcp): database filter columns, timeseries SQL, and unsaved chart datasource name ( #39636 )
2026-04-27 13:41:06 -04:00
innovark
6da04fa51d
fix(Modal): prevent title overlapping with close button in long header titles ( #36536 )
2026-04-27 13:33:02 -04:00
7c4b2b137c
fix(explore): ensure unsaved-changes dialog renders above View SQL modal ( #39569 )
...
Co-authored-by: yousoph <sophieyou12@gmail.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-27 10:02:25 -07:00
Đỗ Trọng Hải
9ccd37de1c
chore(ci): update Node.js version used in building CI image ( #38635 )
2026-04-27 22:46:52 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b791f4c2cd
chore(deps): bump d3-cloud from 1.2.8 to 1.2.9 in /superset-frontend ( #39677 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-27 11:42:42 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44d1f50b7c
chore(deps): bump baseline-browser-mapping from 2.10.21 to 2.10.23 in /docs ( #39671 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-27 11:42:15 -04:00
David and Evan Rusackas
b9de3dba95
fix(docs): fix 404s in documentation ( #38974 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-04-27 08:36:58 -07:00
SBIN2010
4c4905f689
fix: d3 format for table ( #37454 )
2026-04-27 11:54:41 +03:00
2b13e07521
fix(ci): resolve OOM issues when building docs locally with Docusaurus Faster + sync docs with latest build result ( #38486 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com >
2026-04-27 15:45:53 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7c24214857
chore(deps): bump caniuse-lite from 1.0.30001790 to 1.0.30001791 in /docs ( #39674 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-27 04:40:16 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37bf729f75
chore(deps-dev): bump jsdom from 29.0.2 to 29.1.0 in /superset-frontend ( #39678 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-27 04:39:46 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0b78ffbb9c
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #39672 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-27 04:38:33 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41823a3057
chore(deps): bump @ant-design/icons from 6.1.1 to 6.2.0 in /docs ( #39673 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-27 04:38:16 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4cc4d62486
chore(deps): bump antd from 6.3.6 to 6.3.7 in /docs ( #39670 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-27 04:37:09 -04:00
dece5415a7
chore(deps): bump memoize-one from 5.2.1 to 6.0.0 in /superset-frontend/plugins/plugin-chart-table ( #39312 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-04-27 01:33:41 -07:00
Raffael Zampieri
ea8a8f8ac7
feat(i18n): improve pt_BR translations ( #38826 )
2026-04-27 01:33:04 -07:00
aikawa-ohno
a216b23d5a
fix(i18n): Update Japanese translations ( #39022 )
2026-04-26 19:33:39 -04:00
Alejandro Solares and Đỗ Trọng Hải
6ad1583eb5
fix(security): bump authlib to 1.6.9 ( #39598 )
...
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-04-26 11:56:09 +07:00
9a7938899e
chore(deps): bump yargs from 17.7.2 to 18.0.0 in /superset-frontend ( #36584 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-04-26 11:50:07 +07:00
Haoqian Zhang
30bd490b84
fix: delete Chart under "All" in home page doesn't refresh after dele… ( #39471 )
2026-04-26 00:21:12 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f255f63953
chore(deps): bump react-diff-viewer-continued from 4.2.0 to 4.2.2 in /superset-frontend ( #39613 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-25 02:03:35 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2c7d25f829
chore(deps-dev): bump html-webpack-plugin from 5.6.6 to 5.6.7 in /superset-frontend ( #39609 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-25 02:03:28 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96595965b8
chore(deps): bump maplibre-gl from 5.23.0 to 5.24.0 in /superset-frontend ( #39619 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-25 02:03:18 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3da51ac3eb
chore(deps): bump d3-cloud from 1.2.8 to 1.2.9 in /superset-frontend ( #39617 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-25 02:03:12 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9d480bc79d
chore(deps-dev): bump terser-webpack-plugin from 5.4.0 to 5.5.0 in /superset-frontend ( #39615 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-25 02:03:05 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e709c191db
chore(deps-dev): bump webpack-sources from 3.3.4 to 3.4.0 in /superset-frontend ( #39611 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-25 02:02:49 -04:00
2026a1de6a
fix(i18n): Fix menu bar translations not updating on language change ( #34565 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
Co-authored-by: Claude <claude@anthropic.com >
2026-04-24 22:49:03 -07:00
Evan Rusackas and Claude Opus 4.5
abd93444d0
fix(frontend): clean up console warnings and deprecations ( #37881 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-04-24 22:48:29 -07:00
Daniel Vaz Gaspar
eb2645affe
chore(deps): bump pillow from 12.1.1 to 12.2.0 ( #39590 )
2026-04-25 10:11:33 +07:00
Amin Ghadersohi
ad20285dd6
fix(mcp): sanitize chart config errors and accept field name aliases ( #39606 )
2026-04-24 21:30:43 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6a89955217
chore(deps): bump postcss from 8.5.6 to 8.5.10 in /docs ( #39639 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-24 19:50:52 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
579fe23a5e
chore(deps): bump ol from 10.8.0 to 10.9.0 in /superset-frontend ( #39616 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-24 19:48:51 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
66fce58697
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.58.2 to 8.59.0 in /superset-frontend ( #39612 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-24 18:32:11 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ac44902145
chore(deps): bump match-sorter from 8.2.0 to 8.3.0 in /superset-frontend ( #39610 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-24 17:36:46 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1b3d070997
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #39607 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-24 17:35:11 -04:00
Richard Fogaca Nienkotter
57e563b177
fix(mcp): redact dashboard data model metadata ( #39632 )
2026-04-24 17:37:15 -03:00
Beto Dealmeida
edf4d03218
chore: bump rison to 2.0.0 ( #39529 )
2026-04-24 15:52:42 -04:00
JUST.in DO IT
78950fc18e
fix(sqllab): explore to chart is disabled ( #39630 )
2026-04-24 15:43:13 -03:00
Michael S. Molina and Claude Sonnet 4.6
d6bbe6da9b
fix(sql-lab): show table expand/collapse arrow only on hover ( #39627 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-24 15:32:55 -03:00
Enzo Martellucci
d7941ccfec
fix(mcp): surface XSS sanitization in chart/dashboard names instead of silently stripping ( #39491 )
2026-04-24 14:59:20 +02:00
d79eb5842a
fix(mcp): protect data-model metadata from dashboard viewers ( #39599 )
...
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-24 09:40:39 -03:00
Luiz Otavio and Claude Sonnet 4.6
970b5bcf75
fix(cross-filter): correctly cast adhoc column types when cross filtering ( #39577 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-24 08:26:46 -03:00
Amin Ghadersohi
7c4f87615b
fix(mcp): correct method name in API key auth (extract_api_key_from_request) ( #39437 )
2026-04-23 23:33:23 -04:00
Elizabeth Thompson and Claude Sonnet 4.6
f0d521dfc2
fix(reports): poll for spinner absence instead of snapshotting loading elements ( #39579 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-23 22:03:43 -03:00
Joe Li and Claude Opus 4.7
39f12786a2
refactor(chart): replace word cloud sort_by_series migration with code defaults ( #39575 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-04-23 15:38:36 -07:00
Amin Ghadersohi
012bf52c8c
fix(mcp): resolve $ref by inlining definitions in compact schema ( #39562 )
2026-04-23 17:58:06 -04:00
0d50fd676b
fix(mcp): hide user directory metadata from responses ( #39576 )
...
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-23 17:35:08 -03:00
Nitish Agarwal
acdf70176a
fix(dashboard): prevent label overlap in non-English locales ( #36669 )
2026-04-23 16:26:59 -04:00
Enzo Martellucci and Claude Opus 4.7
dae79a6cba
fix(mcp): surface validation errors in generate_chart instead of empty response ( #39522 )
...
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com >
2026-04-23 21:50:02 +02:00
Michael S. Molina and Claude Sonnet 4.6
362e5bf45e
fix(jinja): drill-to-detail respects remove_filter=True in Jinja templates ( #39594 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-23 16:11:13 -03:00
Amin Ghadersohi and Elizabeth Thompson
b1b6a057d8
fix(mcp): unwrap ToolResult payload before truncation in ResponseSizeGuardMiddleware ( #39578 )
...
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com >
2026-04-23 12:35:13 -04:00
9b52110ab1
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.58.2 in /superset-frontend ( #39380 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-04-23 22:04:54 +07:00
Andrii Protas
fc84d5d959
fix(i18n): correct Ukrainian locale flag code and language name typo ( #39593 )
2026-04-23 21:35:40 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d62f1546aa
chore(deps): bump content-disposition from 1.0.1 to 1.1.0 in /superset-frontend ( #39581 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-23 04:14:24 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b6ac1ef63c
chore(deps): bump baseline-browser-mapping from 2.10.20 to 2.10.21 in /docs ( #39584 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-23 03:31:02 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
59bc895f3f
chore(deps): bump aws-actions/amazon-ecr-login from 2.1.3 to 2.1.4 ( #39583 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-23 03:30:52 -04:00
bc2ffc66e5
chore(deps): update dompurify requirement from ^3.4.0 to ^3.4.1 in /superset-frontend/packages/superset-ui-core ( #39543 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-22 19:18:56 -04:00
Joao Amaral
e10918307c
fix(db): Add MariaDB DDL fix for NOCYCLE syntax ( #37582 )
2026-04-22 19:01:20 -04:00
68ee776ad6
chore(deps): update dompurify requirement from ^3.4.0 to ^3.4.1 in /superset-frontend/plugins/legacy-preset-chart-nvd3 ( #39542 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-22 18:58:27 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0d681338aa
chore(deps-dev): bump baseline-browser-mapping from 2.10.16 to 2.10.20 in /superset-frontend ( #39553 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 18:58:05 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6c88fcacfa
chore(deps-dev): bump webpack from 5.106.0 to 5.106.2 in /superset-frontend ( #39544 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 16:57:02 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e16656c6cf
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #39548 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 14:50:20 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
07c8e7f303
chore(deps): bump @deck.gl/mapbox from 9.2.11 to 9.3.1 in /superset-frontend ( #39551 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 14:48:32 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b2468d3752
chore(deps): bump geostyler from 18.3.1 to 18.5.0 in /superset-frontend ( #39549 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 14:48:26 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7934665ac1
chore(deps): bump uuid from 13.0.0 to 14.0.0 in /superset-frontend ( #39555 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 14:47:58 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9366868f8f
chore(deps): bump nanoid from 5.1.7 to 5.1.9 in /superset-frontend ( #39554 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 14:47:47 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ae61000a12
chore(deps): bump markdown-to-jsx from 9.7.15 to 9.7.16 in /superset-frontend ( #39552 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 14:47:37 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7174695be7
chore(deps-dev): bump @swc/core from 1.15.24 to 1.15.30 in /superset-frontend ( #39550 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 14:47:33 -04:00
Declan Zhao
4ee3a0fc07
feat(user_info): include Groups in user data payload when include_perms is True and show Groups on user_info page ( #39450 )
2026-04-22 11:14:59 -07:00
Daniel Vaz Gaspar and Claude Opus 4.6
f6c5219e89
fix(security): add UserSAMLModelView to USER_MODEL_VIEWS ( #39568 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-22 17:47:41 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
72d39bea85
chore(deps): bump d3-cloud from 1.2.8 to 1.2.9 in /superset-frontend ( #39545 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 11:41:19 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e9030b7fac
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #39546 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 11:40:55 -04:00
f672b143db
chore(deps): bump react-checkbox-tree from 1.8.0 to 2.0.1 in /superset-frontend ( #39261 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-22 11:40:41 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9f42ccecec
chore(deps): bump caniuse-lite from 1.0.30001788 to 1.0.30001790 in /docs ( #39541 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-22 11:38:31 -04:00
Vitor Avila
5af17c7976
fix(OpenSearch): OpenSearch dialect for sqlglot ( #39538 )
2026-04-22 12:17:15 -03:00
Maxime Beauchemin
18d89f25ce
fix(dashboard): apply full transitive ancestor chain for dependent filters ( #39504 )
2026-04-22 10:54:51 -04:00
amaannawab923
73c4240ba4
feat(ui-core): export LeftOutlined icon from @superset-ui/core ( #39563 )
2026-04-22 19:09:27 +05:30
Enzo Martellucci
1903b919d6
fix(echarts): increase default axis title margins to prevent label overlap ( #39447 )
2026-04-22 14:23:48 +02:00
alex and Claude Opus 4.6
44177b4e35
feat(explore): add CSV/XLS download to drill-to-detail modal ( #37109 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-22 13:41:36 +03:00
e1ed5003a8
docs: Superset 6.1 documentation catch-up — batch 5 ( #39454 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-21 17:30:27 -07:00
Amin Ghadersohi
e6853894ab
chore(mcp): extract shared chart helpers and ASCII rendering into separate modules ( #39438 )
2026-04-21 20:10:49 -04:00
05fc5bb424
chore(deps): bump react-checkbox-tree from 1.8.0 to 2.0.1 in /superset-frontend ( #39476 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-21 14:55:47 -07:00
c373498543
chore(deps-dev): bump the storybook group across 1 directory with 11 updates ( #38503 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2026-04-21 17:00:57 -04:00
dependabot[bot] and Evan Rusackas
fb3e129d62
chore(deps-dev): bump @types/jquery from 3.5.33 to 4.0.0 in /superset-frontend ( #38239 )
...
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-21 16:42:06 -04:00
003c232192
chore(deps-dev): bump typescript-eslint from 8.58.2 to 8.59.0 in /docs ( #39517 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-04-21 16:41:23 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a51bbd46dc
chore(deps-dev): bump oxlint from 1.56.0 to 1.60.0 in /superset-frontend ( #39151 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 16:11:47 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e77cfc93ed
chore(deps): bump geostyler-openlayers-parser from 5.4.1 to 5.7.0 in /superset-frontend ( #39518 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 16:10:38 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ef290b28e2
chore(deps): bump mapbox-gl from 3.20.0 to 3.22.0 in /superset-frontend ( #39510 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 16:03:31 -04:00
dd18b2eb54
chore(deps): update react requirement from ^19.2.1 to ^19.2.5 in /superset-frontend/plugins/legacy-plugin-chart-chord ( #39215 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-21 15:43:06 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d7a8c1934a
chore(deps-dev): bump typescript-eslint from 8.58.2 to 8.59.0 in /superset-websocket ( #39511 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 12:40:43 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
af7a62ab3f
chore(deps): bump baseline-browser-mapping from 2.10.19 to 2.10.20 in /docs ( #39477 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 15:29:24 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
69d2da9c61
chore(deps): bump react-arborist from 3.4.3 to 3.5.0 in /superset-frontend ( #39516 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 15:20:54 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
67bc910eb5
chore(deps-dev): bump @typescript-eslint/parser from 8.58.2 to 8.59.0 in /docs ( #39515 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 15:20:40 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a89f9bcb98
chore(deps-dev): bump @typescript-eslint/parser from 8.58.2 to 8.59.0 in /superset-websocket ( #39513 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 15:08:56 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b302071723
chore(deps-dev): bump eslint-plugin-react-you-might-not-need-an-effect from 0.9.2 to 0.9.3 in /superset-frontend ( #39264 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 15:04:57 -04:00
e45330c2fd
chore(deps-dev): bump oxlint from 1.56.0 to 1.60.0 in /superset-frontend ( #39375 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-04-21 14:48:10 -04:00
bd8d3ffb2d
chore(deps): bump ag-grid-community from 35.0.1 to 35.2.1 in /superset-frontend/packages/superset-ui-core ( #39371 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-04-21 14:47:40 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5e3a7ba106
chore(deps): bump mapbox-gl from 3.20.0 to 3.21.0 in /superset-frontend ( #39091 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 14:42:08 -04:00
c1a3de719a
chore(deps): bump react-map-gl from 8.1.0 to 8.1.1 in /superset-frontend ( #39474 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-21 14:40:18 -04:00
33deb028a6
chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 in /docs ( #39427 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-21 13:49:47 -04:00
Gabriel Torres Ruiz
919daabe54
fix(mcp): clear stale query_context in update_chart so filters and row_limit are applied ( #39413 )
2026-04-21 14:34:21 -03:00
Aitema-gmbh and Fedo Hagge-Kubat
0f2769ca3e
fix(a11y): WCAG 3.2.3 — add aria-labels to navigation landmarks ( #39244 )
...
Co-authored-by: Fedo Hagge-Kubat <office@aitema.org >
2026-04-21 10:25:57 -07:00
a4a67296af
chore(deps): bump ag-grid-community from 35.0.1 to 35.2.1 in /superset-frontend ( #39382 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-04-21 13:20:29 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b4000a025d
chore(deps): bump @swc/core from 1.15.26 to 1.15.30 in /docs ( #39478 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 13:19:12 -04:00
Alejandro Solares
a9761932bc
fix(security): patch CVEs in cryptography, mako, pyarrow, pyopenssl, requests ( #39523 )
2026-04-21 16:35:04 +01:00
Amin Ghadersohi
29806780dc
chore(mcp): remove dead parse_request decorator and utility code ( #39498 )
2026-04-21 11:16:06 -04:00
Vitor Avila
191337e08d
fix(db oauth2): Improve OAuth2 flow ( #39499 )
2026-04-21 11:54:52 -03:00
Brian Schreder
a222dab781
feat(dashboard): pre-filter time grain ( #38922 )
2026-04-21 10:35:24 -04:00
Damian Pendrak
230b25dd72
fix(deckgl): UI fixes on deck.gl exclude layers ( #38958 )
2026-04-21 15:39:57 +02:00
Maxime Beauchemin and Claude Opus 4.6
151d7d76da
fix(charts): set g.form_data for metric() Jinja macro on GET chart data endpoint ( #39347 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-20 19:36:03 -07:00
Maxime Beauchemin and Claude Opus 4.6
4f19bc4c5f
fix(table): ensure dimensions appear before metrics in column order ( #39346 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-20 17:44:26 -07:00
Beto Dealmeida and Copilot Autofix powered by AI
11607dde04
feat(sqllab): syntax validation for sqlite-based DB engine specs ( #38698 )
...
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com >
2026-04-20 18:29:51 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e1bdb94efc
chore(deps-dev): bump globals from 17.4.0 to 17.5.0 in /docs ( #39479 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-20 15:16:03 -07:00
Beto Dealmeida
6535fdd556
chore: simplify Trino's OAuth detection ( #39496 )
2026-04-20 18:08:48 -04:00
Beto Dealmeida and Beto Dealmeida
5fb89b865d
fix(oauth2): silence lock acquisition errors on token refresh ( #39463 )
...
Co-authored-by: Beto Dealmeida <beto@preset.io >
2026-04-20 18:08:33 -04:00
Amin Ghadersohi
6948e73ec7
feat(mcp): add get_chart_sql tool and expose chart filters in get_chart_info ( #38700 )
2026-04-20 17:50:10 -04:00
Maxime Beauchemin and Claude Opus 4.6
c4cf03f899
fix(import): import tags during CLI native asset import ( #39495 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-20 13:59:51 -07:00
d3de16c5f5
fix(dashboard): restore groupby in buildExistingColumnsSet and guard null customization config ( #39416 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
Co-authored-by: Richard Fogaça <richardfogaca@gmail.com >
2026-04-20 13:24:22 -07:00
bdonovan1 and Brian Donovan
78fb09695b
fix(chart): word cloud secondary sort prevents Druid TopN optimization when sort_by_metric enabled ( #39073 )
...
Co-authored-by: Brian Donovan <briand@netflix.com >
2026-04-20 16:28:31 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
06818008c2
chore(deps-dev): bump eslint from 10.2.0 to 10.2.1 in /superset-websocket ( #39473 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-20 12:07:15 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52ba4fd0cb
chore(deps): bump antd from 6.3.5 to 6.3.6 in /docs ( #39480 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-20 12:01:59 -07:00
Aitema-gmbh and Fedo Hagge-Kubat
4f2fa41f4e
fix(a11y): WCAG 3.1.2 — set HTML lang attribute dynamically from locale ( #39243 )
...
Co-authored-by: Fedo Hagge-Kubat <office@aitema.org >
2026-04-20 11:33:10 -07:00
Kamil Gabryjelski
bf7ec853fa
fix(big-number): use correct default font size for subtitle/subheader ( #39493 )
2026-04-20 18:21:18 +02:00
Michael S. Molina and Claude Sonnet 4.6
9fe3f634ec
perf(sql-lab): debounce schema browser search ( #39489 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-20 12:59:01 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
899e9294b2
chore(deps): bump maplibre-gl from 5.22.0 to 5.23.0 in /superset-frontend ( #39475 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-20 08:40:46 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dc9b459b27
chore(deps): bump actions/setup-node from 6.3.0 to 6.4.0 ( #39481 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-20 08:34:02 -07:00
7d3881f1da
docs: Added instructions on configuring Superset SECRET_KEY ( #25646 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-20 08:33:27 -07:00
Evan Rusackas and Claude Sonnet 4.6
e5f9a6bf4b
chore(lint): convert superset-ui-core chart-composition to function components ( #39455 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-20 08:33:04 -07:00
Amin Ghadersohi and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
5cff657812
fix(mcp): default XY chart x-axis to dataset primary datetime column ( #39421 )
...
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-04-20 11:14:54 -04:00
Arunkumar S
16387b0815
fix(sqllab): remove duplicate tooltip on share query link icon ( #39289 )
2026-04-20 22:01:21 +07:00
Alexandru Soare
0857611a4e
fix(mcp): Add defensive validator for ColumnInfo.is_nullable ( #39365 )
2026-04-20 13:50:31 +03:00
Geidō and Claude Sonnet 4.6
51ea2c297d
fix(dataset): calculated columns in virtual datasets fail when used as dynamic aggregation filter dimensions ( #39004 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-20 13:44:53 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fbd062165e
chore(deps): bump @swc/core from 1.15.24 to 1.15.26 in /docs ( #39374 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-19 21:40:19 +07:00
55625c911f
chore(deps-dev): bump timezone-mock from 1.4.0 to 1.4.2 in /superset-frontend ( #38049 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-04-19 17:19:08 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fca64de8e9
chore(deps-dev): bump prettier from 3.8.2 to 3.8.3 in /superset-frontend ( #39372 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-19 11:19:22 +07:00
03725d1aaa
chore(deps): bump dompurify from 3.3.3 to 3.4.0 in /superset-frontend ( #39399 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-04-19 10:58:36 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a9487cbc84
chore(deps): bump aws-actions/amazon-ecr-login from 2.1.2 to 2.1.3 ( #39403 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-18 12:51:07 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ce5b2aa424
chore(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1 ( #39320 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-18 12:49:30 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e535dce030
chore(deps-dev): bump prettier from 3.8.1 to 3.8.3 in /docs ( #39400 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-18 11:58:29 +07:00
a7310b1fce
chore(deps): bump @docusaurus/core from 3.9.2 to 3.10.0 in /docs ( #39188 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-04-18 11:43:47 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cd6ce881a5
chore(deps): bump dompurify from 3.3.3 to 3.4.0 in /docs ( #39398 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-18 09:54:38 +07:00
f0ef9f5e9c
chore(deps-dev): bump webpack from 5.105.4 to 5.106.2 in /docs ( #39401 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-04-18 09:52:53 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4ae16cb140
chore(deps-dev): bump typescript-eslint from 8.58.0 to 8.58.2 in /docs ( #39426 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-18 09:27:11 +07:00
David Hotham and Michael S. Molina
3d85e8e23b
chore: publish wheels ( #36746 )
...
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2026-04-17 17:21:23 -03:00
Evan Rusackas and Claude Code
690a411cf3
chore(ci): require PMC review for CI-executed scripts ( #39462 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-04-17 12:55:27 -07:00
JUST.in DO IT and Michael S. Molina
be680408c9
fix(sqllab): enhance table explore tree with schema pinning, column sorting, and table schema refresh ( #39396 )
...
Co-authored-by: Michael S. Molina <michael.s.molina@gmail.com >
2026-04-17 09:08:46 -07:00
JUST.in DO IT
4bdc8d4c68
fix(sqllab): Relocate schema display on table preview ( #39420 )
2026-04-17 09:09:52 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
db7a2bd682
chore(deps): bump protocol-buffers-schema from 3.6.0 to 3.6.1 in /superset-frontend ( #39418 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-16 20:49:37 -07:00
Gabriel Torres Ruiz
2e0d482ccf
fix(mcp): support explicit query_mode in TableChartConfig ( #39412 )
2026-04-16 18:53:25 -03:00
Gabriel Torres Ruiz
e5b3a9c25d
fix(mcp): replace inputSchema with parameters_hint in search_tools results by default ( #39411 )
2026-04-16 18:53:10 -03:00
Gabriel Torres Ruiz
c289731212
fix(mcp): prevent LLM from creating new dashboard instead of adding chart to existing one ( #39353 )
2026-04-16 18:52:53 -03:00
Gabriel Torres Ruiz
f850c6b1b1
fix(parallel-coordinates): improve dark mode visibility for labels, axis text, and data lines ( #39415 )
2026-04-16 18:51:36 -03:00
Evan Rusackas and Claude Code
8ce234371b
test(core): restore 100% TS coverage for core-packages-ts (copy utility) ( #39384 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
2026-04-16 12:02:52 -07:00
Michael S. Molina
e5820b6b2b
chore: Bump core packages to 0.1.0 RC2 ( #39406 )
2026-04-16 15:28:37 -03:00
Mehmet Salih Yavuz and Claude Opus 4.6
69f062b804
feat(mcp): add a preview flow to mcp chart updates ( #39383 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-16 20:31:02 +03:00
735dd5dbae
chore(deps): bump @swc/core from 1.15.21 to 1.15.24 in /docs ( #39133 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-04-16 10:24:39 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cd7dddb5a1
chore(deps): bump baseline-browser-mapping from 2.10.16 to 2.10.19 in /docs ( #39373 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-16 10:24:26 -07:00
Mehmet Salih Yavuz
7c76fd3d81
fix(SelectFilter): auto clear search input ( #39157 )
2026-04-16 18:54:34 +03:00
Luiz Otavio
0b419a07f5
fix: add comments to SQL clause validation ( #39167 )
2026-04-16 09:19:39 -03:00
JUST.in DO IT
0b51e9cd5e
fix(sqllab): format_sql to apply db dialect by database_id ( #39393 )
2026-04-16 08:27:51 -03:00
Amin Ghadersohi
e7b9fb277e
fix(mcp): always push fresh app context per tool call to prevent g.user race ( #39385 )
2026-04-15 20:48:21 -04:00
Amin Ghadersohi
838ee870d0
fix(mcp): update instructions to use correct request wrapper and identifier params ( #39392 )
2026-04-15 20:17:07 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
84af6c9f29
chore(deps-dev): bump @docusaurus/tsconfig from 3.9.2 to 3.10.0 in /docs ( #39189 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 15:28:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
05227e8a80
chore(deps): bump caniuse-lite from 1.0.30001786 to 1.0.30001788 in /docs ( #39376 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 15:12:46 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
76a209663d
chore(deps-dev): bump baseline-browser-mapping from 2.10.13 to 2.10.16 in /superset-frontend ( #39150 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 14:56:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
61c45e3dd8
chore(deps-dev): bump @docusaurus/module-type-aliases from 3.9.2 to 3.10.0 in /docs ( #39194 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 14:53:37 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e11a50bedf
chore(deps): bump @docusaurus/faster from 3.9.2 to 3.10.0 in /docs ( #39195 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 14:53:05 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f4a6ea0fde
chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 ( #39267 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 14:52:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e542e9f840
chore(deps): bump actions/cache from 5.0.4 to 5.0.5 ( #39368 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 14:52:32 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e0dcb2908d
chore(deps): bump swagger-ui-react from 5.32.1 to 5.32.4 in /docs ( #39377 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 14:51:42 -07:00
innovark and Joe Li
eaccb2e471
fix(EmptyState): prevent SVG cropping in empty state images ( #37287 )
...
Co-authored-by: Joe Li <joe@preset.io >
2026-04-15 14:49:18 -07:00
Laurent Ouattara
c1a1f2e7e7
docs: add Hifadih Business & Technology to In the Wild ( #38824 )
2026-04-15 14:48:58 -07:00
Robert A
45d5501aa7
fix(documentation): FAQ grammar for SQL query wording ( #38923 )
2026-04-15 14:48:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
388596e4fe
chore(deps): bump baseline-browser-mapping from 2.10.13 to 2.10.16 in /docs ( #39148 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 14:48:25 -07:00
Grégoire Gailly and Sam Firke
b11d4f3ef0
fix(i18n): typo in fr language ( #36982 )
...
Co-authored-by: Sam Firke <sfirke@users.noreply.github.com >
2026-04-15 16:20:01 -04:00
Michael S. Molina and Claude Sonnet 4.6
998b9e387b
fix(ListView): empty state not filling available width ( #39387 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-15 16:32:12 -03:00
Maxime Beauchemin and Claude Opus 4.6
b3e88db87e
fix(table): use column label instead of SQL expression for orderby in downloads ( #39332 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-15 11:20:54 -07:00
Abdul Rehman and Claude Opus 4.6
8471e82342
fix(css-templates): add missing height to CSS editor in CssTemplateModal ( #39221 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-15 15:01:27 -03:00
Richard Fogaca Nienkotter
c3a0f2749b
fix(dashboard): apply dynamic groupby display controls to scoped charts ( #39356 )
2026-04-15 14:57:29 -03:00
Maxime Beauchemin and Claude Opus 4.6
c2d96e0dce
fix(table): fix cross-filter not clearing on second click in Interactive Table ( #39253 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-15 10:30:36 -07:00
Abdul Rehman and Claude Opus 4.6
44e77fdf2b
fix(explore): dispatch onChange immediately on NumberControl stepper arrow clicks ( #39220 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-15 10:15:37 -07:00
Gabriel Torres Ruiz
18d6feb499
feat(mcp): add create_virtual_dataset tool to save SQL queries as datasets ( #39279 )
2026-04-15 13:04:32 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0d91f5e982
chore(deps): bump markdown-to-jsx from 9.7.13 to 9.7.15 in /superset-frontend ( #39217 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 22:29:01 +07:00
5661fc9128
chore(deps): bump anthropics/claude-code-action from 1.0.93 to 1.0.96 + temporarily stop Dependabot PR for claude-code-action due to high release frequency but low usage( #39360 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-04-15 22:26:44 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a6156676c8
chore(deps): bump fuse.js from 7.1.0 to 7.3.0 in /superset-frontend ( #39146 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 22:25:17 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b2bd2329bc
chore(deps-dev): bump wait-on from 9.0.4 to 9.0.5 in /superset-frontend ( #39322 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 22:24:09 +07:00
Amin Ghadersohi and Claude Opus 4.6
724f1484b9
chore(mcp): update CLAUDE.md to reflect current codebase patterns ( #39348 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-15 11:11:21 -04:00
Beto Dealmeida
84f7b4a973
fix: do_ping takes a connection, not engine ( #39013 )
2026-04-15 11:10:24 -04:00
Michael S. Molina and Claude Sonnet 4.6
ddcb9be9a7
fix(sqllab): show schema refresh icon only on hover ( #39367 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-15 11:37:33 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8d9b5bd479
chore(deps): bump follow-redirects from 1.15.11 to 1.16.0 in /docs ( #39352 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 21:32:26 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4b88fc57b4
chore(deps-dev): bump prettier from 3.8.2 to 3.8.3 in /superset-websocket ( #39358 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-15 21:31:56 +07:00
b76080e291
feat(security): add granular export controls - Phase 2 + 3 ( #38581 )
...
Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
Co-authored-by: Daniel Vaz Gaspar <danielvazgaspar@gmail.com >
2026-04-15 10:24:59 -04:00
Alexandru Soare
411f769896
feat(filters): Adding empty state for filter modal ( #38909 )
2026-04-15 15:59:11 +03:00
Alexandru Soare
ffcc6e8b63
fix(MCP): fix MCP logs ( #39159 )
2026-04-15 15:57:04 +03:00
Luiz Otavio
86575e129b
fix(native-filters): prevent infinite recursion in filter scope tree traversal ( #39355 )
2026-04-15 08:16:12 -03:00
Joe Li
3e25f02da9
test(sqllab): migrate Cypress E2E tests to Playwright ( #39071 )
2026-04-14 10:31:37 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
002d8ad1e4
chore(deps-dev): bump @types/node from 25.5.0 to 25.6.0 in /superset-frontend ( #39265 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-14 23:18:15 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6287a07912
chore(deps): bump anthropics/claude-code-action from 1.0.89 to 1.0.93 ( #39318 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-14 23:14:11 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fa97d0357f
chore(deps-dev): bump globals from 17.4.0 to 17.5.0 in /superset-websocket ( #39310 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-14 23:02:05 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f836c3eccd
chore(deps-dev): bump typescript-eslint from 8.58.0 to 8.58.2 in /superset-websocket ( #39337 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-14 22:59:44 +07:00
JUST.in DO IT
499e27ea54
fix(native-filter): infinite filter loading by deps ( #39175 )
2026-04-14 09:06:36 -03:00
Alexandru Soare
c2a35e2eea
fix(popup): Dropdown popup width doesn't match input width when tags collapse in oneLine mode ( #39136 )
2026-04-14 11:09:26 +03:00
Alexandru Soare
5138aa2c11
fix(select): select all button cutoff ( #39005 )
2026-04-14 11:07:10 +03:00
Alexandru Soare
66a9e2e16e
fix(explore): Prevent error toast when navigating away from Explore page ( #39065 )
2026-04-14 11:05:03 +03:00
Richard Fogaca Nienkotter
0f417f0040
fix(dashboard): preserve dynamic group by column order ( #39333 )
2026-04-13 21:39:04 -03:00
Alexandru Soare
1462ac9282
fix(dashboard): Ensure screenshot downloads always generate fresh images/pdfs ( #38880 )
2026-04-13 14:17:46 -07:00
Richard Fogaca Nienkotter
da371217ef
fix: revert and restore server-side sorting for value axis sorts ( #39331 )
2026-04-13 18:07:15 -03:00
Richard Fogaca Nienkotter and Claude Sonnet 4.6
c971ea3ec6
fix(heatmap): skip orderby for value-based axis sorts ( #39290 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-13 14:29:26 -03:00
Richard Fogaca Nienkotter
de98fdc37b
test(heatmap): restore buildQuery coverage on master ( #39329 )
2026-04-13 13:50:11 -03:00
Maxime Beauchemin and Claude Opus 4.6
fa1f12a0b5
fix(explore): replace TableView with virtualized GridTable, add row limit controls, restore sample filters ( #39212 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-13 08:19:49 -07:00
Maxime Beauchemin and Claude Opus 4.6
de40b58e10
fix(tests): fix async teardown leak in FiltersConfigModal.test.tsx ( #39281 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-10 12:48:01 -07:00
Mike Bridge and Mike Bridge
eea3557f61
fix(dashboard): hide "Filters out of scope" section when empty ( #39201 )
...
Co-authored-by: Mike Bridge <michael.bridge@ext.preset.io >
2026-04-10 15:42:41 -04:00
Mike Bridge and Mike Bridge
7a243d329e
fix(dashboard): allow filter list to scroll in filter config modal sidebar ( #39203 )
...
Co-authored-by: Mike Bridge <michael.bridge@ext.preset.io >
2026-04-10 15:42:16 -04:00
Maxime Beauchemin and Claude Opus 4.6
98146251c4
fix(tests): improve ShareMenuItems test isolation to fix intermittent suite failure ( #39280 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-10 12:30:38 -07:00
Maxime Beauchemin and Claude Opus 4.6
0aa8cace1b
fix(dataset-editor): fix SQL expression editor extra spaces and height expansion ( #39248 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-10 12:12:26 -07:00
Maxime Beauchemin and Claude Opus 4.6
450701ecec
fix(SqlLab): improve SQL diff modal — responsive width, padding, tabs, and copy button ( #39246 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-10 12:11:05 -07:00
Richard Fogaca Nienkotter and Claude Opus 4.6
e9911fbac4
fix(echarts): prevent tooltip crash during dashboard auto-refresh ( #39277 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-10 14:36:44 -03:00
Gabriel Torres Ruiz
69c8eef78e
fix(ag-grid): jpeg export of ag-grid tables ( #38781 )
2026-04-10 12:54:59 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2ff50667e7
chore(deps): bump axios from 1.13.5 to 1.15.0 in /superset-frontend ( #39258 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-10 20:55:13 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f1cf274751
chore(deps): bump axios from 1.13.5 to 1.15.0 in /docs ( #39259 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-10 20:48:35 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b65396ccd4
chore(deps-dev): bump @types/node from 25.5.2 to 25.6.0 in /superset-websocket ( #39262 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-10 20:46:57 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1ad76e847e
chore(deps-dev): bump prettier from 3.8.1 to 3.8.2 in /superset-websocket ( #39260 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-10 20:46:34 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4583ef93a4
chore(deps-dev): bump prettier from 3.8.1 to 3.8.2 in /superset-frontend ( #39263 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-10 20:40:46 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f632d2474b
chore(deps-dev): bump webpack from 5.105.4 to 5.106.0 in /superset-frontend ( #39268 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-10 20:40:03 +07:00
Evan Rusackas and Claude Opus 4.5
b1d69f5b39
docs(api): add Theme API endpoints to OpenAPI spec ( #37943 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-04-10 00:17:06 -07:00
Enzo Martellucci
aba7e6dae4
fix(table): cross-filtering breaks after renaming column labels via Custom SQL ( #38858 )
2026-04-10 06:02:18 +02:00
Mike Bridge and Mike Bridge
8bcc90c766
fix(dashboard): Vertical filter bar gradient is extending past the filter bar area ( #39204 )
...
Co-authored-by: Mike Bridge <michael.bridge@ext.preset.io >
2026-04-09 18:30:47 -07:00
e39dd1afce
fix: implement native browser fullscreen for dashboard charts ( #38819 )
...
Signed-off-by: Venkateshwaran Shanmugham <venkateshwaracholan@gmail.com >
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
Co-authored-by: Richard Fogaça <richardfogaca@gmail.com >
Co-authored-by: Richard Fogaca Nienkotter <63572350+richardfogaca@users.noreply.github.com >
2026-04-09 21:49:36 -03:00
Amin Ghadersohi
680cef0ee0
fix(mcp): strip json_metadata and position_json from get_dashboard_info response ( #39101 )
2026-04-09 17:30:57 -04:00
Amin Ghadersohi
e17cf3c808
fix(mcp): wire up compact schema serialization for search_tools results ( #39229 )
2026-04-09 17:25:46 -04:00
Shaitan and Claude Sonnet 4.6
f49310b8ff
fix(sql-lab): apply access check in SqlExecutionResultsCommand ( #38952 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-09 16:47:15 -04:00
c7955a38ef
fix: Drill to Detail for Embedded ( #39214 )
...
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-09 17:01:48 -03:00
Amin Ghadersohi
68067d7f44
fix(mcp): handle OAuth-authenticated databases in execute_sql ( #39166 )
2026-04-09 15:47:00 -04:00
Daniel Vaz Gaspar and Claude Opus 4.6
5815665cc6
feat: role/user CRUD events and login/logout tracking in the action log ( #39121 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-09 15:55:25 +01:00
Enzo Martellucci and Mehmet Salih Yavuz
6649f35a0d
fix(reports): escape SQL LIKE wildcards in find_by_extra_metadata ( #38738 )
...
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2026-04-09 12:58:06 +03:00
Mehmet Salih Yavuz and Claude Opus 4.6
5263abdc60
fix(AlertsReports): untie filters from alerts reports tabs flag ( #38722 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-09 11:11:43 +03:00
Birk Skyum and Beto Dealmeida
c49641538d
feat: modernize deck.gl and map plugins with MapLibre/Mapbox dual renderer ( #38035 )
...
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
2026-04-08 20:14:59 -04:00
Maxime Beauchemin and Claude Opus 4.6
d915e4f3ff
fix(tags): fix Bulk tag modal dropdown clipping and stale tag cache ( #39210 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-08 16:28:13 -07:00
Maxime Beauchemin and Claude Opus 4.6
bad5a35fce
fix(explore): constrain Edit Dataset modal height to prevent footer cutoff ( #39211 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-08 16:19:10 -07:00
Amin Ghadersohi
1bde6f3bfd
fix(mcp): resolve null fields in list_datasets, list_databases, and save_sql_query ( #39206 )
2026-04-08 18:39:56 -04:00
4e0890ee1f
feat(api): Add filter_dashboard_id parameter to apply dashboard filters to chart/data endpoint ( #38638 )
...
Co-authored-by: Matthew Deadman <matthewdeadman@Matthews-MacBook-Pro-2.local >
Co-authored-by: Matthew Deadman <matthewdeadman@matthews-mbp-2.lan >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-04-08 15:32:46 -07:00
d63308ca37
fix(frontend): fix loading spinner positioning in Save modal and filters panel ( #39205 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: yousoph <sophieyou12@gmail.com >
2026-04-08 13:23:30 -07:00
Maxime Beauchemin and Claude Opus 4.6
63cceb6a79
refactor(plugins): replace react-icons with antd icons, remove 83MB dependency ( #39184 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-08 13:21:34 -07:00
Maxime Beauchemin and Claude Opus 4.6
b8b2bdedf9
fix(ace-editor): style bracket matching to blend with theme ( #39182 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-08 13:09:14 -07:00
Maxime Beauchemin and Claude Opus 4.6
d5017e60c3
fix(sqllab): fix table navigator schema list, pin/unpin UX, copy actions, icons, and toolbar colors ( #39173 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-08 13:06:29 -07:00
Luiz Otavio
2e80f2a473
fix: add template_processor so Jinja gets rendered before SQLGlot parse ( #39207 )
2026-04-08 16:58:15 -03:00
JUST.in DO IT
4c2dd63464
fix(sqllab): Update style for code viewer container ( #39075 )
2026-04-08 12:42:06 -07:00
Maxime Beauchemin and Claude Opus 4.6
62302ad8c3
perf(webpack): reduce watch mode memory usage and fix docker-compose-light env ( #39183 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-08 12:26:49 -07:00
Maxime Beauchemin and Claude Sonnet 4.6
ed659958f3
fix(sqllab): use monospace font for SQL in database error messages ( #39181 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-08 12:26:25 -07:00
Maxime Beauchemin and Claude Opus 4.6
36de05fe36
fix(plugin-chart-handlebars): improve CSS sanitization tooltip and hide when not needed ( #39180 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-08 12:25:54 -07:00
Maxime Beauchemin and Claude Opus 4.6
a64609f4f3
fix(explore): add left-indentation to control panel hierarchy ( #39177 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-08 12:25:36 -07:00
Maxime Beauchemin and Claude Opus 4.6
140f0001f2
fix(sqllab): demote "Save as new" button from primary to secondary ( #39179 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-08 12:03:44 -07:00
Elizabeth Thompson and Claude Sonnet 4.6
587fe4af63
fix(reports): propagate PlaywrightTimeout so execution transitions to ERROR state ( #39176 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-08 11:00:03 -07:00
Michael S. Molina and Đỗ Trọng Hải
3a3a6536b7
fix(explore): Unnecessary scroll bars appearing on charts in Explore ( #39160 )
...
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-04-08 08:33:20 -03:00
Alexandru Soare
4f695e1b4d
fix(filterReports): _generate_native_filter() crashes on null/empty filterValues ( #38954 )
2026-04-08 13:53:18 +03:00
Maxime Beauchemin and Claude Opus 4.6
6ba9096870
fix(explore): handle boolean false values correctly in control rendering ( #39172 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-07 18:23:03 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5106afb07f
chore(deps): bump d3-cloud from 1.2.8 to 1.2.9 in /superset-frontend ( #39145 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 15:16:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2bd4131636
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #39134 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 15:15:18 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7e452df1cc
chore(deps): bump anthropics/claude-code-action from 1.0.87 to 1.0.89 ( #39132 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 15:14:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a626d06415
chore(deps): bump caniuse-lite from 1.0.30001784 to 1.0.30001786 in /docs ( #39128 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 15:11:13 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d159edc9a6
chore(deps-dev): bump @swc/core from 1.15.21 to 1.15.24 in /superset-frontend ( #39127 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 15:10:17 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96fa2cbd2b
chore(deps): update @deck.gl/aggregation-layers requirement from ~9.2.9 to ~9.2.11 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #39126 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 15:09:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9750881193
chore(deps-dev): bump @types/node from 25.5.0 to 25.5.2 in /superset-websocket ( #39125 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 15:09:25 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3db92021c7
chore(deps-dev): bump eslint from 10.1.0 to 10.2.0 in /superset-websocket ( #39123 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 15:08:46 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5ccfc530b2
chore(deps): bump geolib from 3.3.4 to 3.3.14 in /superset-frontend ( #39092 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 14:48:08 -07:00
Amin Ghadersohi
5f9fc31ae2
feat(mcp): add get_chart_type_schema tool for on-demand schema discovery ( #39142 )
2026-04-07 12:07:45 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8e811de564
chore(deps): bump hot-shots from 14.2.0 to 14.3.1 in /superset-websocket ( #39147 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 22:43:50 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
027de6339b
chore(deps-dev): bump jsdom from 29.0.1 to 29.0.2 in /superset-frontend ( #39155 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 21:39:04 +07:00
Amin Ghadersohi
bf9aff19b5
fix(mcp): compress chart config schemas to reduce search_tools token usage ( #39018 )
2026-04-06 19:52:03 -04:00
SBIN2010
b05764d070
feat: Add currencies controls in country map ( #39016 )
2026-04-06 23:20:03 +03:00
Amin Ghadersohi
7be2acb2f3
fix(mcp): add description and certification fields to default list tool columns ( #39017 )
2026-04-06 13:37:52 -04:00
Amin Ghadersohi
83ad1eca26
fix(mcp): add dynamic response truncation for oversized info tool responses ( #39107 )
2026-04-06 12:36:03 -04:00
Amin Ghadersohi
92747246fc
fix(mcp): remove JWT ValueError g.user fallback in auth layer ( #39106 )
2026-04-06 12:35:46 -04:00
Amin Ghadersohi
7380a59ab8
fix(mcp): fix form_data null, dataset URL, ASCII preview, and chart rename ( #39109 )
2026-04-06 12:34:26 -04:00
Ville Brofeldt
e56f8cc4fb
fix(security_manager): custom auth_view issue ( #39098 )
2026-04-06 09:04:59 -07:00
Ville Brofeldt
7c79b9ab61
fix(migrations): check pre-existing foreign keys on create util ( #39099 )
2026-04-06 09:04:22 -07:00
a62be684a0
feat(mcp): add database connection listing and info tools ( #39111 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: Amin Ghadersohi <amin.ghadersohi@gmail.com >
2026-04-06 11:34:10 -04:00
Michael S. Molina and Claude Sonnet 4.6
a3dfbd7bff
fix(deps): revert simple-zstd from 2.1.0 back to 1.4.2 ( #39139 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-06 11:28:28 -03:00
Sam Firke
12eb40db01
fix(SQL Lab): handle columns without names ( #38986 )
2026-04-06 10:09:16 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d796543f5a
chore(deps): update @deck.gl/react requirement from ~9.2.9 to ~9.2.11 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #39033 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 15:07:42 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e5ae626433
chore(deps): bump dawidd6/action-download-artifact from 19 to 20 ( #39081 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 15:06:06 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8195574345
chore(deps): bump anthropics/claude-code-action from 1.0.85 to 1.0.87 ( #39083 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 15:04:43 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6b029997d9
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #39087 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 15:04:04 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7a64483e6b
chore(deps-dev): bump @swc/plugin-emotion from 14.7.0 to 14.8.0 in /superset-frontend ( #39088 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 15:03:44 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e424b55036
chore(deps-dev): bump babel-loader from 10.1.0 to 10.1.1 in /superset-frontend ( #39090 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 15:02:57 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
613e6d6cde
chore(deps): bump d3-cloud from 1.2.8 to 1.2.9 in /superset-frontend ( #39093 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 15:02:11 -07:00
Amin Ghadersohi
b3a402d936
fix(mcp): handle stale SSL connections, heatmap duplicate labels, and session rollback ( #39015 )
2026-04-03 16:07:29 -04:00
JUST.in DO IT
c7d175b842
fix(dashboard): remove opacity on filter dropdown ( #39074 )
2026-04-03 09:31:23 -07:00
Amin Ghadersohi
851bbeea48
fix(mcp): improve execute_sql response-too-large error to suggest limit parameter ( #39003 )
2026-04-03 10:57:31 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c5bce756f0
chore(deps): bump yeoman-generator from 7.5.1 to 8.1.2 in /superset-frontend ( #38671 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 22:13:20 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3239f058c8
chore(deps-dev): bump baseline-browser-mapping from 2.10.10 to 2.10.13 in /superset-frontend ( #39044 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 22:10:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7e0c634c3a
chore(deps-dev): bump typescript-eslint from 8.56.1 to 8.58.0 in /superset-websocket ( #38997 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 21:46:19 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a9ced5c881
chore(deps): bump lodash-es from 4.17.23 to 4.18.1 in /superset-frontend ( #39026 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 21:45:55 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ace5f9d8c2
chore(deps): bump lodash from 4.17.23 to 4.18.1 in /superset-frontend/cypress-base ( #39027 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 21:45:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0452d1515a
chore(deps-dev): bump @babel/preset-env from 7.29.0 to 7.29.2 in /superset-frontend ( #39028 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 21:44:57 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0330fdeb00
chore(deps-dev): bump ts-jest from 29.4.6 to 29.4.9 in /superset-websocket ( #39029 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 21:44:32 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f2ff24d811
chore(deps): bump @ant-design/icons from 5.6.1 to 6.1.1 in /superset-frontend ( #39050 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 21:42:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c51132f824
chore(deps): bump aws-actions/amazon-ecr-login from 2.1.1 to 2.1.2 ( #39042 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 09:43:40 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b4cb815ebf
chore(deps): bump anthropics/claude-code-action from 1.0.83 to 1.0.85 ( #39037 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 09:43:05 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
08d1ddd9fb
chore(deps-dev): bump mini-css-extract-plugin from 2.10.1 to 2.10.2 in /superset-frontend ( #39054 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 09:33:50 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23ac4cb3a4
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #39051 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-03 09:32:55 +07:00
Joe Li and Claude Opus 4.6
5662ecab15
chore(tests): promote Playwright experimental tests to stable ( #38924 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-02 12:00:06 -07:00
Joe Li and Claude Opus 4.6
9e27d682f6
test(alerts/reports): close backend and frontend test coverage gaps ( #38591 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-02 11:55:24 -07:00
Joe Li
f0fcdcc76a
chore: package bumps ( #39014 )
2026-04-02 11:53:07 -07:00
Kamil Gabryjelski
135e0f8099
fix(mcp): Created dashboard should be in draft state by default ( #39011 )
2026-04-02 19:28:51 +02:00
Geidō and Claude Opus 4.6
25eea295f6
fix(reports): log exception traceback in _get_csv_data ( #39069 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-02 18:37:57 +02:00
c372f5980c
chore(deps): bump lodash from 4.17.23 to 4.18.1 in /superset-frontend ( #39043 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-04-02 23:36:36 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3802acb1e0
chore(deps-dev): bump jest-html-reporter from 4.3.0 to 4.4.0 in /superset-frontend ( #39053 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 22:08:48 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bdb0030cf8
chore(deps-dev): bump @swc/core from 1.15.18 to 1.15.21 in /superset-frontend ( #39045 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 22:07:44 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
87f0540acd
chore(deps-dev): bump ts-jest from 29.4.6 to 29.4.9 in /superset-frontend ( #39049 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 22:06:54 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
985d7b6a79
chore(deps-dev): bump @types/node from 25.3.5 to 25.5.0 in /superset-frontend ( #39055 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 22:06:13 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
59f92f979a
chore(deps-dev): bump eslint-plugin-testing-library from 7.16.1 to 7.16.2 in /superset-frontend ( #39056 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 22:03:50 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5cc286e383
chore(deps-dev): bump @playwright/test from 1.58.2 to 1.59.1 in /superset-frontend ( #39057 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 21:59:29 +07:00
26f4a5acad
chore(deps): bump azure/setup-helm from 4.3.1 to 5.0.0 ( #38815 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2026-04-02 01:28:56 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fdd08d3b70
chore(deps): bump ws from 8.19.0 to 8.20.0 in /superset-websocket ( #38994 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-02 01:28:52 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1aac6c9474
chore(deps): update @deck.gl/react requirement from ~9.2.5 to ~9.2.9 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #38150 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-01 14:38:12 -07:00
7acb0c6d05
chore(deps-dev): bump @types/node from 25.3.3 to 25.3.5 in /superset-frontend ( #38510 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Joe Li <joe@preset.io >
2026-04-01 14:27:54 -07:00
00eb86d03f
chore(deps-dev): bump @swc/plugin-emotion from 14.6.0 to 14.7.0 in /superset-frontend ( #38333 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2026-04-01 14:27:11 -07:00
1d0e836a29
chore(deps): update @deck.gl/extensions requirement from ~9.2.5 to ~9.2.9 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #38149 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2026-04-01 13:30:26 -07:00
ec6640b188
chore(deps-dev): update fs-extra requirement from ^11.3.3 to ^11.3.4 in /superset-frontend/packages/generator-superset ( #38383 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2026-04-01 13:29:47 -07:00
Rayan Salhab
ff3b8d8398
fix(ace-editor): fix cursor misalignment in markdown editor ( #38928 )
2026-04-01 12:03:28 -07:00
Michael S. Molina
022342839a
fix(echarts): fix stacked horizontal bar chart clipping and duplicate x-axis labels ( #39012 )
2026-04-01 15:50:08 -03:00
38f0dc74f7
fix(dataset-editor): improve modal layout and fix Settings tab horizontal scroll ( #39009 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-04-01 15:36:17 -03:00
Amin Ghadersohi
0bae05d4a9
fix(mcp): handle table chart raw mode in query builders and sanitize dashboard titles ( #38990 )
2026-04-01 13:42:59 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1bb41a6e60
chore(deps): bump anthropics/claude-code-action from 1.0.82 to 1.0.83 ( #39001 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-01 10:20:18 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4423134739
chore(deps): bump ioredis from 5.10.0 to 5.10.1 in /superset-websocket ( #38993 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-01 10:19:26 -07:00
Amin Ghadersohi
190f1a59c5
fix(mcp): fix dashboard owners Pydantic crash and preserve chart preview filters ( #38987 )
2026-04-01 13:18:28 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5f99d613a0
chore(deps): bump markdown-to-jsx from 9.7.6 to 9.7.8 in /superset-frontend ( #38507 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-01 09:34:47 -07:00
6adc816805
chore(deps): bump d3-cloud from 1.2.8 to 1.2.9 in /superset-frontend ( #38438 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2026-04-01 09:34:01 -07:00
aa97679327
chore(deps): update @deck.gl/aggregation-layers requirement from ~9.2.5 to ~9.2.9 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #38148 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2026-04-01 09:32:38 -07:00
Michael S. Molina and Claude Opus 4.6
94d8735d4b
fix(query): pass datasource table to template processor for schema-aware Jinja rendering ( #38984 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-04-01 13:08:12 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64c8d652e1
chore(deps-dev): bump @types/node from 25.3.5 to 25.5.0 in /superset-websocket ( #38995 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-01 22:48:45 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d30c5b4eee
chore(deps): bump caniuse-lite from 1.0.30001782 to 1.0.30001784 in /docs ( #38998 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-01 22:37:29 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8ed75787cb
chore(deps-dev): bump jsdom from 28.1.0 to 29.0.1 in /superset-frontend ( #38999 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-01 17:39:08 +07:00
michaelkremmel
4ee391e0d7
docs(db): Update crate.py with new Homepage URL ( #39002 )
2026-04-01 17:37:51 +07:00
a67ca052d6
chore(deps-dev): bump babel-loader from 10.0.0 to 10.1.0 in /superset-frontend ( #38505 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Joe Li <joe@preset.io >
2026-03-31 21:59:02 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6b6e3803d1
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.56.1 to 8.57.0 in /superset-websocket ( #38540 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 21:58:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51ec61c675
chore(deps-dev): bump eslint from 10.0.2 to 10.0.3 in /superset-websocket ( #38500 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 21:58:11 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
424f99efdf
chore(deps): bump anthropics/claude-code-action from 1.0.80 to 1.0.82 ( #38946 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 21:38:37 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
070be3de8b
chore(deps-dev): bump webpack-bundle-analyzer from 5.2.0 to 5.3.0 in /superset-frontend ( #38940 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 21:38:24 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bd98269628
chore(deps): bump hot-shots from 14.1.1 to 14.2.0 in /superset-websocket ( #38663 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 21:37:24 -07:00
7ce371080c
chore(deps-dev): bump @types/node from 25.3.3 to 25.3.5 in /superset-websocket ( #38462 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-31 21:35:32 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
872632aca0
chore(deps): bump fs-extra from 11.3.2 to 11.3.4 in /superset-frontend ( #38437 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 21:35:08 -07:00
dependabot[bot]
64bd03bd70
chore(deps): bump caniuse-lite from 1.0.30001781 to 1.0.30001782 in /docs ( #38941 )
2026-04-01 07:55:19 +07:00
madhushreeag and madhushree agarwal
1e2d0faa55
fix(dashboard): dashboard filters not inherited in charts in Safari sometimes due to race condition ( #38851 )
...
Co-authored-by: madhushree agarwal <madhushree_agarwal@apple.com >
2026-03-31 12:46:05 -07:00
Michael S. Molina and Claude Opus 4.6
8559786cc2
fix(mixed-timeseries): apply same axis formatting options as timeseries charts ( #38979 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-31 15:00:46 -03:00
Michael S. Molina and Claude Sonnet 4.6
d4d22909cb
fix(dashboard): live CSS preview in PropertiesModal ( #38960 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-31 15:00:20 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4fae5758d5
chore(deps): bump baseline-browser-mapping from 2.10.11 to 2.10.12 in /docs ( #38942 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-01 00:42:28 +07:00
f85efe6139
chore(build): remove eslint-plugin-file-progress usage + correct newlines for npm run check:custom-rules ( #38938 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-04-01 00:35:02 +07:00
Kamil Gabryjelski and Claude Opus 4.6
6ea9f2ade9
chore(mcp): clarify saved metrics vs columns in MCP instructions ( #38981 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-03-31 19:31:02 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4036b784ed
chore(deps): bump serialize-javascript and terser-webpack-plugin in /superset-embedded-sdk ( #38920 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 10:30:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
08a4ad662a
chore(deps): bump brace-expansion from 1.1.11 to 1.1.13 in /superset-frontend/cypress-base ( #38919 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 10:30:06 -07:00
e4021fb6e7
fix(sec): resolve 50+ Dependabot alerts + bump core-js ( #38939 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-04-01 00:28:42 +07:00
53b1d1097c
fix(presto): Fix presto timestamp ( #26467 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Rui Zhao <zhaorui@dropbox.com >
Co-authored-by: Joe Li <joe@preset.io >
2026-03-31 10:28:06 -07:00
Mehmet Salih Yavuz
55aa36fef8
docs(developer): add celery to testing section for alerts&reports ( #38888 )
2026-03-31 10:24:58 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3abcfb797a
chore(deps-dev): bump open-cli from 8.0.0 to 9.0.0 in /superset-frontend ( #38875 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 10:23:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a741ddc03c
chore(deps-dev): bump picomatch from 2.3.1 to 2.3.2 in /superset-embedded-sdk ( #38864 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 10:19:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7d26e33346
chore(deps-dev): bump picomatch from 2.3.1 to 2.3.2 in /superset-websocket ( #38861 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 10:19:10 -07:00
Jessica Morris
f6cd8066ab
fix(bubble): Fix Bubble chart axis label rotation ( #38917 )
2026-03-31 10:13:54 -07:00
Amin Ghadersohi
daefedebcd
fix(mcp): batch fix for execute_sql crashes, null timestamps, and deck.gl errors ( #38977 )
2026-03-31 12:50:20 -04:00
Amin Ghadersohi
c37a3ec292
fix(mcp): add TEMPORAL_RANGE filter for temporal x-axis in generate_chart ( #38978 )
2026-03-31 12:39:08 -04:00
Amin Ghadersohi and Claude Opus 4.6
4245720851
feat(mcp): add Big Number chart type support to MCP service ( #38403 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-31 11:53:53 -04:00
Enzo Martellucci
f0b20dc445
fix(echarts): adapt y-axis ticks and padding for compact timeseries charts ( #38673 )
2026-03-31 17:44:42 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e6f1209318
chore(deps): bump aws-actions/amazon-ecr-login from 2.0.2 to 2.1.1 ( #38944 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 22:34:58 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
944944c49e
chore(deps): bump antd from 6.3.4 to 6.3.5 in /docs ( #38967 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 22:33:18 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ecbf396d4a
chore(deps): bump path-to-regexp from 8.2.0 to 8.4.0 in /superset-websocket/utils/client-ws-app ( #38935 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 22:16:26 +07:00
RACZ Andras
b1474aaa60
docs: Fix misleading links in UPDATING.md ( #38947 )
2026-03-31 22:09:31 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b49e899974
chore(deps-dev): bump typescript-eslint from 8.57.2 to 8.58.0 in /docs ( #38968 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-31 21:59:46 +07:00
Đỗ Trọng Hải
11f2140c37
fix(AlteredSliceTag): not display undefined filter value for chart change record ( #38883 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-31 10:38:22 -03:00
Michael S. Molina and Claude Sonnet 4.6
f1cd1ae710
fix(pivot-table): safely cast numeric strings to numbers for date formatting ( #38953 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-31 08:19:22 -03:00
Enzo Martellucci and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
e0a0a22542
fix(charts): add X Axis Number Format control for numeric X-axis columns ( #38809 )
...
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-03-31 13:38:07 +03:00
Amin Ghadersohi
2c9cf0bd55
fix(mcp): enforce MAX_PAGE_SIZE limit on list tools to prevent oversized responses ( #38959 )
2026-03-30 16:48:03 -04:00
Amin Ghadersohi
38fdfb4ca2
fix(mcp): prevent stale g.user from causing user impersonation across tool calls ( #38747 )
2026-03-30 14:23:46 -04:00
Kamil Gabryjelski and Claude Opus 4.6
15bab227bb
feat(mcp): support saved metrics from datasets in chart generation ( #38955 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-03-30 16:38:31 +02:00
Amin Ghadersohi and Claude Opus 4.6
d331a043a3
fix(mcp): prevent PendingRollbackError from poisoned sessions after SSL drops ( #38934 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-30 10:30:15 -04:00
Enzo Martellucci
41d401a879
fix(select): ensure filter dropdown matches input field width ( #38886 )
2026-03-30 15:52:37 +02:00
Amin Ghadersohi
89f7e5e7ba
fix(mcp): validate dataset exists in generate_explore_link before generating URL ( #38951 )
2026-03-30 09:29:29 -04:00
Amin Ghadersohi and Claude Opus 4.6
aa1a69555b
fix(mcp): prevent GRID_ID injection into ROOT_ID on tabbed dashboards ( #38890 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-30 11:26:58 +02:00
Amin Ghadersohi
d1903afc69
fix(mcp): remove @parse_request decorator for cleaner tool schemas ( #38918 )
2026-03-29 16:09:51 -04:00
Đỗ Trọng Hải
dbc25dc555
fix(ci): resolve failed CodeCov upload for backend tests ( #38885 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-27 18:33:02 -04:00
JUST.in DO IT
a5d2324e21
fix(sqllab): invalid treeview folder expansion ( #38897 )
2026-03-27 14:54:45 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
38e82e4084
chore(deps): bump yaml from 1.10.2 to 1.10.3 in /superset-frontend/cypress-base ( #38856 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 13:58:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6bcc8bf2b2
chore(deps): bump picomatch from 2.3.1 to 2.3.2 in /superset-frontend/cypress-base ( #38862 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 13:58:06 -07:00
Mehmet Salih Yavuz
f832f9b0d5
fix(Timeseries): dedup x axis labels ( #38733 )
2026-03-27 22:13:02 +03:00
Kamil Gabryjelski
fc705d94e3
fix(explore): migrate from window.history to React Router history API ( #38887 )
2026-03-27 16:49:54 +01:00
JUST.in DO IT
65eae027fa
fix(sqllab): long cell content overflooding ( #38855 )
2026-03-27 09:46:10 -03:00
Krishna Chaitanya
ac96f46c76
fix(dataset): add email field to owners_data for Chart Explore path ( #38836 )
2026-03-27 09:44:11 -03:00
Alexandru Soare and Mehmet Salih Yavuz
5c782397bb
refactor(passwords): accept passwords via YAML file ( #38059 )
...
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2026-03-27 14:37:34 +02:00
Enzo Martellucci
40387d5daa
fix(reports): PUT with empty recipients list does not persist the change ( #38711 )
2026-03-27 12:54:13 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7f3351011d
chore(deps): bump anthropics/claude-code-action from 1.0.78 to 1.0.80 ( #38901 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:52:31 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d6a6b6db14
chore(deps): bump yaml from 1.10.2 to 1.10.3 in /superset-frontend ( #38905 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:51:06 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
388a1fd0be
chore(deps-dev): bump picomatch from 2.3.1 to 2.3.2 in /superset-frontend ( #38906 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:47:12 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c2c929bf94
chore(deps-dev): bump speed-measure-webpack-plugin from 1.5.0 to 1.6.0 in /superset-frontend ( #38871 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:46:12 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41473a520e
chore(deps): bump handlebars from 4.7.8 to 4.7.9 in /superset-frontend ( #38894 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:45:21 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
50a5bb0671
chore(deps-dev): bump handlebars from 4.7.8 to 4.7.9 in /superset-websocket ( #38895 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:44:48 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20d0cfd156
chore(deps): bump codecov/codecov-action from 5.5.3 to 6.0.0 ( #38903 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:44:26 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5ad91fbb09
chore(deps): bump baseline-browser-mapping from 2.10.10 to 2.10.11 in /docs ( #38902 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:43:58 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6229c99050
chore(deps): bump @ant-design/icons from 6.1.0 to 6.1.1 in /docs ( #38904 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:43:38 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7e69d5d839
chore(deps): bump node-forge from 1.3.2 to 1.4.0 in /docs ( #38907 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-27 14:42:11 +07:00
dagecko
8700ec4e6d
fix: pin 2 unpinned action(s),extract 21 unsafe expression(s) to env vars ( #38893 )
2026-03-27 14:38:20 +07:00
8cbf5fb8df
chore(deps-dev): bump lerna from 8.2.4 to 9.0.4 in /superset-frontend ( #37914 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-03-27 14:29:19 +07:00
Richard Fogaca Nienkotter
9c288d66b5
fix(dataset): add missing currency_code_column to DatasetPostSchema ( #38853 )
2026-03-26 16:58:04 -03:00
Beto Dealmeida
8983edea66
fix: type probing ( #38889 )
2026-03-26 13:06:49 -04:00
95820fb9e6
docs: improve SQL templating guidance and examples ( #38777 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Daniel Vaz Gaspar <danielvazgaspar@gmail.com >
2026-03-26 16:47:14 +00:00
Amin Ghadersohi
6dc3d7ad9f
fix(mcp): add try/except around DAO re-fetch to handle session errors in multi-tenant ( #38859 )
2026-03-26 12:43:21 -04:00
JUST.in DO IT
cfa1aba1e0
fix(sqllab): inactive leftbar selector on empty state ( #38833 )
2026-03-26 08:57:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43816d7528
chore(deps): bump aws-actions/amazon-ecs-deploy-task-definition from 2.6.0 to 2.6.1 ( #38874 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-26 21:59:45 +07:00
6dd82afb0b
chore(deps): bump dayjs from 1.11.19 to 1.11.20 in /superset-frontend ( #38840 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-03-26 21:52:42 +07:00
JUST.in DO IT
e045f49787
fix(echart): multiple time shift line pattern ( #38866 )
2026-03-26 08:56:05 -03:00
Joe Li and Claude Opus 4.6
38d3a39c06
test(sqllab): add SQL Lab SDK API contract tests ( #38860 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-26 08:52:14 -03:00
Amin Ghadersohi
23a5e95884
fix(mcp): add permission checks to generate_dashboard and update_chart tools ( #38845 )
2026-03-25 16:37:48 -04:00
Kamil Gabryjelski and Claude Opus 4.6
16f5a2a41a
fix(mcp): detect unknown chart config fields and suggest correct ones ( #38848 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-03-25 18:38:23 +01:00
Joe Li and Claude Opus 4.6
04e07acf98
fix(tests): resolve flakey SouthPane extension test caused by nwsapi ( #38832 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-25 09:54:44 -07:00
Đỗ Trọng Hải
3506773f51
fix(ci): install missing msgcat used for Babel translation update ( #38830 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-25 23:40:40 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d32e975eb9
chore(deps): bump anthropics/claude-code-action from 1.0.76 to 1.0.78 ( #38842 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-25 23:38:08 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
21fb5a27e9
chore(deps): bump google-auth-library from 10.6.1 to 10.6.2 in /superset-frontend ( #38841 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-25 23:35:50 +07:00
Mayank Aggarwal
403f4ad78c
fix(dashboard): larger JSON metadata editor for better editing UX ( #38728 ) ( #38745 )
2026-03-25 23:25:47 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ba5820b088
chore(deps): bump antd from 6.3.3 to 6.3.4 in /docs ( #38843 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-25 23:09:16 +07:00
a93e319716
fix(datasource): align access validation in legacy views ( #38647 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
Co-authored-by: Daniel Vaz Gaspar <danielvazgaspar@gmail.com >
2026-03-25 14:56:59 +00:00
Richard Fogaca Nienkotter
12aca72074
fix(echarts): prevent plain legend clipping in dashboards ( #38675 )
2026-03-25 09:38:31 -03:00
Michael S. Molina
3fb903fdc6
fix(embedded-sdk): wire hideTab to actually hide the dashboard tab ( #38846 )
2026-03-25 09:19:56 -03:00
Joe Li and Claude Opus 4.6
4b26f8c712
fix(models): correct TabState.latest_query_id column type to match FK target ( #38837 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-25 04:24:53 -04:00
Alexandru Soare
37c4a36fdb
fix(report): raise warning when filter type not recognized ( #38676 )
2026-03-24 16:06:44 -07:00
811dcb3715
feat(api-keys): add API key authentication via FAB SecurityManager ( #37973 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
2026-03-24 13:37:26 -04:00
Joe Li and Claude Opus 4.6
ccaac306e5
test(sqllab): add extension slot contract tests for all 7 host components ( #38776 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-24 10:01:52 -07:00
Amin Ghadersohi and Claude Opus 4.6
c596df9294
feat(mcp): add Handlebars chart type support to MCP service ( #38402 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-24 12:25:39 -04:00
Michael S. Molina
6852349d24
fix(extensions-cli): remove publisher prefix from bundle filename ( #38823 )
2026-03-24 13:09:10 -03:00
JUST.in DO IT
7c9d75b69e
fix(sqllab): FilterText does not apply accordingly ( #38813 )
2026-03-24 09:04:41 -07:00
dependabot[bot]
42201a98a1
chore(deps): bump pug from 3.0.3 to 3.0.4 in /superset-websocket/utils/client-ws-app ( #38664 )
2026-03-24 22:40:17 +07:00
Amin Ghadersohi
09594b32f9
fix(mcp): fix generate_dashboard cross-session SQLAlchemy error ( #38827 )
2026-03-24 11:39:37 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e2bb20121e
chore(deps-dev): bump typescript-eslint from 8.57.1 to 8.57.2 in /docs ( #38818 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-24 22:07:07 +07:00
Francesco.Castaldi
56ebfb7848
feat(i18n): update Italian messages.po ( #38821 )
2026-03-24 22:06:11 +07:00
Beto Dealmeida
5d9f53ff0c
feat: prevent Postgres connection to Redshift ( #38693 )
2026-03-24 10:44:38 -04:00
Alexandru Soare
89d1b80ce7
fix(keys): Unsafe dict access in get_native_filters_params() crashes execution ( #38272 )
2026-03-24 15:43:27 +02:00
Shaitan and Claude Sonnet 4.6
962abf6904
fix(sqllab): add authorization check to query cost estimation ( #38648 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-24 12:57:02 +00:00
Amin Ghadersohi
ed3c5280a9
fix(mcp): prevent encoding errors and fix tool bugs on MCP client transports ( #38786 )
2026-03-24 05:41:24 -04:00
Mehmet Salih Yavuz
7222327992
fix(Matrixify): readd matrixify_enable guard missing ( #38759 )
2026-03-23 23:29:09 +03:00
Beto Dealmeida
e0b524fff2
chore: docs on Redshift auth with access key ( #38810 )
2026-03-23 16:07:36 -04:00
Levis Mbote
e67bc5bee5
fix(explore): display actual data type instead of "column" in column tooltip ( #38554 )
2026-03-23 09:06:54 -07:00
Mehmet Salih Yavuz
86a260e39b
feat(theming): Custom label tokens ( #38679 )
2026-03-23 18:21:47 +03:00
Mehmet Salih Yavuz
fdcb942f3c
fix(MainNav): display all menu items on smaller screens ( #38732 )
2026-03-23 18:21:13 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7a5c07b99c
chore(deps): bump @babel/runtime from 7.28.6 to 7.29.2 in /superset-frontend ( #38804 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 22:21:07 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6d93eeb533
chore(deps): bump baseline-browser-mapping from 2.10.9 to 2.10.10 in /docs ( #38799 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 22:20:36 +07:00
Mehmet Salih Yavuz
44179199ba
chore(Reports): remove unused and incorrect field ( #38724 )
2026-03-23 18:20:21 +03:00
Mehmet Salih Yavuz
100ad7d9ee
fix(AlertsReports): validate anchor_list is a list ( #38723 )
2026-03-23 18:19:57 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c96c817ef5
chore(deps-dev): bump eslint-plugin-testing-library from 7.16.0 to 7.16.1 in /superset-frontend ( #38795 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 22:10:30 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
519a64da82
chore(deps): bump @swc/core from 1.15.18 to 1.15.21 in /docs ( #38798 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 22:09:00 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24be9cd515
chore(deps): bump caniuse-lite from 1.0.30001780 to 1.0.30001781 in /docs ( #38801 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 21:58:15 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1987e816a5
chore(deps-dev): bump baseline-browser-mapping from 2.10.7 to 2.10.10 in /superset-frontend ( #38805 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 21:57:57 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0f4aa1ceea
chore(deps): bump nanoid from 5.1.6 to 5.1.7 in /superset-frontend ( #38803 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 21:56:54 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
601fb45142
chore(deps-dev): bump oxlint from 1.53.0 to 1.56.0 in /superset-frontend ( #38802 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 21:52:51 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c9ebb13fa1
chore(deps-dev): bump @babel/runtime-corejs3 from 7.29.0 to 7.29.2 in /superset-frontend ( #38800 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 21:50:52 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
618113079f
chore(deps): bump anthropics/claude-code-action from 0.0.63 to 1.0.76 ( #38797 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 21:48:46 +07:00
Mehmet Salih Yavuz
cc34d19d24
fix(DropdownContainer): add fresh to avoid stale data ( #38702 )
2026-03-23 14:32:11 +03:00
João Pedro Alves Barbosa
02ffb52f4a
fix(table): improve conditional formatting text contrast ( #38705 )
2026-03-22 18:59:15 -03:00
dependabot[bot]
361afff798
chore(deps-dev): bump copy-webpack-plugin from 13.0.1 to 14.0.0 in /superset-frontend ( #38504 )
2026-03-22 23:49:45 +07:00
dependabot[bot]
2a6b0215f0
chore(deps): bump simple-zstd from 1.4.2 to 2.1.0 in /superset-frontend ( #38662 )
2026-03-22 23:49:00 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c1c296233f
chore(deps-dev): bump terser-webpack-plugin from 5.3.17 to 5.4.0 in /superset-frontend ( #38669 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-22 11:23:47 +07:00
e05fdd8acd
chore(deps): bump mapbox-gl from 3.19.0 to 3.20.0 in /superset-frontend ( #38670 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-03-22 10:58:08 +07:00
Đỗ Trọng Hải
83823911b5
feat(sec): harden GHA ref by using its SHA ID to prevent accidental usage of compromised actions ( #38782 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-21 21:27:30 +07:00
Đỗ Trọng Hải
7004369c68
fix(sec): remove compromised Trivy actions ( #38780 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-21 12:24:24 +07:00
f5d7ce0f86
chore(deps-dev): bump flatted from 3.4.1 to 3.4.2 in /superset-frontend ( #38771 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-03-21 11:44:13 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32eb8c8263
chore(deps): bump flatted from 3.3.3 to 3.4.2 in /docs ( #38772 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-21 09:27:03 +07:00
Amin Ghadersohi
44c2c765ae
fix(mcp): convert adhoc filters to QueryObject format before query compilation ( #38774 )
2026-03-20 20:43:09 +01:00
Amin Ghadersohi
0d5721910e
fix(mcp): normalize call_tool proxy arguments to prevent encoding TypeError ( #38775 )
2026-03-20 20:42:40 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28d67d59cd
chore(deps-dev): bump flatted from 3.2.2 to 3.4.2 in /superset-frontend/cypress-base ( #38761 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-20 10:32:21 -07:00
Kamil Gabryjelski and Claude Opus 4.6
1d72480c17
fix(mcp): fix detached Slice instance error in chart/dashboard serialization ( #38767 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-20 18:23:51 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1af5da6aad
chore(deps): bump baseline-browser-mapping from 2.10.7 to 2.10.9 in /docs ( #38756 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-20 10:12:39 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ea1c6ee30f
chore(deps): bump geostyler-openlayers-parser from 5.4.0 to 5.4.1 in /superset-frontend ( #38755 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-20 10:12:07 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
97ea479cdc
chore(deps-dev): bump flatted from 3.3.1 to 3.4.2 in /superset-websocket ( #38752 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-20 10:11:41 -07:00
Enzo Martellucci
e088979fbe
fix(reports): validate nativeFilters on report create/update and deactivate on dashboard filter deletion ( #38715 )
2026-03-20 17:20:02 +01:00
Kamil Gabryjelski and Claude Opus 4.6
5e5c05362c
fix(mcp): use correct permission class for save_sql_query tool ( #38764 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-03-20 17:15:19 +01:00
Amin Ghadersohi
c2a21915ff
fix(mcp): fix dashboard slug null and execute_sql encoding error ( #38710 )
2026-03-20 14:41:54 +01:00
Enzo Martellucci
cbb2b2f3c2
feat(themes): add JSON formatting to theme modal editor ( #38739 )
2026-03-20 13:48:00 +01:00
Alexandru Soare
82a74c88aa
fix(button): Theming configurations for button elements is not consistent ( #38604 )
2026-03-20 12:37:04 +02:00
Levis Mbote
6b9dd23e3a
fix(timeseries-table): enable proper column sorting in timeseries-table chart ( #38579 )
2026-03-19 12:01:40 -07:00
Levis Mbote
b754f2d173
fix(theme): persist local theme id so "Local" tag remains after navigation ( #38527 )
2026-03-19 12:01:24 -07:00
Levis Mbote
ee233d16d6
fix(dashboard): correct tab underline width for newly added dashboard tabs. ( #38524 )
2026-03-19 12:01:08 -07:00
Levis Mbote
65f13f773e
fix(theme): ensure colorLink follows colorPrimary when not explicitly set ( #38517 )
2026-03-19 12:00:41 -07:00
Shaitan and Claude Sonnet 4.6
d4646d43a7
docs(security): update vulnerability reporting policy and admin trust boundary ( #38653 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-19 10:57:57 -07:00
Alexandru Soare
6465450b64
fix(firebolt): Firebolt SQL entered with EXCLUDE is rewritten to EXCEPT ( #38742 )
2026-03-19 10:21:50 -07:00
01aa4d3281
chore(deps): bump match-sorter from 6.3.4 to 8.2.0 in /superset-frontend ( #36470 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-03-19 23:28:20 +07:00
Kamil Gabryjelski and Claude Opus 4.6
211f29b723
fix(mcp): Chart schema followups - DRY extraction, template fix, alias and test gaps ( #38746 )
...
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-03-19 16:50:42 +01:00
Đỗ Trọng Hải
d6bfc98a61
feat(ci): use zstd for faster saving and loading superset-node-ci image ( #38645 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-19 22:43:16 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5457c2da67
chore(deps): bump dawidd6/action-download-artifact from 17 to 19 ( #38735 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-19 22:42:39 +07:00
Kamil Gabryjelski
14b1b456e1
fix: Add aliases and groupby list to chart schemas ( #38740 )
2026-03-19 16:15:58 +01:00
Luiz Otavio
972e15e601
fix(sql): remove WHERE 1 = 1 when temporal filter has "No filter" selected ( #38704 )
2026-03-19 08:29:53 -03:00
Joe Li and Claude Opus 4.6
03de7e1ec6
fix(dashboard): use inline theme data to prevent 403 for non-admin users ( #38384 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-18 16:17:03 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3edf75123a
chore(deps): bump swagger-ui-react from 5.32.0 to 5.32.1 in /docs ( #38708 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-18 10:12:47 -07:00
Michael S. Molina
fd1c423826
fix(chart): prevent chart list from failing when a datasource lacks explore_url ( #38721 )
2026-03-18 10:23:57 -03:00
Kamil Gabryjelski
a314e5b35e
fix: Row limit support for chart mcp tools ( #38717 )
2026-03-18 13:40:47 +01:00
Amin Ghadersohi and Claude Opus 4.6
e02ca8871d
fix(mcp): expose individual tool parameters when MCP_PARSE_REQUEST_ENABLED=False ( #38714 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-18 11:38:22 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
834d2abe70
chore(deps): bump antd from 6.3.2 to 6.3.3 in /docs ( #38686 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-17 16:01:02 -07:00
91986fff02
fix(tests): restore 100% TypeScript coverage for core packages ( #38682 )
...
Co-authored-by: Claude Code <noreply@anthropic.com >
Co-authored-by: Joe Li <joe@preset.io >
2026-03-17 15:28:51 -03:00
João Pedro Alves Barbosa and Claude Opus 4.6
05b9970aa6
fix(map-box): prevent clusters from being smaller than individual points ( #38458 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-17 15:08:05 -03:00
Michael S. Molina
6f301707f9
fix: Simplify extension folder name ( #38690 )
2026-03-17 14:00:19 -03:00
5865176f36
fix(dashboard): overload issue in dashboard export to excel ( #29418 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Claude <claude@anthropic.com >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-17 09:29:32 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
461037f645
chore(deps-dev): bump typescript-eslint from 8.56.1 to 8.57.1 in /docs ( #38684 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-17 21:54:27 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c980f39aab
chore(deps): bump caniuse-lite from 1.0.30001778 to 1.0.30001780 in /docs ( #38688 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-17 21:51:39 +07:00
Beto Dealmeida
a854fa60a2
feat: apply RLS conservatively ( #38683 )
2026-03-17 10:20:09 -04:00
Amin Ghadersohi
1c8224f4c6
feat(mcp): Add tool annotations for MCP directory compliance ( #38641 )
2026-03-16 19:09:25 -07:00
Đỗ Trọng Hải
ca403dc45d
fix(ci): allow docs testing to run despite absence of db diagnostics data ( #38655 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-17 08:01:43 +07:00
96705c156a
fix(map-box): make opacity, lon, lat, and zoom controls functional ( #38374 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-03-16 21:55:49 -03:00
7909095ff3
feat(native-filters): add configurable LIKE/ILIKE operators to Select filter ( #38470 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Richard Fogaca Nienkotter <63572350+richardfogaca@users.noreply.github.com >
2026-03-16 21:11:53 -03:00
Joe Li and Claude Opus 4.6
aa5adb0fce
fix(embedded): default to light theme instead of system preference ( #38644 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-16 09:33:33 -07:00
Ville Brofeldt
dcb414aa06
feat(extensions): add update command to extensions cli ( #38651 )
2026-03-16 07:02:42 -07:00
Đỗ Trọng Hải
afe093f1ca
fix(FilterBar): reduce padded space between filter header and first filter ( #38646 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-16 10:00:52 -03:00
Mayank Aggarwal
cc066b3576
fix(docs): use absolute API doc links in developer docs ( #38649 )
2026-03-14 22:50:14 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39cd1cdd43
chore(deps): bump dawidd6/action-download-artifact from 16 to 17 ( #38620 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-14 12:40:25 +07:00
176bf00c16
chore(deps-dev): bump baseline-browser-mapping from 2.10.0 to 2.10.7 + sync lockfile + run npm audit fix in /superset-frontend ( #38621 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-03-14 12:28:47 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
68e38c8893
chore(deps): bump undici from 7.22.0 to 7.24.1 in /superset-frontend ( #38642 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-14 11:13:50 +07:00
Amin Ghadersohi and Claude Opus 4.6
48220fb33f
feat(mcp): add save_sql_query tool for SQL Lab saved queries ( #38414 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-13 14:02:04 -07:00
Mehmet Salih Yavuz
ed622e254a
feat(matrixify): Revamp control panel ( #38519 )
2026-03-13 21:51:53 +03:00
amaannawab923
6e7d6a85b4
fix(ag-grid-table): fix failing buildQuery test expectation ( #38636 )
2026-03-14 00:59:52 +07:00
Luiz Otavio
e8061a9c2b
style(metadata-bar): use bold font weight for metadata bar title ( #38608 )
2026-03-13 14:24:14 -03:00
Amin Ghadersohi and Claude Opus 4.6
97a66f7a64
feat(mcp): add BM25 tool search transform to reduce initial context size ( #38562 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-13 18:06:11 +01:00
Amin Ghadersohi and Claude Opus 4.6
b6c3b3ef46
fix(mcp): return all statement results for multi-statement SQL queries ( #38388 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-13 16:53:52 +01:00
f4a57a13bc
chore(deps): bump dompurify from 3.3.2 to 3.3.3 in /superset-frontend ( #38592 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2026-03-13 22:07:09 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
242636b36b
chore(deps): bump baseline-browser-mapping from 2.10.0 to 2.10.7 in /docs ( #38622 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-13 22:06:43 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ba7d7dcec0
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #38619 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-13 22:06:21 +07:00
Rafael Benitez and Claude Opus 4.6
ba7271b4d8
fix(world-map): add fallback fill color when colorFn returns null ( #38602 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-13 12:02:03 -03:00
amaannawab923
ca2d26a1e2
fix(ag-grid-table): fix AND filter conditions not applied ( #38369 )
2026-03-13 19:42:14 +05:30
Alexandru Soare
f6106cd26f
fix(timeshiftcolor): Time shift color to match the original color ( #38473 )
2026-03-13 15:24:56 +02:00
Michael S. Molina
1867336907
fix(editor): implement missing methods, fix cursor position clearing ( #38603 )
2026-03-13 09:06:55 -03:00
Ville Brofeldt
f5383263bc
fix(extensions): fix gitignore template and bump version ( #38614 )
2026-03-13 08:50:10 -03:00
Amin Ghadersohi and Claude Opus 4.6
d5cf77cd60
fix(mcp): fix crashes in list tools, dataset info, chart preview, and add owner/favorite filters ( #38277 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-13 12:46:52 +01:00
Amin Ghadersohi and Claude Opus 4.6
f458e2d484
feat(mcp): add extra_form_data param to get_chart_data for dashboard filters ( #38531 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-13 12:13:47 +01:00
Kamil Gabryjelski
af5e05db2e
fix(mcp): Support form_data_key without chart identifier for unsaved charts ( #38628 )
2026-03-13 11:58:12 +01:00
Enzo Martellucci
32a64d02c7
fix(deckgl): polygon chart not rendering when boundary column contains nested geometry JSON ( #38595 )
2026-03-13 11:54:05 +01:00
9516d1a306
fix(explore/dashboard): fix CSV/Excel downloads for legacy chart types ( #38513 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-03-13 11:49:34 +01:00
Kamil Gabryjelski
d91b96814e
fix(mcp): Improve validation errors and field aliases to reduce failed LLM tool calls ( #38625 )
2026-03-13 11:16:50 +01:00
Daniel Vaz Gaspar
56d6bb1913
feat(auth): add SAML login support to frontend ( #38606 )
2026-03-13 09:00:07 +00:00
Amin Ghadersohi and Claude Opus 4.6
fc156d0014
fix(mcp): replace uuid with url and changed_on_humanized in default list columns ( #38566 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-13 09:53:30 +01:00
Đỗ Trọng Hải
0b8df8d3f2
build(deps): update geostyler-* deps to latest major versions ( #38151 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-13 01:18:59 -07:00
Amin Ghadersohi
83955e87ac
refactor(mcp): use serialize_user_object in get_instance_info ( #38613 )
2026-03-13 08:59:21 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4a9db243a1
chore(deps): bump caniuse-lite from 1.0.30001777 to 1.0.30001778 in /docs ( #38593 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-13 09:35:13 +07:00
Amin Ghadersohi
d4f1f8db00
fix(mcp): extract role names as strings in UserInfo serialization ( #38612 )
2026-03-12 16:20:53 -07:00
Mehmet Salih Yavuz
95f61bd223
fix: add parent_slice_id for multilayer charts to embed ( #38243 )
2026-03-12 21:21:43 +03:00
Mehmet Salih Yavuz and Joe Li
7f476a79b3
fix: add embedded box sizing rule for layout ( #38351 )
...
Co-authored-by: Joe Li <joe@preset.io >
2026-03-12 21:20:14 +03:00
Amin Ghadersohi
65e21cf13c
docs: move MCP deployment guide to admin docs, add user-facing AI guide ( #38585 )
2026-03-12 10:30:51 -07:00
Amin Ghadersohi and Claude Opus 4.6
7943af359c
feat(mcp): implement RBAC permission checking for MCP tools ( #38407 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-12 17:35:07 +01:00
Yuriy Krasilnikov
09e9c6a522
fix(embedded): prevent double RLS application in virtual datasets ( #37395 )
2026-03-12 14:12:59 +01:00
Ville Brofeldt
a9def2fc15
fix: support nested function calls in cache_key_wrapper ( #38569 )
2026-03-12 08:08:58 -03:00
Alexandru Soare and Evan Rusackas
27197faba9
fix(matrixify): Matrixify to not override slice id ( #38515 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-12 11:39:29 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ffe60bd960
chore(deps-dev): bump oxlint from 1.51.0 to 1.53.0 in /superset-frontend ( #38571 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-11 23:41:41 +07:00
d752be5f74
chore(deps): bump dompurify from 3.3.1 to 3.3.2 in /superset-frontend ( #38455 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-11 08:51:40 -07:00
3056c41507
chore(deps): bump caniuse-lite from 1.0.30001775 to 1.0.30001777 in /docs ( #38463 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-11 08:51:21 -07:00
d42e9c4d1b
chore(deps): bump acorn from 8.9.0 to 8.16.0 in /superset-frontend ( #38466 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-11 08:51:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5912941942
chore(deps-dev): bump @typescript-eslint/parser from 8.56.1 to 8.57.0 in /superset-websocket ( #38570 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-11 22:50:11 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9b8106b382
chore(deps-dev): bump mini-css-extract-plugin from 2.10.0 to 2.10.1 in /superset-frontend ( #38573 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-11 22:23:08 +07:00
amaannawab923
9215eb5e45
fix(ag-grid): persist AG Grid column filters in explore permalinks ( #38393 )
2026-03-11 01:56:24 +05:30
Amin Ghadersohi and Claude Opus 4.6
fe7f220c21
fix(charts): set reasonable default y-axis title margin to prevent label overlap ( #38389 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 19:09:09 +01:00
Amin Ghadersohi and Claude Opus 4.6
3bb9704cd5
fix(mcp): honor target_tab parameter when adding charts to tabbed dashboards ( #38409 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 10:57:15 -07:00
Amin Ghadersohi and Claude Opus 4.6
eb77452857
feat(mcp): auto-generate dashboard title from chart names when omitted ( #38410 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 10:56:58 -07:00
Amin Ghadersohi
6d7cfac8b2
fix(mcp): wrap LoggingMiddleware.on_message event_logger in try/except ( #38560 )
2026-03-10 17:48:08 +01:00
Đỗ Trọng Hải and Evan Rusackas
31754a39c9
fix(i18n): correct variable name for translated SQL Lab query message ( #38494 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-10 21:50:14 +07:00
Michael S. Molina
bde48e563e
fix: SQL Lab tab content padding ( #38561 )
2026-03-10 11:44:31 -03:00
Amin Ghadersohi and Claude Opus 4.6
0cfd760a36
fix(mcp): improve default chart names with descriptive format ( #38406 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 10:53:05 +01:00
13fe88000a
chore(deps-dev): bump lightningcss from 1.31.1 to 1.32.0 in /superset-frontend ( #38511 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-10 16:51:58 +07:00
cc8ad23d6f
chore(deps): bump react-diff-viewer-continued from 3.4.0 to 4.2.0 in /superset-frontend ( #38552 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-03-10 15:57:32 +07:00
Amin Ghadersohi
5c2cbb58bc
fix(mcp): add missing __init__.py for chart, dashboard, dataset packages ( #38400 )
2026-03-10 09:52:48 +01:00
Amin Ghadersohi and Claude Opus 4.6
6342c4f338
feat(mcp): add horizontal bar chart orientation support to generate_chart ( #38390 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 09:52:12 +01:00
Amin Ghadersohi and Claude Opus 4.6
5fa70bdbd8
fix(mcp): add guardrails to prevent LLM artifact generation ( #38391 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 09:51:23 +01:00
Amin Ghadersohi and Claude Opus 4.6
2a876e8b86
fix(mcp): add missing command.validate() to MCP chart data tools ( #38521 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 09:50:41 +01:00
Amin Ghadersohi and Claude Opus 4.6
0533ca9941
feat(mcp): register GlobalErrorHandlerMiddleware and LoggingMiddleware ( #38523 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 09:48:38 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5f20d2e15a
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #38548 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-10 15:21:18 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6d1d5d64d1
chore(deps): bump antd from 6.3.1 to 6.3.2 in /docs ( #38547 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-10 15:21:00 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
06d6b513cd
chore(deps-dev): bump jest from 30.2.0 to 30.3.0 in /superset-frontend ( #38549 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-10 14:39:05 +07:00
afa51125de
chore(deps): bump the storybook group in /docs with 11 updates ( #38501 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-10 10:09:40 +07:00
26c07b1ffb
chore(deps-dev): bump eslint-plugin-react-you-might-not-need-an-effect from 0.9.1 to 0.9.2 in /superset-frontend ( #38509 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-10 08:54:43 +07:00
Đỗ Trọng Hải
9ecca47e69
feat(ci): only run precommit on changed files ( #38155 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-10 08:49:38 +07:00
6c1df93215
chore(deps): bump aquasecurity/trivy-action from 0.34.2 to 0.35.0 ( #38502 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-10 08:46:19 +07:00
06fd0658ae
chore(deps-dev): bump prettier-plugin-packagejson from 3.0.0 to 3.0.2 in /superset-frontend ( #38508 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-10 08:46:01 +07:00
Enzo Martellucci
a17f38a4e2
fix(embedded): add CurrentUserRestApi read permission to Public role defaults ( #38474 )
2026-03-10 00:08:37 +01:00
Amin Ghadersohi
6ef4794778
fix(mcp): resolve chatbot tool call flakiness with URL and instruction fixes ( #38532 )
2026-03-09 23:35:50 +01:00
Amin Ghadersohi
4cd3ce164d
fix(mcp): make fastmcp truly optional during Superset startup ( #38534 )
2026-03-09 15:32:27 -07:00
8e3e57c1c8
fix(docs): swizzle MethodEndpoint to fix SSG crash on all API pages ( #38533 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-09 14:18:59 -07:00
Hugh A. Miles II
61fbfda501
feat(security): add granular export controls (Phase 1) ( #38361 )
2026-03-09 16:44:56 -04:00
9017b9a74f
chore: enable allow_update_branch in .asf.yaml ( #38530 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-09 13:42:09 -07:00
Gabriel Torres Ruiz
bc99b710bd
fix(dashboard): ensure clear all respects required filter validation ( #37681 )
2026-03-09 13:02:57 -07:00
Michael S. Molina
bf55f1e438
chore(extensions): bump superset-core and superset-extensions-cli to 0.1.0rc1 ( #38516 )
2026-03-09 14:40:08 -03:00
Gabriel Torres Ruiz
dca41f9a7b
fix(theme): prevent background color flash on page load ( #38399 )
2026-03-09 09:53:38 -07:00
62cebc8a0e
fix(dashboard): prevent Apply button from disabling when required filters are auto-applied ( #38479 )
...
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-09 09:29:43 -07:00
Michael S. Molina
e70c7944b7
fix(tests): achieve 100% TypeScript coverage for core packages ( #38518 )
2026-03-09 13:25:39 -03:00
yousoph
577654cd02
fix(heatmap): correct tooltip display to show axis values instead of indices ( #38487 )
2026-03-09 08:54:47 -07:00
c7a1f57487
fix(sqla): parenthesize extras where/having clauses in query generation ( #38183 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-09 10:05:55 +01:00
9983e255f8
fix(charts): revert: improve negative stacked bar label positioning and accessibility ( #37405 ) ( #38484 )
...
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-09 00:09:09 -07:00
Vitor Avila
d9a91f99db
feat: support for import/export masked_encrypted_extra (frontend) ( #38078 )
2026-03-09 01:59:54 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
60577bcd97
chore(deps-dev): bump webpack from 5.105.3 to 5.105.4 in /docs ( #38380 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-06 16:54:50 -08:00
3cb00bf116
feat(database): add Google Cloud Datastore db engine spec ( #37677 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-06 16:40:17 -08:00
Michael S. Molina
a6c0d6321f
chore(extensions): simplify backend package structure by removing superset_extensions namespace ( #38476 )
2026-03-06 14:49:49 -03:00
Michael S. Molina
5fb9e17721
refactor(extensions): align editors API naming with commands/views, add description to all contribution types ( #38475 )
2026-03-06 14:18:49 -03:00
Beto Dealmeida
03ad1789f0
feat(alerts/reports): external URL warning ( #35021 )
2026-03-06 11:57:03 -05:00
Michael S. Molina
296bd7e56b
docs(extensions): fix extension developer documentation and CLI scaffolding ( #38472 )
2026-03-06 13:10:41 -03:00
Daniel Vaz Gaspar and Claude Opus 4.6
5c4bf0f6ea
fix(deps): bump Python dependencies to fix 7 security vulnerabilities ( #38447 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-06 09:44:13 +00:00
Amin Ghadersohi
db7665c0bc
feat(mcp): add user roles to MCP response and permission-aware instructions ( #38367 )
2026-03-06 08:16:51 +01:00
Amin Ghadersohi
84a53eab31
feat(mcp): add pie, pivot table, and mixed timeseries chart creation support ( #38375 )
2026-03-06 08:13:47 +01:00
Amin Ghadersohi
3609cd9544
feat(mcp): add compile check to validate chart queries before returning ( #38408 )
2026-03-06 08:10:58 +01:00
Amin Ghadersohi
7d2efd8c1a
fix(mcp): suppress third-party deprecation warnings from client responses ( #38401 )
2026-03-06 08:02:25 +01:00
0d5ade6dd3
fix(ColorPicker): restore alpha input visibility hidden by geostyler CSS ( #38169 )
...
Co-authored-by: Superset Dev <dev@superset.apache.org >
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-05 17:45:11 -08:00
Joe Li and Claude Opus 4.6
17df85b5ed
fix(roles): convert permissions/groups dropdowns to AsyncSelect with server-side search ( #38387 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-05 16:54:16 -08:00
Joe Li and Claude Opus 4.6
664c465d80
fix(test): use correct @apache-superset/core/theme import in Menu test ( #38457 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-05 15:50:35 -08:00
Jonas Scholz and Joe Li
884db9347d
feat(docs): Adding VTG GmbH in INTHEWILD.yaml ( #38359 )
...
Co-authored-by: Joe Li <joe@preset.io >
2026-03-05 14:41:17 -08:00
Joe Li and Claude Sonnet 4.6
6c359733e1
fix(frontend): preserve absolute and protocol-relative URLs in ensureAppRoot ( #38316 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-05 14:06:16 -08:00
Michael S. Molina
357e35dc62
refactor(core): reorganize superset-core packages into feature-based structure ( #38448 )
2026-03-05 17:41:15 -03:00
Joe Li and Claude Opus 4.6
5f0efd2be9
test: fix CI OOM crashes in DatasourceControl test and flaky FileHandleer test ( #38430 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-05 12:05:58 -08:00
Amin Ghadersohi
0dbd4c5b90
docs(mcp): add MCP server deployment and authentication guide ( #38415 )
2026-03-05 17:52:04 +01:00
Enzo Martellucci
f0416eff78
fix(dashboard): fix multiple drag-and-drop and edit mode issues ( #37891 )
2026-03-05 16:47:11 +01:00
Đỗ Trọng Hải and Evan Rusackas
a513406239
feat!: upgrade project's Node version to v22 ( #37223 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-03-05 22:20:18 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f6f734f0d1
chore(deps): bump google-auth-library from 10.5.0 to 10.6.1 in /superset-frontend ( #38436 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-05 21:25:04 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a2c23a2a58
chore(deps-dev): bump css-minimizer-webpack-plugin from 7.0.4 to 8.0.0 in /superset-frontend ( #38434 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-05 21:17:41 +07:00
Antonio Rivero
20cc3345d8
chore(playwright): Using warning for timeouts ( #38441 )
2026-03-05 14:15:10 +01:00
Alexandru Soare
880cab58c3
fix(bug): Error when adding a filter using custom sql ( #38246 )
2026-03-05 11:39:21 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4dfb0e66cb
chore(deps-dev): bump webpack from 5.105.3 to 5.105.4 in /superset-frontend ( #38385 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-05 09:26:50 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fdf19db5e6
chore(deps): bump svgo from 3.3.2 to 3.3.3 in /superset-frontend ( #38421 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-05 09:16:28 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5a2a72cf31
chore(deps): bump svgo from 3.3.2 to 3.3.3 in /docs ( #38422 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-05 09:16:01 +07:00
Ville Brofeldt
0d5827ac42
chore(extensions): unified contribution api and automatic prefixing ( #38412 )
2026-03-04 14:51:22 -08:00
Joe Li and Claude Opus 4.6
939e4194c6
fix(alerts): fix error toast when editing report with saved tab selection ( #38198 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-04 13:01:26 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a79dcbbb66
chore(deps): update d3-cloud requirement from ^1.2.8 to ^1.2.9 in /superset-frontend/plugins/plugin-chart-word-cloud ( #38381 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-04 11:30:48 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
88241d3e71
chore(deps-dev): bump oxlint from 1.50.0 to 1.51.0 in /superset-frontend ( #38353 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-04 11:30:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1bfd41df0c
chore(deps): bump aquasecurity/trivy-action from 0.34.1 to 0.34.2 ( #38352 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-04 11:30:15 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8f28a8734a
chore(deps): bump flask from 2.3.3 to 3.1.3 ( #38168 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-04 11:28:23 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dc995328a8
chore(deps): bump cryptography from 44.0.3 to 46.0.5 ( #37912 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-04 11:27:57 -08:00
Vitor Avila
8c9efe5659
feat: support for import/export masked_encrypted_extra (backend) ( #38077 )
2026-03-04 11:26:28 -08:00
Mehmet Salih Yavuz
63e7ee70bf
fix(echarts): adaptive formatting labels ( #38017 )
2026-03-04 11:26:18 -08:00
Varun Chawla and Claude Opus 4.6
796c206ee7
fix(charts): apply resample before rolling window in post-processing pipeline ( #37987 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-04 11:25:42 -08:00
Đỗ Trọng Hải
27d54f8421
fix(build/backend): migrate to deps-free pygeohash with pre-built wheels at runtime ( #37524 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-04 11:24:43 -08:00
Joe Li and Claude Opus 4.6
e2ebc135e4
test(playwright): add dashboard list E2E tests ( #38377 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-04 11:15:16 -08:00
Joe Li and Claude Opus 4.6
c25adbc395
test(DashboardList): migrate Cypress E2E tests to RTL ( #38368 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-04 11:13:13 -08:00
Evan Rusackas and Claude Opus 4.6
3b656f9cc2
fix(dashboard): restore filterState prop for cross-filter functionality ( #38349 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-04 11:05:21 -08:00
Đỗ Trọng Hải
3d5694ee0f
chore: regular npm audit fix ( #38248 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-03-04 10:42:14 -08:00
Đỗ Trọng Hải and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
aff6e26089
build(deps): replace monolithic googleapis with lightweight @googleapis/sheet sub-package ( #38124 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-03-04 10:22:17 -08:00
Michael S. Molina
19f949276c
refactor(config): SIGNAL_CACHE_CONFIG → DISTRIBUTED_COORDINATION_CONFIG ( #38395 )
2026-03-04 09:40:21 -08:00
Michael S. Molina
832fee3ff8
refactor(mcp): move superset_core MCP module from mcp to api/mcp ( #38394 )
2026-03-04 09:38:17 -08:00
Michael S. Molina
69732d9dca
fix(superset-ui-core): achieve 100% coverage for npm run core:cover ( #38397 )
2026-03-04 13:56:51 -03:00
JUST.in DO IT
35d0aad854
feat(explore): Add Echarts option editor ( #37868 )
2026-03-04 08:34:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
80a29cd6fe
chore(deps-dev): bump terser-webpack-plugin from 5.3.16 to 5.3.17 in /superset-frontend ( #38386 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-04 21:29:36 +07:00
Evan Rusackas and Claude
51ac758b80
fix(tags): expire tag relationship after deleting all tagged objects ( #38163 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-03-04 10:37:19 -03:00
7815afb24d
fix(charts): improve minor gridline visibility in dark themes ( #38371 )
...
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-04 10:33:29 -03:00
Evan Rusackas and Claude Sonnet 4.6
ef4b1d674b
feat(docs): add filterable UI Components table and improve build performance ( #38253 )
...
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-04 10:32:25 -03:00
madhushreeag and madhushree agarwal
983b633972
feat(bar-chart): add option to color bars by primary axis when no dimensions are set ( #37531 )
...
Co-authored-by: madhushree agarwal <madhushree_agarwal@apple.com >
2026-03-03 16:11:04 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f10cb14d92
chore(deps-dev): bump @types/node from 25.3.2 to 25.3.3 in /superset-websocket ( #38319 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-03 12:49:48 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1136e86cf7
chore(deps): bump ioredis from 5.9.3 to 5.10.0 in /superset-websocket ( #38318 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-03 12:49:37 -08:00
Vitor Avila
fa34609952
feat: Support OAuth2 single-use refresh tokens ( #38364 )
2026-03-03 16:07:15 -03:00
Gabriel Torres Ruiz
2ab9d37a00
fix(templates): restore css_bundle calls in spa.html for production builds ( #38350 )
2026-03-03 10:27:39 -08:00
Ville Brofeldt
c35bf344a9
chore(extensions): clean up backend entrypoints and file globs ( #38360 )
2026-03-03 09:45:35 -08:00
Enzo Martellucci
016417f793
fix(explore): prevent TypeError when chart dimension returns empty string ( #38276 )
2026-03-03 15:06:02 +01:00
Ville Brofeldt
f2f55591ec
chore: remove redundant service-worker.js placeholder ( #38348 )
2026-03-03 01:43:17 -08:00
Đỗ Trọng Hải
1bd054684e
chore(lint): remove unused ESLint plugins after migrating rules to Oxlint ( #38110 )
2026-03-03 13:33:58 +07:00
Evan Rusackas and Claude Opus 4.5
0681df3d02
feat(theme): enable generalized ECharts theme overrides for array properties ( #37965 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-03-02 19:51:09 -08:00
Đỗ Trọng Hải
6e84d29707
fix(build): disable moby in dev container based on Debian 13 Trixie distro for usability ( #37227 )
2026-03-03 09:09:05 +07:00
Đỗ Trọng Hải
fc5fda3d1a
fix(db-modal): update doc refs for DB connection modal ( #38091 )
2026-03-03 09:08:46 +07:00
Levis Mbote
3e10ab7dd0
refactor(Filter components): migrate from react-dnd to dnd-kit ( #37445 )
2026-03-02 16:49:57 -08:00
Michael S. Molina
a74d32ab44
feat(extensions): code-first frontend contributions ( #38346 )
2026-03-02 13:51:29 -08:00
Amin Ghadersohi and Claude Opus 4.6
01d5245cd2
fix: silence deprecation warnings causing noisy production logs ( #38128 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-02 10:55:00 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
00a1487705
chore(deps): bump hot-shots from 14.0.0 to 14.1.1 in /superset-websocket ( #38320 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 10:51:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
adc5a2cbdb
chore(deps-dev): bump globals from 17.3.0 to 17.4.0 in /superset-websocket ( #38321 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 10:51:17 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23200e8ce9
chore(deps): bump caniuse-lite from 1.0.30001774 to 1.0.30001775 in /docs ( #38322 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 10:51:03 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d738431e73
chore(deps): bump swagger-ui-react from 5.31.2 to 5.32.0 in /docs ( #38324 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 10:50:47 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
00c62cf820
chore(deps-dev): bump yeoman-test from 11.2.0 to 11.3.1 in /superset-frontend ( #38326 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 10:50:20 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1025e3729b
chore(deps-dev): bump globals from 17.3.0 to 17.4.0 in /docs ( #38325 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 23:13:55 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b57c864e98
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #38330 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 23:13:32 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ec33d6a421
chore(deps-dev): bump @types/node from 25.3.1 to 25.3.3 in /superset-frontend ( #38331 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 21:46:16 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e80311a795
chore(deps-dev): bump @swc/core from 1.15.17 to 1.15.18 in /superset-frontend ( #38335 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 21:44:52 +07:00
Amin Ghadersohi and Claude Opus 4.6
985c3d12a1
fix(screenshots): downgrade screenshot timeout logs from ERROR to WARNING ( #38130 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-02 10:03:07 +01:00
Mehmet Salih Yavuz
ac2914486f
fix(Select): select all buttons to inherit font ( #38313 )
2026-03-02 10:12:06 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d31a2f96c9
chore(deps-dev): bump webpack from 5.105.2 to 5.105.3 in /superset-frontend ( #38294 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-28 15:25:33 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0d9db04df0
chore(deps-dev): bump @swc/core from 1.15.13 to 1.15.17 in /superset-frontend ( #38295 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-28 12:36:55 +07:00
Kamil Gabryjelski
1d141b2948
fix: Warning toasts when user drops folder item outside of dnd context ( #38304 )
2026-02-27 21:23:19 -08:00
Mehmet Salih Yavuz
7f280f5de9
fix(Dataset Folders): improve search-collapse ( #38188 )
2026-02-27 21:21:29 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d039172013
chore(deps-dev): bump webpack from 5.105.2 to 5.105.3 in /docs ( #38271 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-28 12:16:54 +07:00
Vitor Avila
6fe69fc81c
chore: Support specifying app_root via superset_config.py ( #38284 )
2026-02-28 01:35:08 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3794591d28
chore(deps): bump caniuse-lite from 1.0.30001770 to 1.0.30001774 in /docs ( #38180 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-27 15:38:04 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a849802a2b
chore(deps): bump minimatch in /superset-websocket ( #38282 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-27 15:37:47 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a162b02123
chore(deps-dev): bump @types/node from 25.3.1 to 25.3.2 in /superset-websocket ( #38288 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-27 15:37:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1f41777800
chore(deps): bump actions/download-artifact from 7 to 8 ( #38289 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-27 15:37:21 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
848cce7b2e
chore(deps): bump actions/upload-artifact from 6 to 7 ( #38290 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-27 15:37:08 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b1b10ec329
chore(deps): bump @swc/core from 1.15.13 to 1.15.17 in /docs ( #38292 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-27 15:36:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
287a94f46c
chore(deps): bump react-syntax-highlighter from 16.1.0 to 16.1.1 in /superset-frontend ( #38296 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-27 15:36:38 -08:00
Andy and Claude Opus 4.5
15d7538435
fix(sqllab): pass queryLimit on data preview queries and fix Decimal TypeError in results handler ( #37614 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-27 15:35:44 -08:00
Shaitan
a410b76f99
docs: add Apache Superset CVEs for February 2026 release ( #38278 )
2026-02-27 14:46:44 -08:00
Kamil Gabryjelski and Claude Opus 4.6
63f1d9eb98
feat(folders-editor): drag entire folder block as single unit ( #38122 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-27 20:02:21 +01:00
Kamil Gabryjelski and Claude Opus 4.6
5e890a8cf7
fix(folders): remove stale column/metric refs from folders on delete ( #38302 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-27 17:25:06 +01:00
amaannawab923
e5cbc98482
fix(ag-grid): render boolean columns as checkboxes instead of blank cells ( #38279 )
2026-02-27 17:52:51 +05:30
Alexandru Soare
761cee2d85
fix(componentParent): Newly created tabs don't show up in Scoping tab ( #37807 )
2026-02-27 11:34:32 +02:00
Alexandru Soare
7743183401
fix(bugs): fixing bugs for world map chart ( #38030 )
2026-02-27 11:33:35 +02:00
Kamil Gabryjelski and Claude Opus 4.6
11dfda11d3
fix(folders): expand collapsed folders on Select All and add selection counter ( #38270 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-27 07:28:07 +01:00
Kamil Gabryjelski and Claude Opus 4.6
0827ec3811
fix(dataset-modal): include nested folders when dragging all their children ( #38275 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-27 07:27:37 +01:00
Amin Ghadersohi
7f061a3764
fix(bigquery): pass dialect instead of engine to select_star in get_extra_table_metadata ( #38281 )
2026-02-27 02:11:40 +01:00
Joe Spadola
bb6ee9e722
fix(clickhouse): remove _mutate_label workaround and bump clickhouse-connect to >=0.13.0 ( #38280 )
2026-02-26 16:12:54 -08:00
Evan Rusackas and Claude Opus 4.5
6589ee48f9
docs: bifurcate documentation into user and admin sections ( #38196 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-26 13:29:08 -08:00
Kamil Gabryjelski and Claude Opus 4.6
8a053bbe07
fix(dataset-modal): fix drag overlay shift caused by modal transform containing block ( #38274 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-26 20:48:48 +01:00
Enzo Martellucci and Diego Pucci
bbafae5f62
fix(save-chart): fix info icon alignment in save chart modal ( #37708 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2026-02-26 18:11:07 +01:00
Enzo Martellucci
5a134170a0
fix(chart): prevent x-axis date labels from disappearing when rotated ( #37755 )
2026-02-26 18:10:44 +01:00
Enzo Martellucci
c1c012fb52
fix(chart): make chart error banners non-dismissible ( #38014 )
2026-02-26 17:01:02 +01:00
jaymasiwal
f5d489da29
fix(actionlog): restore full name display in Action Logs user column ( #37985 )
2026-02-26 16:36:24 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ca48663c59
chore(deps): bump dawidd6/action-download-artifact from 15 to 16 ( #38261 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-26 22:17:19 +07:00
Kamil Gabryjelski and Claude Opus 4.6
660357c76b
feat: Persist default folders location when repositioned in folders editor ( #38105 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-26 15:58:25 +01:00
8c58b998b1
chore(deps): pin currencyformatter.js to v1 in /superset-frontend ( #38242 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-26 21:38:42 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0e7a9febdf
chore(deps): bump minimatch from 3.1.2 to 3.1.3 in /superset-frontend/cypress-base ( #38228 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-26 21:36:22 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e42202e5ed
chore(deps-dev): bump @types/node from 25.2.3 to 25.3.1 in /superset-websocket ( #38260 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-26 21:35:19 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dcbe77818a
chore(deps-dev): bump @types/node from 25.3.0 to 25.3.1 in /superset-frontend ( #38263 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-26 21:26:42 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dce0e5f4e6
chore(deps): bump mapbox-gl from 3.18.1 to 3.19.0 in /superset-frontend ( #38264 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-26 21:24:56 +07:00
Kamil Gabryjelski and Claude Opus 4.6
7f72c747f5
fix(dataset-modal): prevent shift-select from selecting search-hidden items ( #38255 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-26 15:07:02 +01:00
Kamil Gabryjelski and Claude Opus 4
2ecfb3406c
fix(dataset-modal): show warning toast when dropping items outside folders ( #38257 )
...
Co-authored-by: Claude Opus 4 <noreply@anthropic.com >
2026-02-26 15:06:41 +01:00
Amin Ghadersohi and Claude Opus 4.6
ae99b19422
feat(mcp): add detailed JWT error messages and default auth factory fallback ( #37972 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-26 14:21:40 +01:00
Đỗ Trọng Hải
2b6c745444
fix(ci): use OIDC auth token for successful Codecov upload ( #38218 )
2026-02-26 10:34:24 +07:00
Enzo Martellucci
26053a8b5d
fix(alert-modal): show the add filter button on firefox ( #38093 )
2026-02-25 23:42:05 +01:00
Amin Ghadersohi
abf0b7cf4b
fix(mcp): use broad Exception in outermost tool-level handlers ( #38254 )
2026-02-25 22:08:56 +01:00
Amin Ghadersohi and Claude Opus 4.5
eef4d95c22
fix(mcp): add dataset validation for chart tools ( #37185 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-25 18:54:47 +01:00
Amin Ghadersohi
cc1128a404
feat(mcp): add response size guard to prevent oversized responses ( #37200 )
2026-02-25 09:43:14 -08:00
Amin Ghadersohi and Claude Opus 4.6
c54b21ef98
fix(mcp): add eager loading to get_info tools to prevent N+1 query timeouts ( #38129 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-25 17:28:58 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
438a927420
chore(deps-dev): bump oxlint from 1.49.0 to 1.50.0 in /superset-frontend ( #38240 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-25 23:10:37 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37a4637018
chore(deps-dev): bump typescript-eslint from 8.56.0 to 8.56.1 in /superset-websocket ( #38203 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-25 23:09:41 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
79b2647481
chore(deps): bump @swc/core from 1.15.11 to 1.15.13 in /docs ( #38207 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-25 23:00:21 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1b605c4dda
chore(deps): bump fs-extra from 11.3.2 to 11.3.3 in /superset-frontend ( #38234 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-25 22:59:44 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b543358d2f
chore(deps-dev): bump @swc/core from 1.15.11 to 1.15.13 in /superset-frontend ( #38237 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-25 22:59:14 +07:00
Amin Ghadersohi and Claude Opus 4.5
a1312a86e8
fix(mcp): normalize column names to fix time series filter prompt issue ( #37187 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-25 15:27:53 +01:00
Amin Ghadersohi and Claude Opus 4.5
3084907931
feat(mcp): support unsaved state in Explore and Dashboard tools ( #37183 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-25 15:25:23 +01:00
Amin Ghadersohi
1cd35bb102
feat(mcp): dynamic feature availability via menus and feature flags ( #37964 )
2026-02-25 12:01:44 +01:00
Joe Li and Claude Opus 4.6
5eb35a4795
fix(reports): validate database field on PUT report schedule ( #38084 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-24 16:58:19 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
01c1b2eb8f
chore(deps-dev): bump @types/lodash from 4.17.23 to 4.17.24 in /superset-frontend ( #38224 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-25 07:52:22 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9e4a88dfa2
chore(deps): bump antd from 6.3.0 to 6.3.1 in /docs ( #38221 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-25 07:51:39 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4809903bb8
chore(deps): bump markdown-to-jsx from 9.7.4 to 9.7.6 in /superset-frontend ( #38225 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-25 07:51:11 +07:00
Đỗ Trọng Hải
76a2559b2b
fix(ci): revert "chore(deps): bump JustinBeckwith/linkinator-action from 2.3 to 2.4" ( #38164 )
2026-02-24 13:22:29 -08:00
Mehmet Salih Yavuz
e4a7cd30c3
fix(GAQ): don't use async queries when cache timeout is -1 ( #38089 )
2026-02-24 23:21:37 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aa475734ef
chore(deps-dev): bump eslint from 9.39.2 to 10.0.2 in /superset-websocket ( #38204 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-24 10:30:17 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
97b8585fe5
chore(deps-dev): bump typescript-eslint from 8.56.0 to 8.56.1 in /docs ( #38209 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-24 10:30:05 -08:00
Đỗ Trọng Hải
0d66accc37
chore(build): prevent opening Dependabot PRs for @rjsf/* deps due to React 18 constraint ( #37976 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-24 10:28:05 -08:00
Ville Brofeldt
35c135852e
feat(extensions): add mandatory publisher field to extension metadata ( #38200 )
2026-02-24 09:42:17 -08:00
Evan Rusackas and Claude Opus 4.6
7b04d251d6
fix(build): restore automatic .d.ts generation in dev mode ( #38202 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-24 08:27:25 -08:00
Michael S. Molina
974bee14c3
fix(extensions): make LOCAL_EXTENSIONS loading resilient to individual failures ( #38217 )
2026-02-24 13:17:27 -03:00
fca8a49561
feat: auto refresh dashboard ( #37459 )
...
Co-authored-by: Richard <richard@ip-192-168-1-32.sa-east-1.compute.internal >
Co-authored-by: richard <richard@richards-MacBook-Pro-2.local >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-02-24 11:37:28 -03:00
Vitor Avila
f60432e34c
fix: Allow non-owners to fave/unfave charts ( #38095 )
2026-02-24 11:28:32 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b8459c15b8
chore(deps-dev): bump @typescript-eslint/parser from 8.56.0 to 8.56.1 in /docs ( #38211 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-24 20:06:14 +07:00
Evan Rusackas
8eb3046888
fix(docs): guard window reference in logging.ts for SSR compatibility ( #38201 )
2026-02-23 18:41:49 -08:00
Evan Rusackas and Claude Opus 4.5
615f13419c
fix(jest): ignore storybook-static and package __mocks__ directories ( #37946 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-23 16:18:14 -08:00
Evan Rusackas
8a74424545
fix(types): add explicit types for extendedDayjs plugin methods ( #37923 )
2026-02-24 06:58:46 +07:00
madhushreeag and madhushree agarwal
8f070169a5
perf(datasource): add pagination to datasource editor tables to prevent browser freeze ( #37555 )
...
Co-authored-by: madhushree agarwal <madhushree_agarwal@apple.com >
2026-02-23 15:19:33 -08:00
Richard Fogaca Nienkotter and richard
e06427d1ef
feat(embedded): add feature flag to disable logout button in embedded contexts ( #37537 )
...
Co-authored-by: richard <richard@richards-MacBook-Pro-2.local >
2026-02-23 17:56:02 -03:00
Evan Rusackas and Claude Opus 4.5
c4eb7de6de
fix(excel): remove unwanted index column from Excel exports ( #38176 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-23 08:28:40 -08:00
Vitor Avila
228b598409
feat: Labels for encrypted fields ( #38075 )
2026-02-23 13:23:33 -03:00
Ville Brofeldt
40f609fdce
fix(extensions): enforce correct naming conventions ( #38167 )
2026-02-23 08:21:35 -08:00
Amin Ghadersohi and Claude Opus 4.6
6e94a6c21a
fix(mcp): fix dashboard chart placement with proper COLUMN layout and tab support ( #37970 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-23 16:41:10 +01:00
50cc1b93d2
fix(security): fix Guest Token API 422 error by disabling JWT sub claim verification ( #38177 )
...
Co-authored-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-23 21:58:01 +07:00
Evan Rusackas and Claude Opus 4.5
131a97b657
fix(handlebars): add missing currencyformatter.js dependency ( #38173 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-23 21:56:50 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6f3a200c19
chore(deps-dev): bump @types/lodash from 4.17.23 to 4.17.24 in /superset-websocket ( #38179 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-23 21:54:18 +07:00
Michael S. Molina
cbb80f0462
refactor(extensions): simplify registerEditorProvider API ( #38127 )
2026-02-23 09:04:31 -03:00
Amin Ghadersohi
2a3567d2f1
fix(mcp): Remove unsupported thumbnail/preview URLs and internal fields from MCP schemas ( #38109 )
2026-02-23 12:44:12 +01:00
Evan Rusackas and Claude Opus 4.5
3f64ad3da5
fix(i18n): wrap untranslated frontend strings and add i18n lint rule ( #37776 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-22 21:27:37 -08:00
Evan Rusackas
672a380587
chore(frontend): enable additional oxlint rules for better code hygiene ( #38145 )
2026-02-23 10:36:24 +07:00
Rohan Santhosh and rohan436
a87a006aae
ci: declare explicit permissions in maintenance workflows ( #38159 )
...
Co-authored-by: rohan436 <rohan.santhoshkumar@googlemail.com >
2026-02-22 12:05:58 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
159fb5d6f4
chore(deps-dev): bump ajv from 6.12.6 to 6.14.0 in /superset-frontend/cypress-base ( #38131 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-21 17:34:27 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6424194c87
chore(deps): bump underscore from 1.13.7 to 1.13.8 in /superset-frontend ( #38142 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-21 13:25:26 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5bee32ea93
chore(deps): bump aquasecurity/trivy-action from 0.34.0 to 0.34.1 ( #38138 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-21 11:45:40 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
82fce8d7de
chore(deps-dev): bump @types/node from 25.2.3 to 25.3.0 in /superset-frontend ( #38143 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-21 11:45:06 +07:00
5e6524954c
chore(deps): pin react-icons to 5.4.0 in /superset-frontend ( #38144 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-21 11:44:46 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
987b6a6f04
chore(deps): bump swagger-ui-react from 5.31.1 to 5.31.2 in /docs ( #38140 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-21 07:43:21 +07:00
Đỗ Trọng Hải
3d6644864d
build(deps): migrate to lighter and modern react-icons ( #38125 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-20 16:19:01 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
577b965a60
chore(deps-dev): bump ajv from 6.12.6 to 6.14.0 in /superset-frontend ( #38132 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-21 06:51:28 +07:00
Enzo Martellucci
b565128fe7
fix(charts): improve error display for failed charts in dashboards ( #37939 )
2026-02-20 15:14:48 -08:00
madhushreeag and madhushree agarwal
b290f71245
fix(explore): prevent theme object from being passed to ReactAce in TextAreaControl ( #38117 )
...
Co-authored-by: madhushree agarwal <madhushree_agarwal@apple.com >
2026-02-20 14:16:07 -08:00
cff854b06e
chore(deps-dev): bump oxlint from 1.48.0 to 1.49.0 in /superset-frontend ( #38115 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-20 14:13:37 -08:00
Manoj S
44d6b6a513
fix(table): preserve line breaks in cell content modal ( #37036 )
2026-02-20 14:12:14 -08:00
Ujjwaljain16
2d44f52ad1
fix(encryption): resolve SECRET_KEY lazily to fix silent re-encrypt-secrets failures ( #37982 )
2026-02-20 14:10:09 -08:00
wuqicyber
6f34ba7d4a
fix(table-chart): support orderby adhoc columns with server-side pagination ( #37521 )
2026-02-21 00:29:34 +03:00
Damian Pendrak
1a77e17179
fix(chart-customizations): support migration of dynamic group by ( #37176 )
2026-02-20 13:11:07 -08:00
Gabriel Torres Ruiz
6fdaa8e9b3
fix(crud): reorder table actions + improve react memoization + improve hooks ( #37897 )
2026-02-20 08:58:28 -08:00
Kamil Gabryjelski and Claude Opus 4.6
e30a9caba5
fix(dataset-modal): fix folders tab scrollbar by establishing proper flex chain ( #38123 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-20 16:54:23 +01:00
Kamil Gabryjelski and Claude Opus 4.6
7937246575
fix(button): use colorLink token for link-style buttons ( #38121 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-20 16:54:05 +01:00
Amin Ghadersohi
9f8b212ccc
feat(mcp): add LIKE, ILIKE, IN, NOT IN filter operators to MCP chart tools ( #38071 )
2026-02-20 11:56:40 +01:00
Amin Ghadersohi and Claude Opus 4.6
1ecff6fe5c
fix(thumbnails): stabilize digest by sorting datasources and charts ( #38079 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-20 09:51:35 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
69653dfd08
chore(deps-dev): bump baseline-browser-mapping from 2.9.19 to 2.10.0 in /superset-frontend ( #38116 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-20 15:35:18 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58d8aa01f8
chore(deps): bump react-intersection-observer from 10.0.2 to 10.0.3 in /superset-frontend ( #38114 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-20 15:34:15 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
88f0e322e3
chore(deps): bump baseline-browser-mapping from 2.9.19 to 2.10.0 in /docs ( #38113 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-20 15:33:56 +07:00
Vanessa Giannoni
f4acce5727
fix(table): preserve time grain aggregation when temporal column casing changes ( #37893 )
2026-02-19 16:46:39 -08:00
Richard Fogaca Nienkotter
5278deaf63
fix(metrics): normalize legacy currency strings ( #37455 )
2026-02-19 21:25:44 -03:00
Mehmet Salih Yavuz
3868821dc8
fix(webpack): skip building service worker in dev ( #38106 )
2026-02-20 00:26:16 +03:00
Joe Li and Claude Opus 4.6
6a61baf5be
fix(alerts): show friendly filter names in report edit modal ( #38054 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-19 10:33:33 -08:00
5cc8ae5427
chore(deps): bump ol from 7.5.2 to 10.8.0 in /superset-frontend ( #37961 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-19 10:32:32 -08:00
Michael S. Molina
1f76944c2b
fix: Add editors to ContributionConfig and additional properties to EditorKeyword ( #38098 )
2026-02-19 15:00:21 -03:00
Kamil Gabryjelski
f049d3e34a
fix: Search in folders editor with verbose names ( #38101 )
2026-02-19 18:45:22 +01:00
Kamil Gabryjelski
86c8fa5cd7
fix: Badge count in folders editor ( #38100 )
2026-02-19 18:45:04 +01:00
Kamil Gabryjelski
e12140beb6
fix: Warning toast copy in folders editor ( #38099 )
2026-02-19 18:22:22 +01:00
Kamil Gabryjelski
b7a3224f04
feat: Larger folder drag area in folders editor ( #38102 )
2026-02-19 18:22:04 +01:00
Kamil Gabryjelski and Claude Opus 4.6
f5a5a804e2
perf(dashboard): skip thumbnail_url computing on single dashboard endpoint ( #38015 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-19 18:15:20 +01:00
Đỗ Trọng Hải
0b77ace110
chore: fix lint issue with no-unsafe-optional-chaining rule ( #38103 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-19 23:54:37 +07:00
Levis Mbote
c175346808
fix(table-charts): Prevent time grain from altering Raw Records in Tables + Interactive Tables ( #37561 )
2026-02-19 10:24:09 +01:00
Evan Rusackas and Claude Opus 4.5
6b80135aa2
chore(lint): enforce more strict eslint/oxlint rules (batch 2) ( #37884 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-18 19:27:27 -08:00
RealGreenDragon
de079a7b19
feat(deps)!: bump postgresql from 16 to 17 ( #37782 )
2026-02-18 17:12:48 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f54bbdc06b
chore(deps): bump dawidd6/action-download-artifact from 14 to 15 ( #38060 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-18 17:11:41 -08:00
SBIN2010
33441ccf3d
feat: add formatting column and formatting object to conditional formating table ( #35897 )
2026-02-19 02:07:15 +03:00
Vitor Avila
9ec56f5f02
fix: Include app_root in next param ( #37942 )
2026-02-18 19:52:06 -03:00
dependabot[bot]
11a36ff488
chore(deps-dev): bump the storybook group across 1 directory with 11 updates ( #38068 )
2026-02-18 23:48:16 +07:00
Đỗ Trọng Hải
af3e088233
build(deps): resolve GHSA-36jr-mh4h-2g58 by upgrading d3-color to 3.1.0 ( #37981 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-18 21:12:39 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29f499528f
chore(deps-dev): bump eslint-plugin-testing-library from 7.15.4 to 7.16.0 in /superset-frontend ( #38066 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-18 21:01:04 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
21481eef4f
chore(deps): bump the storybook group in /docs with 9 updates ( #38067 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-18 21:00:01 +07:00
0d2c8fd373
chore(deps): bump @storybook/core from 8.6.15 to 8.6.16 in /docs ( #38046 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-18 20:22:21 +07:00
Đỗ Trọng Hải
7b56fc1714
fix(docs): correct DB module filename for editing + update DB metadata file ( #37990 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-18 20:08:50 +07:00
Đỗ Trọng Hải
9131739f98
fix(home): null check for possibly undefined filtered other table data due to insufficient permission ( #37983 )
2026-02-18 17:33:51 +07:00
Đỗ Trọng Hải
a30492f55e
fix(plugin/cal-heatmap): properly color tooltip's text for both dark/light theme ( #38010 )
2026-02-18 17:25:41 +07:00
dependabot[bot]
090eab099c
chore(deps): bump storybook from 8.6.15 to 8.6.16 in /docs ( #38043 )
2026-02-18 16:23:26 +07:00
dependabot[bot]
cd4cd53726
chore(deps-dev): bump css-loader from 7.1.3 to 7.1.4 in /superset-frontend ( #38050 )
2026-02-18 16:21:39 +07:00
dependabot[bot]
65c460c9d2
chore(deps-dev): bump @swc/plugin-emotion from 14.5.0 to 14.6.0 in /superset-frontend ( #38053 )
2026-02-18 16:20:49 +07:00
dependabot[bot]
868e719c60
chore(deps-dev): bump oxlint from 1.47.0 to 1.48.0 in /superset-frontend ( #38055 )
2026-02-18 16:20:16 +07:00
5efc7ea5a5
chore(deps-dev): bump typescript-eslint from 8.55.0 to 8.56.0 in /docs ( #38024 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-18 12:10:50 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b0f9a73f63
chore(deps-dev): bump typescript-eslint from 8.54.0 to 8.56.0 in /superset-websocket ( #38020 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-18 11:49:11 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
746e266e90
chore(deps): bump swagger-ui-react from 5.31.0 to 5.31.1 in /docs ( #38023 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-18 11:37:51 +07:00
Damian Pendrak
5a777c0f45
feat(matrixify): add single metric constraint ( #37169 )
2026-02-17 09:12:24 -08:00
Amin Ghadersohi and Claude Opus 4.6
aec1f6edce
fix(mcp): use last data-bearing statement in execute_sql response ( #37968 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-17 13:13:55 +01:00
Amin Ghadersohi
f7218e7a19
feat(mcp): expose current user identity in get_instance_info and add created_by_fk filter ( #37967 )
2026-02-17 13:11:34 +01:00
Amin Ghadersohi and Claude Opus 4.6
5cd829f13c
fix(mcp): handle more chart types in get_chart_data fallback query construction ( #37969 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-17 13:02:42 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9566e8a9c6
chore(deps-dev): bump eslint-plugin-react-you-might-not-need-an-effect from 0.8.5 to 0.9.1 in /superset-frontend ( #38000 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-17 12:03:13 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
604d49f557
chore(deps): bump datamaps from 0.5.9 to 0.5.10 in /superset-frontend ( #37913 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 14:51:03 -08:00
SBIN2010
84f1ee4409
feat: added conditional formatting enhancements string to pivot table ( #35863 )
2026-02-17 01:08:41 +03:00
Kamil Gabryjelski
3e3c9686de
perf(dashboard): Batch RLS filter lookups for dashboard digest computation ( #37941 )
2026-02-16 21:35:55 +01:00
Mehmet Salih Yavuz
7b21979fa3
fix(charts): Force refresh uses async mode when GAQ is enabled ( #37845 )
2026-02-16 21:45:10 +03:00
Đỗ Trọng Hải
8853ff19d4
chore(websocket): migrate external uuid usage with Node's native UUID generator ( #37101 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-16 18:05:10 +07:00
Damian Pendrak
22ac5e02b6
fix(deckgl): remove dataset field from Deck.gl Layer Visibility Display controls ( #37611 )
2026-02-16 11:58:23 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2c9f0c1c2a
chore(deps-dev): bump wait-on from 9.0.3 to 9.0.4 in /superset-frontend ( #37999 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 17:18:23 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d47a7105df
chore(deps): bump caniuse-lite from 1.0.30001769 to 1.0.30001770 in /docs ( #37994 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 15:42:53 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c873225308
chore(deps-dev): bump jsdom from 28.0.0 to 28.1.0 in /superset-frontend ( #37997 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 15:42:28 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
982e2c1ef7
chore(deps-dev): bump webpack from 5.105.0 to 5.105.2 in /superset-frontend ( #38003 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 15:36:17 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
eee3af5775
chore(deps-dev): bump oxlint from 1.46.0 to 1.47.0 in /superset-frontend ( #38005 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 15:35:29 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
232b34d944
chore(deps-dev): bump webpack-sources from 3.3.3 to 3.3.4 in /superset-frontend ( #38004 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 15:35:03 +07:00
dependabot[bot]
d748ed19ce
chore(deps): bump hot-shots from 13.2.0 to 14.0.0 in /superset-websocket ( #37993 )
2026-02-16 15:16:31 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5300f65a74
chore(deps): bump qs from 6.14.1 to 6.14.2 in /superset-frontend ( #37936 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-16 13:39:06 +07:00
Türker Ziya Ercin
440602ef34
fix(utils): datetime_to_epoch function is fixed to timezone aware epoch ( #37979 )
2026-02-15 22:36:18 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cbf153845e
chore(deps): bump qs from 6.14.1 to 6.14.2 in /superset-websocket/utils/client-ws-app ( #37933 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-14 22:18:14 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
097f474f24
chore(deps): bump pillow from 11.3.0 to 12.1.1 ( #37935 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-13 16:00:47 -08:00
Joe Li
73adff55ee
chore(deps): Relax sqlalchemy-utils lower bound for pydoris compatibility ( #37949 )
2026-02-13 14:55:54 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a65f73a532
chore(deps): bump qs from 6.14.1 to 6.14.2 in /docs ( #37937 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-14 01:01:42 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
475615e118
chore(deps): bump ioredis from 5.9.2 to 5.9.3 in /superset-websocket ( #37951 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-13 23:40:50 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
79f51e2ae7
chore(deps-dev): bump webpack from 5.105.1 to 5.105.2 in /docs ( #37953 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-13 23:39:56 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
75d6a95ac3
chore(deps): bump aquasecurity/trivy-action from 0.33.1 to 0.34.0 ( #37958 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-13 23:39:30 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ffd7f10320
chore(deps): bump markdown-to-jsx from 9.7.3 to 9.7.4 in /superset-frontend ( #37959 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-13 23:09:31 +07:00
Michael S. Molina
e3e2bece6b
feat(owners): display email in owner selectors ( #37906 )
2026-02-13 09:01:05 -03:00
Jean Massucatto
0c0d915391
fix(echarts-timeseries-combined-labels): combine annotation labels for events at same timestamp ( #37164 )
2026-02-13 12:39:28 +03:00
Jamile Celento
080f629ea2
fix(echarts): formula annotations not rendering with dataset-level columns label ( #37522 )
2026-02-13 12:37:19 +03:00
Joe Li and Claude Opus 4.6
142b2cc425
test(e2e): add Playwright E2E tests for Chart List page ( #37866 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-12 14:16:11 -08:00
Joe Li and Claude Opus 4.5
6328e51620
test(examples): add tests for UUID threading and security bypass ( #37557 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-12 14:12:12 -08:00
0d5ddb3674
feat(themes): add enhanced validation and error handling with fallback mechanisms ( #37378 )
...
Co-authored-by: Rafael Benitez <rebenitez1802@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-02-12 14:06:58 -08:00
Pat Buxton
58d245c6b0
chore(deps): Update sqlachemy-utils to 0.42.0 ( #36240 )
2026-02-12 12:39:06 -08:00
dbf5e1f131
feat(theme): use IBM Plex Mono for code and numerical displays ( #37366 )
...
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-12 09:32:41 -08:00
Jonathan Alberth Quispe Fuentes
88ce1425e2
fix(roles): optimize user fetching and resolve N+1 query issue ( #37235 )
2026-02-12 09:32:19 -08:00
Amin Ghadersohi
4dfece9ee5
feat(mcp): add event_logger instrumentation to MCP tools ( #37859 )
2026-02-12 16:50:20 +01:00
Amin Ghadersohi and Claude Opus 4.6
3f64c25712
fix(mcp): Add database_name as valid filter column for list_datasets ( #37865 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-12 16:47:46 +01:00
afacca350f
chore(deps-dev): bump oxlint from 1.42.0 to 1.46.0 in /superset-frontend ( #37917 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-12 21:45:26 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30ccbb2e05
chore(deps): update @types/geojson requirement from ^7946.0.10 to ^7946.0.16 in /superset-frontend/plugins/plugin-chart-cartodiagram ( #37908 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-12 20:59:28 +07:00
Michael S. Molina
19ec7b48a0
fix: Conditional formatting painting empty cells ( #37894 )
2026-02-12 10:22:00 -03:00
Vanessa Giannoni
77148277b9
feat(charts): improve negative stacked bar label positioning and accessibility ( #37405 )
2026-02-11 17:46:10 -08:00
Evan Rusackas and Claude Opus 4.5
981b370fe9
chore(storybook): consolidate storybook and enhance plugin stories ( #37771 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-11 16:06:23 -08:00
Enzo Martellucci
b012b63e5b
fix(native-filters): align refresh icon with default value field ( #37802 )
2026-02-11 21:26:26 +01:00
Kamil Gabryjelski
b0be47a4ac
fix: Unreachable drop zones within tabs in dashbboard editor ( #37904 )
2026-02-11 21:08:19 +01:00
Ville Brofeldt
00d02cb2ea
perf(gtf): improve task base filter ( #37900 )
2026-02-11 10:40:07 -08:00
Kamil Gabryjelski
26a2e12779
perf: fix N+1 query in Slice.datasource property ( #37899 )
2026-02-11 18:57:28 +01:00
Luis Sánchez
5f0001affc
feat(timeseries): remove stream style for bar charts ( #37532 )
2026-02-11 09:25:03 -08:00
Ville Brofeldt
255a0ada81
fix(gtf): add missing user_id to task commands ( #37867 )
2026-02-11 09:04:27 -08:00
Evan Rusackas and Claude Opus 4.5
9089f30045
chore(lint): upgrade array creation, effect, and TypeScript rules ( #37885 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-11 08:45:21 -08:00
Kamil Gabryjelski
98ca599eef
perf: fix N+1 query in chart list API when thumbnail_url is requested ( #37895 )
2026-02-11 17:19:48 +01:00
Evan Rusackas and Claude Opus 4.5
d640fe42c9
chore: remove Applitools visual testing integration ( #37873 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-11 08:07:19 -08:00
Evan Rusackas and Claude Opus 4.5
534fa48f1f
chore(lint): enforce stricter eslint/oxlint rules ( #37883 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-11 08:07:02 -08:00
Evan Rusackas and Claude Opus 4.5
c28729f944
chore(lint): add jest/expect-expect rule for test assertions ( #37887 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-11 08:06:34 -08:00
Luis Sánchez
88a14f2ba0
fix(FiltersBadge): world map wont show filter icon after refresh page ( #37260 )
2026-02-11 16:33:32 +03:00
Ville Brofeldt
74e1607010
fix(extensions): broken test ( #37871 )
2026-02-11 08:33:45 -03:00
Mehmet Salih Yavuz
69c679be20
fix(explore): Don't show unsaved changes modal on new charts ( #37714 )
2026-02-11 13:05:42 +03:00
Evan Rusackas and Claude Opus 4.5
9a79dbf445
fix(docs): make page size selector work in database table ( #37863 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-10 22:15:55 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7e5ca83220
chore(deps-dev): bump @types/node from 25.2.2 to 25.2.3 in /superset-frontend ( #37851 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 14:24:55 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7d4a7f113c
chore(deps-dev): bump webpack from 5.105.0 to 5.105.1 in /docs ( #37849 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 14:24:13 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4eb8fc814a
chore(deps-dev): bump @types/node from 25.2.2 to 25.2.3 in /superset-websocket ( #37846 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 14:23:11 -08:00
Tadas Barzdžius
39ac96817a
fix(helm): Add default initContainer resources ( #37637 )
2026-02-10 11:51:37 -08:00
Levis Mbote
1388a62823
fix(filters): fix filter / customization name not updating in sidebar in real time ( #37358 )
2026-02-10 20:41:47 +01:00
Michael S. Molina
6a6b9b5386
chore: Bump core packages (0.0.1rc11, 0.0.1rc4) ( #37860 )
2026-02-10 16:37:07 -03:00
Michael S. Molina
b98b34a60f
refactor: Make extensions contribution schema consistent ( #37856 )
2026-02-10 15:55:39 -03:00
Kamil Gabryjelski
7ec5f1d7ec
fix(native-filters): Filters with select first value not restored correctly from url ( #37855 )
2026-02-10 18:54:42 +01:00
Đỗ Trọng Hải
76aa91f5ea
fix(deps): pin react-error-boundary to 6.0.0 for React 17 peer dep constraint ( #37706 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-10 23:22:14 +07:00
Michael S. Molina
c41942a38a
chore(deps): Upgrade sqlglot from 27.15.2 to 28.10.0 ( #37841 )
2026-02-10 13:13:11 -03:00
Alexandru Soare
ae8d671fea
fix(sql): fix sql suggestions ( #37699 )
2026-02-10 17:30:17 +02:00
Enzo Martellucci and Diego Pucci
c59d0a73d4
fix: Prevent table rows from overlapping pagination in table view ( #37174 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2026-02-10 16:01:39 +01:00
Ville Brofeldt
0f1278fa61
fix(gtf): set dedup_key on atomic sql ( #37820 )
2026-02-10 06:56:14 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
948b1d613b
chore(deps-dev): bump typescript-eslint from 8.54.0 to 8.55.0 in /docs ( #37825 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 21:52:30 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3af795af36
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.54.0 to 8.55.0 in /superset-websocket ( #37822 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 21:36:12 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1cba53a043
chore(deps-dev): bump @typescript-eslint/parser from 8.54.0 to 8.55.0 in /superset-websocket ( #37823 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 01:09:19 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8c6bc3eaea
chore(deps): bump antd from 6.2.3 to 6.3.0 in /docs ( #37824 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 01:08:58 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4d8ff84587
chore(deps-dev): bump @playwright/test from 1.58.1 to 1.58.2 in /superset-frontend ( #37826 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 01:07:55 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f370da5a87
chore(deps-dev): bump @typescript-eslint/parser from 8.54.0 to 8.55.0 in /docs ( #37827 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 01:07:36 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2df60f9caf
chore(deps): bump immer from 11.1.3 to 11.1.4 in /superset-frontend ( #37830 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 01:07:08 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d078f18ff8
chore(deps-dev): bump @types/node from 25.2.1 to 25.2.2 in /superset-websocket ( #37796 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 01:06:17 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6ca028dee9
chore(deps): bump axios from 1.12.2 to 1.13.5 in /docs ( #37814 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 01:05:54 -08:00
Tu Shaokun
76351ff12c
fix(i18n): ensure language pack loads before React renders ( #36893 )
2026-02-10 00:29:04 -08:00
Joe Li and Claude Opus 4.6
f6f96ecc49
test(chart-list): migrate Chart List tests from Cypress to RTL ( #37813 )
...
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-09 16:25:49 -08:00
Ville Brofeldt
59dd2fa385
feat: add global task framework ( #36368 )
2026-02-09 10:45:56 -08:00
Michael S. Molina
6984e93171
fix: SQL Lab improvements and bug fixes ( #37760 )
2026-02-09 14:29:08 -03:00
Kamil Gabryjelski
f25d95be41
fix: Vertical lines in the middle of Treemap categories ( #37808 )
2026-02-09 17:44:59 +01:00
Đỗ Trọng Hải
5125a67002
build(dev-deps): remove npm from @apache-superset/core ( #37774 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-09 13:00:40 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
059b57d784
chore(deps-dev): bump @types/node from 25.2.1 to 25.2.2 in /superset-frontend ( #37801 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 22:47:12 +07:00
Đỗ Trọng Hải and Copilot
a1d65c7529
feat(deps): significant npm audit fix to trim off inadvertently runtime dep from upstream libraries ( #37220 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2026-02-09 22:13:57 +07:00
Amin Ghadersohi
15b3c96f8e
fix(security): Add table blocklist and fix MCP SQL validation bypass ( #37411 )
2026-02-09 14:12:06 +01:00
Alexandru Soare
2b411b32ba
fix(scatter): Fix ad-hoc metric for pointsize ( #37669 )
2026-02-09 11:13:06 +02:00
cebdb9e0b7
fix(ListView): add tooltip for layout toggle buttons ( #37581 )
...
Co-authored-by: root <root@DESKTOP-LUKSKD7.localdomain >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-02-09 02:37:53 -05:00
ce872ddaf0
chore(deps-dev): bump @swc/core from 1.14.0 to 1.15.11 in /superset-frontend ( #37511 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-09 02:27:45 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29aa69b779
chore(deps): update @luma.gl/engine requirement from ~9.2.5 to ~9.2.6 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #37762 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 01:28:59 -05:00
Evan Rusackas and Claude Opus 4.5
ebee9bb3f9
refactor(types): consolidate shared table types and fix Funnel enum typo ( #37768 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-09 01:14:34 -05:00
Vinícius Borges Alencar
82d6076804
refactor(charts): filter saved metrics by key and label ( #37136 )
2026-02-09 07:29:32 +03:00
Đỗ Trọng Hải
3b75af9ac3
docs(dev_portal/test): remove refs of testing tools not used in project ( #37786 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-08 16:46:31 +07:00
Đỗ Trọng Hải
563d9f1a3f
chore(lint): migrate Jest lint rules from eslint to oxlint ( #37787 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-08 16:44:42 +07:00
Đỗ Trọng Hải
c4d2d42b3b
build(dev-deps): move Webpack-dedicated js-yaml-loader to dev deps section ( #37788 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-08 01:37:12 -08:00
7580bd1401
chore(deps-dev): bump timezone-mock from 1.3.6 to 1.4.0 in /superset-frontend ( #37333 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-07 23:07:29 -08:00
SBIN2010
c4e7c3b03b
refactor: consolidating ColorSchemeEnum settings into one place ( #37591 )
2026-02-07 23:04:20 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3521f191b2
chore(deps): bump webpack from 5.96.1 to 5.105.0 in /superset-frontend/cypress-base ( #37775 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-07 10:18:47 -08:00
Rini Misini and RiniMisini12
f4708a5648
fix(db): prevent long database error messages from overflowing UI ( #37709 )
...
Co-authored-by: RiniMisini12 <misinirini@gmail.com >
2026-02-07 21:13:09 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b9ab03994a
chore(deps-dev): bump jsdom from 27.4.0 to 28.0.0 in /superset-frontend ( #37688 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-07 15:32:38 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
df253f6aa4
chore(deps-dev): bump @babel/plugin-transform-runtime from 7.28.5 to 7.29.0 in /superset-frontend ( #37631 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-07 00:12:35 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5cea4fb7fe
chore(deps): update @luma.gl/shadertools requirement from ~9.2.5 to ~9.2.6 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #37763 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 23:55:22 -08:00
76a27d5360
chore(deps): bump d3-format from 1.4.5 to 3.1.2 in /superset-frontend/packages/superset-ui-core ( #37442 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-06 23:42:39 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
174e3c26d3
chore(deps): update @luma.gl/webgl requirement from ~9.2.5 to ~9.2.6 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #37764 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 23:32:37 -08:00
Alexandru Soare
9ea5ded988
fix(dashboard): Prevent fatal error when database connection is unavailable ( #37576 )
2026-02-06 20:52:17 -08:00
Đỗ Trọng Hải
9086ae8e6c
feat(ci): only bump patch version for Storybook-related deps until React 18 ( #37749 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-06 13:29:32 -08:00
Evan Rusackas and Claude Opus 4.5
fc5506e466
chore(frontend): comprehensive TypeScript quality improvements ( #37625 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-06 13:16:57 -08:00
Abhishek Mishra
e9ae212c1c
fix(alerts): show screenshot width field for PDF reports ( #37037 )
2026-02-06 11:19:18 -08:00
Evan Rusackas and Claude Opus 4.5
46bca32677
docs(seo): add structured data, OpenGraph tags, and sitemap improvements ( #37404 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-06 11:09:19 -08:00
JUST.in DO IT and Arunodoy18
a04571fa20
fix(world-map): reset hover highlight on mouse out ( #37716 )
...
Co-authored-by: Arunodoy18 <arunodoy630@gmail.com >
2026-02-06 10:27:57 -08:00
Evan Rusackas and Claude Opus 4.5
fc26dbfebf
chore(deps): upgrade deck.gl and luma.gl packages to ~9.2.6 ( #37718 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-06 10:20:50 -08:00
Michael S. Molina
0415118544
chore: Bump @apache-superset/core (0.0.1-rc10) ( #37759 )
2026-02-06 14:18:22 -03:00
Michael S. Molina
935bbe6061
docs: Updates extensions docs ( #37704 )
2026-02-06 13:18:25 -03:00
Daniel Vaz Gaspar and Claude Opus 4.5
ec6eaf4898
fix(deps): bump elasticsearch-dbapi to 0.2.12 for urllib3 2.x compatibility ( #37758 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-06 16:03:04 +00:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
87d15d32c4
chore(deps-dev): bump @types/node from 25.2.0 to 25.2.1 in /superset-frontend ( #37732 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 20:16:18 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7d9a8a0c5a
chore(deps-dev): bump @babel/node from 7.28.6 to 7.29.0 in /superset-frontend ( #37734 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 20:15:47 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ddba88ffad
chore(deps): bump googleapis from 171.2.0 to 171.4.0 in /superset-frontend ( #37736 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 20:15:29 +07:00
Evan Rusackas and Claude
1e50422a66
chore: remove deprecated react-hot-loader ( #36433 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-02-06 15:57:31 +07:00
Evan Rusackas and Claude Opus 4.5
246dbd7f5c
chore(deps): upgrade react-resize-detector to v9.1.1 ( #37741 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-06 15:25:30 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9b861b2848
chore(deps): bump caniuse-lite from 1.0.30001768 to 1.0.30001769 in /docs ( #37726 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 14:33:57 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1c35c3f6d0
chore(deps): bump markdown-to-jsx from 9.7.2 to 9.7.3 in /superset-frontend ( #37730 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 14:31:39 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b71654877f
chore(deps-dev): bump @types/node from 25.2.0 to 25.2.1 in /superset-websocket ( #37719 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 14:31:09 +07:00
cd447ca1fd
chore(deps): update @luma.gl/webgl requirement from ~9.2.2 to ~9.2.6 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #37469 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-05 22:39:25 -08:00
Amin Ghadersohi and Claude Opus 4.5
01ac966b83
fix(mcp): remove html.escape to fix ampersand display in chart titles ( #37186 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-05 19:49:37 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
97e5f0631d
chore(deps): bump aws-actions/configure-aws-credentials from 5 to 6 ( #37685 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-05 19:48:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b7acb7984f
chore(deps-dev): bump @babel/core from 7.28.6 to 7.29.0 in /superset-frontend ( #37686 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-05 19:48:43 -08:00
Evan Rusackas and Claude Opus 4.5
d3919cf24f
fix(translations): Periodic language strings extraction, newly Translatable label positions for Radar Chart ( #33940 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-05 19:48:24 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27889651b3
chore(deps): bump markdown-to-jsx from 9.6.1 to 9.7.2 in /superset-frontend ( #37691 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 09:55:51 +07:00
Đỗ Trọng Hải
361fe6fe89
chore(build): add @hainenber as codeowner for GHA workflow changes ( #37703 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-02-06 09:54:21 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8506d70242
chore(deps-dev): bump webpack from 5.94.0 to 5.105.0 in /superset-embedded-sdk ( #37713 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 09:53:35 +07:00
Evan Rusackas and Claude Opus 4.5
00a53eec2d
fix(translations): remove corrupted text from Spanish translation file ( #37717 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-06 09:52:14 +07:00
5040db859c
test(playwright): additional dataset list playwright tests ( #36684 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2026-02-05 16:42:07 -08:00
Evan Rusackas and Claude Opus 4.5
ef4f7afa90
chore(docs): improve build performance and fix OOM crashes ( #37588 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-05 13:12:46 -08:00
Amin Ghadersohi
47db185e3b
fix(mcp): include x_axis column in query context for series charts with group_by ( #37639 )
2026-02-05 19:59:44 +01:00
2e463078a2
refactor(filters): extract shouldShowTimeRangePicker and improve test coverage ( #36012 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2026-02-05 10:48:55 -08:00
JUST.in DO IT
4f42928b34
fix(sqllab): Skip progress bar on no data ( #37652 )
2026-02-05 10:38:37 -08:00
Gabriel Torres Ruiz
75fa474fce
test(native-filters): add unit tests for requiredFirst filter logic ( #37640 )
2026-02-05 10:36:35 -08:00
fd8c21591a
chore(deps-dev): update @babel/types requirement from ^7.28.6 to ^7.29.0 in /superset-frontend/plugins/plugin-chart-pivot-table ( #37603 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-05 10:31:56 -08:00
Amin Ghadersohi
4147d877fc
fix(mcp): prevent DATE_TRUNC on non-temporal columns in chart generation ( #37433 )
2026-02-05 09:24:31 -08:00
Amin Ghadersohi and Claude Opus 4.5
a9dca529c1
fix(mcp): treat runtime validation warnings as informational, not errors ( #37214 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-05 09:23:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20f1918dd6
chore(deps): bump caniuse-lite from 1.0.30001767 to 1.0.30001768 in /docs ( #37684 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-05 22:26:53 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c09a4f6f47
chore(deps): bump googleapis from 171.1.0 to 171.2.0 in /superset-frontend ( #37690 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-05 21:37:26 +07:00
4e4fa53c8d
fix: Rename Truncate Axis to Truncate Y Axis in bar chart controls ( #37403 )
...
Co-authored-by: Joe Li <joe@preset.io >
Co-authored-by: SBIN2010 <Sbin2010@mail.ru >
2026-02-05 12:55:51 +03:00
07ff82f189
docs: add XNET to INTHEWILD list ( #37615 )
...
Co-authored-by: Miguel Deus <miguel@xnet.company >
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-02-04 21:27:35 -08:00
b7b9bfd3fe
chore(deps): bump query-string from 6.14.1 to 9.3.1 in /superset-frontend ( #37545 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-04 21:26:28 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b968d1095c
chore(deps): bump dawidd6/action-download-artifact from 12 to 14 ( #37602 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-04 21:25:52 -08:00
Michael S. Molina
e10237fcc1
fix: Security vulnerability in Storybook ( #37676 )
2026-02-04 14:48:39 -03:00
Michael S. Molina
92438322c0
feat(extensions): Enhances SQL Lab API ( #37642 )
2026-02-04 13:53:58 -03:00
Đỗ Trọng Hải
f96e90b979
fix(docker): remove accidental command substitutions when building FE in dev mode ( #37670 )
2026-02-04 23:53:20 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b464979db1
chore(deps-dev): bump webpack from 5.104.1 to 5.105.0 in /superset-frontend ( #37658 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-04 22:47:12 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45f883c9cd
chore(deps-dev): bump webpack from 5.104.1 to 5.105.0 in /docs ( #37656 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-04 21:35:51 +07:00
Nancy Chauhan
8fd3401077
fix(security): update jspdf to 4.0.0 to address CVE-2025-68428 ( #37553 )
2026-02-04 21:29:57 +07:00
Richard Fogaca Nienkotter
89a98ab9a4
fix(dataset-editor): include calculated columns in currency code dropdown ( #37621 )
2026-02-04 11:17:07 -03:00
Jamile Celento
2dfc770b0f
fix(native-filters): update TEMPORAL_RANGE filter subject when Time Column filter is applied ( #36985 )
2026-02-04 12:37:17 +03:00
Vanessa Giannoni
6b7b23ed78
fix(timeseries): restore ECharts tooltip after closing drill menu ( #37284 )
2026-02-04 12:32:23 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5ac5480f35
chore(deps): bump caniuse-lite from 1.0.30001766 to 1.0.30001767 in /docs ( #37601 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 12:35:32 -08:00
Evan Rusackas and Claude Opus 4.5
76889c1a69
feat(db_engine_specs): add Apache Phoenix and Apache IoTDB engine specs ( #37590 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-03 15:29:19 -05:00
Evan Rusackas and Claude Opus 4.5
569606635b
docs(databases): add Supabase, AlloyDB, and Neon as PostgreSQL-compatible databases ( #37589 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-03 12:22:49 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
66264856a7
chore(deps): bump googleapis from 171.0.0 to 171.1.0 in /superset-frontend ( #37630 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 22:28:07 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3eb860a663
chore(deps): bump hot-shots from 13.1.0 to 13.2.0 in /superset-websocket ( #37596 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 22:19:07 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a44980da65
chore(deps-dev): bump globals from 17.2.0 to 17.3.0 in /superset-websocket ( #37595 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 22:18:33 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7112bce961
chore(deps-dev): bump @types/node from 25.1.0 to 25.2.0 in /superset-websocket ( #37597 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 22:18:14 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
568486a304
chore(deps): bump @babel/core from 7.28.6 to 7.29.0 in /docs ( #37598 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 22:17:50 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fea135b46c
chore(deps-dev): bump @playwright/test from 1.58.0 to 1.58.1 in /superset-frontend ( #37633 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 22:17:13 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
601fcb3382
chore(deps-dev): bump @babel/preset-env from 7.28.6 to 7.29.0 in /superset-frontend ( #37635 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 22:02:46 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0d7cc88b2b
chore(deps): bump antd from 6.2.2 to 6.2.3 in /docs ( #37629 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-03 21:50:13 +07:00
Vitor Avila
32ee160c75
chore: Properly untrack WebSocket config file for docker ( #37624 )
2026-02-03 11:48:08 -03:00
Amin Ghadersohi
5914e83436
chore(mcp): remove unused MCP_SERVICE feature flag ( #37618 )
2026-02-03 15:23:08 +01:00
Amin Ghadersohi and Claude Opus 4.5
0b5e4dd5de
feat(mcp): add config toggle to disable parse_request decorator ( #37617 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-03 15:22:44 +01:00
Joe Li and Claude Opus 4.5
3a565a6c16
fix(tests): update DatasetList tests to new fetch-mock API ( #37623 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-03 14:15:58 +03:00
Ramiro Aquino Romero
f60c82e4a6
fix: charts row limit warning is missing for server ( #37112 )
2026-02-02 15:49:31 -08:00
Luis Sánchez
91131d5996
chore(charts): echarts left padding too big and automation of title ( #36993 )
2026-02-02 15:48:03 -08:00
Joe Li and Claude
4b0d497513
test: add new RTL and integration tests for DatasetList ( #36681 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-02-02 12:08:38 -08:00
Joe Li and Claude Opus 4.5
86f690d17f
fix(dashboard): fix Export as Example with app prefix and enable Dashboard Export E2E tests ( #37529 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-02 12:07:22 -08:00
Elizabeth Thompson and Claude
e9b494163b
refactor(db): use Dialect instead of Engine in select_star to avoid SSH tunnels ( #35540 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-02-02 10:26:35 -08:00
JUST.in DO IT
be404f9b84
fix(dashboard): Avoid calling loadData for invisible charts on virtual rendering ( #37452 )
2026-02-02 10:07:25 -08:00
Daniel Vaz Gaspar and Claude Opus 4.5
11257c0536
fix(examples): skip URI safety check for system imports ( #37577 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-02 09:24:16 -08:00
Beto Dealmeida and Claude Opus 4.5
f2b6c395cd
feat: Add PWA file handler for CSV/XLS/Parquet uploads ( #36191 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-02 11:24:01 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2d35ed2391
chore(deps-dev): bump @babel/runtime-corejs3 from 7.28.6 to 7.29.0 in /superset-frontend ( #37605 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-02 23:03:59 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bd65469091
chore(deps-dev): bump globals from 17.2.0 to 17.3.0 in /docs ( #37599 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-02 21:48:25 +07:00
Kamil Gabryjelski
a6a66ca483
feat: Dataset folders editor ( #36239 )
2026-02-02 14:54:33 +01:00
Jonathan Alberth Quispe Fuentes
4a7cdccdad
fix: Heatmap does not render correctly on normalization ( #37208 )
2026-02-02 12:34:46 +03:00
61bd8f0cf2
chore(deps): bump use-query-params from 1.2.3 to 2.2.2 in /superset-frontend ( #36997 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-02-01 23:55:39 -08:00
Evan Rusackas and Claude Opus 4.5
ae10e105c2
fix(chart): enable cross-filter on bar charts without dimensions ( #37407 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-31 17:14:24 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
901dca58f7
chore(deps): bump JustinBeckwith/linkinator-action from 2.3 to 2.4 ( #37562 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-31 03:06:30 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d95a3d8426
chore(deps-dev): bump @applitools/eyes-storybook from 3.63.9 to 3.63.10 in /superset-frontend ( #37566 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-31 03:06:09 -08:00
alok kumar priyadarshi
70b95ca1b9
fix(build): eliminate PostgreSQL extra installation on Python 3.12-based Superset Docker images ( #37587 )
2026-01-31 15:54:19 +07:00
Michael S. Molina
004f02746f
fix(build): Increase ForkTsCheckerWebpackPlugin memory limit to fix OOM error ( #37583 )
2026-01-31 14:22:17 +07:00
Beto Dealmeida
5d20dc57d7
feat(oauth2): add PKCE support for database OAuth2 authentication ( #37067 )
2026-01-30 23:28:10 -05:00
Beto Dealmeida
05c2354997
feat: AWS Cross-Account IAM Authentication for Aurora ( #37585 )
2026-01-30 19:18:34 -05:00
Vitor Avila
6043e7e7e3
fix: more DB OAuth2 fixes ( #37398 )
2026-01-30 21:11:26 -03:00
Amin Ghadersohi
1ee14c5993
fix(mcp): improve prompts, resources, and instructions clarity ( #37389 )
2026-01-30 12:25:38 -08:00
Felipe López
9764a84402
fix(charts): Table chart shows an error on row limit ( #37218 )
2026-01-30 11:45:50 -08:00
JUST.in DO IT
570cc3e5f8
feat(sqllab): treeview table selection ui ( #37298 )
2026-01-30 11:07:56 -08:00
66519c3a85
chore(deps-dev): bump fetch-mock from 11.1.5 to 12.6.0 in /superset-frontend/packages/superset-ui-core ( #36662 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-01-30 21:27:35 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1f43138888
chore(deps): bump babel-loader from 9.2.1 to 10.0.0 in /docs ( #37541 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-30 21:06:23 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
652d029a2d
chore(deps-dev): bump @types/node from 25.0.10 to 25.1.0 in /superset-frontend ( #37563 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-30 21:03:26 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e67b1f5326
chore(deps-dev): bump baseline-browser-mapping from 2.9.18 to 2.9.19 in /superset-frontend ( #37565 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-30 20:56:46 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fa79a467e4
chore(deps): bump googleapis from 170.1.0 to 171.0.0 in /superset-frontend ( #37564 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-30 16:57:04 +07:00
Pedro Rodrigues
2cce0308d4
fix: big number drill to details column data ( #37068 )
2026-01-30 12:32:49 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c7fd1a2f65
chore(deps-dev): bump @types/node from 25.0.10 to 25.1.0 in /superset-websocket ( #37539 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-30 10:22:41 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ab4f646ef6
chore(deps): bump @babel/core from 7.28.5 to 7.28.6 in /docs ( #37540 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-30 10:22:15 +07:00
Alejandro Solares
d6029f5c8a
chore(deps): bump dependencies to address security vulnerabilities ( #37552 )
2026-01-30 10:19:43 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c16e8f747c
chore(deps-dev): bump css-loader from 7.1.2 to 7.1.3 in /superset-frontend ( #37544 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-30 10:18:20 +07:00
Evan Rusackas and Claude Opus 4.5
9c0337d092
fix(explore): correct validationDependancies typo to validationDependencies ( #37554 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-30 01:18:50 +03:00
Evan Rusackas and Claude Opus 4.5
3ef33dcb76
feat(playwright): add documentation screenshot generator ( #37494 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-29 10:14:53 -08:00
Jean Massucatto
5a99588f57
fix(themes): correct action icons size and restore missing tooltips ( #37409 )
2026-01-29 20:42:15 +03:00
Kamil Gabryjelski
0b34363654
fix(mcp): Instance not bound to session error ( #37548 )
2026-01-29 18:00:34 +01:00
Jean Massucatto
55ec1152ec
fix(deckgl): change deck gl Path default line width unit to meters ( #37248 )
2026-01-29 19:58:50 +03:00
Michael S. Molina
810d6ff480
fix(sqllab): Resolve stale closure bug causing text selection to break ( #37550 )
2026-01-29 13:09:26 -03:00
Mehmet Salih Yavuz
1501af06fe
fix(Multilayer): preserve dashboard context for embedded ( #37495 )
2026-01-29 18:06:12 +03:00
Michael S. Molina
6cb3cea960
feat(extensions): Allow replacing editors using extensions ( #37499 )
2026-01-29 08:22:32 -03:00
Felipe López
675a4c7a66
fix(charts): numerical column for the Point Radius field in mapbox ( #36962 )
2026-01-29 10:50:10 +01:00
Vanessa Giannoni
7110fc9cde
fix(explore): remove extra spacing when Advanced Analytics section is hidden ( #37456 )
2026-01-29 12:18:06 +03:00
Evan Rusackas and Claude Opus 4.5
73e095db8e
docs(components): federate Storybook stories into Developer Portal MDX ( #37502 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 21:33:01 -08:00
Evan Rusackas and Claude Opus 4.5
5fedb65bc0
fix(docs): migrate deprecated antd v6 APIs to items prop pattern ( #37530 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 18:47:20 -08:00
Evan Rusackas and Claude Opus 4.5
b3526fc4ca
docs(community): redesign community page with card grid layout ( #37536 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 17:58:05 -08:00
Evan Rusackas and Claude Opus 4.5
042229bf80
fix(docs): add consistent dev-mode logging for Matomo page views ( #37526 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 17:54:38 -08:00
Gabriel Torres Ruiz
06e4f4ff4c
fix(dashboard): catch DatasourceNotFound in get_datasets to prevent 404 ( #37503 )
2026-01-28 15:54:56 -08:00
yousoph and Claude
bb5be6cf54
fix(matrixify): Rename Tag from 'Matrixify' to 'Matrixified' ( #37402 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-01-28 15:46:51 -08:00
Evan Rusackas and Claude Opus 4.5
f6f9e083ac
fix(docs): replace identicon logos and deduplicate README database wall ( #37500 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 12:33:36 -08:00
Evan Rusackas and Claude Opus 4.5
ad0186093f
docs: add interactive API reference using docusaurus-openapi-docs ( #37434 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 11:16:25 -08:00
Evan Rusackas and Claude Opus 4.5
073c3c72b4
docs: add HPE logo to In the Wild listing ( #37506 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 14:03:46 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d4b89de001
chore(deps-dev): bump oxlint from 1.41.0 to 1.42.0 in /superset-frontend ( #37512 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-28 22:09:04 +07:00
SkinnyPigeon
912538d176
docs: Updating quickstart for 6.0.0 ( #37446 )
2026-01-28 22:08:31 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cfeb7ccd31
chore(deps-dev): bump globals from 17.1.0 to 17.2.0 in /superset-websocket ( #37508 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-28 22:06:13 +07:00
Jean Massucatto
abf90de0ca
fix(select): prevent bulk action buttons from being cut off in filters ( #37453 )
2026-01-28 17:16:14 +03:00
Vanessa Giannoni
ec2509a8b4
fix(dashboard-filters): prevent clearing all filters when editing a native filter ( #37253 )
2026-01-28 17:06:00 +03:00
Reynold Morel
43653d1fa1
fix(dashboard): resolve dropdown popup positioning ( #36963 )
2026-01-28 17:01:37 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
da56bddada
chore(deps-dev): bump globals from 17.1.0 to 17.2.0 in /docs ( #37509 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-28 20:46:08 +07:00
Jamile Celento
3347b9bf6c
fix(table): only show increase/decrease color options when time comparison enabled ( #37362 )
2026-01-28 13:32:30 +01:00
Amin Ghadersohi
6663709a23
fix(mcp): tools not listed when JWT auth is enabled ( #37377 )
2026-01-28 11:20:20 +01:00
Amin Ghadersohi
e6d0f97aab
fix(mcp): always filter list responses by columns_requested ( #37505 )
2026-01-28 11:15:19 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3bcd3b1683
chore(deps-dev): bump typescript-eslint from 8.53.1 to 8.54.0 in /superset-websocket ( #37466 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-28 07:55:13 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b223f10ab5
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.53.1 to 8.54.0 in /superset-websocket ( #37468 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-28 07:35:46 +07:00
Evan Rusackas and Claude Opus 4.5
f787aec567
docs: add Netlify to CI services footer and improve layout ( #37451 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-27 14:41:38 -08:00
Vanessa Giannoni
2ec3aaaeea
feat(dashboard): show dataset column labels in View as table ( #37140 )
2026-01-27 13:51:28 -08:00
JUST.in DO IT
20da4eb86e
fix(sqllab): Over-rendering on result table ( #30857 )
2026-01-27 13:47:58 -08:00
Mehmet Salih Yavuz
27a4575f3e
refactor: Move frontend related artifacts into frontend gitignore ( #37496 )
2026-01-27 22:38:11 +03:00
5fa6925522
fix(dashboard): update chart customization UI text to "Display controls" ( #37462 )
...
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
2026-01-27 10:27:14 -08:00
Vanessa Giannoni
a7e7cc30a9
fix(ag-grid-table): preserve time grain aggregation when temporal column casing changes ( #36990 )
2026-01-27 10:13:32 -08:00
Evan Rusackas and Claude Opus 4.5
e4d71c2a55
docs(readme): sync database logos with auto-generated docs ( #37463 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-27 09:58:03 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
10a8d8b8ee
chore(deps-dev): bump @typescript-eslint/parser from 8.53.1 to 8.54.0 in /superset-websocket ( #37465 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-27 09:57:29 -08:00
Mehmet Salih Yavuz
1681f74b2e
chore(direnv): add direnv to gitignore ( #37481 )
2026-01-27 19:14:50 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58ab4e78ff
chore(deps): bump antd from 6.2.1 to 6.2.2 in /docs ( #37470 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-27 23:11:13 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8f6dd4aba0
chore(deps-dev): bump typescript-eslint from 8.53.1 to 8.54.0 in /docs ( #37476 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-27 23:07:16 +07:00
dba75bd897
chore(deps): bump memoize-one from 5.2.1 to 6.0.0 in /superset-frontend/packages/superset-ui-demo ( #37151 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-26 22:22:00 -08:00
e28d2782f1
chore(deps): bump core-js from 3.40.0 to 3.48.0 in /superset-frontend/packages/superset-ui-demo ( #37439 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-01-26 21:58:16 -08:00
alex and Claude Sonnet 4.5
97aea5d128
feat(i18n): complete Māori translation ( #37443 )
...
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com >
2026-01-26 21:40:49 -08:00
bd419d19af
chore(deps): update core-js requirement from ^3.38.1 to ^3.48.0 in /superset-frontend/packages/superset-ui-core ( #37319 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-26 17:15:22 -08:00
56ad429200
chore(deps): update @luma.gl/shadertools requirement from ~9.2.2 to ~9.2.6 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #37237 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-26 17:14:36 -08:00
Evan Rusackas and Claude Opus 4.5
7fc9974a7c
fix(deps): remove encodable dependency and pin query-string to fix Dependabot CI failures ( #37450 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-26 15:52:22 -08:00
Peng Ren and Peng Ren
73d4332b51
feat(database): SIP-195 Add MongoDB database engine support ( #37368 )
...
Co-authored-by: Peng Ren <ia250@cummins.com >
2026-01-26 15:51:35 -08:00
Tilak Mahajan
10a9b4bb94
fix: update Apache Superset website footer copyright year ( #37435 )
2026-01-26 15:51:14 -08:00
Daniel Vaz Gaspar
290bcc1dbb
feat(cache): use configurable hash algorithm for flask-caching ( #37361 )
2026-01-26 10:19:51 -08:00
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 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2026-01-26 09:37:11 -08:00
JUST.in DO IT
4db6f9e04c
chore(trino): Add progress_text for additional running state info ( #36909 )
2026-01-26 09:11:33 -08:00
JUST.in DO IT
0fd528c7af
feat(sqllab): Improved query status indicator bar ( #36936 )
2026-01-26 08:57:52 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
647f21c26a
chore(deps): bump hot-shots from 13.0.0 to 13.1.0 in /superset-websocket ( #37436 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-26 08:34:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
89b998d6b7
chore(deps): bump react-intersection-observer from 10.0.0 to 10.0.2 in /superset-frontend ( #37338 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-26 08:22:36 -08:00
695e295333
chore(deps): bump ag-grid-community from 34.3.1 to 35.0.1 in /superset-frontend ( #37386 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-26 08:22:15 -08:00
f2fc5dec11
chore(deps): bump ag-grid-react from 34.3.1 to 35.0.1 in /superset-frontend ( #37419 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-26 08:21:50 -08:00
Michael S. Molina
95a465ad7c
feat(sqllab): add getActivePanel API for panel visibility tracking ( #37448 )
2026-01-26 13:18:01 -03:00
Ramiro Aquino Romero
8aebfe1105
fix: display correct icon for Multi Chart in quick switcher ( #37256 )
2026-01-26 14:47:39 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c7cec19827
chore(deps): bump ace-builds from 1.43.5 to 1.43.6 in /superset-frontend ( #37424 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-25 22:14:18 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ce84ab4ce2
chore(deps-dev): bump cheerio from 1.1.2 to 1.2.0 in /superset-frontend ( #37423 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-25 22:13:19 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
470c593c3d
chore(deps-dev): bump @types/node from 25.0.9 to 25.0.10 in /superset-frontend ( #37418 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-25 19:50:15 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
04a9be04ab
chore(deps-dev): bump @playwright/test from 1.57.0 to 1.58.0 in /superset-frontend ( #37425 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-25 19:49:05 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
09b5af5945
chore(deps): bump markdown-to-jsx from 9.6.0 to 9.6.1 in /superset-frontend ( #37420 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-25 19:48:34 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19d5fa86fc
chore(deps-dev): bump baseline-browser-mapping from 2.9.17 to 2.9.18 in /superset-frontend ( #37426 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-25 19:48:00 +07:00
Yousuf Ansari
b09e60c1ec
fix(deckgl-contour): prevent WebGL freeze by clamping and auto-scaling cellSize ( #37244 )
2026-01-24 11:18:41 -08:00
2f81720603
chore(deps-dev): bump @swc/plugin-transform-imports from 10.0.0 to 12.4.0 in /superset-frontend ( #37384 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-01-24 11:18:10 -08:00
Amin Ghadersohi
0ecc69d2f1
chore(deps): bump fastmcp from 2.14.0 to 2.14.3 ( #37410 )
2026-01-24 07:03:00 -08:00
Felipe López
319a131ec9
fix(charts): missing globalOpacity prop with mapbox ( #37168 )
2026-01-23 15:08:16 -08:00
isaac-jaynes-imperva and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
3f37cdbf9c
fix(database): include configuration_method in the DB export/import flow ( #36958 )
...
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-01-23 19:34:52 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3a811d680d
chore(deps): bump lodash from 4.17.21 to 4.17.23 in /superset-frontend ( #37348 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 14:31:30 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a60f8d761d
chore(deps-dev): bump npm from 11.5.2 to 11.8.0 in /superset-frontend ( #37352 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 14:31:15 -08:00
Amy Li and Mona Lisa
3580dc6cad
chore(ts): Migrate Divider.jsx to Divider.tsx [SIP-36] ( #36335 )
...
Co-authored-by: Mona Lisa <dana.wan0409@gmail.com >
2026-01-23 14:30:03 -08:00
Reynold Morel
b99fc582e4
fix(chart): implement geohash decoding ( #37027 )
2026-01-23 14:15:29 -08:00
Martyn Gigg
e4f649e49c
fix(superset-frontend): Fixes for broken functionality when an application root is defined ( #36058 )
2026-01-23 14:13:48 -08:00
Elena Felder
d54e227e25
chore: update old MotherDuck duckdb version to follow the official duckdb one ( #36834 )
2026-01-23 16:25:17 -05:00
Đỗ Trọng Hải and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
39ebf7a7ad
chore(websocket): sync Node version to LTS v22 ( #37102 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-01-23 12:59:19 -08:00
Christian Geier
34418d7e0b
fix(datasets): respect application root in database management link ( #36986 )
2026-01-23 12:58:50 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d6328fcb42
chore(deps): bump mapbox-gl from 3.18.0 to 3.18.1 in /superset-frontend ( #37382 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 12:57:59 -08:00
Jean Massucatto
e8363cf606
fix(redshift): normalize table names to lowercase for CSV uploads ( #37019 )
2026-01-23 12:40:38 -08:00
om pharate
5747fb1e85
feat(ListView): add pagination to card view and center row count display ( #36288 )
2026-01-23 12:40:07 -08:00
SBIN2010
d823dfd2b9
feat: add interactive column sorting to pivot table ( #36050 )
2026-01-23 11:10:13 -08:00
Ramiro Aquino Romero
baaa8c5f54
feat(deckgl): add auto zoom option in deck gl multi layer ( #37221 )
2026-01-23 11:08:58 -08:00
Pádraic Slattery
429d9b27f6
chore: Update outdated GitHub Actions version ( #37305 )
2026-01-23 11:07:42 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
56cf7a810b
chore(deps-dev): bump html-webpack-plugin from 5.6.5 to 5.6.6 in /superset-frontend ( #37392 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 11:07:05 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bbab86a0b1
chore(deps-dev): bump @applitools/eyes-storybook from 3.63.8 to 3.63.9 in /superset-frontend ( #37390 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 11:03:24 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f83f952221
chore(deps-dev): bump webpack-bundle-analyzer from 5.1.1 to 5.2.0 in /superset-frontend ( #37388 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 11:03:10 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e14931c368
chore(deps-dev): bump swc-loader from 0.2.6 to 0.2.7 in /superset-frontend ( #37387 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 11:02:55 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8951362852
chore(deps-dev): bump globals from 17.0.0 to 17.1.0 in /docs ( #37385 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 11:02:40 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
eeb4065d7d
chore(deps): bump unist-util-visit from 5.0.0 to 5.1.0 in /docs ( #37383 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 11:02:23 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6a46700721
chore(deps): bump caniuse-lite from 1.0.30001765 to 1.0.30001766 in /docs ( #37381 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 11:01:39 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
790b79541b
chore(deps-dev): bump globals from 17.0.0 to 17.1.0 in /superset-websocket ( #37380 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 11:01:24 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7c69ec7f24
chore(deps): bump markdown-to-jsx from 7.7.4 to 9.6.0 in /superset-frontend ( #37354 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 11:01:10 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ef395662aa
chore(deps-dev): bump @babel/runtime-corejs3 from 7.28.4 to 7.28.6 in /superset-frontend ( #37353 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 10:55:45 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e1ce553b2b
chore(deps-dev): bump @types/node from 25.0.9 to 25.0.10 in /superset-websocket ( #37351 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 10:55:20 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b81543c18c
chore(deps): bump lodash from 4.17.21 to 4.17.23 in /superset-frontend/cypress-base ( #37349 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 10:55:06 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5f67fa45ce
chore(deps): bump jquery from 3.7.1 to 4.0.0 in /superset-frontend ( #37342 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 10:54:38 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8e0c584a92
chore(deps-dev): bump prettier from 3.8.0 to 3.8.1 in /superset-frontend ( #37339 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 10:53:56 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
01a9541a0e
chore(deps): bump dawidd6/action-download-artifact from 6 to 12 ( #37324 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 10:53:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5e3acc2041
chore(deps): bump actions/upload-artifact from 4 to 6 ( #37320 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-23 10:53:15 -08:00
Daniel Vaz Gaspar
f2b54e882d
fix: variable shadowing in test_connection command ( #37397 )
2026-01-23 16:27:51 +00:00
Ramiro Aquino Romero
54919c942a
fix(time-range-modal): time range modal for out of scope filter is not displayed correctly ( #36996 )
2026-01-23 11:34:50 +02:00
Jean Massucatto
04c5517206
fix(dataset-editor): add missing Data type label in calculated columns tab ( #37165 )
2026-01-22 21:57:16 -08:00
Dheeraj Bansal
b1ad54220b
fix: add sans-serif font fallback to fontFamily ( Fixes #37096 ) ( #37172 )
2026-01-22 21:56:04 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c6821cac6f
chore(deps-dev): bump prettier from 3.8.0 to 3.8.1 in /superset-websocket ( #37325 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-22 21:39:53 -08:00
Evan Rusackas and Claude Opus 4.5
b7a5b24a54
feat(docs): add auto-generated troubleshooting section to database pages ( #37345 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-22 14:43:02 -08:00
760227d630
fix(theme): migrate APP_NAME to brandAppName theme token with backward compatibility ( #37370 )
...
Co-authored-by: Rafael Benitez <rebenitez1802@gmail.com >
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2026-01-22 14:35:55 -08:00
ellion90
3ca8c998ab
docs(INTHEWILD): add club 25 de agosto ( #37110 )
2026-01-22 17:30:03 -05:00
87bbd54d0a
feat(examples): Transpile virtual dataset SQL on import ( #37311 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
Co-authored-by: bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
2026-01-22 09:50:05 -08:00
Gabriel Torres Ruiz
b630830841
fix(sqllab): add colorEditorSelection token for visible text selection ( #36932 )
2026-01-22 09:45:59 -08:00
Evan Rusackas and Claude Opus 4.5
9fabd7f997
docs: show Developer Portal in global navigation ( #37313 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-22 09:41:07 -08:00
Ramiro Aquino Romero
fadab21493
fix(api): nan is not properly handled for athena connections ( #37071 )
2026-01-22 18:29:09 +03:00
Vitor Avila
cc972cad5a
fix: DB OAuth2 fixes ( #37350 )
2026-01-22 01:51:48 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
de6ac2a444
chore(deps-dev): bump lightningcss from 1.30.2 to 1.31.1 in /superset-frontend ( #37335 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 20:26:59 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2b647d2352
chore(deps-dev): bump @applitools/eyes-storybook from 3.63.4 to 3.63.8 in /superset-frontend ( #37336 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 20:26:39 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7888da9e30
chore(deps): bump lodash from 4.17.21 to 4.17.23 in /docs ( #37346 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 20:25:30 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b576665f9a
chore(deps): bump lodash-es from 4.17.22 to 4.17.23 in /superset-frontend ( #37347 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 20:25:13 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7f4c260cbe
chore(deps): bump mapbox-gl from 3.17.0 to 3.18.0 in /superset-frontend ( #37328 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 16:13:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
febc5d54d5
chore(deps-dev): bump prettier-plugin-packagejson from 2.5.20 to 3.0.0 in /superset-frontend ( #37340 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 16:10:57 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aa37e96a02
chore(deps-dev): bump @babel/eslint-parser from 7.28.5 to 7.28.6 in /superset-frontend ( #37331 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 15:59:05 -08:00
Enzo Martellucci
3fa5bb4138
fix(echarts): restore dashed line style for time comparison series ( #37135 )
2026-01-22 00:44:57 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0289028313
chore(deps-dev): bump baseline-browser-mapping from 2.9.14 to 2.9.17 in /superset-frontend ( #37330 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 15:08:07 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5e7fe81cfa
chore(deps-dev): bump prettier from 3.8.0 to 3.8.1 in /docs ( #37329 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 15:07:48 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
02495a130f
chore(deps): bump lodash from 4.17.21 to 4.17.23 in /superset-websocket ( #37321 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 15:06:27 -08:00
Vitor Avila
d4723ef116
feat: Handle OAuth2 dance with TableSelector ( #37315 )
2026-01-21 19:49:18 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c3d5edbae9
chore(deps-dev): bump @babel/preset-env from 7.28.5 to 7.28.6 in /superset-frontend ( #37158 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 14:12:37 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bb3452b43c
chore(deps-dev): bump mini-css-extract-plugin from 2.9.4 to 2.10.0 in /superset-frontend ( #37270 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 14:12:24 -08:00
Evan Rusackas and Claude Opus 4.5
996e0e1e7a
fix(docs): remove broken /docs/databases redirect to nonexistent path ( #37316 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-21 14:08:12 -08:00
Rafael Benitez and Claude
daec330127
fix: pin remark-gfm to v3.0.1 for compatibility with react-markdown v8 ( #36388 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-01-21 13:58:31 -08:00
Evan Rusackas and Claude Opus 4.5
d2907b2577
docs: federate scattered markdown files into centralized docs ( #36756 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-21 13:00:54 -08:00
Nitish Agarwal
17d6f4ebc4
fix(table): align group headers correctly when filtering time compari… ( #37236 )
2026-01-21 12:50:18 -08:00
Evan Rusackas and Claude
dee063a4c5
feat(examples): Modernize example data loading with Parquet and YAML configs ( #36538 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-01-21 12:42:15 -08:00
Amin Ghadersohi and Claude Opus 4.5
ec36791551
fix(mcp): resolve Flask app context error in MCP tools ( #37309 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-21 11:10:31 -08:00
Amin Ghadersohi and Claude Opus 4.5
0fedfe03d5
feat(mcp): add stacked bar/area chart support ( #37188 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-21 11:10:16 -08:00
Jamile Celento
23fec55e3d
fix(native-filters): respect filter scope in nested tabs by prioritizing chartsInScope ( #37139 )
2026-01-21 11:05:51 -08:00
SBIN2010
212559dab2
feat(table): add tooltip to table header ( #37179 )
2026-01-21 11:01:57 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c564655f39
chore(deps): bump diff from 5.1.0 to 5.2.2 in /superset-frontend/cypress-base ( #37296 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 11:01:35 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dc15feb83d
chore(deps-dev): bump @babel/types from 7.28.4 to 7.28.6 in /superset-frontend ( #37273 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 11:01:17 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
95169807d3
chore(deps): bump hot-shots from 12.1.0 to 13.0.0 in /superset-websocket ( #37269 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 11:01:02 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
10ed60b4c1
chore(deps): bump caniuse-lite from 1.0.30001764 to 1.0.30001765 in /docs ( #37238 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 11:00:48 -08:00
a33f96b2fc
chore(deps): bump geolib from 2.0.24 to 3.3.4 in /superset-frontend ( #37205 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-01-21 11:00:29 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39d5511b29
chore(deps): bump csstype from 3.1.3 to 3.2.3 in /superset-frontend ( #37157 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 11:00:10 -08:00
Evan Rusackas and Claude Opus 4.5
b460ca94c6
feat(docs): auto-generate database documentation from lib.py ( #36805 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-21 10:54:01 -08:00
Sam Firke
2c1a33fd32
fix(roles): allow Public role to read themes ( #37295 )
2026-01-21 10:52:42 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
13013bbd64
chore(deps-dev): bump typescript-eslint from 8.53.0 to 8.53.1 in /docs ( #37272 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 23:10:41 +07:00
a1d24f1e4a
chore(deps-dev): bump oxlint from 1.33.0 to 1.41.0 in /superset-frontend ( #37279 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-01-21 23:10:06 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3fa7dba094
chore(deps): bump diff from 5.2.0 to 5.2.2 in /docs ( #37291 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 22:09:15 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
801c84f0ef
chore(deps-dev): bump typescript-eslint from 8.53.0 to 8.53.1 in /superset-websocket ( #37268 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 22:05:43 +07:00
Michael S. Molina
238bebebec
fix(extensions): prevent duplicate initialization of LOCAL_EXTENSIONS watcher ( #37250 )
2026-01-21 11:22:14 -03:00
Ville Brofeldt
281c0c9672
chore: add paths to backend extension stack traces ( #37300 )
2026-01-21 06:19:28 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
807ff513ef
chore(deps): bump fs-extra from 11.3.2 to 11.3.3 in /superset-frontend ( #37274 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 21:01:46 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
445bc403b8
chore(deps): bump diff in /superset-frontend ( #37292 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 21:00:59 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2267b78a10
chore(deps): bump antd from 6.2.0 to 6.2.1 in /docs ( #37301 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-21 20:57:43 +07:00
Michael S. Molina
d0e80d2079
refactor: Redesigns the Results panel toolbar and enables extensions to contribute toolbar actions ( #37255 )
2026-01-21 08:49:32 -03:00
Luis Sánchez
25647942fd
fix(chart): Horizontal bar chart value labels cut off ( #36989 )
2026-01-21 12:33:44 +02:00
Ramiro Aquino Romero
3fba967856
fix(delete-filter): deleted native filters are still shown until [sc-96553] ( #37012 )
2026-01-20 10:18:47 -08:00
Amin Ghadersohi and Claude Opus 4.5
e1fa374517
feat(mcp): add time_grain parameter to XY chart generation ( #37182 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-20 09:28:42 -08:00
Amin Ghadersohi and Claude Opus 4.5
50d0508a92
feat(mcp): Add Redis EventStore support for multi-pod deployments ( #37216 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-20 17:30:47 +01:00
Alexandru Soare
2187fb4ab4
fix(transpile_query): Fix export_as_csv error: "transpile_to_dialect": ['Unknown field.'] ( #37249 )
2026-01-20 14:09:01 +02:00
Amin Ghadersohi and Claude Opus 4.5
fe16c828cf
feat(mcp): Add support for AG Grid Interactive Table (ag-grid-table) viz_type ( #37191 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-20 11:34:13 +01:00
Amin Ghadersohi
6e1718910f
fix(sqllab): show virtual dataset banner only when isDataset param is true ( #37184 )
2026-01-20 11:33:13 +01:00
Amin Ghadersohi and Claude Opus 4.5
2d20079a88
fix(mcp): Remove screenshot URL functionality from MCP chart tools ( #37228 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-20 11:30:09 +01:00
Luis Sánchez
1f19ef92cb
refactor(TimezoneSelector): Enhance timezone selection logic and improve performance ( #36486 )
2026-01-19 19:46:56 -08:00
Luis Sánchez
f4597be341
fix(timeseries): x-axis last month was hidden ( #37181 )
2026-01-19 17:19:34 +01:00
Jamile Celento
4393db57d9
fix(native-filters): enable Apply button when selecting Boolean FALSE value ( #37017 )
2026-01-19 17:18:14 +01:00
Michael S. Molina
409cdad264
fix(mcp): prevent MCP service from corrupting shared appbuilder singleton ( #37252 )
2026-01-19 13:03:37 -03:00
Mehmet Salih Yavuz
c0cbbe393a
feat(Matrixify): add matrixify tag to list view and explore ( #37247 )
2026-01-19 15:47:20 +01:00
Geidō
2900258e05
fix(Dashboard): Auto-apply filters with default values when extraForm… ( #36927 )
2026-01-19 11:04:09 +01:00
Jean Massucatto
2e29e33dd8
fix(calendar-heatmap): correct month display across timezones ( #37064 )
2026-01-19 12:37:40 +03:00
amaannawab923
39238ef8a9
feat(ag-grid-table): Enable Time Shift feature for AG Grid Table ( #37072 )
2026-01-19 14:56:05 +05:30
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
476e454384
chore(deps): update @deck.gl/extensions requirement from ~9.2.2 to ~9.2.5 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #36618 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-18 15:42:50 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4d462c76bd
chore(deps-dev): bump @types/urijs from 1.19.25 to 1.19.26 in /superset-frontend ( #36636 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-18 15:42:30 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a06e6eb680
chore(deps): bump googleapis from 169.0.0 to 170.1.0 in /superset-frontend ( #37195 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-18 15:42:14 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cee5ce13e0
chore(deps-dev): bump @types/node from 25.0.3 to 25.0.9 in /superset-frontend ( #37196 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-18 15:41:58 -08:00
6453980d8d
chore(deps): bump react-error-boundary from 6.0.0 to 6.1.0 in /superset-frontend ( #37206 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2026-01-18 15:40:57 -08:00
f984dca5cc
fix(sunburst): make Show Total text theme-aware ( #37177 )
...
Co-authored-by: DarshCode123 <darshjain193@gmail.com >
Co-authored-by: SBIN2010 <Sbin2010@mail.ru >
2026-01-18 14:43:16 +03:00
Yousuf Ansari
a77c2d550c
fix(mixed-timeseries): prevent duplicate legend entries ( #37217 )
2026-01-18 00:33:33 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f00f7d1c18
chore(deps): bump ioredis from 5.9.0 to 5.9.2 in /superset-websocket ( #37194 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-17 14:22:18 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33ff127370
chore(deps-dev): bump baseline-browser-mapping from 2.9.9 to 2.9.14 in /superset-frontend ( #37198 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-17 14:21:39 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b941be01cf
chore(deps-dev): bump @types/node from 25.0.8 to 25.0.9 in /superset-websocket ( #37193 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-17 13:57:21 +07:00
Richard Fogaca Nienkotter
f4474b2e3e
feat: Dynamic currency ( #36416 )
2026-01-16 21:58:41 -08:00
Amin Ghadersohi and Claude Opus 4.5
896947c787
fix(mcp): restore select_columns filtering in list tools ( #37213 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-16 17:35:34 -08:00
Pedro Rodrigues
4b1d92e575
feat: add droppable area to tab empty state ( #37210 )
2026-01-16 22:51:52 +01:00
Amin Ghadersohi and Claude Opus 4.5
2bcb66c2fc
refactor(mcp): simplify single metric chart type check ( #37215 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-16 19:35:26 +01:00
Amin Ghadersohi and Claude Opus 4.5
d0783da3e5
fix(mcp): Handle big_number charts and make semantic warnings non-blocking ( #37142 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-16 18:19:06 +01:00
Amin Ghadersohi
4532ccf638
fix(mcp): push Flask app context in mcp_auth_hook for tool execution ( #37190 )
2026-01-16 07:45:57 -08:00
c30edaf075
feat: add tab select with save chart to dashboard ( #36332 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Enzo Martellucci <enzomartellucci@gmail.com >
2026-01-16 15:55:27 +01:00
Kamil Gabryjelski
54f19856de
fix: HTML detection in tables ( #37171 )
2026-01-16 15:39:32 +01:00
Kamil Gabryjelski
ab8df1ab34
fix: Move head_custom_extra above csrf token input ( #37173 )
2026-01-16 15:39:17 +01:00
Alexandru Soare
9555798d37
fix(data-zoom): Data-zoom not rendered properly in Matrixify ( #37134 )
2026-01-16 14:55:21 +01:00
Mehmet Salih Yavuz
95c14b1fc1
chore(Matrixify): disable matrixify for incompatible viz types ( #37163 )
2026-01-16 11:12:05 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b142f1956f
chore(deps): bump chrono-node from 2.7.8 to 2.9.0 in /superset-frontend ( #36632 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 17:37:40 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e071e0c5a4
chore(deps-dev): bump eslint-plugin-prettier from 5.5.4 to 5.5.5 in /superset-frontend ( #37160 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 17:37:27 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
129b8e10a2
chore(deps-dev): bump @babel/core from 7.28.3 to 7.28.6 in /superset-frontend ( #37154 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 17:17:53 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
82d74d15ec
chore(deps): bump react-intersection-observer from 9.16.0 to 10.0.0 in /superset-frontend ( #37162 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 14:01:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
89380638b0
chore(deps): bump immer from 11.0.1 to 11.1.3 in /superset-frontend ( #37159 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 14:01:37 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c6ad0dbd3a
chore(deps-dev): bump prettier from 3.7.4 to 3.8.0 in /superset-frontend ( #37156 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 14:01:23 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f69cd43bd0
chore(deps-dev): bump eslint-plugin-prettier from 5.5.4 to 5.5.5 in /docs ( #37153 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 14:00:58 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4c267b7ee2
chore(deps-dev): bump prettier from 3.7.4 to 3.8.0 in /docs ( #37152 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 13:59:23 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7f6cdc5616
chore(deps-dev): bump prettier from 3.7.4 to 3.8.0 in /superset-websocket ( #37149 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 13:59:06 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
db61e4f62a
chore(deps-dev): bump eslint-plugin-react-you-might-not-need-an-effect from 0.8.3 to 0.8.5 in /superset-frontend ( #37054 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 13:58:52 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
68e917c3f6
chore(deps-dev): bump eslint-plugin-testing-library from 7.14.0 to 7.15.4 in /superset-frontend ( #37052 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 13:58:33 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96a3f2a187
chore(deps-dev): bump @babel/preset-react from 7.27.1 to 7.28.5 in /superset-frontend ( #37047 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 13:58:15 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c867d9379f
chore(deps-dev): bump ts-loader from 9.5.2 to 9.5.4 in /superset-frontend ( #36999 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-15 13:57:32 -08:00
Alexandru Soare
81fdc2bd0e
feat(dates): adding handling for first of ( #37098 )
2026-01-15 19:48:54 +02:00
Enzo Martellucci
23b91d22ef
fix(charts): properly parse error responses in StatefulChart ( #37130 )
2026-01-15 15:22:45 +01:00
Mehmet Salih Yavuz
6eb4db6930
fix(controls): Only initialize categorical control on numeric x axis ( #37115 )
2026-01-15 11:03:36 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2324b4c9e5
chore(deps-dev): bump @babel/preset-typescript from 7.26.0 to 7.28.5 in /superset-frontend ( #36661 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-14 13:43:12 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6ca0f7a925
chore(deps-dev): bump @babel/cli from 7.28.3 to 7.28.6 in /superset-frontend ( #37124 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-14 13:09:11 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64424f1625
chore(deps-dev): bump @types/node from 25.0.7 to 25.0.8 in /superset-websocket ( #37116 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-14 13:08:53 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
debdfbc835
chore(deps-dev): bump @babel/plugin-transform-modules-commonjs from 7.27.1 to 7.28.6 in /superset-frontend ( #37117 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-14 13:08:38 -08:00
Türker Ziya Ercin
4c01b5c324
docs: Add UserGuiding INTHEWILD.yaml ( #37030 )
2026-01-14 12:05:46 -08:00
Declan Zhao
137ebdee39
fix(prune_logs): improve performance by using id column only for ordering log records when max_rows_per_run is provided ( #37138 )
2026-01-14 16:05:56 -03:00
Elizabeth Thompson and Claude
a272253243
fix(table chart): time comparison totals returning null ( #37111 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-01-14 09:58:34 -08:00
Damian Pendrak
35ac4c74fd
feat(dashboard): chart customizations modal and plugins ( #36062 )
2026-01-14 17:00:18 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4f3403b134
chore(deps): bump antd from 6.1.2 to 6.2.0 in /docs ( #37079 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 13:41:41 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
86bc493423
chore(deps-dev): bump @babel/types from 7.28.4 to 7.28.6 in /superset-frontend ( #37087 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 13:41:32 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
91dba9dcbf
chore(deps-dev): bump @babel/types from 7.28.4 to 7.28.5 in /superset-frontend ( #36652 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 13:40:31 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bdcc98743d
chore(deps-dev): bump cheerio from 1.1.0 to 1.1.2 in /superset-frontend ( #37002 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 13:40:21 -08:00
Mehmet Salih Yavuz
e053418c97
fix(Matrixify): Do not clear values when saving ( #37090 )
2026-01-13 23:22:51 +03:00
Reynold Morel
0404c99e39
fix(dashboard): revert cell hover and active colors to grayscale ( #36991 )
2026-01-13 22:22:37 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fd3eea0557
chore(deps): bump lodash-es from 4.17.21 to 4.17.22 in /superset-frontend ( #37048 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 10:59:16 -08:00
SakshiiRohida and Evan Rusackas
0c490dc1ab
docs(exploring-data): add overview to tutorial ( #37028 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-01-13 10:47:04 -08:00
Türker Ziya Ercin
1166df3579
docs(inthewild): Dark mode issues on InTheWild page ( #37034 )
2026-01-13 10:46:37 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0b4fcce03b
chore(deps-dev): bump cross-env from 10.0.0 to 10.1.0 in /superset-frontend ( #36657 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 10:45:14 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
393259bb9e
chore(deps-dev): bump typescript-eslint from 8.52.0 to 8.53.0 in /superset-websocket ( #37082 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 10:25:40 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
560da50df8
chore(deps): bump @babel/runtime from 7.28.4 to 7.28.6 in /superset-frontend ( #37080 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 10:25:18 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5d5012aa9f
chore(deps-dev): bump @types/lodash from 4.17.21 to 4.17.23 in /superset-frontend ( #37077 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 10:24:38 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6c75365427
chore(deps-dev): bump typescript-eslint from 8.52.0 to 8.53.0 in /docs ( #37076 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 10:24:07 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3a3cbc2900
chore(deps-dev): bump @types/node from 25.0.3 to 25.0.7 in /superset-websocket ( #37081 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 22:47:22 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23a47e2f5a
chore(deps-dev): bump webpack-dev-server from 5.2.2 to 5.2.3 in /superset-frontend ( #37088 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 22:46:37 +07:00
Alexandru Soare
fc67569cd4
fix(datasets): ui bug fixes ( #37058 )
2026-01-13 16:21:46 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e17bfae6bd
chore(deps-dev): bump webpack from 5.103.0 to 5.104.1 in /superset-frontend ( #37083 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 21:27:39 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
936e37bd02
chore(deps-dev): bump @babel/node from 7.28.0 to 7.28.6 in /superset-frontend ( #37089 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-13 21:24:03 +07:00
Jonathan Alberth Quispe Fuentes
ad3812edd7
fix(table): keep d3-format semantics when applying currency formatting ( #37039 )
2026-01-13 14:59:31 +03:00
Enzo Martellucci
5f58241795
fix(explore): dispatch NumberControl value on blur to allow field clearing ( #37007 )
2026-01-13 10:37:15 +01:00
ʈᵃᵢ
481bfa0f68
feat(starrocks): add catalog support for StarRocks database connections ( #37026 )
2026-01-12 13:02:22 -08:00
Pere Gomila
462fffc23c
fix(docs): Update references from LLMS.md to AGENTS.md ( #37060 )
2026-01-12 12:25:39 -08:00
JUST.in DO IT
7503ee4e09
feat(sqllab): primary/secondary action extensions ( #36644 )
2026-01-12 12:06:15 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fa3d4a75ca
chore(deps): bump actions/download-artifact from 6 to 7 ( #36699 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 11:00:47 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
adb575be2f
chore(deps-dev): bump typescript-eslint from 8.50.1 to 8.52.0 in /docs ( #36913 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 11:00:31 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d56bc5826f
chore(deps-dev): bump @applitools/eyes-storybook from 3.60.0 to 3.63.4 in /superset-frontend ( #37003 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 10:59:37 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
72c69e2ca6
chore(deps): bump fs-extra from 11.3.0 to 11.3.3 in /superset-frontend ( #37001 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 10:59:09 -08:00
Joe Li and Claude Opus 4.5
22cfc4536b
fix(export): URL prefix handling for subdirectory deployments ( #36771 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-12 10:58:59 -08:00
Igor Shmulyan
fac5d2bcb6
feat(db): add dynamic schema support for athena ( #36003 )
2026-01-12 10:58:12 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4fe2085596
chore(deps): bump caniuse-lite from 1.0.30001763 to 1.0.30001764 in /docs ( #37049 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 10:52:13 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
005b2af985
chore(deps-dev): bump @types/lodash from 4.17.21 to 4.17.23 in /superset-websocket ( #37045 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 10:51:01 -08:00
Damian Pendrak
2a38ce001e
fix(deckgl): remove visibility condition in deckgl stroke color ( #37029 )
2026-01-12 10:44:19 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f4772a9383
chore(deps-dev): bump webpack-bundle-analyzer from 5.1.0 to 5.1.1 in /superset-frontend ( #37006 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 10:35:55 -08:00
Luis Sánchez
dcdcf88969
chore(chart): rollback legend top alignment to the right ( #36994 )
2026-01-12 10:30:34 -08:00
ankitajhanwar2001
d8f7ae83ee
fix(sqlglot): use Athena dialect for awsathena parsing ( #36747 )
2026-01-12 10:06:46 -08:00
Amin Ghadersohi and Claude Opus 4.5
911d72c957
fix(models): prevent SQLAlchemy and_() deprecation warning ( #37020 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-12 17:53:04 +01:00
Ville Brofeldt
169d27c9e9
fix(extensions): gracefully handle dist directory rebuilding ( #37025 )
2026-01-12 06:53:04 -08:00
Ville Brofeldt
62c7b48b5c
fix(extensions-cli): fix dev mode error ( #37024 )
2026-01-12 06:52:09 -08:00
amaannawab923
4f444ae1d2
feat(ag-grid): Server Side Filtering for Column Level Filters ( #35683 )
2026-01-12 19:25:07 +05:30
Jean Massucatto
459b4cb23d
perf(date_parser): bound regex quantifiers for deterministic parsing performance ( #36983 )
2026-01-12 12:52:19 +03:00
Mehmet Salih Yavuz
d914b35cc0
fix(translations): post merge fix for new translations addded ( #37041 )
2026-01-12 12:31:09 +03:00
Mehmet Salih Yavuz
4f5789abfe
fix(reports): Use authenticated user as recipient for chart/dashboard reports ( #36981 )
2026-01-12 12:29:54 +03:00
Mehmet Salih Yavuz
e9b6791ffb
refactor: move translations and logging to new core ( #36929 )
2026-01-12 08:58:59 +03:00
Mehmet Salih Yavuz
0294c30c9e
fix(Tabs): prevent infinite rerenders with nested tabs ( #37018 )
2026-01-10 18:38:09 +03:00
stockarea and Evan Rusackas
1cface15e6
docs: Update INTHEWILD.yaml ( #36888 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-01-09 15:12:25 -08:00
Amin Ghadersohi
ecefba5bf7
fix(mcp): resolve startup failures from circular DAO imports ( #37023 )
2026-01-09 15:07:30 -08:00
Michael S. Molina
53dddf4db2
feat(embedded-sdk): Add resolvePermalinkUrl callback for custom permalink URLs ( #36924 )
2026-01-09 17:02:38 -03:00
Luiz Otavio
1e8d648f47
feat: Chart query last run timestamp ( #36934 )
2026-01-09 17:02:18 -03:00
Beto Dealmeida
14c0cad0ba
chore: remove deprecated function ( #37021 )
2026-01-09 14:52:53 -05:00
Amin Ghadersohi and Claude Opus 4.5
f895250cf9
fix(mypy): add overrides for superset-core local dev consistency ( #36907 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-09 10:27:16 -08:00
Enzo Martellucci
ea90d1f141
refactor(db-engine-specs): use standard OAuth 2.0 params in base class ( #37010 )
2026-01-09 17:44:32 +01:00
Daniel Vaz Gaspar
f48322c17d
chore: bump flask-cors to 6.0.2 ( #36640 )
2026-01-09 16:13:22 +00:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
413dfc98ff
chore(deps): bump @storybook/addon-docs from 8.6.14 to 8.6.15 in /docs ( #36824 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 21:45:58 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
57f8f50292
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.50.1 to 8.51.0 in /docs ( #36898 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 21:45:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
07aa7622f7
chore(deps): bump react-resizable from 3.0.5 to 3.1.3 in /superset-frontend ( #36911 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 21:44:21 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ffbf81e952
chore(deps): bump ws from 8.18.3 to 8.19.0 in /superset-websocket ( #36919 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 21:43:09 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
734d64081f
chore(deps): bump caniuse-lite from 1.0.30001762 to 1.0.30001763 in /docs ( #36970 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 21:42:57 -08:00
Amin Ghadersohi
85cf46dc1c
fix(mcp): remove unused ctx parameter from health_check tool ( #36992 )
2026-01-08 21:38:22 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4fc8157d6f
chore(deps-dev): bump source-map from 0.7.4 to 0.7.6 in /superset-frontend ( #36653 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 11:47:50 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
af185ad8c9
chore(deps-dev): bump jsdom from 27.0.0 to 27.4.0 in /superset-frontend ( #36922 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 11:43:54 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dd7f0c4224
chore(deps-dev): bump typescript-eslint from 8.50.1 to 8.52.0 in /superset-websocket ( #36916 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 11:42:14 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
77ebc5ac10
chore(deps-dev): bump @typescript-eslint/parser from 8.51.0 to 8.52.0 in /docs ( #36918 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 11:38:57 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e9b91f6ec9
chore(deps): bump ioredis from 5.8.2 to 5.9.0 in /superset-websocket ( #36920 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 11:38:13 -08:00
Amit Sharma and Evan Rusackas
3ac76e116d
chore: Update INTHEWILD.yaml ( #36733 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-01-08 11:36:33 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4249b8ee6a
chore(deps-dev): bump eslint-plugin-react-you-might-not-need-an-effect from 0.5.1 to 0.8.3 in /superset-frontend ( #36972 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 11:35:37 -08:00
Amin Ghadersohi and Claude Opus 4.5
047360641a
feat(mcp): change save_chart default to False for preview-first workflow ( #36935 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-08 11:30:01 -08:00
Tu Shaokun
337eb3baf5
fix(dashboard): prevent PublishedLabel overlap in non-English languages ( #36877 )
2026-01-08 11:22:55 -08:00
Connor Shea
70b2e520b2
chore(frontend): Update $schema path in oxlint.json ( #36859 )
2026-01-08 11:21:42 -08:00
hlyda0601
16e046b5d9
docs(INTHEWILD): add HOLLYLAND猛玛 ( #36968 )
2026-01-08 13:47:28 -05:00
Daniel Vaz Gaspar and Claude Opus 4.5
a6d85dccf8
fix: streaming export losing g context ( #36950 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-08 16:11:03 +00:00
Amin Ghadersohi and Claude Opus 4.5
84279acd2f
feat(mcp): add unified get_schema tool for schema discovery ( #36458 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-07 15:26:17 -08:00
Jeroen Habets and Evan Rusackas
03caa7b337
docs(INTHEWILD): add Cirrus Assessment ( #36871 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2026-01-07 13:53:09 -08:00
Pat Buxton
6f67b05375
chore: Update INTHEWILD.yaml for PlaidCloud ( #36741 )
2026-01-07 11:44:34 -08:00
Amin Ghadersohi and Claude Opus 4.5
64ee48f147
fix(mcp): use chart.query_context for get_chart_data like the API does ( #36937 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-07 16:32:45 -03:00
Evan Rusackas and Claude Opus 4.5
f9be2b816a
feat(docs): add resources admonition with external links ( #36761 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-07 11:11:53 -08:00
Levis Mbote
dfdf8e75d8
fix: handle undefined template variables safely in query rendering. ( #35009 )
2026-01-07 19:44:03 +01:00
Michael S. Molina
0c1edd4568
chore: Bump @apache-superset/core (0.0.1-rc9) ( #36953 )
2026-01-07 15:16:22 -03:00
Michael S. Molina
7a5441bc7a
refactor: Remove unimplemented APIs from @apache-superset/core ( #36952 )
2026-01-07 14:17:06 -03:00
Gabriel Torres Ruiz
5edaed2e5b
fix(alerts): wrong alert trigger with custom query ( #35871 )
2026-01-07 18:06:18 +01:00
Evan Rusackas and Claude
861e5cd013
fix(security): enforce datasource access control in get_samples() ( #36550 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-01-07 08:54:11 -08:00
amaannawab923
d7d94ba640
fix(ag-grid): Ag Grid Date Filter timezone correction ( #36270 )
2026-01-07 08:27:20 -03:00
Đỗ Trọng Hải
9968393e4c
feat(ci): add container security scan for image built for commits merged to mainline ( #36604 )
2026-01-07 07:04:46 +07:00
Evan Rusackas and Claude Opus 4.5
9aff89c1b4
chore(frontend): migrate SqlLab and explore JS/JSX files to TypeScript ( #36760 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-06 10:52:58 -08:00
Evan Rusackas and Claude Opus 4.5
aaa174f820
docs: add Netlify configuration for PR deploy previews ( #36908 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-06 10:52:12 -08:00
Evan Rusackas and Claude Opus 4.5
1949d1bb96
feat(dev): add make ports and make open commands ( #36906 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-06 10:52:00 -08:00
Evan Rusackas and Claude Opus 4.5
f9fde87e85
feat(native filters): add filter type icons in config modal ( #36905 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-06 10:51:48 -08:00
Felipe López
cedc35e39f
fix(SQLLab): remove error icon displayed when writing Jinja SQL even when the script is correct ( #36422 )
2026-01-06 16:58:40 +03:00
JUST.in DO IT
12a266fd2f
fix(trino): update query progress using cursor stats ( #36872 )
2026-01-05 13:19:20 -08:00
Evan Rusackas and Claude Opus 4.5
5909e90081
feat(security): add built-in Public role for anonymous dashboard access ( #36548 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-05 10:27:10 -08:00
Bouke van der Bijl
dcc556a9a7
chore(CHANGELOG): add link to 6.0.0 CHANGELOG ( #36832 )
2026-01-05 12:59:42 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
61986100bd
chore(deps): bump hot-shots from 12.0.0 to 12.1.0 in /superset-websocket ( #36899 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-05 09:22:09 -08:00
Mehmet Salih Yavuz and Claude
c76ddcbbec
fix(deck.gl): Fix Scatterplot chart error when using fixed point size ( #36890 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2026-01-05 15:55:43 +03:00
Enzo Martellucci
740ddc03e2
fix(plugin-chart-table): remove column misalignment when no scrollbars are present ( #36891 )
2026-01-05 13:52:37 +01:00
Đỗ Trọng Hải
2080633e57
other: resolve frontend dep vulns ( #36820 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2026-01-02 23:28:44 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ac27c0aa3c
chore(deps-dev): bump @typescript-eslint/parser from 8.50.1 to 8.51.0 in /superset-websocket ( #36861 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-02 23:21:59 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
53fa65fe67
chore(deps): bump caniuse-lite from 1.0.30001761 to 1.0.30001762 in /docs ( #36865 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-02 23:19:04 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fdef8fa50a
chore(deps-dev): bump @typescript-eslint/parser from 8.50.1 to 8.51.0 in /docs ( #36866 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-02 23:18:50 -08:00
İbrahim Ercan and Ibrahim Ercan
1334040fd6
chore(docs): Include VLMedia logo to intothewild ( #36868 )
...
Co-authored-by: Ibrahim Ercan <ibrahim.ercan@vlmedia.com.tr >
2026-01-02 23:18:31 -08:00
nmdo
52af489d8f
docs: Add Rogow to INTHEWILD.yaml ( #36879 )
2026-01-02 23:14:43 -08:00
innovark
d07a452e9b
fix(RightMenu): fix inconsistent icon alignment in RightMenu items ( #36532 )
2026-01-02 23:13:08 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aed95453b3
chore(deps): bump qs from 6.14.0 to 6.14.1 in /superset-websocket/utils/client-ws-app ( #36883 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-02 23:10:25 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4451e8db05
chore(deps): bump qs from 6.14.0 to 6.14.1 in /docs ( #36884 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-02 23:10:08 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dd2eb6293d
chore(deps-dev): bump globals from 16.5.0 to 17.0.0 in /superset-websocket ( #36885 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-02 23:09:39 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1b1be96274
chore(deps-dev): bump globals from 16.5.0 to 17.0.0 in /docs ( #36886 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-02 23:09:22 -08:00
innovark
e5489bd30f
fix(SavedQueries): unify query card actions styling across all home page cards ( #36671 )
2026-01-02 14:41:47 +01:00
Levis Mbote
12aa425049
fix(logout): clicking logout displays an error notification "invalid username or password" ( #36490 )
2026-01-02 12:59:27 +01:00
Luis Sánchez
c31224c891
fix(TableChart): render cell bars for columns with NULL values ( #36819 )
2025-12-31 17:51:35 +03:00
Mehmet Salih Yavuz
85e830de46
fix: Clear database form errors ( #36854 )
2025-12-31 15:25:23 +01:00
Geidō
d4ba44fce2
fix: Query history view button in SqlLab ( #36540 )
2025-12-31 15:18:59 +01:00
Enzo Martellucci and Diego Pucci
7cd76e4647
fix: SqlLab error when collapsing the left panel preview ( #36858 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-12-31 14:11:59 +01:00
Enzo Martellucci
e112d863bf
fix(dashboard): resolve tab reorder state sync issues ( #36855 )
2025-12-31 13:50:58 +01:00
Enzo Martellucci
fe5d5fdae6
fix(chart-creation): use exact match when loading dataset from URL parameter ( #36831 )
2025-12-31 13:50:03 +01:00
cr0fters
02411ffde0
docs: Add EnquiryLabs to INTHEWILD.yaml ( #36843 )
2025-12-27 20:44:36 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1697cf733b
chore(deps): bump antd from 6.1.1 to 6.1.2 in /docs ( #36823 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-27 20:42:16 -08:00
Mehmet Salih Yavuz
28c802fb6c
fix(TableCollection): only apply highlight class when defined ( #36809 )
2025-12-24 16:26:01 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
362b5e3b89
chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 in /superset-frontend ( #36711 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-23 15:20:58 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bf5070471d
chore(deps): bump storybook from 8.6.14 to 8.6.15 in /docs ( #36727 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-23 15:20:39 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
100789200a
chore(deps): bump hot-shots from 11.4.0 to 12.0.0 in /superset-websocket ( #36786 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-23 15:20:22 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f95f125c4c
chore(deps-dev): bump html-webpack-plugin from 5.6.4 to 5.6.5 in /superset-frontend ( #36787 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-23 15:20:05 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fd67d3190a
chore(deps-dev): bump typescript-eslint from 8.50.0 to 8.50.1 in /docs ( #36801 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-23 15:19:30 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bd8d4ddbee
chore(deps-dev): bump typescript-eslint from 8.50.0 to 8.50.1 in /superset-websocket ( #36802 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-23 15:19:13 -08:00
Beto Dealmeida and Claude Opus 4.5
ecb4e483df
fix: apply EXCLUDE_USERS_FROM_LISTS to /api/v1/security/users/ ( #36742 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-23 15:18:34 -08:00
f8cb935105
feat(reports): add webhook option for notifications ( #36127 )
...
Co-authored-by: Hriday Algh <hridayalgh@gmail.com >
Co-authored-by: Hriday Algh <53922405+AlwaysIngame@users.noreply.github.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2025-12-23 10:51:04 -08:00
Michael S. Molina
ba8d6eb9ac
docs: Adds a new "Dependencies" page to the Developer Portal ( #36817 )
2025-12-23 10:41:10 -08:00
Michael S. Molina
c399fd2801
fix: Stale editor content in @apache-superset/core ( #36813 )
2025-12-23 10:40:26 -08:00
Michael S. Molina
9e04c3471d
docs: Add SQL Lab Result Stats to community extensions registry ( #36796 )
2025-12-23 10:39:47 -08:00
Michael S. Molina
8f8fe19e3e
docs: Add SQL Snippets to community extensions registry ( #36797 )
2025-12-23 14:52:09 -03:00
Michael S. Molina
ff3dab9b3b
docs: Add Query Estimator to community extensions registry ( #36814 )
2025-12-23 14:25:45 -03:00
Levis Mbote
ff24e2f27d
fix: fix error with dashboard filters when global async queries is enabled and user navigates quickly ( #36639 )
2025-12-23 15:53:01 +01:00
Alexandru Soare
54eb6317ef
fix(margin): Fixing margin issues ( #36479 )
2025-12-22 15:57:43 +01:00
Enzo Martellucci and Diego Pucci
32c98d02d3
fix: UI cut off ( #36531 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-12-22 15:52:04 +01:00
Michael S. Molina and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
6b25d0663e
refactor: Migrates the MCP execute_sql tool to use the SQL execution API ( #36739 )
...
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2025-12-22 09:48:28 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c0bcf28947
chore(deps-dev): bump @playwright/test from 1.56.0 to 1.57.0 in /superset-frontend ( #36571 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-20 20:56:15 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e0ea807031
chore(deps-dev): bump baseline-browser-mapping from 2.9.8 to 2.9.9 in /superset-frontend ( #36725 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-20 20:55:59 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8d070f5cb6
chore(deps-dev): bump @types/node from 25.0.2 to 25.0.3 in /superset-frontend ( #36726 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-20 20:55:41 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5cd8e1e736
chore(deps): bump caniuse-lite from 1.0.30001760 to 1.0.30001761 in /docs ( #36757 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-20 20:55:21 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0ced20457b
chore(deps-dev): bump webpack from 5.104.0 to 5.104.1 in /docs ( #36758 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-20 20:55:01 -08:00
Amin Ghadersohi
e3e6b0e18b
fix(mcp): use SQLScript for all SQL parsing in execute_sql ( #36599 )
2025-12-20 20:52:56 -08:00
Joe Li and Claude Opus 4.5
c026ae2ce7
fix(dashboard): prevent table chart infinite reload loop ( #36686 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-19 13:45:36 -08:00
Michael S. Molina
ae491aee00
docs: Add SQL Lab Query Comparison to community extensions registry ( #36769 )
2025-12-19 16:55:16 -03:00
Evan Rusackas and Claude Opus 4.5
3258082819
docs: add SQL Lab Export to Parquet to community extensions registry ( #36755 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-19 09:16:43 -08:00
Michael S. Molina
d36ddbbb33
feat(extensions-cli): Add .gitignore generation to init command ( #36768 )
2025-12-19 13:33:37 -03:00
Michael S. Molina
5920cb57ea
refactor(extensions): add Pydantic validation for extension configuration ( #36767 )
2025-12-19 13:33:10 -03:00
Joe Li
fb6f3fbb4d
chore: update files for release 6.0.0 ( #36745 )
2025-12-18 21:19:12 -08:00
Evan Rusackas and Claude Opus 4.5
91539f77aa
feat(docker): support running multiple Superset instances simultaneously ( #36751 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-18 17:04:58 -08:00
Evan Rusackas and Claude Opus 4.5
b8f31124d0
chore(frontend): migrate 13 JS/JSX files to TypeScript ( #36720 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-18 13:54:49 -08:00
Evan Rusackas and Claude Opus 4.5
da8e077a44
chore(frontend): migrate utility JS files to TypeScript ( #36721 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-18 13:54:40 -08:00
Evan Rusackas and Claude Opus 4.5
32435bc3e9
feat(docs): enhance Matomo analytics tracking ( #36743 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-18 13:52:08 -08:00
Evan Rusackas and Claude Opus 4.5
2cf0d7936e
chore(pre-commit): exclude logos from end-of-file-fixer ( #36744 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-18 13:51:50 -08:00
Evan Rusackas and Claude Opus 4.5
0830a57fa6
feat(docs): add llms.txt for LLM-friendly documentation index ( #36730 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-18 13:48:28 -08:00
Brandon Sovran
0f56e3b9ae
fix: Implement SIP-40 error styles for GAQ ( #36596 )
2025-12-18 12:22:17 -08:00
Evan Rusackas and Claude Opus 4.5
ee45b26ad7
fix(tests): optimize DatasourceEditorCurrency tests for CI reliability ( #36723 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-18 09:37:53 -08:00
Kamil Gabryjelski
f3407d7a56
chore: Close playwright browser gracefully ( #36537 )
2025-12-18 17:30:22 +01:00
Joe Li and Claude
f51f7f3307
fix(tests): resolve flakey selectOption helper race condition ( #36719 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-17 21:27:17 -08:00
Evan Rusackas and Claude Opus 4.5
2f4f64dfe8
chore(frontend): migrate easy JS/JSX files to TypeScript ( #36713 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-17 17:12:02 -08:00
Evan Rusackas and Claude Opus 4.5
ae584c8886
chore: remove INTHEWILD.md after migration to YAML ( #36718 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-17 12:59:19 -08:00
Đỗ Trọng Hải
b1e004e122
build(dev-deps): remove stub type definition packages ( #36706 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-12-17 12:57:44 -08:00
Vitor Avila
737a5162e4
fix: Use is_active for guest users ( #36716 )
2025-12-17 17:23:22 -03:00
Evan Rusackas and Claude Opus 4.5
b800412eda
fix(docs): add retry logic and concurrency handling for badge downloads ( #36715 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-17 12:19:39 -08:00
Michael S. Molina
24a4f8510d
docs: Add SQL Lab Export to Google Sheets to community extensions registry ( #36714 )
2025-12-17 16:53:10 -03:00
Yousuf Ansari
33a425bbbc
fix(echarts): use scroll legend for horizontal layouts to prevent overlap ( #36306 )
2025-12-17 11:16:35 -08:00
5ce4c52cfa
feat(docs): In the Wild page with YAML data and AntD components ( #36386 )
...
Co-authored-by: Catherine Qu <catherine.qu@mail.utoronto.ca >
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-17 09:42:29 -08:00
Luis Sánchez
c9ec173647
fix(SearchFilter): prevent unintended autocomplete on search input ( #36209 )
2025-12-17 20:41:07 +03:00
Michael S. Molina
71f9dcff5a
chore: Bump core packages (0.0.1rc3, 0.0.1-rc6) ( #36707 )
2025-12-17 09:12:26 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
479b7a3fba
chore(deps-dev): bump @pmmmwh/react-refresh-webpack-plugin from 0.5.17 to 0.6.2 in /superset-frontend ( #36691 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-17 09:01:02 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
594ea972ca
chore(deps-dev): bump @types/node from 25.0.2 to 25.0.3 in /superset-websocket ( #36692 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-17 08:46:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d77f7b6d20
chore(deps): bump nanoid from 5.0.9 to 5.1.6 in /superset-frontend ( #36586 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-17 08:46:17 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f4ded02e0d
chore(deps-dev): bump typescript-eslint from 8.49.0 to 8.50.0 in /docs ( #36650 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-17 08:46:01 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f97fa08477
chore(deps-dev): bump baseline-browser-mapping from 2.9.7 to 2.9.8 in /superset-frontend ( #36690 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-17 08:45:47 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
789be78166
chore(deps-dev): bump webpack from 5.103.0 to 5.104.0 in /docs ( #36695 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-17 21:42:48 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ea3d247017
chore(deps-dev): bump webpack-bundle-analyzer from 4.10.2 to 5.1.0 in /superset-frontend ( #36610 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-16 16:06:20 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6456f4c516
chore(deps): bump googleapis from 168.0.0 to 169.0.0 in /superset-frontend ( #36646 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-16 15:48:07 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e9bbf06938
chore(deps): bump re-resizable from 6.10.3 to 6.11.2 in /superset-frontend ( #36647 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-16 15:47:53 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ebee35ea5a
chore(deps-dev): bump typescript-eslint from 8.49.0 to 8.50.0 in /superset-websocket ( #36649 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-16 15:47:13 -08:00
SBIN2010
d0fb77cbc8
fix: removed dashboard from main page in "All" tab, refreshes dashboard list ( #35945 )
2025-12-16 15:45:58 -08:00
Evan Rusackas and Claude Opus 4.5
46659c2bd1
fix(tests): resolve flaky ExploreChartHeader export menu tests ( #36642 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-16 15:44:30 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8407e9cf3b
chore(deps): bump antd from 6.1.0 to 6.1.1 in /docs ( #36655 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-16 15:43:53 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5eeba2e734
chore(deps-dev): bump @typescript-eslint/parser from 8.49.0 to 8.50.0 in /docs ( #36656 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-16 15:43:33 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4ca8c000d1
chore(deps): update classnames requirement from ^2.2.5 to ^2.5.1 in /superset-frontend/packages/superset-ui-core ( #36660 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-16 15:43:15 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7108658de0
chore(deps-dev): bump @babel/runtime-corejs3 from 7.28.2 to 7.28.4 in /superset-frontend ( #36664 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-16 15:42:58 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42311f602e
chore(deps-dev): bump npm from 11.5.2 to 11.7.0 in /superset-frontend ( #36668 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-16 15:42:39 -08:00
Evan Rusackas and Claude Opus 4.5
6b948ee894
docs(badges): Restore project badges on README - and re-implement the Docusaurus ones ( #36495 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-16 14:45:51 -08:00
Joshua Daniel and Joshua Daniel
5e0ee40762
feat(chart): support icons and text in the deck.gl Geojson visualization ( #36201 )
...
Co-authored-by: Joshua Daniel <jdaniel@gflenv.com >
2025-12-16 14:28:04 -08:00
Evan Rusackas and Claude Opus 4.5
6aaf2266a9
chore(deps-dev): add baseline-browser-mapping ( #36645 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-16 14:20:37 -08:00
Vitor Avila
d14f502126
fix: store form_data as dict during viz type migration ( #36680 )
2025-12-16 18:32:29 -03:00
Joe Li and Claude
d0361cb881
test(playwright): convert and create new dataset list playwright tests ( #36196 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-16 11:07:11 -08:00
Vitor Avila
821b259805
fix: Support datetime_format during import ( #36679 )
2025-12-16 15:15:04 -03:00
Joe Li and Claude
2329d49f9e
fix(DatasourceEditor): add mount guards and fix async race conditions ( #35810 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-16 09:54:32 -08:00
Michael S. Molina and Copilot
28e3ba749e
feat: SQL execution API for Superset ( #36529 )
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-12-16 14:39:29 -03:00
Evan Rusackas and Claude Opus 4.5
cd2c889c9a
feat(frontend): upgrade Storybook and add extension component documentation ( #36498 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-16 09:31:35 -08:00
Evan Rusackas and Claude
52c711b0bc
fix(dashboard): import with overwrite flag replaces charts instead of merging ( #36551 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-16 09:09:56 -08:00
Evan Rusackas and Claude Opus 4.5
6f8052b828
docs: add contribution guidelines from wiki to Developer Portal ( #36523 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-15 16:54:29 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5f431ee1ec
chore(deps-dev): bump @types/node from 24.8.1 to 25.0.2 in /superset-frontend ( #36620 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 16:49:16 -08:00
Maxime Beauchemin and Claude
de7a72a37b
feat(ci): use TTL labels for showtime cleanup ( #36643 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-15 15:07:20 -08:00
Evan Rusackas and Claude Opus 4.5
a1a57d50a4
fix(tests): resolve flaky "should edit correctly" test in chart list ( #36641 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-15 14:45:01 -08:00
Evan Rusackas and Claude Opus 4.5
5844c05281
docs: clarify Jinja from_dttm/to_dttm availability in SQL Lab ( #36544 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-15 13:00:31 -08:00
Evan Rusackas and Claude
c7a4d4f2cc
fix(sql): handle backtick-quoted identifiers with base dialect ( #36545 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-15 13:00:13 -08:00
Evan Rusackas and Claude
d6d8e71b71
chore(deps): Remove redundant polished direct dependency ( #36431 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-15 12:59:59 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
57ec3b5a6d
chore(deps-dev): bump eslint from 9.39.1 to 9.39.2 in /docs ( #36608 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 11:59:25 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
11d3750044
chore(deps-dev): bump ts-jest from 29.4.5 to 29.4.6 in /superset-frontend ( #36633 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 11:47:21 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40db928091
chore(deps-dev): bump @eslint/js from 9.39.1 to 9.39.2 in /docs ( #36612 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 11:38:37 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fdde5fe2d3
chore(deps-dev): bump @types/node from 25.0.1 to 25.0.2 in /superset-websocket ( #36611 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:52:18 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6bd37d11ae
chore(deps-dev): bump eslint from 9.39.1 to 9.39.2 in /superset-websocket ( #36613 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:51:42 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
94900e0fb3
chore(deps): bump less from 4.4.2 to 4.5.1 in /docs ( #36614 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:51:30 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c3a9e28573
chore(deps-dev): bump tsx from 4.20.3 to 4.21.0 in /superset-frontend ( #36615 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:49:50 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e28ab05068
chore(deps): bump dom-to-image-more from 3.6.0 to 3.7.2 in /superset-frontend ( #36635 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:49:25 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b27ec49204
chore(deps): bump actions/upload-artifact from 5 to 6 ( #36630 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:48:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a1706229db
chore(deps): bump actions/download-artifact from 6 to 7 ( #36628 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:48:36 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8bcb499a06
chore(deps-dev): bump terser-webpack-plugin from 5.3.14 to 5.3.16 in /superset-frontend ( #36627 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:48:18 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a3ea950567
chore(deps): bump ace-builds from 1.43.4 to 1.43.5 in /superset-frontend ( #36625 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:47:57 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c722c92adb
chore(deps-dev): bump eslint-plugin-testing-library from 7.13.6 to 7.14.0 in /superset-frontend ( #36623 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:47:41 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
824dafa342
chore(deps): update @deck.gl/core requirement from ~9.2.2 to ~9.2.5 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #36619 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:47:22 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
104eb90013
chore(deps-dev): bump @babel/eslint-parser from 7.28.4 to 7.28.5 in /superset-frontend ( #36638 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-15 10:38:08 -08:00
Evan Rusackas and Claude Opus 4.5
76f1b5ed5a
chore(deps): bump dayjs from 1.11.18 to 1.11.19 ( #36552 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-15 09:42:35 -08:00
Mehmet Salih Yavuz
29a52652b9
fix: specify correct ff in quickstart ( #36445 )
2025-12-15 20:25:18 +03:00
Alexandru Soare
8b1c41a012
fix(tab): Fix tabs in column not clickable ( #36528 )
2025-12-15 12:57:07 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
71a38305d9
chore(deps-dev): bump prettier-plugin-packagejson from 2.5.19 to 2.5.20 in /superset-frontend ( #36587 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-14 20:32:41 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4ae62dcae8
chore(deps): update @deck.gl/layers requirement from ~9.2.2 to ~9.2.5 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #36563 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 15:01:12 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
da31e82b6a
chore(deps-dev): bump oxlint from 1.16.0 to 1.32.0 in /superset-frontend ( #36580 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 15:00:49 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
18d3da81ca
chore(deps): bump googleapis from 154.1.0 to 168.0.0 in /superset-frontend ( #36567 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 14:59:50 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2b1c72a92c
chore(deps): update @deck.gl/aggregation-layers requirement from ~9.2.2 to ~9.2.5 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #36569 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 14:59:36 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
75c6da97b2
chore(deps-dev): bump eslint-plugin-testing-library from 7.13.3 to 7.13.6 in /superset-frontend ( #36572 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 14:59:18 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6439440260
chore(deps): bump actions/cache from 4 to 5 ( #36575 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 14:59:00 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
989bb3432f
chore(deps): bump content-disposition from 0.5.4 to 1.0.1 in /superset-frontend ( #36582 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 14:58:18 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b441844ca6
chore(deps-dev): bump @babel/node from 7.26.0 to 7.28.0 in /superset-frontend ( #36583 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 14:57:40 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
09a1788a8b
chore(deps-dev): bump css-minimizer-webpack-plugin from 7.0.2 to 7.0.4 in /superset-frontend ( #36585 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 14:57:21 -08:00
Maxime Beauchemin and Claude
cde9abfce2
fix(webpack): include devserverHost in allowedHosts for Docker environments ( #36597 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-12 13:35:56 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0bcefe34ac
chore(deps): update @deck.gl/react requirement from ~9.2.2 to ~9.2.5 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #36566 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 12:52:35 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
649112aa1f
chore(deps): bump swagger-ui-react from 5.30.3 to 5.31.0 in /docs ( #36559 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 12:52:15 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
120ca5cf8f
chore(deps): bump mapbox-gl from 3.13.0 to 3.17.0 in /superset-frontend ( #36558 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 12:51:56 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0035da83af
chore(deps-dev): bump @types/node from 25.0.0 to 25.0.1 in /superset-websocket ( #36557 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 12:51:36 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
019f9442ae
chore(deps-dev): bump @types/lodash from 4.17.20 to 4.17.21 in /superset-frontend ( #36556 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 12:51:19 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
084f9832c7
chore(deps-dev): bump mini-css-extract-plugin from 2.9.2 to 2.9.4 in /superset-frontend ( #36555 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 12:51:01 -08:00
8a339febeb
chore(deps-dev): update typescript requirement from ^5.7.2 to ^5.9.3 in /superset-frontend/packages/superset-ui-demo ( #35372 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-12-12 12:50:41 -08:00
e5579ed939
feat(database): add cloudflare d1 support ( #36348 )
...
Co-authored-by: danielalyoshin <daniel.alyoshin@gmail.com >
Co-authored-by: Shreyas Rao <raoshreyas2004@gmail.com >
Co-authored-by: Murphy Lee <murphylee2004@gmail.com >
2025-12-12 12:48:22 -08:00
Amin Ghadersohi
d5dbd06824
docs(mcp): add Kubernetes deployment instructions to MCP service README ( #36547 )
2025-12-12 12:24:50 -08:00
Amin Ghadersohi
a1b5b92265
chore(deps): upgrade fastmcp from 2.13.x to 2.14.0 ( #36594 )
2025-12-12 11:38:47 -08:00
Amin Ghadersohi
92c63a54e4
chore(deps): upgrade redis from 4.x to 5.x ( #36593 )
2025-12-12 11:38:04 -08:00
Amin Ghadersohi and Claude Opus 4.5
e5b7e38a30
feat(mcp): add datasource field to generate_explore_link form_data ( #36543 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-12 16:51:58 +01:00
edcb38517f
chore(deps): bump d3-array and @types/d3-array in /superset-frontend ( #36510 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-11 15:09:56 -08:00
51a6b30179
chore(deps): bump @types/d3-array from 2.12.8 to 3.2.2 in /superset-frontend/plugins/plugin-chart-table ( #35382 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-12-11 14:55:05 -08:00
Amin Ghadersohi
a588668899
feat(mcp): return form_data and form_data_key in generate_chart and generate_explore_link responses ( #36539 )
2025-12-11 13:21:49 -08:00
9cf86c1533
chore(deps): update react requirement from ^19.2.0 to ^19.2.1 in /superset-frontend/plugins/legacy-plugin-chart-chord ( #36418 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-12-11 12:47:56 -08:00
740b328199
chore(deps): bump react-syntax-highlighter from 15.6.6 to 16.1.0 in /superset-frontend/packages/superset-ui-core ( #36514 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-11 11:54:39 -08:00
375bcd00ba
chore(deps-dev): bump @babel/preset-env from 7.27.2 to 7.28.5 in /superset-frontend ( #36519 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-12-11 11:54:12 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
076d4950d0
chore(deps): bump @emotion/core from 10.3.1 to 11.0.0 in /docs ( #36503 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 11:52:49 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0e9cffe12e
chore(deps): bump math-expression-evaluator and @types/math-expression-evaluator in /superset-frontend ( #36505 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 11:52:10 -08:00
46e21c3003
chore(deps): update dompurify requirement from ^3.2.4 to ^3.3.1 in /superset-frontend/packages/superset-ui-core ( #36513 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-12-11 11:51:52 -08:00
Evan Rusackas and Claude
1f5df7407f
fix(api): Fix JWT authentication for /api/v1/me endpoints ( #36410 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-11 11:40:42 -08:00
Enzo Martellucci
e1c022344e
fix(alert-report-modal): enhance dashboard filters behavior and visibility ( #36380 )
2025-12-11 21:37:36 +02:00
78081755aa
chore(deps-dev): bump jest and @types/jest in /superset-frontend ( #34477 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-12-11 11:23:26 -08:00
955953b467
chore(deps): update dompurify requirement from ^3.3.0 to ^3.3.1 in /superset-frontend/plugins/legacy-preset-chart-nvd3 ( #36471 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-11 11:23:03 -08:00
ead19f9ba3
chore(deps-dev): bump prettier from 3.6.2 to 3.7.4 in /superset-frontend ( #36487 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-11 11:22:46 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c16ca9527c
chore(deps): update @deck.gl/geo-layers requirement from ~9.2.2 to ~9.2.5 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #36508 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 11:22:21 -08:00
d674d54e2e
chore(deps): bump @types/d3-array from 2.12.8 to 3.2.2 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #35365 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-11 08:24:33 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0e8b69089d
chore(deps-dev): bump @babel/plugin-transform-runtime from 7.28.3 to 7.28.5 in /superset-frontend ( #36501 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 08:23:24 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0e8c420002
chore(deps): bump immer from 10.1.1 to 11.0.1 in /superset-frontend ( #36502 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 08:23:05 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e433cd5f69
chore(deps-dev): bump @types/node from 24.10.2 to 25.0.0 in /superset-websocket ( #36504 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 08:22:16 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c1b52cb8ed
chore(deps-dev): bump webpack-visualizer-plugin2 from 1.2.0 to 2.0.0 in /superset-frontend ( #36511 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 08:21:57 -08:00
Antonio Rivero
dba3fdfadf
feat(mcp): Caching uses in-memory store by default when no external store is configured ( #36527 )
2025-12-11 13:08:09 +01:00
Daniel Vaz Gaspar and codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
b7a541a9da
chore: bump urllib3 to 2.6.0 ( #36526 )
...
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2025-12-11 11:47:46 +00:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1bde06b366
chore(deps): update @luma.gl/engine requirement from ~9.2.2 to ~9.2.4 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #36506 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 23:54:54 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e8927ca3b3
chore(deps): update @luma.gl/constants requirement from ~9.2.2 to ~9.2.4 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #36509 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 23:54:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9d58599329
chore(deps-dev): bump webpack from 5.102.1 to 5.103.0 in /superset-frontend ( #36515 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 23:54:12 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
858a72d8c1
chore(deps-dev): bump react-refresh from 0.14.2 to 0.18.0 in /superset-frontend ( #36521 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 23:53:55 -08:00
c79c85cdfe
chore(deps): bump ag-grid-community from 34.2.0 to 34.3.1 in /superset-frontend ( #36154 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-10 23:24:56 -08:00
47ea316792
chore(deps-dev): bump @testing-library/jest-dom and @types/testing-library__jest-dom in /superset-frontend ( #35785 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-10 20:28:10 -08:00
5b38a1a0d4
chore(deps): update @deck.gl/layers requirement from ^9.1.13 to ^9.2.2 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #35704 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-10 19:29:12 -08:00
f2e677c150
chore(deps): bump @deck.gl/layers from 9.1.13 to 9.2.2 in /superset-frontend ( #35743 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-10 19:28:42 -08:00
d992a5836f
chore(deps): update d3-cloud requirement from ^1.2.7 to ^1.2.8 in /superset-frontend/plugins/plugin-chart-word-cloud ( #36400 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-10 19:26:46 -08:00
ee2ab7e078
chore(deps): update dayjs requirement from ^1.11.13 to ^1.11.18 in /superset-frontend/plugins/plugin-chart-echarts ( #34955 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-10 16:59:12 -08:00
Antonio Rivero
683a65488f
feat(mcp): Add ResponseCachingMiddleware and Storage ( #36497 )
2025-12-11 01:20:50 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
751804d044
chore(deps): bump antd from 5.29.1 to 6.1.0 in /docs ( #36463 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 15:55:00 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0d3c4d5d22
chore(deps): bump @emotion/styled from 10.3.0 to 11.14.1 in /docs ( #34927 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 12:58:20 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b8b7b958d9
chore(deps): bump actions/setup-node from 5 to 6 ( #35633 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 11:26:30 -08:00
Evan Rusackas and Claude
0092cdca81
chore(ci): Upgrade GitHub Actions artifact actions to latest versions ( #36432 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-10 11:25:43 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2120569267
chore(deps-dev): bump typescript-eslint from 8.48.1 to 8.49.0 in /superset-websocket ( #36465 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 10:50:42 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4b7ae3a8f7
chore(deps-dev): bump typescript-eslint from 8.48.1 to 8.49.0 in /docs ( #36469 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 10:50:25 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a64e5e15fc
chore(deps): bump ioredis from 5.8.1 to 5.8.2 in /superset-websocket ( #35786 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 21:29:07 -08:00
Evan Rusackas and Claude
4f14eddf73
chore(deps): Remove unused luxon dependency ( #36430 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-09 21:29:00 -08:00
Evan Rusackas
70a3e8fb42
docs: Remove title and badges from README index ( #36442 )
2025-12-09 21:28:45 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
954da8a3cc
chore(deps-dev): bump eslint-plugin-react-prefer-function-component from 3.4.0 to 5.0.0 in /superset-frontend ( #36476 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 10:28:58 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4c9a463db3
chore(deps-dev): bump yeoman-test from 10.1.1 to 11.2.0 in /superset-frontend ( #36475 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 10:28:36 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47dbdd7a59
chore(deps): bump caniuse-lite from 1.0.30001759 to 1.0.30001760 in /docs ( #36468 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 10:25:55 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
abc0678454
chore(deps-dev): bump @typescript-eslint/parser from 8.48.1 to 8.49.0 in /docs ( #36467 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 10:25:30 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dc403145ed
chore(deps-dev): bump @typescript-eslint/parser from 8.48.1 to 8.49.0 in /superset-websocket ( #36466 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 10:25:07 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
955b3b2b19
chore(deps-dev): bump @types/node from 24.10.1 to 24.10.2 in /superset-websocket ( #36462 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 10:23:57 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ab80ec8066
chore(deps): bump JustinBeckwith/linkinator-action from 1.11.0 to 2.3 ( #35927 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 09:59:07 -08:00
Daniel Vaz Gaspar and Ville Brofeldt
bb22eb1ca8
feat: add option for hash algorithms ( #35621 )
...
Co-authored-by: Ville Brofeldt <33317356+villebro@users.noreply.github.com >
2025-12-09 16:59:07 +00:00
Amin Ghadersohi
8d7c83419c
fix(mcp): Use config-based URL for MCP service instead of request auto-detection ( #36460 )
2025-12-09 07:33:17 -08:00
Michael S. Molina
d300d69f8f
docs: Update API Explorer screenshot ( #36483 )
2025-12-09 10:09:29 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9e7e813255
chore(deps-dev): bump eslint-plugin-testing-library from 6.5.0 to 7.13.3 in /superset-frontend ( #35768 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 20:49:34 -08:00
Haoqian Zhang and RebeccaH2003
f4b919bf7d
feat(table): Export table data with "Search box" enabled ( #36281 )
...
Co-authored-by: RebeccaH2003 <114100529+RebeccaH2003@users.noreply.github.com >
2025-12-08 20:42:10 -08:00
Gabriel Torres Ruiz
3940354120
feat(theming): add per-theme custom font URL support ( #36317 )
2025-12-08 16:46:01 -08:00
b35b1d7633
fix: add subdirectory deployment support for app icon and reports urls ( #35098 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Daniel Gaspar <danielvazgaspar@gmail.com >
2025-12-08 16:06:08 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0131e542e9
chore(deps-dev): bump eslint-plugin-react-hooks from 4.6.2 to 7.0.1 in /superset-frontend ( #35882 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 15:33:01 -08:00
Luis Sánchez
e7c060466d
fix(SqlLab): enhance SQL formatting with Jinja template support. ( #36277 )
2025-12-08 15:32:05 -08:00
Mehmet Salih Yavuz
340ab9f238
docs: Add SQL Flow Visualizer to community extensions registry ( #36454 )
2025-12-08 15:28:45 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1dcc887a62
chore(deps): bump winston from 3.18.3 to 3.19.0 in /superset-websocket ( #36451 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 15:28:25 -08:00
67cf287c03
fix(chart): Display better hover text for country map charts ( #36323 )
...
Co-authored-by: askinner1 <144823527+askinner1@users.noreply.github.com >
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
2025-12-08 15:27:40 -08:00
Shunki
440cbc4c1f
fix(roles): Add missing SQLLab permissions for estimate and format ( #36263 )
2025-12-08 14:40:38 -08:00
JUST.in DO IT
8d04c33adf
refactor(sqllab): Separate left panel outside of tab container ( #36360 )
2025-12-08 11:44:31 -08:00
Amy Li and Wengxin Xu
8a00badf45
chore(ts): Migrate Header.jsx to Header.tsx [SIP-36] ( #36286 )
...
Co-authored-by: Wengxin Xu <wengxin0421@outlook.com >
2025-12-08 10:29:22 -08:00
yousoph
a76ec75933
fix: button text capitalization ( #36444 )
2025-12-08 09:39:45 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
240091516a
chore(deps): bump hot-shots from 11.3.0 to 11.4.0 in /superset-websocket ( #36450 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 08:51:05 -08:00
Shu Ying Wan and Amy Li
1127374edd
chore(ts): Migrate Row.jsx to Row.tsx ( #36347 )
...
Co-authored-by: Amy Li <amym1734@gmail.com >
2025-12-05 15:40:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a18b62cf6b
chore(deps): bump jsonwebtoken from 9.0.2 to 9.0.3 in /superset-websocket ( #36435 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-05 10:36:15 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
98553f83e3
chore(deps): bump jsonwebtoken from 9.0.2 to 9.0.3 in /superset-websocket/utils/client-ws-app ( #36436 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-05 10:36:01 -08:00
Daniel Vaz Gaspar
1d9c93a793
fix: core mcp injection and ephemeral envs ( #36440 )
2025-12-05 15:02:07 -03:00
Mehmet Salih Yavuz
fb2826f92e
fix(SaveModal): Update chart state when saving in explore ( #36441 )
2025-12-05 20:26:10 +03:00
Enzo Martellucci and Diego Pucci
236e000398
fix(Gauge): clearing previously set min and max values in a gauge chart sets the data labels to 0 ( #36425 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-12-05 19:16:43 +02:00
Alexandru Soare
8c603a6f8b
feat(state): remove chart state when navigation away from the dashboard ( #36421 )
2025-12-05 18:33:26 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45a42396ab
chore(deps-dev): update jest requirement from ^30.0.5 to ^30.2.0 in /superset-frontend/packages/generator-superset ( #35389 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 12:33:49 -08:00
Mohammad Al-Qasem and Claude
4479614754
feat(table): Gradient Toggle ( #36280 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-04 12:31:44 -08:00
Evan Rusackas and Claude
e1a8886d32
chore(deps): Remove unused direct dependency geostyler-qgis-parser ( #36413 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-04 12:31:21 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23b61b080e
chore(deps): bump actions/checkout from 5 to 6 ( #36219 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 12:02:43 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2f14c6cd69
chore(deps): bump jws from 3.2.2 to 3.2.3 in /superset-websocket/utils/client-ws-app ( #36426 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 12:01:24 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
964c16f1a4
chore(deps): bump jws from 4.0.0 to 4.0.1 in /superset-frontend ( #36427 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 12:01:03 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b6f1b4db2f
chore(deps): bump jws from 3.2.2 to 3.2.3 in /superset-websocket ( #36428 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 12:00:44 -08:00
Beto Dealmeida
482c674a0f
chore: improve types ( #36367 )
2025-12-04 13:51:35 -05:00
Beto Dealmeida
16e6452b8c
feat: Explorable protocol ( #36245 )
2025-12-04 13:18:34 -05:00
c36ac53445
fix(reports): simplify logging to focus on timing metrics ( #36227 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Vitor Avila <vitorfragadeavila@gmail.com >
2025-12-04 10:00:17 -08:00
Edison Liem and Morris
eabb5bdf7d
feat(dashboard): implement boolean conditional formatting ( #36338 )
...
Co-authored-by: Morris <morrisho215215@gmail.com >
2025-12-04 09:53:49 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e5da6d3183
chore(deps-dev): bump prettier from 3.7.3 to 3.7.4 in /docs ( #36394 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 09:52:57 -08:00
3345eb32c5
fix(heatmap): y-axis sorts in order ( #36302 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-12-04 09:52:10 -08:00
Gabriel Torres Ruiz
1d8d30e5bb
fix(echarts): pass vizType to enable theme overrides in all chart types ( #36389 )
2025-12-04 09:51:40 -08:00
Antonio Rivero
4a249a0745
fix(dashboards): Use same decorators as FAB ( #36423 )
2025-12-04 16:32:10 +01:00
Declan Zhao
d121cfdbda
feat(prune_logs): add optional max_rows_per_run param ( #36313 )
2025-12-04 10:15:10 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3eec441abe
chore(deps-dev): bump prettier from 3.6.2 to 3.7.4 in /superset-websocket ( #36391 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 15:27:53 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22c061c06c
chore(deps-dev): bump typescript-eslint from 8.48.0 to 8.48.1 in /superset-websocket ( #36395 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 15:26:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7f85d92b85
chore(deps-dev): bump typescript-eslint from 8.48.0 to 8.48.1 in /docs ( #36399 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 15:12:57 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dc98a3b397
chore(deps): bump caniuse-lite from 1.0.30001757 to 1.0.30001759 in /docs ( #36397 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 15:12:38 -08:00
Beto Dealmeida
c458f99dd4
chore: cleanup ssh tunnel ( #34388 )
2025-12-03 14:26:35 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
70aec7fa76
chore(deps): bump express from 4.21.2 to 4.22.0 in /superset-frontend ( #36361 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 10:30:43 -08:00
Amin Ghadersohi
5c91ab91fb
feat(mcp): add tool tags for Tool Search optimization ( #36405 )
2025-12-03 18:07:22 +01:00
Felipe López
62d86aba14
fix(SQLLab): most recent queries at the top in Query History without refreshing the page ( #36359 )
2025-12-03 16:48:34 +01:00
Mehmet Salih Yavuz
b40467c7e2
fix(SaveModal): reset chart state when saving and going to a dashboard ( #36402 )
2025-12-03 17:30:08 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f955f0d133
chore(deps): bump express from 5.1.0 to 5.2.1 in /superset-websocket/utils/client-ws-app ( #36373 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 15:21:58 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a8111de3ef
chore(deps-dev): bump ts-jest from 29.4.5 to 29.4.6 in /superset-websocket ( #36372 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 15:02:04 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9800fb7702
chore(deps): bump hot-shots from 11.2.0 to 11.3.0 in /superset-websocket ( #36352 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 15:00:52 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17027ff5ca
chore(deps): bump express from 5.1.0 to 5.2.0 in /superset-websocket/utils/client-ws-app ( #36366 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 15:00:25 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9c963b50e6
chore(deps): bump express from 4.21.2 to 4.22.0 in /docs ( #36362 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 14:55:09 -08:00
Joe Li and Claude
bf5de3cb50
fix(DatasourceControl): eliminate test flakiness and async race conditions ( #35993 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-02 13:57:06 -08:00
Amin Ghadersohi
2c6bed27aa
refactor(mcp): use dynamic APP_NAME instead of hardcoded Superset branding ( #36371 )
2025-12-02 11:33:10 -08:00
Beto Dealmeida
d05ab91d11
fix: is_column_reference check ( #36382 )
2025-12-02 14:16:48 -05:00
Viktor Kolev
7748b60ff5
chore(docs): Fix typo in FEATURE_FLAGS.md ( #36364 )
2025-12-02 10:59:57 -08:00
Beto Dealmeida
e4cb84bc02
feat: DB2 dialect for sqlglot ( #36365 )
2025-12-02 12:19:52 -05:00
Michael S. Molina
005e4e3ea8
chore: Implement additional SQL Lab core APIs ( #36331 )
2025-12-02 09:04:59 -05:00
Michael S. Molina
5e3ff0787b
docs(extensions): Add community extensions registry page ( #36312 )
2025-12-02 09:03:04 -05:00
Enzo Martellucci
51798edb23
feat(alert-report-modal): Use extensions registry for DateFilterControl in AlertReportModal ( #36376 )
2025-12-02 13:03:15 +01:00
Kaito Watanabe
6e0960c3f5
feat: show search filtered total ( #36083 )
2025-12-01 22:29:23 +01:00
Michael S. Molina
db995ad5bf
chore: Adds non-interactive mode to superset-extensions init command ( #36308 )
2025-12-01 15:45:49 -05:00
Michael S. Molina
b12f5f8394
fix: CI failures caused by a ruff version mismatch ( #36358 )
2025-12-01 15:35:22 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
92986c2ecc
chore(deps): bump node-forge from 1.3.1 to 1.3.2 in /superset-frontend ( #36299 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-01 11:07:25 -08:00
Phin Jensen
d4206de8e0
docs: fix formatting of BaseCache import statement in docs ( #36278 )
2025-12-01 11:04:32 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4935938bb1
chore(deps-dev): bump prettier from 3.6.2 to 3.7.3 in /docs ( #36353 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-01 11:02:46 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2b6b4e363b
chore(deps): bump cookie from 1.1.0 to 1.1.1 in /superset-websocket ( #36303 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-01 10:34:00 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
de69377b04
chore(deps): bump node-forge from 1.3.1 to 1.3.2 in /docs ( #36300 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-01 10:31:59 -08:00
Michael S. Molina
fd7ce4976a
docs: Improve the Quick Start to make it more AI-friendly ( #36307 )
2025-12-01 12:10:08 -05:00
Beto Dealmeida
775d1ba061
fix: normalize totals cache keys for async hits ( #36274 )
2025-12-01 11:11:10 -05:00
Vitor Avila
9fc7a83320
fix: Do no aggregate results for CSV downloads from AG Grid raw records table ( #36247 )
2025-12-01 12:52:41 -03:00
Mehmet Salih Yavuz and Claude
a754258fad
fix(timeshift): Add a more reliable strategy for correct temporal col ( #36309 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-12-01 17:24:05 +03:00
Gabriel Torres Ruiz
a745fd49fa
fix(deckgl): use DatasourceType enum in polygon transformProps test + some TS issues ( #36336 )
2025-11-30 18:56:07 +01:00
om pharate
01f032017f
feat(controlPanel): add integer validation for rows per page setting ( #36289 )
2025-11-28 12:29:17 -08:00
OrhanBC and BrandanBurgess
d5c5dbb3bf
refactor(word-cloud): convert rotation and color controls to React components (POC) ( #36275 )
...
Co-authored-by: BrandanBurgess <brandanbb13@gmail.com >
2025-11-28 12:28:31 -08:00
PolinaFam
c9a7a85159
feat(chart): add axes settings for trendline ( #36002 )
2025-11-28 12:22:57 -08:00
Damian Pendrak
de7f41a888
fix(deckgl): polygon elevation fixed value ( #35266 )
2025-11-28 12:22:38 -08:00
Mehmet Salih Yavuz
a0e63faf62
fix: add a fallback to chart state callback ( #36327 )
2025-11-28 20:44:41 +03:00
341ae994c5
feat(embed): get charts payload ( #36237 )
...
Co-authored-by: Vitor Avila <vitorfragadeavila@gmail.com >
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-11-28 17:26:30 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
81e561bdc9
chore(deps): bump swagger-ui-react from 5.30.2 to 5.30.3 in /docs ( #36284 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 15:16:27 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
170d1b92eb
chore(deps): bump cookie from 1.0.2 to 1.1.0 in /superset-websocket ( #36283 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 15:16:08 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2db0107d12
chore(deps): bump caniuse-lite from 1.0.30001756 to 1.0.30001757 in /docs ( #36256 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 14:59:21 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
df0211fe29
chore(deps-dev): bump typescript-eslint from 8.47.0 to 8.48.0 in /docs ( #36254 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 14:58:47 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1bf1890084
chore(deps-dev): bump typescript-eslint from 8.46.2 to 8.48.0 in /superset-websocket ( #36252 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 14:58:00 -08:00
Amin Ghadersohi
2af5a5adb0
fix(mcp): access wrapped function in dataset tool tests ( #36295 )
2025-11-26 22:49:42 +01:00
Michael S. Molina and Evan Rusackas
fe21485065
docs: Reorganizes the extensions documentation ( #36298 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2025-11-26 16:48:36 -05:00
Amin Ghadersohi
18ab5382b1
feat(mcp): implement selective column serialization for list tools ( #36035 )
2025-11-25 17:31:51 -08:00
Amin Ghadersohi and Rafael Benitez
f98939103b
fix(mcp-service): improve MCP tool parameter clarity and validation ( #36137 )
...
Co-authored-by: Rafael Benitez <rafael.benitez@contractors.food52.com >
2025-11-25 16:34:43 -08:00
Amin Ghadersohi
ab36bd3965
build: Add pytest-asyncio to enable async MCP service tests ( #36251 )
2025-11-25 15:47:48 -08:00
fb2a8ac9a2
docs: clarify duplicate report deliveries for alerts & reports ( #36264 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-11-25 14:44:51 -08:00
Amin Ghadersohi and Claude Code
06a8f4df02
feat(datasets): add datetime format detection to dataset columns ( #36150 )
...
Co-authored-by: Claude Code <claude@anthropic.com >
2025-11-25 14:25:24 -08:00
Amin Ghadersohi
cf88551a56
fix(mcp): Allow MCP tools to accept string or object request formats ( #36271 )
2025-11-25 14:46:44 -05:00
Beto Dealmeida
aca18fff99
fix: double computation of contribution_totals ( #36226 )
2025-11-25 14:35:55 -05:00
Ville Brofeldt
a4860075d2
feat: add mcp abstractions to core ( #36151 )
2025-11-25 08:23:59 -10:00
Daniel Vaz Gaspar
bae716fa83
fix(log): remove unwanted info from logs REST API ( #36269 )
2025-11-25 18:10:29 +00:00
Beto Dealmeida
0c87034b17
fix: cache key generation ( #36225 )
2025-11-25 12:50:00 -05:00
Amin Ghadersohi
8d5d71199a
feat(mcp): Add flexible input parsing to handle double-serialized requests ( #36249 )
2025-11-25 18:21:04 +01:00
Daniel Vaz Gaspar
cd36845d56
fix: remove unwanted info from tags REST API ( #36266 )
2025-11-25 16:22:31 +00:00
Antonio Rivero
c966dd4f9e
feat(dashboards): Add config to filter implicit tags in list API ( #36246 )
2025-11-25 11:57:53 +01:00
062e4a2922
fix: Columns bleeding into other cells ( #36134 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
Co-authored-by: Geidō <60598000+geido@users.noreply.github.com >
2025-11-25 11:09:13 +02:00
amaannawab923
186693b840
feat(ag-grid): add SQLGlot-based SQL escaping for where and having filter clauses ( #36136 )
2025-11-25 09:35:40 +02:00
Enzo Martellucci and Diego Pucci
ab8352ee66
fix: Table chart types headers are offset from the columns in the table ( #36190 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-11-24 10:25:55 -08:00
JUST.in DO IT
bf2cef7d87
chore(sqllab): add logging for switching south panel tabs ( #36168 )
2025-11-24 10:23:55 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a6b6eb4ab3
chore(deps-dev): bump @types/lodash from 4.17.20 to 4.17.21 in /superset-websocket ( #36231 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 10:21:17 -08:00
Enzo Martellucci and Diego Pucci
cac6ffcd3c
fix: Extra controls width for Area Chart on dashboards ( #36133 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-11-24 16:57:17 +02:00
Elizabeth Thompson and Claude
08c1d03479
fix(screenshots): Only cache thumbnails when image generation succeeds ( #36126 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-21 17:11:20 -08:00
Beto Dealmeida
a2267d869b
refactor: refactor get_query_result ( #36057 )
2025-11-21 18:14:52 -05:00
Beto Dealmeida
e303537e0c
fix: adhoc column quoting ( #36215 )
2025-11-21 16:32:39 -05:00
Joe Li and Claude
a0c29cc260
test: fix flaky MySQL integration test in test_update_v1_response ( #36176 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-21 13:29:47 -08:00
Joe Li and Claude
e7c54376e2
test(table): remove conditionals from TableChart tests ( #36149 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-21 13:28:16 -08:00
Joe Li and Claude
9d40c24a16
refactor(datasets): add comprehensive unit tests for dataset API hooks and fix api guards ( #36175 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-21 13:26:07 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e6b258f418
chore(deps): bump http-errors from 2.0.0 to 2.0.1 in /superset-websocket/utils/client-ws-app ( #36218 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-21 10:24:53 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
02bbc7c7de
chore(deps-dev): bump eslint from 9.39.0 to 9.39.1 in /superset-websocket ( #36217 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-21 10:24:38 -08:00
Daniel Vaz Gaspar
348b19cb4c
fix(sqllab): validate results backend writes and enhance 410 diagnostics ( #36222 )
2025-11-21 15:05:48 +00:00
Joe Li
979d385eea
fix: recompile dependencies with linux and update generate dependency script ( #36194 )
2025-11-20 13:42:42 -05:00
Alexandru Soare
71c015c579
feat(Tabs): Rearange tabs when editing dashboard ( #35156 )
2025-11-20 10:37:37 -08:00
Maxime Beauchemin and Claude
7805666103
perf(docker): exclude unnecessary directories from Flask reloader watch ( #36143 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-20 10:35:42 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
be0283b9f2
chore(deps): bump antd from 5.28.1 to 5.29.1 in /docs ( #36180 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-20 10:34:54 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e68150c3ce
chore(deps-dev): bump @types/node from 24.10.0 to 24.10.1 in /superset-websocket ( #36198 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-20 10:27:04 -08:00
Amin Ghadersohi and Joe Li
92d8139136
fix(security): enable AUTH_RATE_LIMITED to work correctly ( #36195 )
...
Co-authored-by: Joe Li <joe@preset.io >
2025-11-20 10:23:49 -08:00
amaannawab923
35f156a1e1
feat(streaming): Streaming CSV uploads for over 100k records for constant memory usage ( #35478 )
2025-11-20 19:16:59 +02:00
Enzo Martellucci
6d359161bb
fix(dashboard): adjust vertical spacing for numerical range filter to prevent overlaps ( #36167 )
2025-11-20 15:20:52 +02:00
Beto Dealmeida
53207302f9
chore: bump duckdb et al. ( #36171 )
2025-11-19 15:17:58 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
05d10d8e77
chore(deps-dev): bump @typescript-eslint/parser from 8.46.2 to 8.46.3 in /superset-websocket ( #35973 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-19 10:47:02 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f5b79c3623
chore(deps-dev): bump eslint from 9.39.0 to 9.39.1 in /docs ( #35976 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-19 10:46:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9f55287672
chore(deps): bump caniuse-lite from 1.0.30001754 to 1.0.30001756 in /docs ( #36179 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-19 10:23:22 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
69fc7f6852
chore(deps-dev): bump webpack from 5.102.1 to 5.103.0 in /docs ( #36178 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-19 10:22:59 -08:00
Evan Rusackas
cdbd5bf4f9
chore(docs): config Kapa to use logo from the repo ( #36177 )
2025-11-19 10:21:49 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d0bf1cca60
chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 in /superset-embedded-sdk ( #36172 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-19 10:18:37 -08:00
Amin Ghadersohi
66afdfd119
docs(mcp): add comprehensive architecture, security, and production deployment documentation ( #36017 )
2025-11-19 16:41:56 +01:00
Richard Fogaca Nienkotter
4582f0e8d2
fix(dashboard): ensure charts re-render when visibility state changes ( #36011 )
2025-11-19 14:26:34 +01:00
SBIN2010
21f85a4145
feat(tree chart): add initial tree depth to tree chart ( #35425 )
2025-11-18 09:40:51 -08:00
Enzo Martellucci
53b9045943
chore(DatabaseModal): simplify collapsible logic for extra extension section ( #36118 )
2025-11-18 15:55:16 +01:00
Enzo Martellucci
a268232ed6
fix(datasets): prevent viewport overflow in dataset creation page ( #36166 )
2025-11-18 15:54:59 +01:00
SBIN2010
43e9e1ec36
fix: role list edit modal height ( #36123 )
2025-11-18 13:19:26 +01:00
80ec241108
feat(dashboard): "embed code" option on dashboard share tab ( #33163 )
...
Co-authored-by: richardfn <richard.fogaca@appsilon.com >
Co-authored-by: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com >
2025-11-18 12:48:43 +01:00
Richard Fogaca Nienkotter
8315804c85
fix(cache): apply dashboard filters to non-legacy visualizations ( #36109 )
2025-11-18 10:03:09 +01:00
Richard Fogaca Nienkotter
a9fd600c52
fix: 'save and go to dashboard' option was disabled after changing the chart type ( #36122 )
2025-11-18 09:59:24 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b5cac47ba7
chore(deps-dev): bump @eslint/js from 9.39.0 to 9.39.1 in /docs ( #35975 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-17 16:08:09 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d91d81b5df
chore(deps-dev): bump typescript-eslint from 8.46.2 to 8.46.4 in /docs ( #36066 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-17 16:07:37 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
225886e859
chore(deps-dev): bump @typescript-eslint/parser from 8.46.2 to 8.46.4 in /docs ( #36064 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-17 14:49:28 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cc1d22012c
chore(deps): bump antd from 5.28.0 to 5.28.1 in /docs ( #36065 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-17 14:49:09 -08:00
PolinaFam and Polina Fam
fb325a8f24
fix(translations): Fix Russian translations for EmptyState ( #34055 )
...
Co-authored-by: Polina Fam <pfam@ptsecurity.com >
2025-11-18 01:26:05 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f8943c17c2
chore(deps): bump js-yaml in /superset-websocket ( #36142 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-17 14:25:25 -08:00
Yuvraj Singh Chauhan and Copilot
28bdec2c79
fix(tags): ensure tag creation is compatible with MySQL by avoiding Markup objects ( #36075 )
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-11-17 14:05:42 -08:00
Aleksey Karpov
6fc7af5ba8
build: update Dockerfile to 3.11.14-slim-trixie ( #36047 )
2025-11-17 13:51:06 -08:00
Beto Dealmeida and Claude
3b226038ba
fix(datasets): prevent double time filter application in virtual datasets ( #35890 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-17 16:47:10 -05:00
Gabriel Torres Ruiz
9d06a5888f
fix(csv-upload): log detailed errors during chunk concatenation for debugging ( #36108 )
2025-11-17 12:05:12 -08:00
Beto Dealmeida and Claude
fb7d0e0e3d
chore: annotate important types ( #36034 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-17 14:41:20 -05:00
Gabriel Torres Ruiz
282f4e5de2
feat(embedded): add setThemeMode API for dynamic theme switching ( #36125 )
2025-11-17 10:30:02 -08:00
Gabriel Torres Ruiz
9bff64824b
fix(navbar): some styling + components inconsistencies ( #36120 )
2025-11-17 10:29:06 -08:00
Kamil Gabryjelski
6723a58780
perf: Fix dashboard performance issues ( #36119 )
2025-11-17 10:28:53 -08:00
Amin Ghadersohi
519990e2fb
fix: pin setuptools <81 to prevent pkg_resources removal ( #36104 )
2025-11-17 10:21:27 -08:00
Yong Le He
fb8eb2a5c3
fix(dashboard): ensure world map chart uses correct country code format in crossfilter ( #35919 )
2025-11-17 09:14:04 -08:00
Enzo Martellucci and Diego Pucci
962faa2196
fix: Use total count to filter datasets ( #36135 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-11-17 17:01:54 +01:00
Amin Ghadersohi
dad469297c
feat(mcp): add configurable branding for MCP service ( #36033 )
2025-11-17 14:16:25 +01:00
Levis Mbote
85413f2a65
fix: fix crossfilter persisting after removal ( #35998 )
2025-11-17 12:07:12 +01:00
Amin Ghadersohi
9605a4a9cb
fix(mcp-service): ensure Flask app context in auth hook and resolve Pydantic warnings ( #36013 )
2025-11-17 11:31:03 +01:00
Ville Brofeldt
c2baba50f9
chore: abstract models and daos into superset-core ( #35259 )
2025-11-14 17:00:44 -08:00
c955a5dc08
fix(histogram): add NULL handling for histogram ( #35693 )
...
Co-authored-by: Rachel Pan <r.pan@mail.utoronto.ca >
Co-authored-by: Rachel Pan <panrrachel@gmail.com >
Co-authored-by: Janani Gurram <68124448+JG-ctrl@users.noreply.github.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-11-14 11:54:13 -08:00
SBIN2010
e6a5616543
fix: opacity color formating ( #36101 )
2025-11-14 22:46:22 +03:00
Alex Yang and Vincent
001b6cb801
feat: Floating Point Formatting for Scatter Point Chart ( #35915 )
...
Co-authored-by: Vincent <vincent.trung4@gmail.com >
2025-11-14 11:37:44 -08:00
Beto Dealmeida
f3e620cd0f
fix: RLS in virtual datasets ( #36061 )
2025-11-14 14:21:09 -05:00
Enzo Martellucci
9ef87e75d5
fix(ace-editor-popover): main AntD popover closes when clicking autocomplete suggestions in Ace Editor ( #35986 )
2025-11-14 16:35:15 +01:00
Enzo Martellucci
f8933c2743
style(database-modal): vertically align the button and the InfoTooltip icon ( #36087 )
2025-11-14 15:45:41 +01:00
Daniel Vaz Gaspar
b051f779e6
chore: bump FAB to 5.0.2 ( #36086 )
2025-11-14 11:57:50 +00:00
Richard Fogaca Nienkotter
37d58a476c
fix(chart): align legend with chart grid in List mode for Top/Bottom orientations ( #36077 )
2025-11-14 11:14:21 +01:00
Richard Fogaca Nienkotter
78f9debdd4
fix(dashboard): prevent tab content cutoff and excessive whitespace in empty tabs ( #35834 )
2025-11-13 22:33:43 +01:00
Mehmet Salih Yavuz
74a590cb76
fix(dashboard): refresh tabs as they load when dashboard is refreshed ( #35265 )
2025-11-13 22:14:01 +01:00
Richard Fogaca Nienkotter
4a04d46118
fix(explore): re-apply filters when 'Group remaining as Others' is enabled ( #35937 )
2025-11-13 22:06:33 +01:00
Richard Fogaca Nienkotter
467b008f36
fix: save button was enabled even no changes were made to the dashboard ( #35817 )
2025-11-13 22:01:33 +01:00
Vitor Avila
6701d0ae0c
fix: Use singlestoredb dialect for sqlglot ( #36096 )
2025-11-13 16:10:55 -03:00
Gabriel Torres Ruiz
4515d18ddd
fix(navbar): Minor fixes in navbar spacings ( #36091 )
2025-11-13 09:53:09 -08:00
Antonio Rivero
60f29ba6fb
chore(logs): Add is_cached in sync AND async results ( #36102 )
2025-11-13 16:04:49 +01:00
Mehmet Salih Yavuz
306f4c14cf
fix(sql): quote column names with spaces to prevent SQLGlot parsing errors ( #35553 )
2025-11-13 17:47:16 +03:00
Juan Manuel Cárdenas
310dcd7b94
chore: 🌐 Translations added to ES .po file ( #30759 )
2025-11-13 08:53:12 +03:00
Joe Li and Claude
008c7c6517
fix(table-chart): fix missing table header IDs ( #35968 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-12 13:15:55 -08:00
Amin Ghadersohi
c244e7f847
fix(mcp): simplify health_check tool and refactor system utils ( #36063 )
2025-11-12 10:28:09 -08:00
Levis Mbote
bb2e2a5ed6
fix: fix tabs overflow in dashboards ( #35984 )
2025-11-12 19:35:29 +03:00
Richard Fogaca Nienkotter and Mehmet Salih Yavuz
a45c0528da
fix(dashboard): dashboard filter was incorrectly showing as out of scope ( #35886 )
...
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-11-12 17:24:04 +01:00
0b535b792e
feat(frontend): add dataset cache clearing utilities and integration ( #35264 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Geidō <60598000+geido@users.noreply.github.com >
2025-11-12 17:23:37 +03:00
Richard Fogaca Nienkotter
9fbfcf0ccd
fix(sqllab): prevent unwanted tab switching when autocompleting table names on SQL Lab ( #35992 )
2025-11-12 10:48:48 +01:00
Richard Fogaca Nienkotter
d123249bd2
fix(dashboard): align filter bar elements vertically in horizontal mode ( #36036 )
2025-11-11 11:48:25 +03:00
Richard Fogaca Nienkotter
4376476ec4
fix: saved query preview modal not highlighting active rows ( #35866 )
2025-11-11 11:15:27 +03:00
Richard Fogaca Nienkotter
9be61a1245
fix(dashboard): prevent validation error in properties modal when ope… ( #36045 )
2025-11-11 11:09:07 +03:00
Mehmet Salih Yavuz
e2e831e322
fix(permalink): exclude edit mode from dashboard permalink ( #35889 )
2025-11-11 10:58:02 +03:00
Joe Li and Claude
21d585d586
fix(explore): show validation errors in View Query modal ( #35969 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-10 14:47:52 -08:00
Joe Li and Claude
0a5144fc1d
fix(tests): fix flakey tests with PropertiesModal.test.tsx, FiltersConfigModal.test.tsx and ChartList.listview.test.tsx ( #36037 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-10 14:31:48 -08:00
Joe Li and Claude
64ca080bb8
feat(playwright): Remove Cypress auth tests in favor of Playwright auth tests ( #35938 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-10 14:29:01 -08:00
b85621e9a7
docs: Add custom chart plugin deployment instructions ( #36028 )
...
Co-authored-by: Daniel Garcia Briseno <daniel.garciabriseno@nasa.gov >
Co-authored-by: Joe Li <joe@preset.io >
2025-11-10 12:19:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e915d7d1d0
chore(deps): bump min-document from 2.19.0 to 2.19.1 in /superset-frontend ( #36046 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-10 12:18:36 -08:00
Richard Fogaca Nienkotter
ae63f64771
style(sqllab): restore Template Parameters modal styling ( #35965 )
2025-11-10 18:51:12 +03:00
Kamil Gabryjelski
63dfd95aa2
fix: Flakiness around scrolling during taking tiled screenshots with Playwright ( #36051 )
2025-11-10 12:57:28 +01:00
Mehmet Salih Yavuz
c9f65cf1c2
fix(date_parser): add check for time range timeshifts ( #36039 )
2025-11-10 13:46:03 +03:00
Elizabeth Thompson and Claude
c42e3c6837
fix(reports): improve error handling for report schedule execution ( #35800 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-07 17:57:43 -08:00
Amin Ghadersohi
3167a0dbc0
chore(mcp-service): upgrade fastmcp from 2.10.6 to 2.13.0.2 ( #36014 )
2025-11-07 17:52:03 -08:00
Elizabeth Thompson and Claude
909bd877c9
fix(filters): preserve backend metric-based sorting ( #35152 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-07 11:40:56 -08:00
Mehmet Salih Yavuz
4d0fdba97a
fix(webpack): webpack refresh plugin ( #36041 )
2025-11-07 10:26:08 -08:00
Amin Ghadersohi
d2550a525b
refactor(mcp): shorten tool name from get_superset_instance_info to get_instance_info ( #36032 )
2025-11-07 10:19:32 -08:00
258512fef2
fix(echarts): Series style hidden for line charts ( #33677 )
...
Co-authored-by: Vedant Prajapati <vedantprajapati@geotab.com >
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-07 20:28:01 +03:00
Mehmet Salih Yavuz
9546ee37e5
chore(superset-core): move ui to new core ( #35308 )
2025-11-07 13:53:06 -03:00
Kamil Gabryjelski
728bc2c632
fix: Ensure that Playwright tile height is always positive ( #36027 )
2025-11-07 13:39:05 +01:00
amaannawab923
0307c71945
fix(Context-Menu): Fixing Context Menu for Table Chart with Html Content ( #33791 )
2025-11-07 10:09:25 +03:00
Michael S. Molina
208b1f7fa3
docs: Reorganize and improve developer portal documentation ( #36005 )
2025-11-06 16:50:31 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2f2128ac48
chore(deps): bump caniuse-lite from 1.0.30001753 to 1.0.30001754 in /docs ( #36018 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-06 10:20:37 -08:00
Gabriel Torres Ruiz
c11be72ead
fix(UI): spacings + UI fixes ( #36010 )
2025-11-06 10:19:07 -08:00
Amin Ghadersohi
f5f5913a29
test: revert unrelated flaky test fix from MCP PR ( #36015 )
2025-11-06 09:41:27 -08:00
Mehmet Salih Yavuz
af37e12de4
fix(SelectFilterPlugin): clear all clears all filters including dependent ones ( #35303 )
2025-11-06 18:18:42 +02:00
Evan Rusackas and Claude
0827ff7687
feat(build): Migrate webpack to SWC for ~70%+ faster builds ( #35946 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-06 08:14:52 -08:00
Antonio Rivero
3765c31163
chore(logs): Use correct log level and remove duplicates for get_query ( #36023 )
2025-11-06 16:18:39 +01:00
Enzo Martellucci
84a1abd357
fix(ui): bump AntD to 5.26.0 to fix Splitter drag menu issue ( #35782 )
2025-11-06 07:43:28 +01:00
ethan-l-geotab
14f20e644e
fix(chart list): Facepile shows correct users when saving chart properties ( #33392 )
2025-11-05 21:56:58 -08:00
Enzo Martellucci
1f960d5761
fix(DatabaseModal): prevent errors when pasting text into supported database select ( #35916 )
2025-11-05 20:38:41 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32099d8f49
chore(deps): bump swagger-ui-react from 5.30.1 to 5.30.2 in /docs ( #35994 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-05 10:21:25 -08:00
Enzo Martellucci
392b880b52
fix(view-in-sqllab): unable to open virtual dataset after discarding chart edits ( #35931 )
2025-11-05 17:03:40 +01:00
Mehmet Salih Yavuz
3f49938b79
fix(explore): Overwriting a chart updates the form_data_key ( #35888 )
2025-11-05 17:44:53 +02:00
Antonio Rivero
a1d4dff99d
feat(logs): Add is_cached as part of ChartDataRestApi.data actions ( #36001 )
2025-11-05 15:49:56 +01:00
Mehmet Salih Yavuz
04231c86db
fix(TimeTable): Match calculations between filtered and non filtered states ( #35619 )
2025-11-05 10:43:05 +03:00
Mehmet Salih Yavuz
7265567561
fix(DatasourceEditor): preserve calculated column order when editing sql ( #35790 )
2025-11-04 21:22:39 +03:00
Evan Rusackas
0d70373d95
feat(npm): New npm run clear-npm script to nuke node_modules faster. ( #35923 )
2025-11-03 20:16:57 -08:00
Rafael Benitez and Claude
53687ae659
fix(dashboard): fix dataset search in filter config modal ( #35488 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-03 13:29:39 -08:00
Rafael Benitez
46db8b7803
fix(dataset): sync columns checkbox not responding to clicks in virtual dataset modal ( #35650 )
2025-11-03 10:47:23 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7cd04c088c
chore(deps-dev): bump globals from 16.4.0 to 16.5.0 in /superset-websocket ( #35948 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-03 10:45:26 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51b4df7a1f
chore(deps-dev): bump globals from 16.4.0 to 16.5.0 in /docs ( #35949 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-03 10:44:54 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b92b725fe2
chore(deps-dev): bump eslint from 9.38.0 to 9.39.0 in /docs ( #35951 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-03 10:44:37 -08:00
1c1d1ddbec
chore(deps): bump caniuse-lite from 1.0.30001752 to 1.0.30001753 in /docs ( #35957 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@preset.io >
2025-11-03 10:44:23 -08:00
Joe Li and Claude
5224347c39
test(useThemeMenuItems): fix race conditions by awaiting all userEvent calls ( #35918 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-11-03 10:28:12 -08:00
Richard Fogaca Nienkotter
27011d0239
fix(sqllab): align refresh buttons with select input fields ( #35917 )
2025-11-03 10:26:04 -08:00
Akshat Sinha
bae2c90bae
docs: correct spelling typos in project codebase ( #35935 )
2025-11-03 12:09:58 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ae1f0bb107
chore(deps-dev): bump @types/node from 24.9.2 to 24.10.0 in /superset-websocket ( #35952 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-03 09:07:06 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
405ed2e736
chore(deps-dev): bump eslint from 9.38.0 to 9.39.0 in /superset-websocket ( #35953 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-03 09:04:40 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17299e469a
chore(deps-dev): bump @eslint/js from 9.38.0 to 9.39.0 in /docs ( #35954 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-03 09:04:24 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3c43ce4e06
chore(deps): bump antd from 5.27.6 to 5.28.0 in /docs ( #35956 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-03 09:03:18 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
00a6772507
chore(deps): bump swagger-ui-react from 5.30.0 to 5.30.1 in /docs ( #35955 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-03 09:03:00 -08:00
Joe Li and Claude
be3690c22b
fix(explore): formatting the SQL in "View Query" pop-up doesn't format ( #35898 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-31 11:09:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d1f9c77afd
chore(deps): bump caniuse-lite from 1.0.30001751 to 1.0.30001752 in /docs ( #35924 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-31 11:08:33 -07:00
Amin Ghadersohi
fee4e7d8e2
feat(mcp): MCP service implementation (PRs 3-9 consolidated) ( #35877 )
2025-10-31 08:33:21 -07:00
Yuvraj Singh Chauhan
30d584afd1
fix(db2): update time grain expressions for DAY to use DATE function ( #35848 )
2025-10-31 10:25:42 -03:00
Vitor Avila
0a95f74f11
chore: Docs and config improvements for Docker setup ( #35896 )
2025-10-31 02:42:19 -03:00
Gabriel Torres Ruiz
6e27bee2ca
refactor(explore): improve focus management in adhoc filter editor ( #35801 )
2025-10-30 23:04:25 +03:00
Ville Brofeldt
f6f15f58ee
fix: set pandas 2.1 as requirement ( #35912 )
2025-10-30 12:33:27 -07:00
Amin Ghadersohi
6f50ddf710
refactor(explore): extract session ID retrieval into overridable method ( #35779 )
2025-10-30 11:30:15 -07:00
Beto Dealmeida
5fc934d859
chore: bump shillelagh to 1.4.3 ( #35895 )
2025-10-30 11:05:06 -07:00
Evan Rusackas and Claude
8ccdf3b32b
feat(frontend): Replace ESLint with OXC hybrid linting architecture ( #35506 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-30 09:26:21 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a5eb02d178
chore(deps): bump use-immer from 0.9.0 to 0.11.0 in /superset-frontend ( #35789 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-29 13:41:53 -07:00
SBIN2010
dd857a2c7a
fix: displaying cell bars in table ( #35885 )
2025-10-29 10:29:22 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2013963e0b
chore(deps-dev): bump @types/node from 24.9.1 to 24.9.2 in /superset-websocket ( #35879 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-29 10:26:41 -07:00
SBIN2010
48ee0821d3
feat: show total in waterfall chart ( #35876 )
2025-10-29 10:25:56 -07:00
Alexandru Soare
99b61143f6
feat(Chart): Save Chart State globally ( #35343 )
2025-10-29 15:54:07 +02:00
Joe Li and Claude
2db19008fb
test(dashboard): strengthen fontWeightStrong assertion for markdown bold ( #35872 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-28 17:23:02 -07:00
SBIN2010
514d56d1ae
feat: conditional formatting improvements add flag toAllRow and toTextColor in tables ( #34762 )
2025-10-28 16:40:40 -07:00
Amin Ghadersohi
5c57c9c0b2
fix: add utc=True to pd.to_datetime for timezone-aware datetimes ( #35587 )
2025-10-28 16:12:28 -07:00
Amin Ghadersohi
7733265fa2
fix(mcp): remove hardcoded admin username fallbacks ( #35875 )
2025-10-28 15:45:40 -07:00
Elizabeth Thompson and Claude
61c68f7b8f
fix(reports): Add celery task execution ID to email notification logs ( #35807 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-28 15:31:41 -07:00
Mehmet Salih Yavuz and Claude
5218b4eea2
fix(echarts): fix time shift color matching functionality ( #35826 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-28 23:36:50 +03:00
Amin Ghadersohi
e1455057e7
feat(mcp): PR2 - Add chart listing and info tools with core infrastructure ( #35835 )
2025-10-28 10:39:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7a759c903b
chore(deps): bump swagger-ui-react from 5.29.5 to 5.30.0 in /docs ( #35865 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-28 10:28:38 -07:00
innovark
61758c07d2
fix: update Russian translations ( #35750 )
2025-10-28 10:22:34 -07:00
Joe Li and Claude
bf830b2dd5
fix(theme): add fontWeightStrong to allowedAntdTokens to fix bold markdown rendering ( #35821 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-28 09:26:05 -07:00
Martyn Gigg
6704c0aaec
fix(sqllab): Fix CSV export button href in SQL Lab when application root is defined ( #35118 )
2025-10-27 14:29:30 -07:00
Mehmet Salih Yavuz
6e60a00d69
fix(SqlLab): South pane visual changes ( #35601 )
2025-10-27 22:07:06 +03:00
ngokturkkarli
0bf34d4d6f
fix(native-filters): prevent circular dependencies and improve dependency handling ( #35317 )
2025-10-27 15:44:14 +02:00
Levis Mbote
19473af401
fix(database-modal): fix issue where commas could not be typed into DB configuration. ( #35289 )
2025-10-27 16:39:51 +03:00
Daniel Vaz Gaspar and Claude
51aad52e6c
fix: unpin holidays and prophet ( #35771 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-27 10:03:16 +00:00
Ignacio Van Droogenbroeck
3d2ed363aa
fix(docs): Update Arc database connector documentation ( #35805 )
2025-10-25 17:41:09 -04:00
Amin Ghadersohi
cc6a5dc29a
feat(mcp): PR1 - Add MCP service scaffold for Apache Superset ( #35163 )
2025-10-24 16:59:23 -07:00
Elizabeth Thompson and Claude
7c9720e22b
fix(dashboard): handle invalid thumbnail BytesIO objects gracefully ( #35808 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-24 11:38:35 -07:00
Marcos Amorim
c3b8c96db6
fix(alerts): improve Slack API rate limiting for large workspaces ( #35622 )
2025-10-24 10:02:41 -07:00
Joe Li and Claude
93cb60b24e
docs(db_engine_specs): restructure feature table for GitHub rendering ( #35809 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-23 13:47:35 -04:00
Gabriel Torres Ruiz
5e4a80e5d0
fix(ag-grid): fix conditional formatting theme colors and module extensibility ( #35605 )
2025-10-22 18:39:00 -07:00
Joe Li and Claude
79918a7939
fix(frontend): resolve race condition in DatasetUsageTab pagination s… ( #35691 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-22 15:42:04 -07:00
Joe Li and Claude
d09421230b
test(dashboard): eliminate race condition in FiltersConfigModal test ( #35717 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-22 14:56:17 -07:00
Richard Fogaca Nienkotter
1234533c67
fix: edit dataset modal visual fixes ( #35799 )
2025-10-22 22:43:13 +03:00
Mehmet Salih Yavuz
7f0c0aea94
fix(ThemeController): replace fetch with SupersetClient for proper auth ( #35794 )
2025-10-22 19:54:28 +03:00
Fabian Halkivaha
d9dcbb68b7
chore(docs): use native docusauros admonition notation ( #35791 )
2025-10-22 11:39:52 -04:00
Mehmet Salih Yavuz
98fba1eefe
fix(security): Add active property to guest user ( #35454 )
2025-10-22 12:51:19 +03:00
Geidō
bad03b1e76
fix(Actions): Improper spacing ( #35724 )
2025-10-21 20:10:00 +02:00
Geidō
fcfafebb29
fix(Themes): Local label inconsistent behaviors ( #35663 )
2025-10-21 20:09:33 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47e82b02ed
chore(deps-dev): bump ts-jest from 29.4.0 to 29.4.5 in /superset-frontend ( #35732 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 10:54:09 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a463d66c80
chore(deps-dev): bump typescript-eslint from 8.46.1 to 8.46.2 in /superset-websocket ( #35757 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 10:53:02 -07:00
Michael S. Molina
337da13ba7
fix: Changes ResultSet to include sqlEditorImmutableId when fetching results ( #35773 )
2025-10-21 14:24:39 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4a3453999a
chore(deps-dev): bump eslint from 9.37.0 to 9.38.0 in /docs ( #35727 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 10:21:37 -07:00
58758de93d
feat(reports): allow custom na values ( #35481 )
...
Co-authored-by: bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
2025-10-21 13:05:57 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b4a8acc584
chore(deps-dev): bump @babel/compat-data from 7.28.0 to 7.28.4 in /superset-frontend ( #35730 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 09:57:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
08f89690e9
chore(deps-dev): bump html-webpack-plugin from 5.6.3 to 5.6.4 in /superset-frontend ( #35755 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 09:56:55 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f02899d38d
chore(deps-dev): bump @types/node from 24.8.1 to 24.9.1 in /superset-websocket ( #35761 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 09:56:13 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
86583f1121
chore(deps-dev): bump @typescript-eslint/parser from 8.46.1 to 8.46.2 in /superset-websocket ( #35759 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 09:55:05 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26cbd71099
chore(deps-dev): bump prettier-plugin-packagejson from 2.5.8 to 2.5.19 in /superset-frontend ( #35760 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 09:49:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
500ce7a02a
chore(deps): bump ace-builds from 1.43.3 to 1.43.4 in /superset-frontend ( #35763 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 09:48:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6d8ceed10e
chore(deps-dev): bump typescript-eslint from 8.46.1 to 8.46.2 in /docs ( #35764 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 09:46:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
68d65f727f
chore(deps): bump antd from 5.27.5 to 5.27.6 in /docs ( #35765 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-21 09:46:10 -07:00
Yuvraj Singh Chauhan
f165785003
docs: update links in CONTRIBUTING.md to point to the correct Developer Portal URLs ( #35723 )
2025-10-20 17:03:43 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8e31c93119
chore(deps): bump @docusaurus/preset-classic from 3.9.1 to 3.9.2 in /docs ( #35744 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 13:29:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4974c08f7d
chore(deps): bump @docusaurus/theme-mermaid from 3.9.1 to 3.9.2 in /docs ( #35741 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 13:09:24 -07:00
Michael S. Molina
fa90ba976c
fix: Extension events not fired in SQL Lab tabs ( #35753 )
2025-10-20 16:41:24 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35c3d8dfbc
chore(deps): bump @docusaurus/plugin-client-redirects from 3.9.1 to 3.9.2 in /docs ( #35739 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 12:11:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ee23815aff
chore(deps): bump @docusaurus/core from 3.9.1 to 3.9.2 in /docs ( #35738 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 11:39:53 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7c946ae3db
chore(deps-dev): bump @docusaurus/tsconfig from 3.9.1 to 3.9.2 in /docs ( #35733 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 11:37:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3926f5c55c
chore(deps-dev): bump @babel/eslint-parser from 7.26.5 to 7.28.4 in /superset-frontend ( #35746 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 11:35:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fdc03d4bf3
chore(deps): update xss requirement from ^1.0.14 to ^1.0.15 in /superset-frontend/packages/superset-ui-core ( #35747 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 11:35:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24f0aed8a7
chore(deps): bump swagger-ui-react from 5.29.4 to 5.29.5 in /docs ( #35734 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 10:54:06 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
00d2f577df
chore(deps-dev): bump eslint from 9.37.0 to 9.38.0 in /superset-websocket ( #35735 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 10:53:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c35fc71bc5
chore(deps-dev): bump @eslint/js from 9.37.0 to 9.38.0 in /docs ( #35736 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 10:53:02 -07:00
Elizabeth Thompson and Claude
1b6d57c3f3
test(tasks): Add tests for log_task_failure signal handler ( #35721 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-20 09:23:18 -07:00
Erkka Tahvanainen and Erkka Tahvanainen
d089a96163
fix(playwright): Download dashboard correctly ( #35484 )
...
Co-authored-by: Erkka Tahvanainen <erkka.tahvanainen@confidently.fi >
2025-10-20 16:57:01 +02:00
Elizabeth Thompson
0b3fe3d60c
test: add comprehensive unhappy path tests for export ( #35718 )
2025-10-17 16:41:00 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0eeb184b6a
chore(deps): bump @luma.gl/constants from 9.1.9 to 9.2.2 in /superset-frontend ( #35696 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-17 13:28:25 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8e7edce616
chore(deps-dev): bump @types/node from 24.6.2 to 24.8.1 in /superset-frontend ( #35705 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-17 12:59:06 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
754201b3d0
chore(deps): bump dayjs from 1.11.13 to 1.11.18 in /superset-frontend ( #35697 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-17 10:29:46 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
925401b4e1
chore(deps-dev): bump @types/node from 24.7.2 to 24.8.1 in /superset-websocket ( #35698 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-17 10:29:13 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8368ea4094
chore(deps-dev): bump eslint-plugin-prettier from 5.2.3 to 5.5.4 in /superset-frontend ( #35700 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-17 10:28:45 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e8a6fb24ae
chore(deps): bump react-reverse-portal from 2.1.2 to 2.3.0 in /superset-frontend ( #35706 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-17 10:27:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
311b7a72dc
chore(deps-dev): bump copy-webpack-plugin from 13.0.0 to 13.0.1 in /superset-frontend ( #35707 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-17 10:27:11 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aa496def53
chore(deps-dev): bump @babel/cli from 7.27.2 to 7.28.3 in /superset-frontend ( #35708 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-17 10:26:47 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aea4375255
chore(deps): update @fontsource/fira-code requirement from ^5.2.6 to ^5.2.7 in /superset-frontend/packages/superset-ui-core ( #35709 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-17 10:26:15 -07:00
yousoph and Claude
9ab0a0179d
fix(charts): update axis title labels to sentence case ( #35694 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-17 09:42:04 -07:00
Fabian Halkivaha
3db613dab5
chore(docs): switch to markdown headlines for available macros ( #35685 )
2025-10-17 10:16:49 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
de5ca79805
chore(deps): update chalk requirement from ^5.4.1 to ^5.6.2 in /superset-frontend/packages/generator-superset ( #35391 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 14:08:40 -07:00
Sam Firke
aede3bb5ba
fix(auth): redirect anonymous attempts to view dashboard with next ( #35345 )
2025-10-16 16:33:37 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
408f84aea6
chore(deps): update dompurify requirement from ^3.2.7 to ^3.3.0 in /superset-frontend/plugins/legacy-preset-chart-nvd3 ( #35632 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 12:59:53 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
92c07aaf54
chore(deps-dev): bump @playwright/test from 1.55.0 to 1.56.0 in /superset-frontend ( #35676 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 12:58:35 -07:00
Beto Dealmeida and Claude
f405174fcf
fix(dataset): render default URL description properly in settings ( #35669 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-16 14:27:24 -04:00
Richard Fogaca Nienkotter
8c125d2553
feat: use in deck.gl custom tooltip instead of SafeMarkdown ( #35665 )
2025-10-16 11:13:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fb8fca4c64
chore(deps): bump antd from 5.27.4 to 5.27.5 in /docs ( #35654 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 10:05:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dc0c055518
chore(deps-dev): bump webpack from 5.102.0 to 5.102.1 in /superset-frontend ( #35675 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 10:04:08 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
09349cb1e7
chore(deps): bump caniuse-lite from 1.0.30001750 to 1.0.30001751 in /docs ( #35677 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 09:39:02 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ca29adb0cb
chore(deps): bump fuse.js from 7.0.0 to 7.1.0 in /superset-frontend ( #35678 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 09:35:07 -07:00
sha174n and Sam Firke
1617bbbe71
docs: Add Production Security Hardening Guide ( #35190 )
...
Co-authored-by: Sam Firke <sfirke@users.noreply.github.com >
2025-10-15 18:18:39 -07:00
Gabriel Torres Ruiz
de1dd53186
fix(theme-crud): enable overwrite confirmation UI for theme imports ( #35558 )
2025-10-15 18:15:57 -07:00
Gabriel Torres Ruiz
58672dfab6
fix(table-chart): fix page size label visibility and improve header control wrapping ( #35648 )
2025-10-15 18:15:02 -07:00
Rafael Benitez
4b5629d1c8
fix(theme): align "Clear local theme" option with other theme menu items ( #35651 )
2025-10-15 18:14:20 -07:00
Joe Li and Claude
4ddc3f14ed
refactor(frontend): convert DatasourceEditor tests to TypeScript ( #35606 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-15 16:42:17 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
400a8aec89
chore(deps-dev): bump typescript-eslint from 8.46.0 to 8.46.1 in /superset-websocket ( #35630 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-15 13:44:53 -07:00
Ville Brofeldt and Ville Brofeldt
51489a75ce
chore: bump pretty-ms to 9.3.0 ( #35667 )
...
Co-authored-by: Ville Brofeldt <v_brofeldt@apple.com >
2025-10-15 12:25:34 -07:00
Quentin Leroy
09772eeda0
fix(config.py): reset HTML_SANITIZATION to True by default ( #35603 )
2025-10-15 12:03:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
78907d08cd
chore(deps): bump caniuse-lite from 1.0.30001749 to 1.0.30001750 in /docs ( #35614 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 16:58:39 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d0a0d280a1
chore(deps-dev): bump ts-jest from 29.4.4 to 29.4.5 in /superset-websocket ( #35615 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 16:58:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5d77ed3677
chore(deps-dev): bump @types/node from 24.7.1 to 24.7.2 in /superset-websocket ( #35616 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 16:57:43 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f68ee6ba67
chore(deps): bump swagger-ui-react from 5.29.3 to 5.29.4 in /docs ( #35617 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 16:57:12 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a01560cfa1
chore(deps-dev): bump typescript-eslint from 8.46.0 to 8.46.1 in /docs ( #35628 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 16:56:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7e06ce8eeb
chore(deps-dev): bump @typescript-eslint/parser from 8.46.0 to 8.46.1 in /superset-websocket ( #35631 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 16:55:12 -07:00
Elizabeth Thompson and Claude
ccc0e3dbb2
fix: Log Celery task failures with a signal handler ( #35595 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-14 13:01:29 -07:00
Ville Brofeldt and Ville Brofeldt
bd48e87eeb
fix: no fs logging of extensions unless flag is set ( #35612 )
...
Co-authored-by: Ville Brofeldt <v_brofeldt@apple.com >
2025-10-14 12:11:43 -07:00
Gabriel Torres Ruiz
e6bd03fe98
fix(theming): solve modal dark theme issues + styling and code improvements ( #35539 )
2025-10-14 11:08:18 -07:00
Damian Pendrak
9252d835b8
fix(deckgl): scatterplot fix categorical color ( #35537 )
2025-10-14 11:07:57 -07:00
Joe Li and Claude
35b5f8dcdc
test(frontend): remove 3 duplicate JSX test files ( #35590 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-14 10:31:12 -07:00
97518544ee
feat(dashboard): chart customization/dynamic group by in dashboards ( #33831 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: amaannawab923 <amaannawab923@gmail.com >
2025-10-14 18:37:57 +03:00
Ignacio Van Droogenbroeck
1c934b474a
docs: add documentation for Arc to Superset's supported databases ( #35585 )
2025-10-14 10:16:59 -04:00
Ville Brofeldt and Ville Brofeldt
9d1d396a9b
fix: fix extension e2e flow ( #35589 )
...
Co-authored-by: Ville Brofeldt <v_brofeldt@apple.com >
2025-10-11 11:31:44 -07:00
innovark
c38ba1daa8
fix(d3-format): call setupFormatters synchronously to apply D3 format… ( #35529 )
2025-10-10 17:33:47 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8727d321f3
chore(deps): bump github/codeql-action from 3 to 4 ( #35568 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-10 17:26:36 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9918f8868e
chore(deps-dev): bump @types/node from 24.7.0 to 24.7.1 in /superset-websocket ( #35597 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-10 15:32:31 -07:00
Elizabeth Thompson and Claude
3dcf85caef
fix(export): replace iframe with fetch to avoid CSP frame-src violations ( #35584 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-10 14:58:13 -07:00
Elizabeth Thompson and Claude
e437ae1f2f
fix(alerts): log execution_id instead of report schedule name in query timing ( #35592 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-10 11:13:10 -07:00
Luiz Otavio
17ebbdd966
fix(csv upload): Correctly casting to string numbers with floating points (e+) ( #35586 )
2025-10-10 11:01:03 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
de0bd37a66
chore(deps-dev): update jest requirement from ^30.0.5 to ^30.2.0 in /superset-frontend/plugins/plugin-chart-pivot-table ( #35392 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-10 10:48:01 -07:00
Mehmet Salih Yavuz
412587ad41
fix(tables): Dark mode scrollbar styles for webkit ( #35338 )
2025-10-10 13:10:54 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
941907ed4e
chore(deps-dev): update cross-env requirement from ^10.0.0 to ^10.1.0 in /superset-frontend/packages/generator-superset ( #35393 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 16:40:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
91fbc64327
chore(deps): update dayjs requirement from ^1.11.13 to ^1.11.18 in /superset-frontend/plugins/legacy-preset-chart-nvd3 ( #34965 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 13:54:24 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
79ff093b30
chore(deps-dev): bump @babel/plugin-transform-runtime from 7.27.1 to 7.28.3 in /superset-frontend ( #35576 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 12:48:39 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ff80d4f406
chore(deps-dev): update @babel/types requirement from ^7.28.0 to ^7.28.2 in /superset-frontend/plugins/plugin-chart-pivot-table ( #34463 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 11:16:43 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c846cd187c
chore(deps): update @mapbox/tiny-sdf requirement from ^2.0.6 to ^2.0.7 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #34939 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 11:15:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9a43a47e6a
chore(deps-dev): update @babel/types requirement from ^7.28.0 to ^7.28.4 in /superset-frontend/plugins/plugin-chart-pivot-table ( #35388 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 10:31:07 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9f2fead651
chore(deps): update dompurify requirement from ^3.2.6 to ^3.2.7 in /superset-frontend/plugins/legacy-preset-chart-nvd3 ( #35383 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 10:04:06 -07:00
Mehmet Salih Yavuz
5a15c632ad
fix(Alerts): Correct icon sizes ( #35572 )
2025-10-09 19:33:14 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3acc9aba8b
chore(deps): bump less from 4.4.1 to 4.4.2 in /docs ( #35577 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 09:19:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8a61cdf4f2
chore(deps-dev): update fs-extra requirement from ^11.3.0 to ^11.3.2 in /superset-frontend/packages/generator-superset ( #35396 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 09:17:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ed47ceb1e4
chore(deps-dev): update jest requirement from ^30.0.5 to ^30.2.0 in /superset-frontend/plugins/plugin-chart-handlebars ( #35397 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 22:17:52 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4dbdb1811b
chore(deps): update react requirement from ^19.1.1 to ^19.2.0 in /superset-frontend/plugins/legacy-plugin-chart-chord ( #35429 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 22:07:02 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d921f6d2b4
chore(deps): bump @docusaurus/preset-classic from 3.8.1 to 3.9.1 in /docs ( #35442 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 21:50:54 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9d3fab8e4d
chore(deps): update ace-builds requirement from ^1.43.1 to ^1.43.3 in /superset-frontend/packages/superset-ui-core ( #35400 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 18:18:05 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a9630f3ec7
chore(deps-dev): bump @docusaurus/tsconfig from 3.8.1 to 3.9.1 in /docs ( #35376 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 17:20:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c2120f62cf
chore(deps-dev): bump typescript from 5.7.3 to 5.9.3 in /superset-websocket ( #35375 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 17:19:53 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19cf645224
chore(deps): bump debug from 4.4.1 to 4.4.3 in /superset-websocket/utils/client-ws-app ( #35363 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 17:19:33 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6b1c058436
chore(deps): bump interweave from 13.1.0 to 13.1.1 in /superset-frontend ( #35440 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 17:17:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
54b4056eb3
chore(deps-dev): bump typescript-eslint from 8.45.0 to 8.46.0 in /docs ( #35545 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 17:15:27 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
82e4763588
chore(deps-dev): bump @typescript-eslint/parser from 8.45.0 to 8.46.0 in /docs ( #35548 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 09:58:03 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
831a9a8a57
chore(deps): bump ioredis from 5.8.0 to 5.8.1 in /superset-websocket ( #35562 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 09:57:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aa54da6d67
chore(deps-dev): bump typescript-eslint from 8.45.0 to 8.46.0 in /superset-websocket ( #35563 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 09:56:46 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
930736bdb0
chore(deps-dev): bump webpack from 5.102.0 to 5.102.1 in /docs ( #35564 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 09:55:08 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
668dcf4799
chore(deps): bump caniuse-lite from 1.0.30001748 to 1.0.30001749 in /docs ( #35565 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 09:54:50 -07:00
Daniel Vaz Gaspar
50a5854b25
fix: dataset update with invalid SQL query ( #35543 )
2025-10-08 12:22:38 +01:00
Evan Rusackas and Claude
441e043bff
feat(docs): Populate Developer Portal with comprehensive documentation framework ( #35217 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-08 03:18:40 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d383b2bf3c
chore(deps-dev): bump eslint-plugin-react from 7.37.4 to 7.37.5 in /superset-frontend ( #35445 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-07 11:01:18 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d7903631f5
chore(deps-dev): bump @docusaurus/module-type-aliases from 3.8.1 to 3.9.1 in /docs ( #35514 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-07 10:58:57 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
10cb964c96
chore(deps-dev): bump ts-jest from 29.4.1 to 29.4.4 in /superset-websocket ( #35516 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-07 10:58:33 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c519094313
chore(deps-dev): bump @types/node from 24.6.2 to 24.7.0 in /superset-websocket ( #35547 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-07 10:58:11 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e32c2d82a5
chore(deps-dev): bump eslint from 9.36.0 to 9.37.0 in /docs ( #35549 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-07 10:57:31 -07:00
Rafael Benitez
f7b9d7a64b
fix(chart): Fixes BigNumber gradient appearing blackish in light mode ( #35527 )
2025-10-07 09:43:51 -07:00
Mehmet Salih Yavuz
89932fa0b2
fix(explore): Include chart canvases in the screenshot ( #35491 )
2025-10-07 19:34:49 +03:00
Gabriel Torres Ruiz
a90928766b
fix(theme-crud): add unsaved changes modal ( #35254 )
2025-10-07 19:26:01 +03:00
Daniel Vaz Gaspar
9d50f1b8a2
fix: update chart with dashboards validation ( #35523 )
2025-10-07 07:17:49 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
72464afb2e
chore(deps-dev): bump eslint from 9.36.0 to 9.37.0 in /superset-websocket ( #35513 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 11:20:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64af516dfd
chore(deps-dev): bump @eslint/js from 9.36.0 to 9.37.0 in /docs ( #35511 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 11:19:06 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
70cd4dd9d9
chore(deps): bump caniuse-lite from 1.0.30001747 to 1.0.30001748 in /docs ( #35515 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 11:03:20 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b7266e647c
chore(deps): bump swagger-ui-react from 5.29.2 to 5.29.3 in /docs ( #35517 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 11:02:07 -07:00
Amin Ghadersohi
77c3146829
fix(webdriver): add missing options object to WebDriver initialization ( #35504 )
2025-10-06 10:23:13 -07:00
Vitor Avila and Beto Dealmeida
4545d55d30
fix: Support metric macro for embedded users ( #35508 )
...
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
2025-10-06 14:05:54 -03:00
Rafael Benitez
a7b158c7fa
fix(explore): correct search icon in dashboard submenu ( #35489 )
2025-10-06 13:02:03 -04:00
Mehmet Salih Yavuz
d39c55e941
fix(Select): Prevent closing the select when clicking on a tag ( #35487 )
2025-10-04 08:11:14 +03:00
Joe Li and Claude
821173f6c4
fix(frontend): remove describe/it blocks from Modal.useModal tests ( #35497 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-03 20:34:30 -07:00
Elizabeth Thompson and Claude
635b7a6a4d
fix(loading): improve loading screen theming for dark mode support ( #35129 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-03 16:51:56 -07:00
Tran Ngoc Tuan
04b1a45416
fix(security-manager): switch from deprecated get_session to session attribute ( #35290 )
2025-10-03 14:47:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d23006ce03
chore(deps-dev): bump @types/node from 22.15.30 to 24.6.2 in /superset-frontend ( #35476 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 11:56:33 -07:00
Elizabeth Thompson and Claude
8bb911bc91
fix(modals): use Modal.useModal hook for proper dark mode theming ( #35198 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-10-03 10:11:19 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
249733c768
chore(deps-dev): bump @types/node from 24.2.0 to 24.6.2 in /superset-websocket ( #35467 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 09:20:47 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d83a938870
chore(deps-dev): bump globals from 16.3.0 to 16.4.0 in /docs ( #35469 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 09:20:27 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
593e376cf2
chore(deps): bump winston from 3.17.0 to 3.18.3 in /superset-websocket ( #35470 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 09:20:06 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fd4fe2c2ad
chore(deps-dev): bump typescript from 5.9.2 to 5.9.3 in /docs ( #35471 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 09:19:43 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
281fa67b8e
chore(deps): bump swagger-ui-react from 5.29.1 to 5.29.2 in /docs ( #35472 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 09:17:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a8fd27aec3
chore(deps): bump caniuse-lite from 1.0.30001739 to 1.0.30001747 in /docs ( #35473 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 09:17:24 -07:00
Beto Dealmeida
139b5ae20c
fix(sqlglot): adhoc expressions ( #35482 )
2025-10-03 12:10:10 -04:00
Mehmet Salih Yavuz
891f826143
fix(dashboard): Navigate to new dashboard when saved as a new one ( #35339 )
2025-10-03 18:37:07 +03:00
Mehmet Salih Yavuz
0e2fb1d1a3
fix(theming): CRUD view padding ( #35321 )
2025-10-03 18:35:19 +03:00
amaannawab923
96170e43c0
fix(ag-grid-table): remove enterprise features to use community version ( #35453 )
2025-10-02 22:45:34 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8fde970b6b
chore(deps): bump @ant-design/icons from 6.0.0 to 6.1.0 in /docs ( #35439 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 10:28:20 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
38cb577fc6
chore(deps): bump swagger-ui-react from 5.27.1 to 5.29.1 in /docs ( #35437 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 10:27:25 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8ebe045846
chore(deps): bump antd from 5.27.1 to 5.27.4 in /docs ( #35432 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 10:26:13 -07:00
Beto Dealmeida
62dc5c0306
fix(cache): ensure SQL is sanitized before cache key generation ( #35419 )
2025-10-02 13:25:54 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6ad8d29fcd
chore(deps-dev): bump globals from 16.3.0 to 16.4.0 in /superset-websocket ( #35431 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 10:25:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d83a88d5d9
chore(deps-dev): bump typescript-eslint from 8.19.0 to 8.45.0 in /superset-websocket ( #35430 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 10:24:47 -07:00
SBIN2010
a7cc48dcda
fix(test): changed test use unsaved changes prompt ( #35447 )
2025-10-02 10:20:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e2a7dc9256
chore(deps): bump ioredis and @types/ioredis in /superset-websocket ( #35428 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 10:19:28 -07:00
Kamil Gabryjelski
0364933e8b
fix(explore): Remove query autotrigger ( #35418 )
2025-10-02 19:08:31 +02:00
Beto Dealmeida
3202ff4b3f
fix(pinot): more functions ( #35451 )
2025-10-02 13:01:47 -04:00
Gabriel Torres Ruiz
553204e613
fix(dashboard): exit markdown edit mode when clicking outside of element ( #35336 )
2025-10-02 19:42:16 +03:00
Rafael Benitez
fe8348c03a
fix(dataset): sort by database in Dataset and Saved queries Issue ( #35277 )
2025-10-02 16:44:19 +02:00
Beto Dealmeida
30021f8ede
fix(pinot): SUBSTR function ( #35427 )
2025-10-02 10:29:18 -04:00
Beto Dealmeida
f3349388d0
fix(pinot): DATE_SUB function ( #35426 )
2025-10-02 10:12:19 -04:00
Antonio Rivero
449a89c214
fix(slice): Fix using isdigit when id passed as int ( #35452 )
2025-10-02 16:04:54 +02:00
Beto Dealmeida
5428376662
fix(pinot): DATE_ADD function ( #35424 )
2025-10-02 09:56:20 -04:00
Evan Rusackas
5493e2c96d
chore(dependabot): switch back to daily cadence (a trickle rather than a flood) ( #35421 )
2025-10-01 14:53:11 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2f8657f122
chore(deps-dev): bump eslint from 9.34.0 to 9.36.0 in /superset-websocket ( #35359 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 10:26:06 -07:00
Beto Dealmeida and bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
aa97d2fe03
fix(pinot): dialect date truncation ( #35420 )
...
Co-authored-by: bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
2025-10-01 13:16:46 -04:00
28389de93e
fix(ci): fix GHA for docs during PRs ( #35186 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-10-01 10:13:47 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7c415c7cd9
chore(deps): bump hot-shots from 11.1.0 to 11.2.0 in /superset-websocket ( #35358 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 10:12:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f6b2abee81
chore(deps-dev): bump webpack from 5.101.3 to 5.102.0 in /docs ( #35368 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 10:11:42 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2ef7232959
chore(deps-dev): bump eslint from 9.34.0 to 9.36.0 in /docs ( #35377 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 10:10:45 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2991f60368
chore(deps-dev): bump @types/react-json-tree from 0.6.11 to 0.13.0 in /superset-frontend ( #35406 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 10:10:25 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
85ec3b1901
chore(deps-dev): bump @applitools/eyes-storybook from 3.55.6 to 3.60.0 in /superset-frontend ( #35407 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 10:10:05 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0c639abe17
chore(deps-dev): bump jsdom from 26.0.0 to 27.0.0 in /superset-frontend ( #35409 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 10:09:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
50ed9b9e0e
chore(deps-dev): bump @types/jquery from 3.5.32 to 3.5.33 in /superset-frontend ( #35410 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 10:08:36 -07:00
Beto Dealmeida
13a164dd63
fix: table quoting in DBs with supports_cross_catalog_queries=True ( #35350 )
2025-10-01 12:17:46 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6b0b13e4e7
chore(deps-dev): bump typescript-eslint from 8.40.0 to 8.45.0 in /docs ( #35381 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 08:49:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c188952de2
chore(deps-dev): bump webpack from 5.99.9 to 5.102.0 in /superset-frontend ( #35402 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 08:48:01 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a3b91f924d
chore(deps): bump @babel/runtime from 7.28.2 to 7.28.4 in /superset-frontend ( #35403 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 08:47:11 -07:00
Rafael Benitez
d8688cf8b1
fix(explore): close unsaved changes modal when discarding changes ( #35307 )
2025-10-01 17:43:02 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40378afbf8
chore(deps): bump actions/labeler from 5 to 6 ( #35386 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 07:02:52 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
84e21434b3
chore(deps): bump aws-actions/configure-aws-credentials from 4 to 5 ( #35387 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 07:02:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d27210794c
chore(deps): bump actions/setup-python from 5 to 6 ( #35390 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 07:01:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5a90a84685
chore(deps): bump actions/github-script from 7 to 8 ( #35385 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 07:00:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6fbbc85df7
chore(deps): bump actions/setup-node from 4 to 5 ( #35394 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 06:59:44 -07:00
Geidō
a66c230058
fix(SqlLab): Hit tableschemaview with a valid queryEditorId ( #35341 )
2025-10-01 14:39:02 +03:00
Damian Pendrak
19db0353a9
feat(db): custom database error messages ( #34674 )
2025-10-01 14:29:57 +03:00
Kamil Gabryjelski
88e5581d04
fix: Broken splitter in sql lab and some minor visual fixes ( #35416 )
2025-10-01 13:11:50 +02:00
Beto Dealmeida
bf88d9bb1c
fix(pinot): restrict types in dialect ( #35337 )
2025-09-30 16:34:53 -04:00
Beto Dealmeida
d51b35f61b
fix: adhoc orderby in explore ( #35342 )
2025-09-30 16:34:44 -04:00
Gabriel Torres Ruiz
220480b627
feat(theming): add base theme config ( #35220 )
2025-09-30 11:01:31 -07:00
Mehmet Salih Yavuz and Beto Dealmeida
ef78d2af06
fix(doris): Don't set supports_cross_catalog_queries to true ( #35332 )
...
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
2025-09-30 14:42:03 +03:00
Evan Rusackas and Claude
7deed00def
chore(frontend): Consolidate ESLint configurations in superset-frontend ( #35318 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-29 23:52:25 -07:00
Beto Dealmeida
4e093a8e2a
feat: sqlglot dialect for Pinot ( #35333 )
2025-09-29 21:56:35 -04:00
Elizabeth Thompson and Claude
0b73b4842f
fix: Enable DuckDB examples loading in showtime ephemeral environments ( #35294 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-29 13:21:33 -07:00
Geidō
90f281f585
fix: AceEditor Autocomplete Highlight ( #35316 )
2025-09-29 13:37:30 +03:00
Evan Rusackas and Claude
d62249d13f
test(frontend): Migrate from describe/it to flat test() pattern ( #35305 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-28 11:45:33 -07:00
Maxime Beauchemin and Claude
ff102aadb3
refactor(llm): rename LLMS.md to AGENTS.md for modern AI tools ( #35314 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-27 12:46:16 +03:00
Elizabeth Thompson and Claude
82e2bc6181
fix(DatasourceModal): replace imperative modal updates with declarative state ( #35256 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-26 17:54:17 -07:00
Gabriel Torres Ruiz
784ff82847
fix(sqllab): fix blank bottom section in SQL Lab left panel ( #35309 )
2025-09-26 20:07:20 +03:00
Mehmet Salih Yavuz
027b25e6b8
fix(DateFilterControl): remove modal overlay style to fix z-index issues ( #35292 )
2025-09-26 15:42:46 +02:00
SBIN2010
b652fab042
fix(table): New ad-hoc columns retain the name of previous columns ( #35274 )
2025-09-26 10:34:55 -03:00
Nikita Rybalchenko
77a5969dc1
feat(pdf): add configurable PDF compression level support ( #34096 )
2025-09-25 08:29:54 -07:00
Geidō
fb9032c05c
fix: Cosmetic issues ( #35122 )
2025-09-25 17:24:34 +03:00
Mehmet Salih Yavuz
7a9dbfe879
fix(BuilderComponentPane): navigation tabs padding ( #35213 )
2025-09-25 16:59:48 +03:00
Giulio Piccolo and bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
0de78d8203
fix(deck.gl): ensure min/max values are included in polygon map legend breakpoints ( #35033 )
...
Co-authored-by: bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
2025-09-25 14:30:44 +03:00
Maxime Beauchemin and Claude
abc2d46fed
refactor: remove obsolete Flask flash messaging system ( #35237 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-25 00:05:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
927cc1cda1
chore(deps): bump tar-fs from 3.1.0 to 3.1.1 in /superset-frontend ( #35272 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-24 22:29:13 -07:00
JUST.in DO IT
7f3840557a
chore(react18): Migrate legacy react methods ( #34892 )
2025-09-24 12:34:22 -07:00
JUST.in DO IT
0defcb604b
chore(sqllab): remove unused json param ( #35065 )
2025-09-24 10:26:55 -07:00
Beto Dealmeida
94686ddfbe
fix(SQL Lab): syncTable on new tabs ( #35216 )
2025-09-24 11:58:54 -04:00
SBIN2010
ec322dfd8d
fix(Mixed Chart): Tooltip incorrectly displays numbers with optional Y-axis format and showQueryIdentifiers set to true ( #35224 )
2025-09-24 17:44:01 +03:00
Mehmet Salih Yavuz
cb88d886c7
fix(PropertiesModal): do not show validation errors while loading ( #35215 )
2025-09-24 10:52:16 +03:00
Maxime Beauchemin and Claude
608e3baf43
feat(build): auto-rebuild/check TypeScript types for packages/plugins in webpack ( #35240 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-23 19:22:59 -07:00
Elizabeth Thompson and Claude
b6f6b75348
fix(dashboard): update header border to use colorBorder token ( #35199 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-23 18:08:17 -07:00
Elizabeth Thompson and Claude
a5ad1d186c
docs: Add instruction to avoid time-specific language in code comments ( #35200 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-23 18:07:59 -07:00
Beto Dealmeida
db88d80b3f
fix: docker-compose-image-tag ( #35246 )
2025-09-23 14:57:53 -07:00
Rafael Benitez
4b71adaa9c
feat(themes): Adding SupersetText support to Themes Modal ( #35248 )
2025-09-23 22:23:57 +02:00
Mehmet Salih Yavuz
5fbda3af40
chore(effect): add eslint plugin to reduce rerenders ( #35223 )
2025-09-23 22:31:10 +03:00
Tadeh Alexani
bc0c40c80e
feat(helm): Allow multi-database connection support ( #34327 )
2025-09-23 11:46:52 -07:00
Michael S. Molina
f030d658c5
chore: Bumps @apache-superset/core to 0.0.1-rc5 ( #35247 )
2025-09-23 15:24:29 -03:00
e85337c543
fix(docs): escape comparison operators in MDX files to resolve build errors ( #35185 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Sam Firke <sfirke@users.noreply.github.com >
2025-09-23 10:49:28 -07:00
Amin Ghadersohi and Claude
fe7f8062f3
fix: Enable Playwright migration with graceful Selenium fallback ( #35063 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-23 10:47:45 -07:00
Damian Pendrak
dce74014da
refactor(deckgl): update deck.gl charts to use new api ( #34859 )
2025-09-23 10:42:28 -07:00
Beto Dealmeida
619b341cad
fix: docker-compose file and superset-core ( #35235 )
2025-09-23 10:24:23 -07:00
Michael S. Molina
9b6876be62
fix: Typescript declaration files ( #35244 )
2025-09-23 14:22:28 -03:00
Mehmet Salih Yavuz
c601341520
fix(ConditionalFormattingControl): icon color in dark mode ( #35243 )
2025-09-23 20:16:29 +03:00
Michael S. Molina
78faaee685
chore: Reference GenericDataType from @apache-superset/core ( #35214 )
2025-09-23 10:12:18 -07:00
Dimitri
4027bad1d6
docs(oracle): update driver ( #35242 )
2025-09-23 13:53:58 +03:00
Levis Mbote
ce55cc7dd7
fix(table-chart): fix cell bar visibility in dark theme ( #35211 )
2025-09-23 00:06:03 -07:00
Gabriel Torres Ruiz
48e1b1ff2c
feat(bug): defensive code to avoid accesing attribute of a NoneType object ( #35219 )
2025-09-22 10:38:08 -07:00
Beto Dealmeida
5ec8f9d886
chore: bump sqlglot to 27.15.2 ( #35176 )
2025-09-22 12:40:16 -04:00
ecb3ac68ff
feat: AI-powered TypeScript migration framework with parallel processing ( #35045 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com >
2025-09-20 15:47:42 -07:00
Mehmet Salih Yavuz
076e477fd4
fix(SQLPopover): Use correct component ( #35212 )
2025-09-20 12:12:37 +03:00
SBIN2010
1e4bc6ee78
fix: bug in tooltip timeseries chart in calculated total with annotation layer ( #35179 )
2025-09-19 10:30:42 -07:00
Pat Buxton
db178cf527
fix: Bump pandas to 2.1.4 for python 3.12 ( #34999 )
2025-09-19 09:18:00 -07:00
Alexandru Soare
5901320933
feat(database): Adding per-user caching option in Security tab ( #34842 )
2025-09-19 19:15:31 +03:00
SBIN2010
23bb4f88c0
fix(Funnel): onInit overridden row_limit to default value on save chart ( #35076 )
2025-09-19 09:13:45 -07:00
Levis Mbote
4130b92966
fix(gantt-chart): fix Y-axis label visibility in dark theme ( #35189 )
2025-09-19 12:33:53 +03:00
Mehmet Salih Yavuz
38297edc6b
chore(matrixify): Remove leftover option ( #35195 )
2025-09-19 00:47:47 +03:00
sha174n
0c8f326258
docs: Add security warning for ENABLE_TEMPLATE_PROCESSING ( #35192 )
2025-09-18 17:36:41 -04:00
Joe Li and Claude
127f6b3d66
fix(tests): migrate Cypress control tests to React Testing Library ( #35181 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-18 14:23:33 -07:00
Maxime Beauchemin and Claude
ea519a77b5
fix: only block showtime for unauthorized users on push ( #35184 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-18 12:28:28 -07:00
Michael S. Molina
6cb3ef9f5d
chore: TypeScript Configuration Modernization and Cleanup ( #35159 )
2025-09-18 16:27:57 -03:00
Kamil Gabryjelski
a889ae75fc
chore: Bump ag grid to 34.2.0 ( #35193 )
2025-09-18 19:09:22 +02:00
Mehmet Salih Yavuz
b60be9655f
feat(TimeTable): add other sparkline type options ( #35180 )
2025-09-18 16:41:05 +03:00
lc-4918 and l.clement
fd6da21ce0
chore(i18n): update French translations ( #35070 )
...
Co-authored-by: l.clement <l.clement@altereo.fr >
2025-09-17 21:05:15 -07:00
marun
1bf112a57a
fix(CrudThemeProvider): Optimized theme loading logic ( #35155 )
2025-09-17 20:49:26 -07:00
marun and Claude
1f530d45cb
fix(embedded): resolve theme context error in Loading component ( #35168 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-17 20:44:04 -07:00
Joe Li and Claude
1187902e68
feat(playwright): Add Playwright CI Integration for Cypress Migration (SIP-178) ( #35110 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-17 17:13:47 -07:00
ad3eff9e90
feat(matrixify): replace single toggle with separate horizontal/vertical layout controls ( #35067 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-09-17 22:57:06 +03:00
SBIN2010
3e554674ff
feat(waterfall): add changes label series and grouping customize settings ( #34847 )
2025-09-17 08:24:45 -03:00
dced2f8564
feat: Add BaseDAO improvements and test reorganization ( #35018 )
...
Co-authored-by: bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-16 18:15:16 -07:00
Maxime Beauchemin and Claude
05c6a1bf20
fix(viz): resolve dark mode compatibility issues in BigNumber and Heatmap ( #35151 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-16 10:21:47 -07:00
SBIN2010
c193d6d6a1
fix: import bug template params ( #35144 )
2025-09-16 10:21:29 -07:00
Joe Li and Claude
fb840b8e71
fix(deck.gl): restore legend display for Polygon charts with linear palette and fixed color schemes ( #35142 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-16 20:20:42 +03:00
Maxime Beauchemin and Claude
d0cc6f115b
feat: add optional garbage collection after requests ( #35061 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-16 09:23:39 -07:00
966e231f94
feat: Add Dashboard Filter Support for Alert Reports ( #32196 )
...
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com >
Co-authored-by: Hugh A Miles II <hugh@Mac.home >
2025-09-16 10:52:28 -04:00
Richard Fogaca Nienkotter
a66737cb05
feat(custom-tooltip): custom tooltip on deck.gl charts ( #34276 )
2025-09-16 17:11:19 +03:00
Michael S. Molina
bc6859a99d
refactor: Organizes the src/core folder ( #35119 )
2025-09-16 08:21:16 -03:00
Elizabeth Thompson and Claude
133e686224
docs(llms): add PR template guidelines to LLMS.md ( #35148 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-15 15:57:16 -07:00
Elizabeth Thompson and Claude
7d0a472d1e
feat: Add comprehensive dark mode support for chart thumbnails and examples ( #35111 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-15 13:53:44 -07:00
Maxime Beauchemin and Claude
c2534f9155
feat: Add ECharts options overrides to theme system ( #34876 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-15 13:52:38 -07:00
Maxime Beauchemin and Claude
088ecdd0bf
refactor: Enable G logging rules and comprehensive ruff improvements ( #35081 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-15 12:42:49 -07:00
Maxime Beauchemin and Claude
e1a2e4843a
chore: standardize webpack dev server host configuration and enable LAN access ( #35066 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-15 10:10:05 -07:00
dependabot[bot]
15e8ffee1e
chore(deps): bump axios from 1.11.0 to 1.12.0 in /docs ( #35109 )
2025-09-14 07:50:16 +07:00
Elizabeth Thompson
19ddcb7e5c
fix: Remove emotion-rgba from dependencies and codebase ( #35124 )
2025-09-13 13:33:20 +03:00
Gabriel Torres Ruiz
36daa2dc3f
fix(ListView): implement AntD pagination for ListView component ( #35057 )
2025-09-12 14:15:05 -07:00
Gabriel Torres Ruiz
7fd5a7668b
fix(charts): fix legend theming and hollow symbols in dark mode ( #35123 )
2025-09-12 23:33:29 +03:00
Mehmet Salih Yavuz
95333e34b1
fix(theming): Lighter text colors on dark mode ( #35114 )
2025-09-12 15:52:54 +03:00
Daniel Vaz Gaspar and Joe Li
a9fb853e3e
fix: Bump FAB to 5.X ( #33055 )
...
Co-authored-by: Joe Li <joe@preset.io >
2025-09-12 09:21:37 +01:00
Rafael Benitez
dea9068647
fix(DashboardEditor): CSS template selector UI in dashboard properties modal restored ( #35106 )
2025-09-11 15:34:16 -07:00
Elizabeth Thompson
3416bd1479
chore: add codeowners ( #35107 )
2025-09-11 14:07:21 -07:00
Michael S. Molina
e729b2dbb4
fix: SQL Lab tab events ( #35105 )
2025-09-11 17:53:51 -03:00
SBIN2010
06261f262b
fix: page size options 'all' correct in table and remove PAGE_SIZE_OPTIONS in handlebars ( #35095 )
2025-09-11 22:46:48 +03:00
SBIN2010
454ed1883f
feat(BoxPlot): add chart data zoom ( #35097 )
2025-09-11 21:29:02 +03:00
Priyanshu Kumar
b42060c880
fix(pie): fixes pie chart other click error ( #35086 )
2025-09-11 14:19:52 +03:00
Gabriel Torres Ruiz
7bf16d805d
fix(theming): replace error color with bolt icon for local themes ( #35090 )
2025-09-11 14:18:29 +03:00
Rafael Benitez
529adebe1b
fix(templates): Restores templates files accidentally removed ( #35094 )
2025-09-11 10:31:29 +02:00
Devanjan Banerjee
eb4351af83
feat(Timeseries & MixedTimeseries): Force selected timegrain on timeseries intervals when the x-axis is of timestamp type ( #34595 )
2025-09-10 20:27:23 -07:00
Rafael Benitez
5a2411fa64
fix(settingsMenu): Version ( #35096 )
2025-09-10 15:08:05 -07:00
JUST.in DO IT
078c1701f4
feat(sqllab extension): core query interface api ( #35077 )
2025-09-10 13:17:09 -07:00
LisaHusband and bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
a7d349a5c6
fix(drill-to-detail): ensure axis label filters map to original column names ( #34694 )
...
Co-authored-by: bito-code-review[bot] <188872107+bito-code-review[bot]@users.noreply.github.com>
2025-09-10 18:18:37 +03:00
Mehmet Salih Yavuz and Michael S. Molina
7a20a65a4d
feat(embedded): Change function signature of setupExtensions ( #35062 )
...
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2025-09-10 13:06:00 +03:00
Mehmet Salih Yavuz
912ed2ba80
fix(timeshifts): Add missing feature flag to enum ( #35072 )
2025-09-09 20:39:03 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fedb3ca941
chore(deps-dev): bump @typescript-eslint/parser from 8.40.0 to 8.41.0 in /docs ( #34934 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-09 10:33:33 -07:00
Renat and Copilot
42b15b6840
fix(translation): order incompatible placeholders, translated placeholders, semantic changes ( #34722 )
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-09-09 10:24:17 -07:00
Gabriel Torres Ruiz
2f64343186
feat(dataset): create usage tab for dataset ( #34707 )
2025-09-09 10:23:16 -07:00
Nicolas
65376c7baf
fix(Table Chart): render null dates properly ( #34558 )
2025-09-09 10:22:54 -07:00
Michael S. Molina
4c2b27e7f0
fix: Change database event in core ( #35071 )
2025-09-09 11:50:49 -03:00
Amin Ghadersohi
15e4e8df94
fix(utils): Suppress pandas date parsing warnings in normalize_dttm_col ( #35042 )
2025-09-08 18:17:33 -07:00
SBIN2010
c5f220a9ff
fix(table): table search input placeholder ( #35064 )
2025-09-09 03:55:39 +03:00
Avindra Goolcharan
b05def1a8a
fix(superset-embedded-sdk/release-if-necessary): remove axios ( #35038 )
2025-09-08 17:47:31 -07:00
Ganesh-Babu-GB and ganesh
da7f6efea8
docs(typos): correct spelling mistakes ( #35043 )
...
Co-authored-by: ganesh <dev.ganeshbabu.in@gmail.com >
2025-09-08 11:12:55 -07:00
Luiz Otavio
1c2b9db4f0
fix: Upload CSV as Dataset ( #34763 )
2025-09-08 11:48:23 -03:00
Gabriel Torres Ruiz
0fce5ecfa5
fix(dashboard): normalize spacings and background colors ( #35001 )
2025-09-05 19:13:42 -07:00
Elizabeth Thompson
385471c34d
fix(utils): ensure webdriver timeout compatibility with urllib3 2.x ( #34440 )
2025-09-05 16:25:15 -07:00
Rafael Benitez
bef1f4d045
fix(theming): Icons in ExecutionLogList and Country map chart tooltip theme consistency ( #34828 )
2025-09-05 15:02:53 -07:00
SBIN2010
5a3182ce21
fix: mixed timeseries chart add legend margin ( #35036 )
2025-09-05 14:44:14 -07:00
catpineapple and Mehmet Salih Yavuz
9efb80dbf4
fix(tests): one of integration test in TestSqlaTableModel does not support MySQL "concat" ( #35007 )
...
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-09-05 21:11:38 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a20b236809
chore(deps): bump sha.js from 2.4.11 to 2.4.12 in /docs ( #34797 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 10:30:19 -07:00
Beto Dealmeida
4e969d19d1
feat: allow create metric and add to folder in single request ( #34993 )
2025-09-05 13:28:45 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
876257fb94
chore(deps): bump ts-loader from 9.5.2 to 9.5.4 in /docs ( #34956 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 10:28:17 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
472e599f91
chore(deps): bump @rjsf/validator-ajv8 from 5.24.12 to 5.24.13 in /superset-frontend ( #34953 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 10:27:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d826e90395
chore(deps-dev): bump @typescript-eslint/parser from 8.33.0 to 8.41.0 in /superset-websocket ( #34959 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 10:24:21 -07:00
Damian Pendrak
c65cb284e6
fix(chart): change "No query." to "Query cannot be loaded" in Multi Layer Deck.gl Chart ( #34973 )
2025-09-05 10:22:45 -07:00
JUST.in DO IT
bc54b7970a
fix(echarts): rename time series shifted for isTimeComparisonValue ( #35022 )
2025-09-05 08:39:46 -07:00
Vitor Avila
ce74ae095d
feat: Use dashboard name for screenshot download ( #34988 )
2025-09-05 02:16:45 -03:00
SBIN2010
9424538bb1
feat: add sort legend to legend section ( #34911 )
2025-09-04 16:41:47 -07:00
SBIN2010
031fb4b5a8
fix: display legend mixed timeseries chart ( #35005 )
2025-09-04 16:39:57 -07:00
7fb7ac8bef
fix(sql): Add Impala dialect support to sqlglot parser ( #34662 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Joe Li <joe@preset.io >
2025-09-04 11:07:09 -07:00
Mehmet Salih Yavuz
569a7b33a5
fix(theming): more visual bugs ( #34987 )
2025-09-04 20:44:07 +03:00
Mehmet Salih Yavuz
59df0d6f15
fix(RoleListEditModal): display user's other properties in table ( #35017 )
2025-09-04 20:43:59 +03:00
Michael S. Molina
2e4ccffc11
fix: Add TypeScript declaration file generation to @apache-superset/core package ( #35002 )
2025-09-04 12:59:43 -03:00
catpineapple
2e51d02806
fix: doris genericDataType modify ( #35011 )
2025-09-04 08:21:15 -07:00
sha174n
8406a827dd
fix(deps): expand pyarrow version range to <19 ( #34870 )
2025-09-03 22:14:19 -07:00
Joe Li
ea0a77daaf
fix(tests): resolve AlertReportModal checkmark test failures ( #34995 )
2025-09-03 10:44:20 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e5e3ddb24e
chore(deps): bump codecov/codecov-action from 3 to 5 ( #34972 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:37:23 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7320ad9a0a
chore(deps): bump actions/first-interaction from 2 to 3 ( #34970 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:36:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3dbe593a4a
chore(deps): bump actions/checkout from 4 to 5 ( #34969 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:36:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
61f359d565
chore(deps): bump actions/setup-java from 4 to 5 ( #34968 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:35:13 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e77ff267a1
chore(deps): bump luxon from 3.6.1 to 3.7.1 in /superset-frontend ( #34967 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:33:55 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c426723275
chore(deps): bump geostyler-data from 1.0.0 to 1.1.0 in /superset-frontend ( #34966 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:33:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d2a1d86561
chore(deps): bump actions/download-artifact from 4 to 5 ( #34963 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:32:25 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0cd0b37983
chore(deps): bump @rjsf/core from 5.24.1 to 5.24.13 in /superset-frontend ( #34950 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:27:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a6b4ff9847
chore(deps): bump react-syntax-highlighter from 15.6.1 to 15.6.6 in /superset-frontend ( #34949 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:27:01 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a81282adeb
chore(deps-dev): bump ts-jest from 29.3.1 to 29.4.1 in /superset-websocket ( #34947 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:26:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3ba3c09c47
chore(deps-dev): bump @types/jsonwebtoken from 9.0.9 to 9.0.10 in /superset-websocket ( #34946 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:26:19 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3081c7fb62
chore(deps-dev): bump fork-ts-checker-webpack-plugin from 9.0.2 to 9.1.0 in /superset-frontend ( #34942 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:25:19 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fa5b0d7281
chore(deps-dev): bump cross-env from 7.0.3 to 10.0.0 in /superset-frontend ( #34941 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:24:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1444ef36b9
chore(deps-dev): bump @babel/core from 7.27.7 to 7.28.3 in /superset-frontend ( #34940 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:24:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
15d2f22eb4
chore(deps): bump react-virtualized-auto-sizer and @types/react-virtualized-auto-sizer in /superset-frontend ( #34938 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:23:39 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
355d7e1ee5
chore(deps-dev): bump eslint from 9.30.0 to 9.34.0 in /superset-websocket ( #34936 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 10:21:54 -07:00
JUST.in DO IT
448a28545b
fix(ui-core): Invalid postTransform process ( #34874 )
2025-09-03 10:17:19 -07:00
JUST.in DO IT
cefd046ea0
fix(sqllab): autocomplete and delete tabs ( #34781 )
2025-09-03 10:16:51 -07:00
b0d3f0f0d4
feat: add customizable brand spinners with theme integration ( #34764 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2025-09-03 08:28:59 -07:00
Michael S. Molina
b7a193d53e
fix: apache-superset-extensions-cli exported files ( #34990 )
2025-09-03 08:20:24 -03:00
Gabriel Torres Ruiz
0a75bac2a1
fix(error-handling): jinja2 error handling improvements ( #34803 )
2025-09-02 17:29:07 -04:00
Vitor Avila
0de5b28716
fix(databricks): string escaper v2 ( #34991 )
2025-09-02 18:11:45 -03:00
Evan Rusackas and Claude
b5ae402c12
fix(charts): Handle virtual dataset names without schema prefix correctly ( #34760 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-02 12:16:51 -07:00
Evan Rusackas and Claude
682cdcc3e0
fix(echarts): Display NULL values in categorical x-axis for bar charts ( #34761 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-02 12:16:37 -07:00
Mehmet Salih Yavuz
5dba59b6a4
fix(ChartCreation): Translate chart description ( #34918 )
2025-09-02 21:34:54 +03:00
Sam Firke
71242dc6dd
docs(alerts & reports): update how to get headless browser ( #34908 )
2025-09-02 14:05:57 -04:00
Daniel Vaz Gaspar
b2f8803486
fix: playwright feature flag evaluation ( #34978 )
2025-09-02 10:44:22 -07:00
Gabriel Torres Ruiz
744fa1f54c
fix(TimeTable): use type-only export for TableChartProps to resolve webpack warnings ( #34989 )
2025-09-02 10:43:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f0ff972f0e
chore(deps-dev): bump eslint-plugin-import from 2.31.0 to 2.32.0 in /superset-frontend ( #34931 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-02 10:30:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ba838b6aeb
chore(deps): bump @mdx-js/react from 3.1.0 to 3.1.1 in /docs ( #34928 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-02 10:29:52 -07:00
Gabriel Torres Ruiz
6a4b1df3a2
fix(dashboard): table charts render correctly after tab switch and refresh ( #34975 )
2025-09-02 10:29:42 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0a76f84142
chore(deps): bump caniuse-lite from 1.0.30001735 to 1.0.30001739 in /docs ( #34921 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-02 10:28:12 -07:00
Michael S. Molina
9bcc62f210
fix: Skip coverage for @apache-superset/core ( #34958 )
2025-09-02 12:58:55 -03:00
Michael S. Molina
322442d5be
fix: apache-superset-core exported packages ( #34977 )
2025-09-02 12:58:34 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
92879e6b32
chore(deps-dev): bump eslint from 9.33.0 to 9.34.0 in /docs ( #34929 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-02 08:20:54 -07:00
Beto Dealmeida
fad3cb3162
fix: Athena quoting ( #34895 )
2025-09-02 10:09:28 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4d040006b6
chore(deps-dev): bump typescript from 5.8.3 to 5.9.2 in /docs ( #34923 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-02 06:38:03 -07:00
Fabian Halkivaha
6e7cb521ba
chore(deps): upgrade databricks connectors ( #34692 )
2025-09-02 06:37:05 -07:00
Maxime Beauchemin
bc9ec6ac63
fix: revert mistake setting TALISMAN_ENABLED=False ( #34909 )
2025-09-02 06:34:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b9cbf2e766
chore(deps-dev): bump lerna from 8.2.1 to 8.2.3 in /superset-frontend ( #34954 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-02 06:32:36 -07:00
Gabriel Torres Ruiz
d183969744
fix(theming): fix TimeTable chart issues ( #34868 )
2025-09-02 13:48:13 +03:00
Maxime Beauchemin and Claude
4695be5cc5
fix: complete theme management system import/export ( #34850 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-01 15:44:01 -07:00
Michael S. Molina
c1a3606774
fix: Update @apache-superset/core reference in package-lock.json ( #34924 )
2025-09-01 13:21:09 -03:00
Kamil Gabryjelski and Claude
175835138c
fix: Improve table layout and column sizing ( #34887 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-09-01 11:31:25 +03:00
Danylo Korostil
077724c2d2
feat(api): dataset read API uuid support ( #34836 )
2025-08-29 17:21:24 -07:00
Maxime Beauchemin and Claude
6b69dc42dc
fix: add --without-threads flag to Flask dev server for DuckDB compatibility ( #34907 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-29 12:29:15 -07:00
Sam Firke
c5a84c0985
fix(drilling): drill by pagination works with MSSQL data source, cont. ( #34724 )
2025-08-29 12:23:59 -07:00
SBIN2010
dc7a8844eb
feat(pie): add sort legend ( #34323 )
2025-08-29 12:19:14 -07:00
Vitor Avila
54f071138c
fix: Chart execution for Databricks ( #34906 )
2025-08-29 15:35:00 -03:00
Maxime Beauchemin and Claude
812374b31b
feat: Integrate Superset Showtime GitHub Actions workflows ( #34833 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-29 09:17:42 -07:00
Kamil Gabryjelski
e463743fcf
fix: Filter bar orientation submenu should not be highlighted ( #34900 )
2025-08-29 13:11:24 +02:00
Joe Li and Michael S. Molina
1d9e17df14
chore(docs): update files for release 4.1.4 ( #34890 )
...
Co-authored-by: Michael S. Molina <michael.s.molina@gmail.com >
2025-08-28 12:58:53 -07:00
Michael S. Molina
bcf156c969
fix: Rename apache-superset-cli to apache-superset-extensions-cli ( #34883 )
2025-08-28 14:40:09 -03:00
Joe Li and Claude
ebfb14c353
fix(ConfirmStatusChange): remove deprecated event.persist() to fix headless browser crashes ( #34864 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-28 09:36:15 -07:00
Joe Li and Claude
7946ec003f
fix(tests): Improve MessageChannel mocking to prevent worker force exits ( #34878 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-28 09:31:50 -07:00
Kamil Gabryjelski
665a11f821
fix: SelectControl default sort numeric choices by value ( #34858 )
2025-08-28 15:14:45 +02:00
Kamil Gabryjelski
5566eb8dd6
fix: Undefined error when viewing query in Explore + visual fixes ( #34869 )
2025-08-28 12:40:29 +02:00
Joe Li and Claude
836540e8c9
fix(tests): Mock MessageChannel to prevent Jest hanging from rc-overflow ( #34871 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-27 22:50:08 -07:00
Joe Li and Claude
b558b34faf
fix: Update apache-superset-core dependency to accept rc1 version ( #34872 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-27 16:58:40 -07:00
Michael S. Molina
30c72ba0a3
chore: Adds README and CHANGELOG to apache-superset-core and apache-superset-cli ( #34867 )
2025-08-27 15:49:29 -03:00
Michael S. Molina
d8a3d29ad9
chore: Adds a README and CHANGELOG to @apache-superset/core ( #34866 )
2025-08-27 15:49:11 -03:00
Phil Dumbreck
53ce530a46
ci: Add Python 3.12 images to Docker Hub ( #34853 )
2025-08-27 09:13:26 -07:00
Evan Rusackas
06264f07fb
chore(npm): updating apache-superset/core package name and version to test releasing. ( #34862 )
2025-08-27 10:35:44 -03:00
Kamil Gabryjelski
ce3b93d8a0
perf: Use react-router to toggle fullscreen mode on dashboard ( #34857 )
2025-08-27 11:11:03 +02:00
Kamil Gabryjelski
b74a244950
fix: Remove the underline from the right section of main menu ( #34855 )
2025-08-27 11:10:49 +02:00
Kamil Gabryjelski
ab58b0a8a3
fix: DB icon sizes in database add modal ( #34854 )
2025-08-27 11:10:38 +02:00
Maxime Beauchemin and Claude
659db162d6
fix(docker): remove --with-threads from remaining dev workflows for DuckDB compatibility ( #34851 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-26 09:16:03 -07:00
Beto Dealmeida
cb24737825
feat(bigquery): show materialized views ( #34766 )
2025-08-26 11:21:43 -04:00
Kamil Gabryjelski
97b35a4640
fix(dashboard): Anchor link positions ( #34843 )
2025-08-26 17:20:09 +02:00
Daniel Vaz Gaspar
54af1cb2c8
chore: bump FAB to 4.8.1 ( #34838 )
2025-08-26 11:14:05 +01:00
Aleksey Karpov
b8c2f7db47
build(docker): update base debian image to 13 (trixie) ( #34821 )
2025-08-25 19:10:23 -07:00
Maxime Beauchemin and Claude
4701e78f1f
fix(docker): configure gunicorn for DuckDB thread safety in docker-compose-light ( #34848 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-25 18:19:24 -07:00
JUST.in DO IT
b89b0bdf5d
fix(sqllab): Missing executed sql value in the result table ( #34846 )
2025-08-25 13:24:29 -07:00
47414e18d4
feat: Use DuckDB for examples data in Docker development environment ( #34831 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
2025-08-25 12:37:28 -07:00
Vitor Avila
9c9588cce6
fix: Avoid dataset drill request if no perm ( #34665 )
2025-08-25 14:55:08 -03:00
Vitor Avila
471d9fe737
fix: Add dataset ID to file name on exports ( #34782 )
2025-08-25 14:54:27 -03:00
Rafael Benitez
b381992a75
fix(theming): explore chart type style fixes, nav right menu spacing fixed ( #34795 )
2025-08-25 09:29:35 -07:00
Beto Dealmeida
1204507d68
fix: make get_image() always return BytesIO ( #34801 )
2025-08-25 09:01:36 -04:00
Kamil Gabryjelski
c7779578f9
chore: Add instruction for LLMs to use antd theme tokens ( #34800 )
2025-08-25 14:03:47 +02:00
Kamil Gabryjelski
b225432c55
fix: Unexpected overflow ellipsis dots after status icon in Dashboard list ( #34798 )
2025-08-25 14:03:31 +02:00
Kamil Gabryjelski
547f297171
fix(echarts): Series labels hard to read in dark mode ( #34815 )
2025-08-25 14:03:00 +02:00
Joe Li and Claude
5c3c2599db
fix(Icons): Add missing data-test and aria-label attributes to custom icons ( #34809 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-24 16:02:50 -07:00
a8be5a5a0c
chore: Extensions architecture POC ( #31934 )
...
Co-authored-by: Ville Brofeldt <ville.brofeldt@apple.com >
Co-authored-by: Ville Brofeldt <ville@Villes-MacBook-Pro-2024.local >
Co-authored-by: Ville Brofeldt <v_brofeldt@apple.com >
2025-08-22 21:25:52 -03:00
Michael S. Molina
e1234b2264
fix: User-provided Jinja template parameters causing SQL parsing errors ( #34802 )
2025-08-22 14:39:14 -03:00
JUST.in DO IT
75af53dc3d
fix: customize column description limit size in db_engine_spec ( #34808 )
2025-08-22 10:00:39 -07:00
Evan Rusackas and Claude
0a45a89786
feat(docs): Docusaurus multi-versioning, Developer Portal starter kit ( #34271 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-22 09:53:01 -07:00
Mehmet Salih Yavuz
2b2cc96f11
fix(DetailsPanel): Applied filters colors ( #34790 )
2025-08-22 13:10:10 +03:00
Kamil Gabryjelski
59c01e016d
fix(native-filters): Low contrast of empty state in dark mode ( #34812 )
2025-08-22 12:28:06 +03:00
Kamil Gabryjelski
3895b8b127
fix: Low contrast in viz creator selected tag in dark mode ( #34811 )
2025-08-22 12:25:35 +03:00
Kamil Gabryjelski
da8c0f94e6
fix: Remove border around textarea in dashboard edit mode ( #34814 )
2025-08-22 12:24:53 +03:00
Kamil Gabryjelski
6908a733a0
fix: Misaligned global controls in Table chart ( #34799 )
2025-08-22 10:07:39 +02:00
Maxime Beauchemin and Claude
e8e1466185
feat: refactor modals to use consistent design patterns ( #34711 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-21 16:19:12 -07:00
Gabriel Torres Ruiz
ff1f7b64e2
fix(dashboard): enable undo/redo buttons for layout changes ( #34777 )
2025-08-21 15:08:57 -07:00
JUST.in DO IT
63bb1d55a4
feat(sqllab): introduce splitter for adjusting sidebar and query panel ( #34767 )
2025-08-21 12:47:25 -07:00
Maxime Beauchemin and Claude
c568d463b9
fix: Check migration status before initializing database-dependent features ( #34679 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-21 11:25:47 -07:00
Tomáš Karela Procházka
179a6f2cfe
fix: default value in run-server.sh ( #34719 )
2025-08-21 20:45:32 +03:00
Elizabeth Thompson
695a20d009
fix: catch no table error ( #32640 )
2025-08-21 10:40:44 -07:00
Mehmet Salih Yavuz
e908775fb2
fix(PivotExcelExport): select correct chart for export ( #34793 )
2025-08-21 20:36:29 +03:00
Joe Li and Claude
af05396227
fix(tests): make SingleStore test_adjust_engine_params version-agnostic ( #34780 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-21 09:30:02 -07:00
amaannawab923
277f03c207
fix(webpack): Bump webpack dev-server to handle Errors on Firefox where error object is not defined ( #34791 )
2025-08-21 15:59:28 +03:00
Evan Rusackas and Claude
48699a7194
fix(sqllab): Fix save query modal closing prematurely on new tabs ( #34765 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-21 14:39:47 +03:00
amaannawab923
b7d076bfee
feat(deck.gl): Enables Dark Mode for deck gl charts through Carto DB OSM maps ( #34697 )
2025-08-20 18:41:58 -07:00
Elizabeth Thompson
009b99bfbb
chore: catch sqlalchemy error ( #34768 )
2025-08-20 18:00:06 -07:00
PolinaFam and Polina Fam
b45141b2a1
fix(translations): Fix translation of time-related strings like "7 seconds ago", "a minute ago", etc ( #34051 )
...
Co-authored-by: Polina Fam <pfam@ptsecurity.com >
2025-08-20 15:20:35 -07:00
Maxime Beauchemin and Claude
4683a0827d
feat(validation): Add SQL expression validation in popovers ( #34642 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-20 15:10:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ffb617a4c8
chore(deps): bump react-ace from 10.1.0 to 14.0.1 in /superset-frontend ( #34486 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-20 14:52:39 -07:00
9de1706baa
fix: Fix TypeError in Slice.get() method when using filter_by() with BinaryExpression ( #34769 )
...
Co-authored-by: Claude <noreply@anthropic.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-08-20 11:22:54 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a95566f114
chore(deps): bump mermaid from 11.6.0 to 11.10.0 in /docs ( #34775 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-20 10:26:55 -07:00
Beto Dealmeida
a82e310600
feat: improve perf of CSV uploads ( #34603 )
2025-08-20 08:53:02 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
691926f0e1
chore(deps): bump brace-expansion in /superset-frontend ( #34744 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-19 14:05:57 -07:00
Evan Rusackas and Claude
a42185cd3b
fix(duckdb): Add support for DuckDB-specific numeric types ( #34743 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-19 10:19:05 -07:00
JUST.in DO IT
89eb7b207c
fix(sqllab): Invisible grid table due to the invalid height ( #34683 )
2025-08-19 10:09:39 -07:00
Michael S. Molina
f99022b242
fix: Users can't skip column sync when saving virtual datasets ( #34757 )
2025-08-19 13:20:52 -03:00
JUST.in DO IT
f8b9e3ace4
fix(sqllab): Reduce flushing caused by ID updates ( #34720 )
2025-08-19 09:16:57 -07:00
JUST.in DO IT
9cbe5a90b8
chore(saved_query): Copy link to clipboard before redirect to edit ( #34567 ) ( #34758 )
2025-08-19 09:16:40 -07:00
Mehmet Salih Yavuz
f7fe617f4c
fix(RightMenu): Move RightMenu carets to the right side ( #34756 )
2025-08-19 08:41:03 -07:00
Maxime Beauchemin and Claude
e6c8343fd0
feat(matrixify): implement matrix of any charts as core Superset feature ( #34526 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-19 08:36:55 -07:00
Kamil Gabryjelski
6969f2cf7a
fix: Highlight outline of numerical range and time range filters ( #34705 )
2025-08-19 14:16:03 +02:00
SBIN2010
852adaa6cc
feat: conditional formatting improvements in tables ( #34330 )
2025-08-18 15:13:16 -07:00
Maxime Beauchemin and Claude
1f482b42eb
feat: completely migrate from DeprecatedThemeColors to Antd semantic tokens ( #34732 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-18 14:04:26 -07:00
Danylo Korostil
31e2143c84
feat(api): Added uuid filed support to dataset, chart, dashboard API ( #29573 )
2025-08-18 13:05:16 -07:00
Rafael Benitez
b89e0d74be
fix(theming): Some visual issues ( #34676 )
2025-08-18 20:15:17 +03:00
Fabian Halkivaha
1127ab6c07
chore(deps): downgrade pyarrow to v16 ( #34693 )
2025-08-18 10:05:42 -07:00
Kamil Gabryjelski
8d210fc7b8
fix: Table chart server side pagination not working on dashboard ( #34660 )
2025-08-18 18:43:44 +02:00
Rafael Benitez
8acb2fb700
fix(dashboard): Remove Tab from Dashboard Confirm Modal themed ( #34708 )
2025-08-18 09:40:34 -07:00
Rafael Benitez
a3cbc9755f
fix(dashboard): Titles tooltip flickering ( #34706 )
2025-08-18 18:04:03 +03:00
Daniel Vaz Gaspar
28788fd1fa
fix: centralize cache timeout -1 logic to prevent caching ( #34654 )
2025-08-18 08:45:20 +01:00
amaannawab923
21790814db
fix(ag-grid): Fix broken string column filters in AG Grid Table V2 ( #34686 )
2025-08-18 08:37:35 +03:00
ff6dc03ddf
fix(dashboard): update cross filter scoping chart id references during dashboard import ( #34418 )
...
Co-authored-by: chanduapple <80615671+chanduapple@users.noreply.github.com >
Co-authored-by: chandrasekhar jandhyam <chandrasekhar.jandhyam@digital.ai >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-08-18 01:41:38 -03:00
Maxime Beauchemin and Claude
fbcdf6909c
feat: replace react-color with AntD ColorPicker for theming support ( #34712 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-15 11:05:30 -07:00
Michael S. Molina
fc95c4fc89
fix: Timeseries annotation layers ( #34709 )
2025-08-15 12:59:30 -03:00
Richard Fogaca Nienkotter
3a007f6284
fix(deck.gl): add webpack rule to define module global for deck.gl charts ( #34690 )
2025-08-15 16:34:47 +03:00
sha174n
2403d8d584
docs: CVEs added to 5.0.0 and 4.1.3 documentation ( #34701 )
2025-08-14 10:34:16 -07:00
Kamil Gabryjelski
47874318df
fix: Invalid error tooltip if control label is function ( #34698 )
2025-08-14 16:52:50 +02:00
Kamil Gabryjelski
f6353bd1e8
fix: Bar chart crash when switching from Big Number ( #34671 )
2025-08-14 15:24:23 +02:00
JUST.in DO IT
1101182654
fix(bootstrapData): Missing application_root data throws an error ( #34680 )
2025-08-14 08:59:19 -03:00
Maxime Beauchemin and Claude
d79fc92a1a
fix(theming): Fix ag-grid theming regression in SQL Lab ( #34675 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-13 16:21:47 -07:00
JUST.in DO IT
bce476c4a2
feat(extension): Add extension for chart header ( #34678 )
2025-08-13 14:40:42 -07:00
Mehmet Salih Yavuz
ecfb9f7d7c
fix(row_level_security): Correct api response code for update ( #34672 )
2025-08-13 23:51:10 +03:00
Kasia and Claude
58ebc57285
feat(sqllab): improve SaveDatasetModal design with proper theme spacing ( #34658 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-13 20:50:54 +02:00
JUST.in DO IT
1a57e50bd6
refactor: Migrate ExploreChartPanel to typescript ( #34606 )
2025-08-13 09:35:01 -07:00
Mehmet Salih Yavuz
f3884a2db8
fix(theming): Theming visual fixes p5 ( #34585 )
2025-08-13 15:03:01 +03:00
Mehmet Salih Yavuz
cb899f691b
fix(csv_tests): Import from utils ( #34664 )
2025-08-12 15:55:53 -07:00
Evan Rusackas and Claude
b25722ee2b
fix(sqllab): show actual execution duration in Query History ( #34511 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-12 14:34:34 -07:00
Martyn Gigg
34e10f5972
fix(superset-ui-core): Include appRoot in endpoint of SupersetClientClass.postForm action ( #34395 )
2025-08-12 14:26:04 -07:00
Beto Dealmeida
e88096f75c
fix(presto): return proper data type for column ( #34304 )
2025-08-12 14:13:59 -07:00
Le Xich Long
6d827cf905
fix(security): grant TableSchemaView to only sql_lab role ( #32340 )
2025-08-12 13:45:36 -07:00
natilehrer
ab13166e41
fix: activity table delta time ( #33503 )
2025-08-12 13:39:31 -07:00
Dog foot ruler
89f09ea57c
fix(open-api): Add missing FormatQueryPayloadSchema and DashboardScreenshotPostSchema to open-api component schemas ( #33202 )
2025-08-12 13:33:23 -07:00
Eugene Bikkinin
baec438be9
feat(filter_state): Added @api and @has_access_api to all methods of filter_state API. ( #27086 )
2025-08-12 13:30:39 -07:00
Maxime Beauchemin and Claude
5309edf3a5
feat: Implement UI-based system theme administration ( #34560 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-12 13:27:48 -07:00
Maxime Beauchemin
f50cbd7958
feat: add @sadpandajoe to migrations CODEOWNERS ( #34663 )
2025-08-12 13:26:33 -07:00
Elizabeth Thompson
2465ab4a98
chore: add more csv tests ( #32663 )
2025-08-12 13:26:10 -07:00
Đỗ Trọng Hải
1947d4da76
fix(daos/tag): prevent non-unique tags getting created along with unique ones ( #32405 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-08-12 13:21:42 -07:00
e452f5b70d
fix(install): set SUPERSET_VERSION_RC at the right time ( #21083 )
...
Co-authored-by: Joel Häberli <habej2@bfh.ch >
Co-authored-by: Evan Rusackas <evan@preset.io >
2025-08-12 13:11:12 -07:00
Kasia and Claude
698de7a38d
feat(dashboard): change chart background option from "White" to "Solid" ( #34655 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-12 10:21:23 -07:00
Kamil Gabryjelski
e2a9f2dead
chore: Increase memory limit on webpack ts checker plugin ( #34653 )
2025-08-12 18:55:38 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1f80725b0e
chore(deps-dev): bump eslint-import-resolver-typescript from 3.7.0 to 4.4.4 in /superset-frontend ( #34460 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 09:04:04 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c3cb5c7e99
chore(deps): bump tmp from 0.2.1 to 0.2.4 in /superset-frontend/cypress-base ( #34581 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 09:00:34 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f7dd0659bf
chore(deps): bump tmp and inquirer in /superset-frontend ( #34646 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 09:00:10 -07:00
Geido
3c17ff8445
chore: Refactor Menu.Item and cleanup console errors ( #34536 )
2025-08-12 16:57:23 +03:00
Kamil Gabryjelski
57d0e78d40
feat: Tiled screenshots in Playwright reports ( #34561 )
2025-08-12 08:09:01 +02:00
Gabriel Torres Ruiz
ae986903b3
fix(webpack): webpack warnings ( #34645 )
2025-08-11 22:40:11 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6964f9bdbf
chore(deps): bump googleapis from 130.0.0 to 154.1.0 in /superset-frontend ( #34481 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 22:39:54 -07:00
PolinaFam and Polina Fam
9efa9898ff
fix: update Russian translations ( #34005 )
...
Co-authored-by: Polina Fam <pfam@ptsecurity.com >
2025-08-11 22:39:38 -07:00
Vitor Avila
22b44421a4
fix: Fix Slice import on has_drill_by_access ( #34644 )
2025-08-11 19:51:15 -03:00
Vitor Avila
02924b3c74
fix: Slack channels and Color Palettes search ( #34641 )
2025-08-11 15:53:28 -03:00
Elizabeth Thompson
99539c786e
fix(initialization): prevent startup failures when database tables don't exist ( #34584 )
2025-08-11 10:49:52 -07:00
Evan Rusackas and Claude
5e621ceb34
fix: Remove deprecated @types/classnames package ( #34625 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-11 10:23:05 -07:00
Rafael Benitez
370a24da81
fix(Dashboards): Tabs highlight and dataset contrast in darkmode issues ( #34602 )
2025-08-11 18:42:17 +02:00
Vitor Avila
732506b3fa
fix: Use labels in Drill to Detail ( #34620 )
2025-08-11 10:25:25 -03:00
Mehmet Salih Yavuz
1af9c8dba2
fix(DatabaseModal): Don't set activeKey to undefined repeatedly ( #34636 )
2025-08-11 16:07:47 +03:00
Joe Li and Claude
1dc22a9002
chore: add tests to DatabaseConnectionForm/EncryptedField ( #34442 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-08 14:09:30 -07:00
Abhinav Kumar
ad592c717e
fix: Reset description height to zero when chart is not expanded ( #33843 )
2025-08-07 12:51:46 -07:00
SBIN2010
38e15196f2
fix(Heatmap): addin x axis label rotation ( #34239 )
2025-08-07 12:27:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8131c24acd
chore(deps): bump ws and @types/ws in /superset-websocket ( #34450 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-07 12:16:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
952b620465
chore(deps-dev): bump @types/node from 22.10.3 to 24.1.0 in /superset-websocket ( #34448 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-07 12:16:12 -07:00
Oliver Schlüter
f3e3bd0348
fix(db_engine_specs): generate correct boolean filter SQL syntax for Athena compatibility ( #34598 )
2025-08-07 18:39:31 +03:00
Brandon Kaplan
1e1310dbd8
chore(helm): bump app version to 5.0.0 ( #33889 )
2025-08-07 07:32:01 -07:00
Mehmet Salih Yavuz
adaae8ba15
fix(Timeshift): Determine temporal column correctly ( #34582 )
2025-08-07 15:20:34 +03:00
Joe Li and Claude
a66b7e98e0
feat: Add ESLint rule to enforce sentence case in button text ( #34434 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-06 13:13:36 -07:00
JUST.in DO IT
3e12d97e8e
fix(echart): broken aggregator due to bigint value ( #34580 )
2025-08-06 15:22:04 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
00304f77e1
chore(deps-dev): bump globals from 16.0.0 to 16.3.0 in /superset-websocket ( #34452 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-06 09:21:18 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e88db9f403
chore(deps): update re-resizable requirement from ^6.10.1 to ^6.11.2 in /superset-frontend/packages/superset-ui-core ( #34453 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-06 09:12:41 -07:00
JUST.in DO IT
53e9cf6d17
fix: navigate to SQL Lab due to router api updates ( #34569 )
2025-08-06 11:54:10 -03:00
Damian Pendrak
5a004590e0
feat(deckgl): add selected cross-filter indication ( #34322 )
2025-08-06 17:53:54 +03:00
Levis Mbote
53503e32ae
fix(Table chart): fix percentage metric column ( #34175 )
2025-08-06 17:51:02 +03:00
Maxime Beauchemin and Claude
246181a546
feat(docker): Add pytest support to docker-compose-light.yml ( #34373 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-06 00:17:50 -04:00
JUST.in DO IT
6f5d9c989a
fix(echarts): rename time series shifted without dimensions ( #34541 )
2025-08-05 18:29:55 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8515792b04
chore(deps): update @deck.gl/aggregation-layers requirement from ^9.1.13 to ^9.1.14 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #34468 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 17:51:03 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
923b2b1d77
chore(deps-dev): bump @babel/runtime-corejs3 from 7.26.7 to 7.28.2 in /superset-frontend ( #34464 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 17:46:27 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
486b0122d0
chore(deps-dev): update jest requirement from ^30.0.4 to ^30.0.5 in /superset-frontend/plugins/plugin-chart-pivot-table ( #34462 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 17:46:01 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ae090fa74c
chore(deps-dev): update @types/prop-types requirement from ^15.7.2 to ^15.7.15 in /superset-frontend/packages/superset-ui-core ( #34451 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 17:45:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35ec6d308a
chore(deps-dev): update jest requirement from ^30.0.4 to ^30.0.5 in /superset-frontend/packages/generator-superset ( #34457 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:43:18 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c62a6f5cee
chore(deps): bump @deck.gl/react from 9.1.13 to 9.1.14 in /superset-frontend ( #34461 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:42:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cdd140b3cc
chore(deps-dev): update jest requirement from ^30.0.4 to ^30.0.5 in /superset-frontend/plugins/plugin-chart-handlebars ( #34501 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:31:23 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
09cf49c2ba
chore(deps): bump @babel/runtime from 7.26.10 to 7.28.2 in /superset-frontend ( #34472 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:30:21 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ac4b4c7646
chore(deps-dev): bump eslint-config-prettier from 10.1.5 to 10.1.8 in /superset-websocket ( #34454 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:28:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d0a6c78966
chore(deps): bump react-draggable from 4.4.6 to 4.5.0 in /superset-frontend ( #34474 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:19:42 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
65f2071aa4
chore(deps): bump react-lines-ellipsis from 0.15.4 to 0.16.1 in /superset-frontend ( #34483 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:09:17 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e8f37a3f89
chore(deps-dev): bump eslint from 9.31.0 to 9.32.0 in /docs ( #34492 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:04:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19d229ea12
chore(deps-dev): bump typescript-eslint from 8.37.0 to 8.38.0 in /docs ( #34493 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:03:50 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
622a62d7a1
chore(deps): update react requirement from ^19.1.0 to ^19.1.1 in /superset-frontend/plugins/legacy-plugin-chart-chord ( #34502 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 16:01:19 -07:00
yousoph and Claude
4a556f4ac4
fix: update copy text for better capitalization and abbreviation standards ( #34508 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-05 14:40:52 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7a1839ba1b
chore(deps): bump @rjsf/validator-ajv8 from 5.24.9 to 5.24.12 in /superset-frontend ( #34487 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 14:05:42 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8f2afb8f4d
chore(deps-dev): bump @babel/preset-react from 7.26.3 to 7.27.1 in /superset-frontend ( #34489 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 14:03:11 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
02586981da
chore(deps-dev): bump eslint-plugin-prettier from 5.5.1 to 5.5.3 in /docs ( #34496 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 13:59:30 -07:00
JUST.in DO IT
8700a0b939
fix(table chart): render bigint value in a raw mode ( #34556 )
2025-08-05 13:11:28 -07:00
Mehmet Salih Yavuz
d843fef2ce
fix(theming): More theming bugs/regressions ( #34507 )
2025-08-05 23:07:35 +03:00
Vitor Avila
f45654c03c
chore: Rename dataset creation buttons ( #34544 )
2025-08-05 15:24:51 -03:00
Mehmet Salih Yavuz
761daec53d
feat(timeshift): Add support for date range timeshifts ( #34375 )
2025-08-05 19:31:40 +03:00
Vitor Avila
407fb67f1e
fix: Avoid null scrollLeft in VirtualTable ( #34545 )
2025-08-05 09:25:47 -03:00
Vitor Avila
49689eec6c
feat: Enable drilling in embedded ( #34319 )
2025-08-05 02:23:00 -03:00
Maxime Beauchemin
791ea9860d
fix(explore): Fix missing await for async buildV1ChartDataPayload calls ( #34528 )
2025-08-04 15:08:34 -07:00
JUST.in DO IT
2f8939d229
fix(native filters): throws an error when a chart containing a bigint value ( #34539 )
2025-08-04 16:17:06 -03:00
JUST.in DO IT
ccf6290120
chore(core): Add drawer to core ui components ( #34515 )
2025-08-04 11:06:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96a1aa60e8
chore(deps): update gh-pages requirement from ^6.2.0 to ^6.3.0 in /superset-frontend/packages/superset-ui-demo ( #34444 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-03 00:38:12 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2ea0368c2d
chore(deps-dev): bump @types/classnames from 2.3.0 to 2.3.4 in /superset-frontend ( #34478 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-03 00:36:27 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9e407e4e80
chore(deps): bump dom-to-image-more from 3.5.0 to 3.6.0 in /superset-frontend ( #34482 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-03 00:11:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
360e58c181
chore(deps): bump @deck.gl/core from 9.1.13 to 9.1.14 in /superset-frontend ( #34480 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-03 00:11:13 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22d5eb7835
chore(deps-dev): bump tsx from 4.19.4 to 4.20.3 in /superset-frontend ( #34484 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-03 00:10:12 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7c4a77a909
chore(deps-dev): bump @babel/compat-data from 7.27.2 to 7.28.0 in /superset-frontend ( #34485 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-03 00:09:55 -07:00
Evan Rusackas and Claude
4e209e51d0
fix(sqllab): prevent strings with angle brackets from being hidden ( #34512 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-02 22:53:17 -07:00
Ville Brofeldt
7191ae55c8
fix: docs eslint command ( #34520 )
2025-08-02 16:49:23 -07:00
Ville Brofeldt
17725ebc83
chore: use logger on all migrations ( #34521 )
2025-08-02 12:19:50 -07:00
JUST.in DO IT
1a7a381bd5
fix(echart): initial chart animation ( #34516 )
2025-08-02 08:41:53 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
daf207e5c2
chore(deps): bump less from 4.3.0 to 4.4.0 in /docs ( #34494 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 17:10:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
72294c569f
chore(deps): bump antd from 5.26.3 to 5.26.7 in /docs ( #34495 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 17:10:39 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
792dd08d38
chore(deps-dev): bump @eslint/js from 9.31.0 to 9.32.0 in /docs ( #34497 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 17:09:58 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1e40e7d02b
chore(deps): bump swagger-ui-react from 5.26.0 to 5.27.1 in /docs ( #34498 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 17:09:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7e98c75f01
chore(deps-dev): bump eslint-config-prettier from 10.1.5 to 10.1.8 in /docs ( #34499 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 17:08:40 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b18de05ea4
chore(deps-dev): bump webpack from 5.99.9 to 5.101.0 in /docs ( #34500 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 17:08:09 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9300652277
chore(deps): bump actions/first-interaction from 1 to 2 ( #34459 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 14:02:25 -07:00
yousoph and Claude
7c2ec4ca5f
fix: Update table chart configuration labels to sentence case ( #34438 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-01 12:02:42 -07:00
Evan Rusackas
6a83b6fd87
fix(pie chart): Total now positioned correctly with all Legend positions, and respects theming ( #34435 )
2025-08-01 12:00:23 -07:00
Evan Rusackas and Claude
659cd33749
fix(echarts): resolve bar chart X-axis time formatting stuck on adaptive ( #34436 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-08-01 09:55:20 -07:00
Maxime Beauchemin and Claude
cb27d5fe8d
chore: proper current_app.config proxy usage ( #34345 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-31 19:27:42 -07:00
Joe Li and Claude
6c9cda758a
chore: update chart list e2e and component tests ( #34393 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-31 17:12:55 -07:00
Mehmet Salih Yavuz
967134f540
fix(theming): Visual bugs p-3 ( #34424 )
2025-08-01 00:26:38 +03:00
25bb353f9d
chore(deps-dev): update jest requirement from ^30.0.2 to ^30.0.4 in /superset-frontend/packages/generator-superset ( #34039 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-07-31 13:24:18 -07:00
Beto Dealmeida
9cf2472291
fix: time grain and DB dropdowns ( #34431 )
2025-07-31 16:10:04 -04:00
ObservabilityTeam and Muhammad Musfir
cf5b976659
fix(dashboard): adds dependent filter select first value fixes ( #34137 )
...
Co-authored-by: Muhammad Musfir <muhammad.musfir@de-cix.net >
2025-07-31 12:39:30 -07:00
yousoph and Claude
70394e79ef
feat: Add configurable query identifiers for Mixed Timeseries charts ( #34406 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-31 12:16:12 -07:00
Kasia and Claude
ea64f3122e
chore: Change button labels to sentence case ( #34432 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-31 12:04:33 -07:00
Kasia and Claude
50197fc33e
chore: Add bottom border to top navigation menu ( #34429 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-31 12:03:38 -07:00
Maxime Beauchemin and Claude
c480fa7fcf
fix(migrations): prevent theme seeding before themes table exists ( #34433 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-31 11:35:34 -07:00
Beto Dealmeida
6fc734da51
fix: prevent anonymous code in Postgres ( #34412 )
2025-07-31 08:33:34 -04:00
JUST.in DO IT
762a11b0bb
fix(sqllab): access legacy kv record ( #34411 )
2025-07-31 08:58:10 -03:00
Michael Gerber
f168dd69a8
fix(sunburst): Fix sunburst chart cross-filter logic ( #31495 )
2025-07-30 18:47:02 -07:00
Maxime Beauchemin
becd0b8883
feat: add runtime custom font loading via configuration ( #34416 )
2025-07-30 18:01:37 -07:00
Maxime Beauchemin and Claude
fd4570625a
fix(theme-list): reorder buttons to place import leftmost ( #34389 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-30 14:17:23 -07:00
Maxime Beauchemin and Claude
54a5b58e40
feat(codespaces): auto-setup Python venv with dependencies ( #34409 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-30 13:57:54 -07:00
Mehmet Salih Yavuz and Diego Pucci
a611278e04
fix: Console errors from various sources ( #34178 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-07-30 23:32:32 +03:00
5c2eb0a68c
build(deps): bump reselect from 4.1.7 to 5.1.1 in /superset-frontend ( #30119 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2025-07-30 08:54:58 -07:00
0cbf4d5d4d
chore(deps): bump d3-scale from 3.3.0 to 4.0.2 in /superset-frontend/packages/superset-ui-core ( #31534 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2025-07-30 08:52:30 -07:00
Hari Kiran
6006a21378
docs(development): fix comment in the dockerfile ( #34391 )
2025-07-29 21:53:46 -07:00
Maxime Beauchemin and Claude
bf967d6ba4
fix(charts): Fix unquoted 'Others' literal in series limit GROUP BY clause ( #34390 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-29 17:36:10 -07:00
Hari Kiran
131ae5aa9d
docs(development): fix typo in the dockerfile ( #34387 )
2025-07-29 14:24:18 -07:00
Cesc Bausà
eca28582b6
feat(i18n): update Spanish translations (messages.po) ( #34206 )
2025-07-29 13:49:40 -07:00
Maxime Beauchemin and Claude
14e90a0f52
feat: Add GitHub Codespaces support with docker-compose-light ( #34376 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-29 13:10:17 -07:00
Maxime Beauchemin and Claude
a1c39d4906
feat(charts): Enable async buildQuery support for complex chart logic ( #34383 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-29 13:08:55 -07:00
Maxime Beauchemin
0964a8bb7a
fix(big number with trendline): running 2 identical queries for no good reason ( #34296 )
2025-07-29 13:07:28 -07:00
Beto Dealmeida
8de8f95a3c
feat: allow creating dataset without exploring ( #34380 )
2025-07-29 15:43:47 -04:00
Maxime Beauchemin
16db999067
fix: rate limiting issues with example data hosted on github.com ( #34381 )
2025-07-29 11:19:29 -07:00
Beto Dealmeida
972be15dda
feat: focus on text input when modal opens ( #34379 )
2025-07-29 14:01:10 -04:00
Maxime Beauchemin and Claude
c9e06714f8
fix: prevent theme initialization errors during fresh installs ( #34339 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-29 09:32:53 -07:00
Beto Dealmeida
32626ab707
fix: use catalog name on generated queries ( #34360 )
2025-07-29 12:30:46 -04:00
a9cd58508b
chore(deps): bump cookie and @types/cookie in /superset-websocket ( #34335 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2025-07-29 20:19:31 +07:00
Beto Dealmeida
122bb68e5a
fix: subquery alias in RLS ( #34374 )
2025-07-28 22:58:15 -04:00
Beto Dealmeida
914ce9aa4f
feat: read column metadata ( #34359 )
2025-07-28 22:57:57 -04:00
Gabriel Torres Ruiz
bb572983cd
feat(theming): Align embedded sdk with theme configs ( #34273 )
2025-07-28 19:26:17 -07:00
Đỗ Trọng Hải
ff76ab647f
build(deps): update ag-grid to non-breaking major v34 ( #34326 )
2025-07-29 07:46:55 +07:00
Mehmet Salih Yavuz
f554848c9f
fix(PivotTable): Render html in cells if allowRenderHtml is true ( #34351 )
2025-07-29 01:12:37 +03:00
Hari Kiran
dc0c389488
docs(development): fix 2 typos in the dockerfile ( #34341 )
2025-07-28 15:06:21 -07:00
Beto Dealmeida
22b3cc0480
chore: bump BigQuery dialect to 1.15.0 ( #34371 )
2025-07-28 16:39:18 -04:00
Maxime Beauchemin
604d72cc98
feat: introducing a docker-compose-light.yml for lighter development ( #34324 )
2025-07-28 09:27:07 -07:00
Enzo Martellucci
913e068113
style(FastVizSwitcher): Adjust padding for FastVizSwitcher selector ( #34317 )
2025-07-28 14:39:10 +03:00
Geido
1a4e2173f5
fix(NavBar): Add brand text back ( #34318 )
2025-07-28 12:19:14 +03:00
Ian McEwen
c49789167b
style(chart): restyle table pagination ( #34311 )
2025-07-27 19:39:10 -07:00
Maxime Beauchemin
1be2287b3a
feat(timeseries): enhance 'Series Limit' to support grouping the long tail ( #34308 )
2025-07-25 16:26:32 -07:00
Maxime Beauchemin and Mehmet Salih Yavuz
e741a3167f
feat: add a theme CRUD page to manage themes ( #34182 )
...
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-07-25 13:26:41 -07:00
Michael S. Molina
5f11f9097a
fix: Charts list is displaying empty dataset names when there's no schema ( #34315 )
2025-07-25 14:07:50 -03:00
Jan Suleiman
8783579aa8
fix(cartodiagram): add missing locales for rendering echarts ( #34268 )
2025-07-25 09:59:28 -07:00
Evan Rusackas
c25b4221f8
fix(npm): more reliable execution of npm run update-maps ( #34305 )
2025-07-25 13:48:05 -03:00
Pius Iniobong
9c771fb2ba
fix: preserve correct column order when table layout is changed with time comparison enabled ( #34300 )
2025-07-25 15:31:33 +03:00
sha174n
7f44992c4b
fix: enhance disallowed SQL functions list for improved security ( #33084 )
2025-07-24 16:36:32 -07:00
Beto Dealmeida
8df5860826
chore: bump sqlglot to latest version (27.3.0) ( #34302 )
2025-07-24 15:38:29 -07:00
Beto Dealmeida
b794b192d1
fix: return 422 on invalid SQL ( #34303 )
2025-07-24 16:40:56 -04:00
Maxime Beauchemin
3177131d52
feat: re-order CRUD list view action buttons ( #34294 )
2025-07-24 12:46:34 -07:00
Enzo Martellucci
89bf77b5c9
fix(theming): Fix visual regressions from theming P7 ( #34237 )
2025-07-24 19:57:50 +02:00
Maxime Beauchemin
30e5684006
fix: address numerous long-standing console errors (python & web) ( #34299 )
2025-07-24 09:50:26 -07:00
Maxime Beauchemin
3f8472ca7b
chore: move some rules from ruff -> pylint ( #34292 )
2025-07-24 09:40:49 -07:00
Beto Dealmeida
efa8cb6fa4
chore: improve sqlglot parsing ( #34270 )
2025-07-24 10:50:59 -04:00
Beto Dealmeida and Copilot
ab59b7e9b0
feat: make SupersetClient retry on 502-504 ( #34290 )
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-07-24 10:46:50 -04:00
Vitor Avila
c99843b13a
fix: Hide View in SQL Lab for users without access ( #34293 )
2025-07-24 10:45:31 -03:00
Fardin Mustaque
da55a6c94a
fix(chart-download): ensure full table or handlebar chart is captured in image export ( #34233 )
2025-07-24 15:47:44 +03:00
LisaHusband
7a1c056374
fix(charting): correctly categorize numeric columns with NULL values ( #34213 )
2025-07-24 15:46:58 +03:00
Michael S. Molina
1e5a4e9bdc
fix: Saved queries list break if one query can't be parsed ( #34289 )
2025-07-24 08:30:04 -03:00
Đỗ Trọng Hải
9b88527883
chore: remove supposedly dev dep html-webpack-plugin from lockfile ( #34288 )
2025-07-24 15:53:16 +07:00
dependabot[bot]
800c1639ec
chore(deps-dev): bump prettier from 3.5.3 to 3.6.2 in /superset-frontend ( #33997 )
2025-07-24 09:38:00 +07:00
Ahmed Habeeb
43775e9373
fix(sqllab_export): manually encode CSV output to support utf-8-sig ( #34235 )
2025-07-23 18:44:56 -07:00
Maxime Beauchemin and Mehmet Salih Yavuz
9099b0f00d
fix: fix the pre-commit hook for tsc ( #34275 )
...
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-07-23 13:21:54 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
77ffe65773
chore(deps): bump axios from 1.10.0 to 1.11.0 in /docs ( #34285 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-24 00:06:53 +07:00
Damian Pendrak
32f8f33a4f
fix(deckgl): fix deck.gl color breakpoints Control ( #34244 )
2025-07-23 19:25:29 +03:00
Enzo Martellucci
710c277681
style(Button): Vertically align icons across all buttons ( #34067 )
2025-07-23 19:24:55 +03:00
Michael S. Molina
11324607d0
fix: Bulk select is not respecting the TAGGING_SYSTEM feature flag ( #34282 )
2025-07-23 11:33:06 -03:00
Mehmet Salih Yavuz
9c6271136d
fix(theming): Visual regressions p2 ( #34279 )
2025-07-23 16:14:06 +02:00
Maxime Beauchemin
c444eed63e
chore(docker): use editable mode in docker images ( #34146 )
2025-07-22 16:14:31 -07:00
Mehmet Salih Yavuz
1df5e59fdf
fix(theming): Theming visual fixes ( #34253 )
2025-07-23 01:55:32 +03:00
Maxime Beauchemin
77f66e7434
fix: build issues on master with 'npm run dev' ( #34272 )
2025-07-22 15:55:18 -07:00
Maxime Beauchemin
2c81eb6c39
feat(docker): do not include chromium (headless browser) by default in Dockerfile ( #34258 )
2025-07-22 13:12:55 -07:00
Maxime Beauchemin and Claude
09c4afc894
feat: introduce comprehensive LLM context guides for AI-powered development ( #34194 )
...
Co-authored-by: Claude <noreply@anthropic.com >
2025-07-22 12:22:13 -07:00
JUST.in DO IT
229d92590a
fix: Matching errorType on superset api error with SupersetError ( #34261 )
2025-07-22 11:51:42 -07:00
Kamil Gabryjelski
f4f516c64c
fix: Missing ownState and isCached props in Chart.jsx ( #34259 )
2025-07-22 18:58:28 +02:00
Đỗ Trọng Hải
fe1fddde05
feat(docs): migrate ESLint to v9 ( #34207 )
2025-07-22 22:09:45 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7e67deead7
chore(deps-dev): bump form-data from 4.0.0 to 4.0.4 in /superset-embedded-sdk ( #34262 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 21:44:07 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6e02603098
chore(deps): bump form-data from 4.0.0 to 4.0.4 in /docs ( #34263 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 21:43:02 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4518f6999c
chore(deps): bump form-data from 4.0.1 to 4.0.4 in /superset-frontend ( #34265 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 21:42:23 +07:00
SBIN2010
aff847b3af
fix: database model Collapse state ( #34126 )
2025-07-22 15:40:19 +03:00
SBIN2010
b24aca0304
fix: bug when updating dashboard ( #34193 )
2025-07-21 12:02:25 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2c453035e4
chore(deps): bump on-headers and morgan in /superset-websocket/utils/client-ws-app ( #34215 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 11:51:18 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4fe11869fc
chore(deps): bump on-headers and compression in /superset-frontend ( #34216 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 11:38:33 -07:00
Maxime Beauchemin
a0a49f9300
feat: add Claude Code GitHub Action integration ( #34231 )
2025-07-21 09:14:45 -07:00
Mehmet Salih Yavuz
29d2fac485
fix(Chart): Calculate chart height correctly ( #34224 )
2025-07-21 14:12:16 +03:00
Mehmet Salih Yavuz
0c5da6cb5d
fix(theming): World map tooltip color ( #34229 )
2025-07-19 01:32:53 +03:00
Paul Lavacquery
da6947d295
feat(deckgl): add support for OpenStreetMap as our new default and make "tile-providers" more configurable FIX ( #34204 )
2025-07-18 15:25:32 -07:00
Maxime Beauchemin and Beto Dealmeida
2db8f809ba
fix: proper handling of boolean filters with snowflake ( #34199 )
...
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
2025-07-18 12:13:52 -07:00
Erkka Tahvanainen and Erkka Tahvanainen
5912fad745
fix(dashboard): Fix subitem selection on dashboard download menu ( #33933 )
...
Co-authored-by: Erkka Tahvanainen <erkka.tahvanainen@confidently.fi >
2025-07-18 11:16:19 -07:00
mdusmanalvi and Mehmet Salih Yavuz
dc41c45bec
feat(pivot-table-chart): Download as pivoted excel ( #33569 )
...
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-07-18 11:12:14 -07:00
Joe Li
88ee90c579
chore: Updates files related to 4.1.3 release ( #34217 )
2025-07-18 09:59:06 -07:00
Gabriel Torres Ruiz
bbb2279644
fix(theming): Superset theme configurations correctly applying to charts ( #34218 )
2025-07-18 16:25:48 +03:00
Maxime Beauchemin
1958df6b83
fix: dataset endpoint /rowlevelsecurity/related/tables doesn't apply filters as expected ( #34192 )
2025-07-17 15:51:03 -07:00
eriks47
58bd3bfcf0
fix(chart): update geographical info for latvia ( #33450 )
2025-07-17 13:32:34 -07:00
Denis Krivenko
d6eb6e08d0
style(helm): Minor reformatting of helm chart templates ( #33736 )
2025-07-17 11:33:09 -07:00
JUST.in DO IT
96cb6030c8
fix(explore): Display missing dataset for denied access ( #34129 )
2025-07-16 13:36:03 -07:00
Jun Yoneyama
94d47113ea
feat(snowflake): Support Snowflake private keys w/o passphrase ( #34156 )
2025-07-16 20:53:41 +02:00
Mehmet Salih Yavuz
f756cee01b
fix(theming): Remove leftover antd5 prefix ( #34188 )
2025-07-16 19:31:14 +03:00
Cesc Bausà
e8926f177d
feat(i18n): add Catalan (ca) translations ( #33953 )
2025-07-16 16:38:51 +02:00
Mehmet Salih Yavuz
16f4516903
chore(Oracle): Update oracle column length to 128 ( #34179 )
2025-07-16 14:58:19 +03:00
Beto Dealmeida
000d353ef3
fix(sqllab): database ID ( #34181 )
2025-07-15 19:37:24 -04:00
Beto Dealmeida
83b6f672ff
fix(databricks): string escaper ( #34180 )
2025-07-15 19:27:55 -04:00
Beto Dealmeida
0dc48e9b41
fix(sqllab): pass DB id instead of name ( #33955 )
2025-07-15 18:43:34 -04:00
Maxime Beauchemin
fe9eef9198
feat: removing dup logic in sqla/models.py and models/helpers.py ( #34177 )
2025-07-15 14:02:57 -07:00
Hari Kiran
8a8248b575
docs(development): Fix typo in the documentation ( #34163 )
2025-07-15 14:30:32 -03:00
Gabriel Torres Ruiz
42d9a78777
feat(theming): Introduce bootstrap-driven Superset theme configurations ( #34144 )
2025-07-15 09:43:08 -07:00
Mehmet Salih Yavuz
31a15c5162
fix(DrillBy): make drill by work with multi metric charts ( #34171 )
2025-07-15 15:25:48 +02:00
SBIN2010
67b21c45df
feat(filter panel): hide filter panel on all dashboard by default. ( #32870 )
2025-07-15 10:47:47 +03:00
SBIN2010
b280ab9e1f
fix: adding and removing tags does not work in control panel properties modal ( #34147 )
2025-07-14 23:20:00 +03:00
Maxime Beauchemin
c42be77c25
feat(i18n): load language pack asynchronously ( #34119 )
2025-07-14 10:59:29 -07:00
Maxime Beauchemin
160917eae8
fix: frontend translation framework crashes on string errors ( #34118 )
2025-07-14 10:23:18 -07:00
Beto Dealmeida
68b84acd93
feat: improve Doris catalog support ( #34140 )
2025-07-14 12:01:08 -04:00
ongdisheng
0aa48b6564
fix(dataset): trigger onChange when switching to physical dataset to clear SQL ( #34153 )
2025-07-14 14:30:05 +03:00
Mehmet Salih Yavuz
0fc1955049
chore(Tags): Sort tags by name if possible ( #34149 )
2025-07-14 11:20:01 +03:00
ongdisheng
8a704d293b
docs: remove duplicated line in Running tests with act section ( #34145 )
2025-07-12 15:25:11 -07:00
Đỗ Trọng Hải
f4754641c8
build(dev-deps): clean up deprecated Babel proposal plugins ( #34125 )
2025-07-12 07:07:56 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7c98c3f4f6
chore(deps): bump flask-cors from 4.0.2 to 6.0.0 ( #34138 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-11 13:38:13 -07:00
Beto Dealmeida
5a32777dd0
chore: remove unnecessary disables ( #34139 )
2025-07-11 11:25:02 -04:00
Damian Pendrak
7229e1ccf3
feat(deckgl): add new color controls with color breakpoints ( #34017 )
2025-07-11 17:29:26 +03:00
Enzo Martellucci
30695d75d7
fix(DatabaseModal): Resolve Connect button issue for SQLAlchemy URI database connections ( #34112 )
2025-07-11 14:03:36 +03:00
Vitor Avila
75ee4edc6a
fix: Apply metric d3format when currency config is {} for table charts ( #34127 )
2025-07-10 22:44:22 -03:00
d269e3d187
chore(deps): bump react-json-tree from 0.17.0 to 0.20.0 in /superset-frontend ( #33990 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2025-07-10 11:54:59 -07:00
aikawa-ohno
7d0fabe1ab
fix(i18n): Update Japanese translations ( #33974 )
2025-07-10 12:35:44 +03:00
Evan Rusackas
9695249976
fix(screenshots): Change default for SCREENSHOT_PLAYWRIGHT_WAIT_EVENT to domcontentloaded ( #34114 )
2025-07-10 12:33:40 +03:00
17c1a37afb
chore(deps): bump react-error-boundary from 5.0.0 to 6.0.0 in /superset-frontend ( #33486 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2025-07-10 10:38:46 +03:00
Maxime Beauchemin
73dfe57ae2
fix: make flask-cors a core dependency ( #34115 )
2025-07-09 14:54:39 -07:00
Maxime Beauchemin
0d236c4ade
fix: improve login page placement and width ( #34108 )
2025-07-09 11:33:16 -07:00
Maxime Beauchemin
bc0a10fc73
chore: clean up more flask/jinja html views ( #34093 )
2025-07-09 10:16:57 -07:00
Enzo Martellucci
5efca408eb
fix(UI): Adjust background color for Dashboard, Tabs, and ListView component ( #34113 )
2025-07-09 18:41:09 +02:00
Vitor Avila
29f638e239
chore: Improve performance to load chart's save modal ( #34097 )
2025-07-09 12:20:40 -03:00
Vitor Avila
ddeb612429
chore: Improve performance to load the chart properties modal ( #34079 )
2025-07-09 12:19:08 -03:00
SBIN2010
0bc214e889
fix: upload data model Collapse state ( #32734 )
2025-07-09 11:53:10 +03:00
Paul Lavacquery and Maxime Beauchemin
d951158ce6
feat(deckgl): add support for OpenStreetMap as our new default and make "tile-providers" more configurable ( #33603 )
...
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-07-08 14:04:10 -07:00
85034b9748
feat(deck-gl): Enable individual deck.gl layer selection in FilterScope tree ( #33769 )
...
Co-authored-by: richardfn <richard.fogaca@appsilon.com >
Co-authored-by: amaannawab923 <amaannawab923@gmail.com >
2025-07-08 18:37:47 +03:00
11215b092a
chore(deps-dev): bump webpack-dev-server from 4.15.2 to 5.2.1 in /superset-frontend ( #34104 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2025-07-08 21:53:20 +07:00
Damian Pendrak
2129e22423
fix(deps): Revert "chore(deps): update @deck.gl/aggregation-layers requirement from ^9.0.38 to ^9.1.12 in /superset-frontend/plugins/legacy-preset-chart-deckgl" ( #34103 )
2025-07-08 15:13:11 +03:00
Vitor Avila
7ea1fca4f7
feat: Don't show the row limit warning for embedded dashboards by default ( #34095 )
2025-07-08 08:50:25 -03:00
Vitor Avila
9c8fdc0fc1
fix: Apply metric d3format from dataset when currency config is {} ( #34098 )
2025-07-08 08:48:09 -03:00
Joe Li
e25be0f3d9
chore: move auth e2e tests to component tests ( #34057 )
2025-07-07 16:41:44 -07:00
d633fe47ef
chore(deps): bump @fontsource/inter from 5.1.1 to 5.2.6 in /superset-frontend ( #34042 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
2025-07-07 16:38:02 -07:00
PolinaFam and Polina Fam
c25e734407
fix(translations): Fix language switching behavior when default language is not English ( #34049 )
...
Co-authored-by: Polina Fam <pfam@ptsecurity.com >
2025-07-07 11:57:17 -07:00
Mehmet Salih Yavuz
d8fd6de940
fix(deps): Revert "chore(deps-dev): bump webpack-dev-server from 4.15.2 to 5.2.1 ( #34090 )
2025-07-07 21:20:39 +03:00
Vitor Avila
733f112142
fix: Support metric currency as dict during import ( #34080 )
2025-07-07 14:00:56 -03:00
f55476034b
chore(deps): bump ioredis from 4.28.5 to 5.6.1 in /superset-websocket ( #34029 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com >
2025-07-07 22:07:52 +07:00
0a5941edd7
feat(viz-type): Ag grid table plugin Integration ( #33517 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Amaan Nawab <nelsondrew07@gmail.com >
Co-authored-by: Levis Mbote <111055098+LevisNgigi@users.noreply.github.com >
Co-authored-by: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com >
Co-authored-by: Paul Rhodes <withnale@users.noreply.github.com >
Co-authored-by: Vitor Avila <96086495+Vitor-Avila@users.noreply.github.com >
Co-authored-by: Đỗ Trọng Hải <41283691+hainenber@users.noreply.github.com >
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
Co-authored-by: Sam Firke <sfirke@users.noreply.github.com >
2025-07-07 16:50:44 +03:00
Damian Pendrak
0fc4119728
feat(deckgl): add cross-filters to deck.gl charts ( #33789 )
2025-07-07 16:23:27 +03:00
Mehmet Salih Yavuz
6adfd33e3a
fix(Table): Allow timeshifts to be overriden ( #34014 )
2025-07-07 13:20:09 +03:00
Vitor Avila
829e4d92d9
chore: Use select_columns on chart's dashboard filter ( #34075 )
2025-07-05 18:48:30 -03:00
Mehmet Salih Yavuz
42db43c686
fix(styles): Remove custom z-indexes ( #34066 )
2025-07-04 23:47:32 +03:00
Maxime Beauchemin
a0f9efd45e
chore: refactor react-syntax-highlither to handle dark themes ( #34028 )
2025-07-04 11:44:11 -07:00
Maxime Beauchemin
5d6a979cd0
chore: remove some of the deprecated theme.colors.* ( #34056 )
2025-07-04 11:39:03 -07:00
Michael S. Molina
d6ed819fe2
fix: Annotation layer errors ( #34074 )
2025-07-04 15:06:30 -03:00
ef14a5fbb4
feat(filter): Add Slider Range Inputs Option for Numerical Range Filters ( #33170 )
...
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-07-04 13:31:23 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4718767ddb
chore(deps): bump tar-fs from 2.1.2 to 3.1.0 in /superset-frontend ( #34059 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 18:41:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dfb377c636
chore(deps): update yeoman-generator requirement from ^7.4.0 to ^7.5.1 in /superset-frontend/packages/generator-superset ( #32928 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 18:33:15 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7082933b96
chore(deps): bump react from 17.0.2 to 19.1.0 in /superset-frontend/plugins/legacy-plugin-chart-chord ( #32949 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 18:18:08 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
11b6263d55
chore(deps-dev): update fork-ts-checker-webpack-plugin requirement from ^9.0.2 to ^9.1.0 in /superset-frontend/packages/superset-ui-demo ( #33481 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 18:07:25 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b0cf7b61ad
chore(deps): update @deck.gl/aggregation-layers requirement from ^9.0.38 to ^9.1.12 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #33485 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 18:06:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96a1b33f22
chore(deps-dev): bump webpack-dev-server from 4.15.2 to 5.2.1 in /superset-frontend ( #32946 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 18:06:06 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5cff87c048
chore(deps-dev): bump @types/jest from 29.5.14 to 30.0.0 in /superset-frontend/plugins/plugin-chart-handlebars ( #33986 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:58:56 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b9052fa461
chore(deps-dev): bump yeoman-test from 8.3.0 to 10.1.1 in /superset-frontend ( #33496 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:43:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0ea2066d5b
chore(deps): bump @storybook/addon-actions from 8.1.11 to 9.0.8 in /superset-frontend/packages/superset-ui-demo ( #33995 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:14:57 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
992aa3a4d5
chore(deps): update @types/d3-scale requirement from ^4.0.8 to ^4.0.9 in /superset-frontend/plugins/plugin-chart-word-cloud ( #32441 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:08:17 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36c7b15342
chore(deps): update dompurify requirement from ^3.2.4 to ^3.2.6 in /superset-frontend/plugins/legacy-preset-chart-nvd3 ( #32082 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:07:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2ab85f3b67
chore(deps): bump remark-gfm from 3.0.1 to 4.0.1 in /superset-frontend ( #32945 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:05:06 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1b690a9876
chore(deps): bump @ant-design/icons from 5.6.1 to 6.0.0 in /docs ( #32953 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:04:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f18d9b6bf4
chore(deps-dev): bump typescript from 5.6.2 to 5.7.3 in /superset-websocket ( #32439 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:02:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ebca5169a0
chore(deps-dev): update @types/lodash requirement from ^4.17.16 to ^4.17.20 in /superset-frontend/packages/superset-ui-core ( #32080 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:00:42 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b9ba4d6fda
chore(deps-dev): bump cheerio from 1.0.0-rc.10 to 1.1.0 in /superset-frontend ( #33991 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 16:58:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20371940d3
chore(deps-dev): bump webpack-visualizer-plugin2 from 1.1.0 to 1.2.0 in /superset-frontend ( #33989 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 16:58:13 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ee4944bc1a
chore(deps-dev): update fs-extra requirement from ^11.2.0 to ^11.3.0 in /superset-frontend/packages/generator-superset ( #32093 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 16:41:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5a1023da89
chore(deps): update @types/geojson requirement from ^7946.0.15 to ^7946.0.16 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #32077 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 16:27:45 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4b94d25869
chore(deps): bump @emotion/styled from 11.3.0 to 11.14.0 in /superset-frontend ( #31560 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 15:50:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2ceced71c5
chore(deps-dev): update jest requirement from ^30.0.2 to ^30.0.4 in /superset-frontend/plugins/plugin-chart-handlebars ( #34034 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 15:32:17 -07:00
Vladislav Korenkov
9f0523977d
feat(plugin-chart-echarts): add Gantt Chart plugin ( #33716 )
2025-07-03 14:23:50 -07:00
Joe Li
cb6342fc73
fix: Update spacing on echart legends ( #34018 )
2025-07-03 13:33:15 -07:00
5214ee6fd4
chore(deps-dev): update jest requirement from ^30.0.2 to ^30.0.4 in /superset-frontend/plugins/plugin-chart-pivot-table ( #34036 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-07-03 12:58:28 -07:00
7b3329f315
chore(deps-dev): update @types/lodash requirement from ^4.17.16 to ^4.17.20 in /superset-frontend/plugins/plugin-chart-handlebars ( #34037 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-07-03 12:57:42 -07:00
Vladislav Korenkov
d1b372f670
fix(chart controls): remove duplicated descriptions for chart controls ( #33954 )
2025-07-03 16:01:59 -03:00
09c657c899
chore(deps-dev): update @babel/types requirement from ^7.26.9 to ^7.28.0 in /superset-frontend/plugins/plugin-chart-pivot-table ( #34038 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-07-03 11:44:21 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24500e99f8
chore(deps): bump ace-builds from 1.43.0 to 1.43.1 in /superset-frontend ( #34043 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 09:39:22 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b2a173977e
chore(deps): bump mapbox-gl from 2.15.0 to 3.13.0 in /superset-frontend ( #34008 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 09:38:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8be79f4170
chore(deps-dev): bump @types/lodash from 4.17.13 to 4.17.20 in /superset-websocket ( #34035 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 09:37:47 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
debaf8d6e9
chore(deps): bump @emotion/styled from 11.14.0 to 11.14.1 in /superset-frontend ( #33992 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 09:35:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1133d84775
chore(deps-dev): bump @applitools/eyes-storybook from 3.53.4 to 3.55.6 in /superset-frontend ( #33987 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 09:34:07 -07:00
Maxime Beauchemin
8c4ca60b28
fix(styling): various minor visual tweaks and adjustments ( #34031 )
2025-07-03 08:55:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
90eded1a04
chore(deps-dev): bump prettier from 3.4.2 to 3.6.2 in /superset-websocket ( #34033 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 22:46:56 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
093ee37aac
chore(deps): bump swagger-ui-react from 5.25.3 to 5.26.0 in /docs ( #34041 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 22:45:37 +07:00
Titan_gamini and Mehmet Salih Yavuz
23b1fe3b9e
fix(dashboard): prevent crash on invalid CSS selectors in CSS templates ( #33971 )
...
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-07-03 09:48:09 +03:00
Đỗ Trọng Hải
42288c4784
build(dev-deps): upgrade Jest to major version v30 ( #33979 )
2025-07-03 11:01:40 +07:00
Vitor Avila
c008190a08
fix: Dashboard native filter fixes ( #33958 )
2025-07-02 23:08:42 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2734688f4f
chore(deps): bump hot-shots from 10.2.1 to 11.1.0 in /superset-websocket ( #34004 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-02 16:36:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e3d8326d81
chore(deps-dev): bump @docusaurus/tsconfig from 3.8.0 to 3.8.1 in /docs ( #34003 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-02 16:35:44 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e1ab27f484
chore(deps): bump ace-builds from 1.41.0 to 1.43.0 in /superset-frontend ( #34002 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-02 16:35:24 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d1d43be9d1
chore(deps): bump swagger-ui-react from 5.25.2 to 5.25.3 in /docs ( #34001 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-02 16:35:00 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f9cec3e366
chore(deps-dev): bump eslint from 9.27.0 to 9.30.0 in /superset-websocket ( #34000 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-02 16:34:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f92431176a
chore(deps-dev): bump @babel/cli from 7.26.4 to 7.27.2 in /superset-frontend ( #33985 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-02 16:31:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c31daf8c92
chore(deps): bump actions/cache from 3 to 4 ( #33999 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-02 09:14:28 -07:00
Alexandru Soare
c74fae9663
feat(flag): Added feature_flag for superset security_views ( #34023 )
2025-07-02 14:31:09 +03:00
LisaHusband
308007f909
fix(handlebars): remove serverPaginationControlSetRow from control pa… ( #34016 )
2025-07-01 22:38:01 +03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9aaab7374e
chore(deps): bump antd from 5.25.1 to 5.26.3 in /docs ( #33982 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-01 12:13:51 -07:00
Gabriel Torres Ruiz
057218d87f
feat: Add confirmation modal for unsaved changes ( #33809 )
2025-07-01 19:38:51 +03:00
Đỗ Trọng Hải
050ccdcb3d
chore: replace querystring usage with native URLSearchParams API ( #33967 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-07-01 07:17:35 +07:00
Hugo Ferrando Seage
09d975cc3f
docs: Fix typo in UPDATING.md regarding translations in version 5.0.0 ( #33972 )
2025-06-30 23:44:56 +07:00
xavier-GitHub76
1d2a40f69b
fix(explore): Change dataset icon on explore to match datasets view ( #33977 )
2025-06-30 19:21:20 +03:00
Beto Dealmeida
1a57601fe6
chore: pin Marshmallow < 4 ( #33978 )
2025-06-30 11:41:37 -04:00
Mehmet Salih Yavuz
09736ee42c
feat(Table): Add infrastructure to override time shifts ( #33947 )
2025-06-30 16:32:43 +03:00
Đỗ Trọng Hải
2e9939baf2
chore(build): refactor plugin build script to remove unused stanzas ( #33887 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-06-27 13:52:22 -07:00
125m125
6af8ce6bb8
docs: pypi-installation on Ubuntu 24.04 and statsd package for event-logging ( #32891 )
2025-06-27 13:52:00 -07:00
Éric Brison
8d2c51c945
chore(translations): Update FR language ( #33934 )
2025-06-27 10:24:36 -07:00
Đỗ Trọng Hải
580738cea0
build(be/deps): upgrade urllib3 to major v2 ( #33927 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-06-27 10:21:30 -07:00
Đỗ Trọng Hải
1a54b761c1
feat(db): remove Rockset DB support ( #33929 )
2025-06-27 23:12:54 +07:00
Sam Firke
7f5f577daa
docs(security): add Q&A related to CVE scans to FAQ ( #33936 )
2025-06-27 11:34:24 -04:00
Martin Morset
e3cbbca4f9
fix: Theme logo links to external superset site ( #33949 )
2025-06-27 12:08:42 +02:00
Maxime Beauchemin
b7ad8dba89
fix(dremio): apply same fix as for drill to solve alias ambiguity ( #33939 )
2025-06-27 08:22:29 +01:00
Luke Hart
ede3de0ca0
fix(rls): removing unnecessary wrapper ( #33942 )
2025-06-27 13:02:10 +07:00
SBIN2010
8ee5505b61
fix(plugin-chart-echarts): correct label position for Negative Values bar chart ( #32849 )
2025-06-26 16:26:44 -07:00
eec563b0b4
fix: add suffix to Drill labels to avoid collision ( #32857 )
...
Co-authored-by: Fredrik Hyyrynen <fredrik.hyyrynen@ngm.se >
Co-authored-by: Evan Rusackas <evan@rusackas.com >
Co-authored-by: pre-commit <pre-commit@users.noreply.github.com >
2025-06-26 11:28:05 -07:00
Vitor Avila
a56d7252c2
fix: Consider default catalog when getting tables and view lists ( #33916 )
2025-06-26 13:55:10 -03:00
Đỗ Trọng Hải
8b5afc6f29
fix(fe/user_info): resolve visual oddities in User Info page ( #33923 )
2025-06-26 12:26:14 +02:00
Mehmet Salih Yavuz
f802474b07
chore(superset-embedded-sdk): bump version for theming ( #33910 )
2025-06-25 21:00:30 +03:00
Enzo Martellucci
11a9f2fe4c
style(AsyncAceEditor): make Ace gutter line color theme-aware ( #33909 )
2025-06-25 17:27:01 +03:00
Mehmet Salih Yavuz
0cff7619f2
feat(Dashboard): Row limit warning in dashboards ( #33781 )
2025-06-25 14:47:58 +02:00
Mehmet Salih Yavuz
a13a590796
feat(User Registrations): Migrate user registrations fab view ( #33631 )
2025-06-25 14:26:21 +02:00
Enzo Martellucci
e0e3f94949
fix(theming): Fix visual regressions from theming P6 ( #33898 )
2025-06-25 13:33:13 +02:00
Abhinav Kumar
6876a1e684
fix: Correct state handling in CSS Template modal ( #33846 )
2025-06-24 19:15:08 -03:00
Đỗ Trọng Hải
f6f9582186
fix(docs|build): revert docker-compose files rename ( #33883 )
2025-06-24 22:49:58 +07:00
Damian Pendrak
5d23dea5aa
feat(charts): Add row limit control to box plot chart ( #33871 )
2025-06-24 16:59:38 +03:00
Enzo Martellucci
6db6db23f8
fix(DatabaseModal): Improve database modal validation and fix visual Issues ( #33826 )
2025-06-24 15:52:19 +02:00
Sam Firke
98b35125c2
chore(docs): bump references to docker image versions upon release of 5.0.0 ( #33872 )
2025-06-23 19:55:29 -04:00
Michael S. Molina
cd3191bb79
chore: Updates files related to 5.0.0 release ( #33869 )
2025-06-23 15:01:22 -07:00
Đỗ Trọng Hải
5d5b807d33
build(be/deps): replace importlib_metadata usage with native Python 3.10+ importlib.metadata ( #33868 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-06-23 13:46:19 -07:00
Đỗ Trọng Hải
1c2e148d03
build(dev-deps): update fetch-mock to v11 ( #33854 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-06-23 13:45:51 -07:00
Đỗ Trọng Hải
573dd0edec
build(deps): remove legacy browser polyfills ( #33853 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-06-23 13:45:39 -07:00
Vitor Avila
784f86c8eb
fix(native filters): Make the Apply button available after click on Clear All ( #33834 )
2025-06-23 16:18:59 -03:00
Paul Rhodes
4dc3dd0942
fix(api): Added uuid as a valid search column ( #33833 )
2025-06-23 10:29:11 -07:00
Enzo Martellucci
c8a809dbdd
chore(Icons): Add UsergroupAddOutlined icon ( #33866 )
2025-06-23 19:07:28 +03:00
Levis Mbote
d3b781be77
fix(logo): fix logo url typo ( #33867 )
2025-06-23 22:03:38 +07:00
Mehmet Salih Yavuz
8dd39502f6
feat(Icons): Add HistoryOutlined ( #33863 )
2025-06-23 15:06:46 +03:00
Maxime Beauchemin
05994319b7
feat(theming): improving theme docs and configuration ( #33851 )
2025-06-22 15:39:00 -07:00
Enzo Martellucci
a4f32f829d
style(menu): Reduce bottom border width of menu item ( #33850 )
2025-06-21 09:14:02 +02:00
Beto Dealmeida
f7921399b9
fix: sqlglot linter ( #33849 )
2025-06-20 15:18:52 -07:00
dd129fa403
feat(theming): land Ant Design v5 overhaul — dynamic themes, real dark mode + massive styling refactor ( #31590 )
...
Co-authored-by: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com >
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
Co-authored-by: Alexandru Soare <37236580+alexandrusoare@users.noreply.github.com >
Co-authored-by: Damian Pendrak <dpendrak@gmail.com >
Co-authored-by: Pius Iniobong <67148161+payose@users.noreply.github.com >
Co-authored-by: Enzo Martellucci <enzomartellucci@gmail.com >
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
2025-06-20 13:38:58 -07:00
Beto Dealmeida
2cc1ef88c8
chore: use mysql dialect for Pinot ( #33848 )
2025-06-20 12:11:42 -07:00
Beto Dealmeida
404f7c1043
feat: initial Dremio sqlglot dialect ( #33847 )
2025-06-20 12:05:45 -07:00
Vladislav Polyakov
a23a4ed054
refactor: rename docker-compose files and update references ( #33790 )
...
Signed-off-by: Vladislav Polyakov <polRk@ydb.tech >
2025-06-20 12:00:34 -07:00
xavier-GitHub76 and Evan Rusackas
63cb5807b6
docs: Update STANDARD_ROLES.md, delete 7 permissions "RowLevelSecurityFiltersModelView" ( #33670 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2025-06-20 12:19:30 -06:00
Zhanxiang (Patrick) Huang
85b3845f0d
fix: use risingwave as the sqlalchemy_uri_placeholder prefix for RisingWave engine ( #33764 )
2025-06-20 12:19:18 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1cd12e8576
chore(deps-dev): bump @docusaurus/module-type-aliases from 3.7.0 to 3.8.0 in /docs ( #33642 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-20 12:17:52 -06:00
Vitor Avila
93583220a7
fix: Consider last data point for Big Number comparison lag ( #33830 )
2025-06-19 17:53:31 -03:00
Alexandru Soare and Diego Pucci
f1954ddcb2
feat(extension): Added extension point for Time Filters ( #33829 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-06-19 16:44:17 +03:00
Đỗ Trọng Hải
54bedbd606
chore(docs): resolve 3 vulnerabilities ( #33818 )
2025-06-19 08:26:43 +07:00
Vitor Avila
dc8c0f164f
fix: Set time filter's isExtra to false when saving as new chart ( #33821 )
2025-06-18 17:02:55 -03:00
Michael S. Molina
775a702b99
fix: SQL Lab warning message sizes ( #33817 )
2025-06-18 13:00:41 -03:00
github-actions[bot] and GitHub Action
a1cbd2578e
chore( 🦾 ): bump python flask-caching subpackage(s) ( #33795 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-06-17 10:32:23 -07:00
github-actions[bot] and GitHub Action
f2f1ea948c
chore( 🦾 ): bump python sqlglot 26.17.1 -> 26.28.1 ( #33798 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-06-17 10:31:48 -07:00
github-actions[bot] and GitHub Action
d2e6249ce2
chore( 🦾 ): bump python flask-session subpackage(s) ( #33792 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-06-17 10:31:13 -07:00
github-actions[bot] and GitHub Action
3591e362e3
chore( 🦾 ): bump python shillelagh subpackage(s) ( #33793 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-06-17 10:30:47 -07:00
github-actions[bot] and GitHub Action
dc32608fa3
chore( 🦾 ): bump python flask-wtf subpackage(s) ( #33799 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-06-17 10:30:09 -07:00
github-actions[bot] and GitHub Action
28b4f44baa
chore( 🦾 ): bump python flask subpackage(s) ( #33797 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-06-17 09:53:41 -07:00
github-actions[bot] and GitHub Action
b376459e8c
chore( 🦾 ): bump python click 8.2.0 -> 8.2.1 ( #33796 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-06-17 09:53:14 -07:00
github-actions[bot] and GitHub Action
e76a6ed63d
chore( 🦾 ): bump python flask-compress subpackage(s) ( #33800 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-06-17 09:52:52 -07:00
Kidus Makonnen
4d6cdf4fea
fix: ensure numeric values for extra metadata_cache_timeout payloads ( #28737 )
2025-06-16 13:02:18 -07:00
Mehmet Salih Yavuz
d15b0e4f6d
refactor(Menu): Use items prop instead of deprecated Menu.Item HOC ( #32587 )
2025-06-16 21:51:27 +02:00
Beto Dealmeida
527c8de773
chore: add pylint rule for SQL importing (SIP-117) ( #26803 )
2025-06-16 11:53:30 -07:00
amaannawab923 and Amaan Nawab
9df990c2d1
fix(Echarts): Echarts Legend Scroll fix ( #33779 )
...
Co-authored-by: Amaan Nawab <nelsondrew07@gmail.com >
2025-06-16 18:44:52 +03:00
gpchandran
7b6885a020
build: update Dockerfile to 3.11.13-slim-bookworm ( #33745 )
2025-06-15 21:39:25 +07:00
Mehmet Salih Yavuz
8fd0fd673f
fix(tooltip): Sanitize tooltip html ( #33765 )
2025-06-14 11:26:15 +03:00
Beto Dealmeida
21d8d57380
fix: select star ( #33763 )
2025-06-13 14:59:52 -04:00
Levis Mbote
7deca8f2cd
feat(chart): add toggle for percentage metric calculation mode in Table chart ( #33656 )
2025-06-13 21:00:58 +03:00
Geido
0d3eebd221
chore(Accessibility): Improve keyboard navigation and screen access ( #33396 )
2025-06-13 19:29:10 +03:00
Beto Dealmeida
e6f7c12e88
chore: auto-focus modal input when deleting assets ( #33767 )
2025-06-13 12:04:08 -04:00
Joe Li
2b1d4a02b0
chore: Convert alert and report cypress tests to component tests ( #33696 )
2025-06-12 17:04:33 -07:00
Beto Dealmeida
d7d7b7c0e6
fix: apply d3 format to BigNumber(s) ( #33759 )
2025-06-12 16:02:38 -04:00
Vladislav Korenkov
773def64f2
fix(create chart page): add missing space between words ( #33752 )
2025-06-12 10:21:31 -07:00
Ananta Patil
78ad6db0c6
fix: sync dot color between dashboard chart and edit chart ( #33748 )
2025-06-12 10:19:42 -07:00
Mehmet Salih Yavuz
e6af4ea126
feat(DatasourceEditor): Format sql shortcut and bigger table ( #33709 )
2025-06-12 15:38:17 +03:00
Pat Buxton
a64b9ac84f
fix(dataset): Fix plural toast messages ( #33743 )
2025-06-11 15:26:30 +03:00
Vladislav Korenkov
bce3d4f19e
fix(explore): add gap to the "Cached" button ( #33717 )
2025-06-11 15:03:53 +03:00
Zack
59e3645c17
fix: clarify GUEST_TOKEN_JWT_AUDIENCE usage in the SDK ( #33673 )
2025-06-10 21:41:54 -06:00
Evan Rusackas
e05ccb3824
feat: x axis interval control to show ALL ticks on timeseries charts ( #33729 )
2025-06-10 21:40:56 -06:00
Vitor Avila
86e7139245
fix: Dataset currency ( #33682 )
2025-06-09 22:47:14 -03:00
Phuc Hung Nguyen and Phuc Hung Nguyen
bb6bd85c1d
fix(chart): set tab name as chart name ( #33694 )
...
Co-authored-by: Phuc Hung Nguyen <phucnguyen@geotab.com >
2025-06-09 17:07:44 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ca74ae75a6
chore(deps-dev): bump webpack from 5.99.8 to 5.99.9 in /docs ( #33643 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-09 16:19:49 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ae6c072661
chore(deps-dev): bump @docusaurus/tsconfig from 3.7.0 to 3.8.0 in /docs ( #33645 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-09 16:19:25 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5f2f12d347
chore(deps-dev): bump @typescript-eslint/parser from 8.29.0 to 8.33.0 in /superset-websocket ( #33650 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-09 16:19:11 -06:00
Le Xich Long
fc7ba060c1
feat(clickhouse): allow dynamic schema ( #32610 )
2025-06-09 16:18:05 -06:00
JUST.in DO IT
3a3984006c
chore(explore): Add format sql and view in SQL Lab option in View Query ( #33341 )
2025-06-09 15:11:54 -07:00
nmdo
d11b6d557e
feat(MixedTimeSeries): Add onlyTotal and Sort Series to Mixed TimeSeries ( #33634 )
2025-06-09 15:59:54 -06:00
Beto Dealmeida
2f007bf7a5
fix: typo in SQL dialect map ( #33727 )
2025-06-09 17:03:31 -04:00
Lourdu Radjou🎶 and Michael S. Molina
6513445000
docs: fix typo and improve alt text in README ( #33721 )
...
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2025-06-09 12:15:14 -06:00
Vladislav Korenkov
3ef92e5610
fix(Alerts & reports): invalid "Last updated" time formatting ( #33719 )
2025-06-09 20:52:47 +03:00
Pat Buxton
57bb425fb0
fix(dashboard): show dashboard thumbnail images when retrieved ( #33726 )
2025-06-09 14:33:54 -03:00
jqqin and QinQin
2fba789e8d
fix(dataset): prevent metric duplication error when editing SQL and adding metric ( #33523 )
...
Co-authored-by: QinQin <qinqin@geotab.com >
2025-06-09 09:42:55 -07:00
Luiz Otavio
08655a7559
fix: Migrate charts with empty query_context ( #33710 )
2025-06-09 08:32:12 -03:00
Maxime Beauchemin
3256008a59
chore: delete remaining Enzyme tests ( #33715 )
2025-06-06 16:37:03 -07:00
Maxime Beauchemin
da8efd36d7
docs: clarify how requirements/ should be modified ( #33714 )
2025-06-06 16:30:27 -07:00
Denodo Research Labs
5541dad32b
fix(compose): environment entries in compose*.yml override values in docker/.env ( #33700 )
2025-06-06 14:24:26 -07:00
Beto Dealmeida
b3f436a030
chore: remove unused parameter ( #33704 )
2025-06-05 16:32:04 -04:00
Beto Dealmeida
b00660acf1
chore: update sqlglot dialect map ( #33701 )
2025-06-05 13:14:44 -04:00
Daniel Vaz Gaspar
a6af4f4d7a
chore: simplify query cleanup using dict.pop instead of suppressing exception ( #33661 )
2025-06-05 09:24:28 +01:00
Kasper Mol
cc3460832f
fix(template_processing): get_filters now works for IS_NULL and IS_NOT_NULL operators ( #33296 )
2025-06-05 00:46:33 -03:00
Beto Dealmeida
edc60914f6
chore: 100% test coverage for SQL parsing ( #33568 )
2025-06-04 22:18:09 -04:00
Vitor Avila
c9518485ba
fix: Do not convert dataset changed_on to UTC ( #33693 )
2025-06-04 22:24:18 -03:00
Beto Dealmeida
a26e1d822a
chore: remove sqlparse ( #33564 )
2025-06-04 19:31:41 -04:00
Rafael Benitez
a7aa8f7cef
feat(Dataset): editor improvements - run in sqllab ( #33443 )
2025-06-04 21:47:12 +03:00
arafoperata
ff34e3c81e
fix: optimize catalog permission sync when importing dashboards ( #33679 )
2025-06-04 13:21:17 -04:00
Enzo Martellucci
20519158d2
feat(UserInfo): Migrate User Info FAB to React ( #33620 )
2025-06-03 19:24:22 +02:00
Vitor Avila
cacf1e06d6
fix: Update dataset's last modified date from column/metric update ( #33626 )
2025-06-03 12:20:38 -03:00
Enzo Martellucci
fa0c5891bf
feat(List Groups): Migrate List Groups FAB to React ( #33301 )
2025-06-03 16:18:15 +02:00
Anmol Mishra
fc13a0fde5
docs: add HPE to users list ( #33665 )
2025-06-02 15:31:06 -04:00
ade85daee2
feat(database): add SingleStore engine specification ( #32887 )
...
Co-authored-by: Adalbert Makarovych <amakarovych0ua@singlestore.com >
Co-authored-by: Evan Rusackas <evan@preset.io >
2025-06-02 11:50:12 -06:00
Pat Buxton
2d26af25c1
feat: Python 3.12 support ( #33434 )
2025-06-02 10:00:37 -07:00
sha174n
b033406387
docs: CVE-2025-48912 added to 4.1.2 ( #33662 )
2025-06-02 10:03:29 +01:00
ethan-l-geotab
c09f8f6f76
fix(sqllab): save datasets with template parameters ( #33195 )
2025-05-30 19:57:33 -03:00
Beto Dealmeida
401ce56fa1
feat: use sqlglot to validate adhoc subquery ( #33560 )
2025-05-30 18:09:19 -04:00
Beto Dealmeida
cf315388f2
feat(sqllab): use sqlglot instead of sqlparse ( #33542 )
2025-05-30 17:08:19 -04:00
Beto Dealmeida
f219dc1794
chore: make DB syntax errors 400 ( #33619 )
2025-05-30 13:04:04 -04:00
Vitor Avila
ed20d2a917
fix(Security): Apply permissions to the AllEntities list/get_objects API endpoint ( #33577 )
2025-05-30 13:39:18 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
235c9d2ebf
chore(deps-dev): bump fastify from 4.29.0 to 4.29.1 in /superset-frontend ( #33622 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-29 16:12:20 -06:00
Vitor Avila
fdea4e21b0
feat: current_user_rls_rules Jinja macro ( #33614 )
2025-05-29 11:58:40 -03:00
Fardin Mustaque
e20a08cb14
fix: add query identifier to legend items in mixed time series charts ( #33519 )
2025-05-29 14:42:48 +02:00
Levis Mbote
429935a277
fix(big number with trendline): add None option to the aggregation method dropdown ( #33407 )
2025-05-29 14:33:04 +02:00
Daniel Vaz Gaspar
a4bb11c755
chore: bump FAB to 4.7.0 ( #33607 )
2025-05-29 08:34:00 +01:00
gpchandran
f0b6e87091
chore: update Dockerfile - Upgrade to 3.11.12 ( #33612 )
2025-05-29 00:31:07 -07:00
Beto Dealmeida
ea5a609d0b
feat: implement CVAS/CTAS in sqlglot ( #33525 )
2025-05-28 09:45:59 -04:00
Beto Dealmeida
0abe6eed89
feat: implement RLS in sqlglot ( #33524 )
2025-05-28 09:10:45 -04:00
Beto Dealmeida
e205846845
feat: implement CTEs logic in sqlglot ( #33518 )
2025-05-28 08:38:00 -04:00
Enzo Martellucci
deef923825
feat(Action Logs): Migrate Action Log FAB to React ( #33298 )
2025-05-28 14:08:00 +02:00
Beto Dealmeida
0fa3feb088
chore: remove parse_sql ( #33474 )
2025-05-27 18:03:55 -04:00
Beto Dealmeida
1393f7d3d2
chore: sql/parse cleanup ( #33515 )
2025-05-27 16:42:04 -04:00
Michael S. Molina
b7ba50033a
fix: Makes time compare migration more resilient ( #33592 )
2025-05-27 17:02:10 -03:00
Michael S. Molina
ce9759785a
fix: Missing processor context when rendering Jinja ( #33596 )
2025-05-27 16:54:54 -03:00
Beto Dealmeida
8de58b9848
feat: use sqlglot to set limit ( #33473 )
2025-05-27 15:20:02 -04:00
Sam Firke
cc8ab2c556
chore(alerts & reports): increase Playwright timeout from 30 -> 60 seconds ( #33567 )
2025-05-27 13:22:23 -04:00
Urban Pettersson and Urban Pettersson
1409b1a25b
fix: correct typos ( #33586 )
...
Co-authored-by: Urban Pettersson <urban.pettersson@alteryx.com >
2025-05-27 08:24:17 -07:00
amaannawab923 and Amaan Nawab
bdfb698aa4
fix(Radar): Radar chart normalisation ( #33559 )
...
Co-authored-by: Amaan Nawab <nelsondrew07@gmail.com >
2025-05-26 22:01:17 +03:00
57183da315
fix: Adjust viz migrations to also migrate the queries object ( #33285 )
...
Co-authored-by: Michael S. Molina <michael.s.molina@gmail.com >
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2025-05-26 15:00:07 -03:00
Sam Firke
c928f23e1b
docs(docker build): add more packages needed for production features ( #33566 )
2025-05-24 19:30:33 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0c89914a6d
chore(deps-dev): bump eslint-config-prettier from 9.1.0 to 10.1.5 in /superset-websocket ( #33478 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-24 12:52:56 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
630e0e0240
chore(deps-dev): bump babel-loader from 9.2.1 to 10.0.0 in /superset-frontend ( #33489 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-23 14:57:36 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
513047c3bb
chore(deps): bump less-loader from 11.1.4 to 12.3.0 in /docs ( #33488 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-23 14:54:30 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d932837a3c
chore(deps-dev): bump eslint from 9.17.0 to 9.27.0 in /superset-websocket ( #33477 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-23 14:54:15 -06:00
Richard Fogaca Nienkotter and richardfn
38868f9ff4
fix(sankey): incorrect nodeValues ( #33431 )
...
Co-authored-by: richardfn <richard.fogaca@appsilon.com >
2025-05-23 14:52:58 -06:00
Beto Dealmeida
8013b32f0e
chore: remove is_select_query ( #33457 )
2025-05-22 20:53:22 -04:00
Beto Dealmeida
adeed60fe0
feat: implement limit extraction in sqlglot ( #33456 )
2025-05-22 20:09:36 -04:00
Vitor Avila
546945e7a6
fix(AllEntities): Display action buttons according to the user permissions ( #33553 )
2025-05-22 16:01:26 -03:00
Giampaolo Capelli and CAPELLI Giampaolo
5b2f1bbf9e
feat(stack by dimension): add a stack by dimension dropdown list ( #32707 )
...
Co-authored-by: CAPELLI Giampaolo <giampaolo.capelli@docaposte.fr >
2025-05-22 11:10:18 -03:00
Beto Dealmeida
875f538d54
fix: text => JSON migration util ( #33516 )
2025-05-22 08:41:38 -04:00
Mike Klumpenaar and garriscp
b7d3ff1e85
fix(user settings): Update forked cosmo theme to resolve down chevron in caret style ( #30514 ) ( #30577 )
...
Co-authored-by: garriscp <garriscp@gmail.com >
2025-05-21 12:32:51 -06:00
Beto Dealmeida
c03964dc5f
chore: remove useless-suppression ( #33549 )
2025-05-21 14:11:58 -04:00
950a3313d8
fix(table): table sort by fix ( #33540 )
...
Co-authored-by: Amaan Nawab <nelsondrew07@gmail.com >
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
2025-05-21 15:00:25 +02:00
Geido
e2a22d481c
fix(Select): Add buttonStyle prop for backward compatibility ( #33543 )
2025-05-20 18:40:23 +02:00
Rafael Benitez
b4e2406385
fix(Sqllab): Autocomplete got stuck in UI when open it too fast ( #33522 )
2025-05-20 16:38:55 +02:00
Geido
ca9e74edd8
chore(Icons): Additional Ant Design Icons ( #33539 )
2025-05-20 14:05:18 +02:00
Evan Rusackas
39b3de6b5d
fix(CI): adding explicit allowable licenses for python dependencies ( #33521 )
2025-05-19 15:54:01 -06:00
Maxime Beauchemin
26563bb330
fix: optimize Explore popovers rendering ( #33501 )
2025-05-19 13:58:42 -07:00
Damian Pendrak
0653e123cc
feat(chart): add dynamicQueryObjectCount property to Chart Metadata ( #33451 )
2025-05-19 14:54:57 +02:00
Alexandru Soare
76358ed64e
chore(fab): bumped fab from 4.6.3 to 4.6.4 ( #33469 )
2025-05-19 12:16:18 +02:00
amaannawab923 and Amaan Nawab
217f11a8f7
fix(table): table ui fixes ( #33494 )
...
Co-authored-by: Amaan Nawab <nelsondrew07@gmail.com >
2025-05-17 13:48:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
af21ef2497
chore(deps): bump ace-builds from 1.37.5 to 1.41.0 in /superset-frontend ( #33498 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-17 13:54:11 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51c25831e8
chore(deps): bump debug from 4.4.0 to 4.4.1 in /superset-websocket/utils/client-ws-app ( #33476 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-17 11:33:46 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
be41e0526a
chore(deps-dev): bump eslint-config-prettier from 10.1.2 to 10.1.5 in /docs ( #33491 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-17 11:28:10 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0f240ea1b2
chore(deps-dev): bump webpack from 5.99.7 to 5.99.8 in /docs ( #33492 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-17 11:27:20 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e520538af6
chore(deps): bump antd from 5.24.9 to 5.25.1 in /docs ( #33490 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-17 11:26:50 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e03d840d06
chore(deps-dev): bump @babel/preset-env from 7.26.7 to 7.27.2 in /superset-frontend ( #33499 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-17 11:26:00 +07:00
Evan Rusackas
1921ba993e
fix(dependabot): adds required schedule to uv updates ( #33475 )
2025-05-16 12:22:11 -07:00
Elizabeth Thompson
b050897ebd
fix: allow metadata to parse json ( #33444 )
2025-05-16 11:27:16 -07:00
Lukas Biermann
0bdd8a223d
docs: added europace to INTHEWILD.md ( #33458 )
2025-05-16 10:11:37 -04:00
Sam Firke
d12f86363f
docs(installation): show example of extending Docker image ( #33472 )
2025-05-16 09:34:25 -04:00
Geido
9f680a63f8
fix(NativeFilters): Apply existing values ( #33467 )
2025-05-16 13:55:31 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
928a052440
chore(deps): bump express from 4.21.2 to 5.1.0 in /superset-websocket/utils/client-ws-app ( #32948 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-14 17:24:17 -06:00
github-actions[bot] and GitHub Action
fbc84a1f9a
chore( 🦾 ): bump python shillelagh subpackage(s) ( #33278 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-05-14 17:18:44 -06:00
Vladislav Korenkov
fa1693dc5f
feat(Pie Chart): threshold for Other ( #33348 )
2025-05-14 12:20:30 -06:00
sha174n
8a8fb49617
docs: CVEs fixed on 4.1.2 ( #33435 )
2025-05-14 11:36:58 -06:00
JUST.in DO IT
dc4474889d
fix(table-chart): time shift is not working ( #33425 )
2025-05-14 14:19:21 -03:00
Syed Bariman Jan
29ac507d56
fix(deckgl): fix deckgl multiple layers chart filter and viewport ( #33364 )
2025-05-13 23:03:14 -07:00
Maxime Beauchemin
7f14e434c8
fix: loading examples in CI returns http error "too many requests" ( #33412 )
2025-05-13 08:36:12 -07:00
Mehmet Salih Yavuz
21ca26acd7
fix(Row): don't unload charts while embedded to reduce rerenders ( #33422 )
2025-05-13 15:32:39 +02:00
Damian Pendrak
33e48146b0
chore: Add missing ECharts tags ( #33397 )
2025-05-12 18:10:04 +02:00
irodriguez-nebustream and Irving Rodriguez
73701b7295
fix(embedded): handle SUPERSET_APP_ROOT in embedded dashboard URLs ( #33356 )
...
Co-authored-by: Irving Rodriguez <irodriguez@Mac.lan >
2025-05-09 15:25:40 -07:00
amaannawab923 and Amaan Nawab
22475e787e
feat(Table Chart): Row limit Increase , Backend Sorting , Backend Search , Excel/CSV Improvements ( #33357 )
...
Co-authored-by: Amaan Nawab <nelsondrew07@gmail.com >
2025-05-09 11:27:31 -06:00
VED PRAKASH KASHYAP
9e38a0cc29
docs: fix for role sync issues in case of custom OAuth2 configuration ( #30878 )
2025-05-09 11:12:23 -06:00
Rafael Benitez
a391ebecca
feat: Run SQL on DataSourceEditor implementation ( #33340 )
2025-05-09 17:35:59 +02:00
Vitor Avila
72cd9dffa3
fix: Persist catalog change during dataset update + validation fixes ( #33384 )
2025-05-08 15:22:25 -03:00
Đỗ Trọng Hải
4ed05f4ff1
fix(be/utils): sync cache timeout for memoized function ( #31917 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-05-07 15:45:15 -06:00
Shao Yu-Lung (Allen)
871cfe0c78
fix(i18n): zh_TW pybabel compile error: placeholders are incompatible ( #33345 )
2025-05-07 15:18:05 -06:00
Fardin Mustaque and Fardin Mustaque
a928f8cd9e
feat: add metric name for big number chart types #33013 ( #33099 )
...
Co-authored-by: Fardin Mustaque <fardinmustaque@Fardins-Mac-mini.local >
2025-05-07 16:56:02 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
afaaf64f52
chore(deps): bump antd from 5.24.5 to 5.24.9 in /docs ( #33319 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-07 21:14:46 +07:00
Beto Dealmeida
dc0d542054
chore: regenerate openapi.json ( #33378 )
2025-05-06 15:56:00 -07:00
0cd3a12daa
chore( 🦾 ): bump python markdown 3.7 -> 3.8 ( #33279 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-05-06 09:06:59 -07:00
amaannawab923 and Amaan Nawab
35b30480f0
fix: Exclude Filter Values ( #33271 )
...
Co-authored-by: Amaan Nawab <nelsondrew07@gmail.com >
2025-05-06 13:40:27 +02:00
github-actions[bot] and GitHub Action
6d1f17bd46
chore( 🦾 ): bump python sshtunnel subpackage(s) ( #33370 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-05-05 18:30:08 -07:00
github-actions[bot] and GitHub Action
ab899e71e7
chore( 🦾 ): bump python cryptography 44.0.2 -> 44.0.3 ( #33371 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-05-05 18:29:40 -07:00
github-actions[bot] and GitHub Action
6b9d8708d3
chore( 🦾 ): bump python humanize 4.12.2 -> 4.12.3 ( #33369 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-05-05 18:29:10 -07:00
github-actions[bot] and GitHub Action
bc1e8e07cf
chore( 🦾 ): bump python sqlglot 26.16.2 -> 26.16.4 ( #33368 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-05-05 18:28:56 -07:00
github-actions[bot] and GitHub Action
82526865d2
chore( 🦾 ): bump python h11 0.14.0 -> 0.16.0 ( #33339 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-05-06 07:41:10 +08:00
Daniel Vaz Gaspar
02c8c9c752
fix: bump FAB to 4.6.3 ( #33363 )
2025-05-06 00:02:25 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6475188e6a
chore(deps): bump swagger-ui-react from 5.20.2 to 5.21.0 in /docs ( #33318 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-05 16:34:20 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6e485c9f70
chore(deps-dev): update ts-loader requirement from ^9.5.1 to ^9.5.2 in /superset-frontend/packages/superset-ui-demo ( #33323 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-05 16:33:58 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b49e5857c9
chore(deps): bump uuid from 11.0.2 to 11.1.0 in /superset-websocket ( #33311 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-05 16:33:18 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
13ced58261
chore(deps-dev): bump @eslint/js from 9.17.0 to 9.25.1 in /superset-websocket ( #33312 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-05 16:32:59 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ed36674a99
chore(deps): bump less from 4.2.2 to 4.3.0 in /docs ( #33317 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-05 16:32:28 -06:00
Jonas DOREL
99aa3a6507
docs(docker-builds.mdx): clarify dockerize images ( #33350 )
2025-05-05 16:31:33 -06:00
Maxime Beauchemin
f045a73e2d
fix: loading examples from raw.githubusercontent.com fails with 429 errors ( #33354 )
2025-05-05 13:07:23 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7791674f24
chore(deps-dev): bump eslint-config-prettier from 10.1.1 to 10.1.2 in /docs ( #33315 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-03 15:37:33 -06:00
Vitor Avila
9f0ae77341
fix: Edge case with metric not getting quoted in sort by when normalize_columns is enabled ( #33337 )
2025-05-02 18:20:57 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5a9e366c0a
chore(deps-dev): bump typescript from 5.8.2 to 5.8.3 in /docs ( #33320 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-02 11:00:13 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c22c532a5c
chore(deps-dev): bump eslint-plugin-react from 7.37.4 to 7.37.5 in /docs ( #33314 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-02 10:59:53 -06:00
Michael S. Molina
6db3a4d9d2
fix: Temporal filter conversion in viz migrations ( #33224 )
2025-05-02 08:27:49 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17d7b72f3b
chore(deps-dev): bump webpack from 5.98.0 to 5.99.7 in /docs ( #33316 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-02 14:31:29 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fee33dd0cf
chore(deps): bump @rjsf/validator-ajv8 from 5.24.1 to 5.24.9 in /superset-frontend ( #33321 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-02 14:29:44 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
65605b4a54
chore(deps-dev): bump @babel/plugin-transform-runtime from 7.25.9 to 7.27.1 in /superset-frontend ( #33332 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-02 14:28:41 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e304f2d5ad
chore(deps): bump react-intersection-observer from 9.15.1 to 9.16.0 in /superset-frontend ( #33333 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-01 16:22:16 -07:00
Beto Dealmeida
4e0c261c9d
fix: show only filterable columns on filter dropdown ( #33338 )
2025-05-01 18:36:32 -04:00
Beto Dealmeida
22de26cd77
fix: metric.currency should be JSON, not string ( #33303 )
2025-05-01 18:16:51 -04:00
Beto Dealmeida
339ba96600
fix: improve function detection ( #33306 )
2025-05-01 13:45:03 -04:00
Phillip LeBlanc and Ville Brofeldt
3c6091144b
chore(deps): Upgrade pyarrow to 18.1.0 ( #31476 )
...
Co-authored-by: Ville Brofeldt <33317356+villebro@users.noreply.github.com >
2025-04-30 22:31:47 -06:00
JUST.in DO IT
ef14b529b8
fix(echarts): rename time series shifted colnames ( #33269 )
2025-04-30 14:18:18 -03:00
github-actions[bot] and GitHub Action
2a97a6ec1f
chore( 🦾 ): bump python importlib-metadata 8.6.1 -> 8.7.0 ( #33277 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 10:03:18 -07:00
github-actions[bot] and GitHub Action
fa6548939e
chore( 🦾 ): bump python mako 1.3.9 -> 1.3.10 ( #33280 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 10:02:45 -07:00
github-actions[bot] and GitHub Action
418c673699
chore( 🦾 ): bump python pyparsing 3.2.2 -> 3.2.3 ( #33281 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 10:01:42 -07:00
github-actions[bot] and GitHub Action
13f77a7416
chore( 🦾 ): bump python celery 5.4.0 -> 5.5.2 ( #33257 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 08:28:39 -07:00
github-actions[bot] and GitHub Action
303a80a316
chore( 🦾 ): bump python packaging 24.2 -> 25.0 ( #33259 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 08:27:48 -07:00
github-actions[bot] and GitHub Action
2392ac6827
chore( 🦾 ): bump python deprecation subpackage(s) ( #33260 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 08:27:25 -07:00
github-actions[bot] and GitHub Action
01ce4b987e
chore( 🦾 ): bump python python-dotenv 1.0.1 -> 1.1.0 ( #33262 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 08:26:59 -07:00
github-actions[bot] and GitHub Action
2f308a85d8
chore( 🦾 ): bump python pandas subpackage(s) ( #33263 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 08:26:40 -07:00
github-actions[bot] and GitHub Action
e8d60509a0
chore( 🦾 ): bump python sqlglot 26.11.1 -> 26.16.2 ( #33266 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 08:26:01 -07:00
github-actions[bot] and GitHub Action
d6f80eaae7
chore( 🦾 ): bump python gunicorn subpackage(s) ( #33265 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-29 08:25:23 -07:00
Emad Rad
a5f986fec5
feat: Persian translations ( #29580 )
2025-04-29 09:01:34 -06:00
Beto Dealmeida
141d0252f2
fix: mask password on DB import ( #33267 )
2025-04-29 10:27:03 -04:00
Daniel Vaz Gaspar
c029b532d4
fix: LocalProxy is not mapped warning ( #33025 )
2025-04-28 23:01:26 -06:00
github-actions[bot] and GitHub Action
13816443ba
chore( 🦾 ): bump python croniter subpackage(s) ( #33258 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-04-28 16:52:09 -07:00
Elizabeth Thompson
2c4e22e598
chore: add some utils tests ( #33236 )
2025-04-28 15:00:32 -07:00
Hamir Mahal
aea776a131
fix: Unexpected input(s) 'depth' CI warnings ( #33254 )
2025-04-28 11:07:13 -06:00
Evan Rusackas
d2360b533b
fix(histogram): remove extra single quotes ( #33248 )
2025-04-25 16:45:05 -06:00
Vitor Avila
de84a534ac
fix(DB update): Gracefully handle querry error during DB update ( #33250 )
2025-04-25 15:38:59 -03:00
Sam Firke
ac636c73ae
fix(heatmap): correctly render int and boolean falsy values on axes ( #33238 )
2025-04-25 11:25:50 -04:00
Levis Mbote
6a586fe4fd
fix(chart): Restore subheader used in bignumber with trendline ( #33196 )
2025-04-25 09:39:07 -03:00
Vitor Avila
fbd8ae2888
fix(sqllab permalink): Commit SQL Lab permalinks ( #33237 )
2025-04-24 22:41:15 -03:00
Vitor Avila
7e4fde7a14
fix(standalone): Ensure correct URL param value for standalone mode ( #33234 )
2025-04-24 16:41:42 -03:00
Evan Rusackas and dykoffi
150b9a0168
feat(maps): Adding Republic of Serbia to country maps ( #33208 )
...
Co-authored-by: dykoffi <dykoffi@users.noreply.github.com >
2025-04-23 11:29:35 -06:00
Vitor Avila
f7b7aace38
fix(export): Full CSV/Excel exports respecting SQL_MAX_ROW config ( #33214 )
2025-04-23 13:13:07 -03:00
Sam Firke
f78c94c988
docs(installation): compare installation methods ( #33137 )
2025-04-23 11:57:33 -04:00
sha174n
74ff8dc724
docs: Add note on SQL execution security considerations ( #33210 )
2025-04-23 13:58:33 +01:00
Shao Yu-Lung (Allen) and Shao Yu-Lung
8aa127eac2
feat(i18n): Frontend add zh_TW Option ( #33192 )
...
Co-authored-by: Shao Yu-Lung (Allen) <mis@cendai.com.tw >
2025-04-22 15:36:09 -06:00
Kalai and Evan Rusackas
3729016a0d
docs: improve documentation(docs): clarify URL encoding requirement for connection strings ( #30047 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2025-04-22 15:30:19 -06:00
Elizabeth Thompson
b6628cdfd2
chore: migrate to more db migration utils ( #33155 )
2025-04-22 11:26:54 -07:00
Evan Rusackas and dykoffi
ae48dba3e1
feat(maps): Adding Ivory Coast / Côte d'Ivoire ( #33198 )
...
Co-authored-by: dykoffi <dykoffi@users.noreply.github.com >
2025-04-22 10:04:19 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
09364d182c
chore(deps-dev): bump http-proxy-middleware from 2.0.7 to 2.0.9 in /superset-frontend ( #33197 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-22 09:31:10 -06:00
Geido
99ed968289
fix(Native Filters): Keep default filter values when configuring creatable behavior ( #33205 )
2025-04-22 16:32:30 +02:00
Geido
8fa3b8d7e3
fix(Native Filters): Keep default filter values when configuring creatable behavior ( #33205 )
2025-04-22 16:30:36 +02:00
Maxime Alay-Eddine and Maxime ALAY-EDDINE
7530487760
feat(country-map): fix France Regions IDF region code - Fixes #32627 ( #32695 )
...
Co-authored-by: Maxime ALAY-EDDINE <maxime@galeax.com >
2025-04-21 20:15:27 -06:00
Maxime Beauchemin
79afc2b545
docs: add a high-level architecture diagram to the docs ( #33173 )
2025-04-21 11:15:29 -07:00
JUST.in DO IT
8c94f9c435
fix(sqllab): Invalid SQL Error breaks SQL Lab ( #33164 )
2025-04-18 13:31:54 -07:00
Evan Rusackas
b589d44dfb
fix(deckgl): Update Arc to properly adjust line width ( #33154 )
2025-04-18 10:07:40 -06:00
Elizabeth Thompson
4140261797
fix: subheader should show as subtitle ( #33172 )
2025-04-18 13:03:20 +08:00
Jacob Amrany
00f1fdb3c4
fix: os.makedirs race condition ( #33161 )
2025-04-17 15:09:44 -03:00
JUST.in DO IT
172e5dd095
fix(echart): Thrown errors shown after resized ( #33143 )
2025-04-17 09:49:49 -07:00
Mehmet Salih Yavuz
a53907a646
feat(Select): Select all and Deselect all that works on visible items while searching ( #33043 )
2025-04-17 18:04:08 +03:00
amaannawab923 and Amaan Nawab
be1b8d6751
feat(Native Filters): Exclude Filter Values ( #33054 )
...
Co-authored-by: Amaan Nawab <nelsondrew07@gmail.com >
2025-04-17 17:56:26 +03:00
Elizabeth Thompson
26ff734ef9
fix: add folders to import schema ( #33142 )
2025-04-15 19:49:44 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0e18246999
chore(deps): bump @babel/runtime from 7.17.2 to 7.27.0 in /superset-frontend/cypress-base ( #33102 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-15 20:38:56 -06:00
JUST.in DO IT
7333ffd41e
fix(echart): Tooltip date format doesn't follow time grain ( #33138 )
2025-04-15 18:51:53 -07:00
Elizabeth Thompson
7dc5019b9d
fix: app icon should not use subdirectory ( #33141 )
2025-04-15 18:09:06 -07:00
Jillian
93fa39a14f
fix(lang): patch FAB's LocaleView to redirect to previous page ( #31692 )
2025-04-15 09:46:06 -07:00
JUST.in DO IT
342e6f3ab0
fix(dashboard): invalid active tab state ( #33106 )
2025-04-15 09:14:20 -07:00
Enzo Martellucci
013379eb86
feat(List Users): Migrate List Users FAB to React ( #32882 )
2025-04-15 17:04:28 +03:00
Michael S. Molina
bc0ffe0d10
fix: Viz migration error handling ( #33037 )
2025-04-15 08:25:09 -03:00
Elizabeth Thompson
5f62deaa36
chore: use create table util ( #33072 )
2025-04-14 19:01:11 -07:00
WLCFaro
ff8605b723
feat(lang): update Italian language ( #29827 )
2025-04-14 16:16:08 -06:00
Felipe Granado and Evan Rusackas
45c77a1976
chore(translations): Update PT-BR language (partial) ( #29828 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2025-04-14 16:06:54 -06:00
Kamil Gabryjelski
8cb71b8d3b
fix(plugin-chart-table): Don't render redundant items in column config when time comparison is enabled ( #33126 )
2025-04-14 23:08:15 +02:00
Daniel Höxtermann
2233c02720
fix(playwright): allow screenshotting empty dashboards ( #33107 )
2025-04-14 12:20:39 -07:00
Kamil Gabryjelski
839215148a
feat(explore): X-axis sort by specific metric when more than 1 metric is set ( #33116 )
2025-04-14 20:39:09 +02:00
Maxime Beauchemin
c1eeb63d89
fix: master builds are failing while trying to push report to cypress ( #33124 )
2025-04-14 10:53:02 -07:00
Elizabeth Thompson and Kamil Gabryjelski
7b9ebbe735
feat(explore): Integrate dataset panel with Folders feature ( #33104 )
...
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
2025-04-14 18:40:31 +02:00
Vitor Avila
a5a91d5e48
fix(OAuth2): Update connection should not fail if connection is missing OAuth2 token ( #33100 )
2025-04-14 11:19:55 -03:00
Michael S. Molina
e1f5c49df7
fix: Allows configuration of Selenium Webdriver binary ( #33103 )
2025-04-14 08:11:02 -03:00
Kamil Gabryjelski
3c1fc0b722
fix: Broken menu links to datasets and sql lab ( #33114 )
2025-04-13 21:31:21 +02:00
Maxime Beauchemin
05faf2f352
fix: resolve recent merge collisio ( #33110 )
2025-04-12 16:33:00 -07:00
Daniel Höxtermann
347c174099
fix(thumbnails): ensure consistent cache_key ( #33109 )
2025-04-12 12:15:08 -07:00
Erkka Tahvanainen and Erkka Tahvanainen
5656d69c04
fix(dashboard): Generate screenshot via celery ( #32193 )
...
Co-authored-by: Erkka Tahvanainen <erkka.tahvanainen@confidently.fi >
2025-04-12 12:14:16 -07:00
Maxime Beauchemin
ac4df8d06b
fix: CI file change detector to handle large PRs ( #33092 )
2025-04-12 12:08:41 -07:00
Beto Dealmeida and Maxime Beauchemin
bcd136cee1
feat: catalogs for DuckDB ( #28751 )
...
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-04-11 12:58:59 -07:00
Beto Dealmeida and Maxime Beauchemin
7ab8534ef6
feat: dataset folders (backend) ( #32520 )
...
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-04-11 11:38:08 -07:00
Geido
014b39290b
feat(Native Filters): Configure creatable filter behavior ( #33096 )
2025-04-11 20:38:02 +03:00
Martyn Gigg
4f97b739b1
fix: Broken Python tests on master after merging prefix branch ( #33095 )
2025-04-11 08:52:35 -07:00
Beto Dealmeida
d88cba92c0
feat: optimize catalog permission sync ( #33000 )
2025-04-10 17:38:34 -07:00
Pedro-Gato
5304bed4ed
chore: Update INTHEWILD.md ( #33079 )
2025-04-10 11:52:04 -06:00
Johannes
37194a41ec
chore: Added Formbricks to INTHEWILD.md ( #33074 )
2025-04-10 11:51:39 -06:00
Levis Mbote
d75ff9e784
feat(charts): add subtitle option and metric customization controls ( #32975 )
2025-04-10 17:24:24 +02:00
Hossein Khalilian
164a07e2be
fix(docker): fallback to pip if uv is not available ( #33087 )
2025-04-10 11:10:26 -04:00
Clay Heaton
44bd200885
fix(docs): Update quickstart.mdx to reflect latest version tag ( #33063 )
2025-04-10 09:58:00 -04:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8242692541
chore(deps-dev): bump lerna from 8.1.9 to 8.2.1 in /superset-frontend ( #32941 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-09 16:11:41 -06:00
Martyn Gigg and Kamil Gabryjelski
09b92e7d08
feat: Allow superset to be deployed under a prefixed URL ( #30134 )
...
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
2025-04-09 13:43:44 -07:00
Landry Breuil
31ac3898ad
fix(list roles): dont send invalid querystrings ( #33060 )
2025-04-09 23:25:20 +03:00
Michael S. Molina
c1159c53e3
fix: Adds missing __init__ file to commands/logs ( #33059 )
2025-04-09 16:39:32 -03:00
Maxime Beauchemin
deb6aedddb
feat: add a title prop to the dashboard link in CRUD LIST view ( #33046 )
2025-04-09 12:02:37 -07:00
JUST.in DO IT
ed0cd5e7b0
fix: improve error type on parse error ( #33048 )
2025-04-09 09:52:15 -07:00
Maxime Beauchemin
9280b4d2a9
docs: clarify docker-compose-image-tag instructions ( #33045 )
2025-04-09 08:59:07 -07:00
Ville Brofeldt
3a57857707
chore(helm): bump appVersion to 4.1.2 ( #33061 )
2025-04-09 08:45:48 -07:00
EmmanuelCbd
6b7394e789
fix(export): charts csv export in dashboards ( #31720 )
2025-04-08 14:02:13 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5a8eab3b25
chore(deps): bump estree-util-value-to-estree from 3.1.1 to 3.3.3 in /docs ( #33028 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-08 11:21:04 -06:00
Ookong
15969fdf94
docs: add WinWin Network(马上赢) to users list ( #33018 )
2025-04-08 11:18:47 -06:00
JUST.in DO IT
9b15e04bc4
fix(log): Missing failed query log on async queries ( #33024 )
2025-04-08 07:12:03 -07:00
Asher Manangan and Asher Manangan
fd947a097d
feat(tags): Export and Import Functionality for Superset Dashboards and Charts ( #30833 )
...
Co-authored-by: Asher Manangan <amanangan@powercosts.com >
2025-04-07 15:12:22 -04:00
e1383d3821
refactor(IconButton): Refactor IconButton to use Ant Design 5 Card ( #32890 )
...
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
2025-04-07 20:57:32 +03:00
Hugues Verlin
c131205ff1
docs: Update documentation about publishing a dashboard ( #32999 )
2025-04-07 10:19:39 -07:00
Levis Mbote
b6df88a134
fix: fix bug where dashboard did not enter fullscreen mode. ( #32839 )
2025-04-07 18:20:49 +03:00
Hugo Lavernhe
629b137bb0
fix(dashboard): chart fullscreen issue when filter pane is collapsed ( #28428 )
2025-04-04 17:12:14 -06:00
Vitor Avila
db959a6463
chore(Databricks): Display older Databricks driver as legacy ( #33001 )
2025-04-04 15:09:15 -03:00
Kamil Gabryjelski
4041150660
feat: Add getDataMask function to embedded SDK ( #32997 )
2025-04-03 21:10:01 +02:00
bcb43327b1
fix: show_filters URL parameter is not working ( #29422 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
Co-authored-by: Vitor Avila <vitor.avila@preset.io >
2025-04-03 15:59:11 -03:00
Trent Lavoie and Trent Lavoie
63c8bbf3eb
fix(frontend): add missing antd-5 icon to import ( #32990 )
...
Co-authored-by: Trent Lavoie <lavtrent@amazon.com >
2025-04-03 11:18:39 -06:00
Michael S. Molina
24b1666273
fix: Bar Chart (legacy) migration to keep labels layout ( #32965 )
2025-04-03 08:16:55 -03:00
Mohamed Halat
86b795cd36
feat(embedding-sdk): emit data-mask events through embedded sdk to iframe parent ( #31331 )
2025-04-03 12:37:52 +02:00
Maxime Beauchemin
bc0bf94680
chore: bump marshmallow-sqlalchemy to 1.4.0 ( #32922 )
2025-04-02 09:09:08 -07:00
SBIN2010
f5d64176f6
fix: fixed Add Metrics to Tree Chart ( #29158 ) ( #30679 )
2025-04-02 10:04:36 -06:00
Enzo Martellucci and Diego Pucci
4f0020d0df
feat(List Roles): Migrate FAB view to React ( #32432 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-04-02 14:06:17 +03:00
Maxime Beauchemin
c83eda9551
feat: add latest partition support for BigQuery ( #30760 )
2025-04-01 17:13:09 -07:00
JUST.in DO IT
a36e636a58
fix(pivot-table): Revert "fix(Pivot Table): Fix column width to respect currency config ( #31414 )" ( #32968 )
2025-04-01 19:05:36 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f5d3627468
chore(deps-dev): bump eslint-config-prettier from 10.0.2 to 10.1.1 in /docs ( #32952 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-01 10:28:50 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8eeed49547
chore(deps): bump antd from 5.24.2 to 5.24.5 in /docs ( #32951 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-01 10:27:27 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
00933a27af
chore(deps): bump swagger-ui-react from 5.20.0 to 5.20.2 in /docs ( #32950 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-01 10:26:55 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2bc33beec4
chore(deps-dev): bump @babel/compat-data from 7.26.5 to 7.26.8 in /superset-frontend ( #32939 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-01 10:24:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e1c1de1b94
chore(deps-dev): bump css-minimizer-webpack-plugin from 7.0.0 to 7.0.2 in /superset-frontend ( #32937 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-01 10:24:13 -07:00
notHuman9504
26743dfcee
fix: Clicking in the body of a Markdown component does not put it into edit mode ( #32384 )
2025-04-01 11:23:48 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8b0bda3bad
chore(deps): update @types/react-redux requirement from ^7.1.10 to ^7.1.34 in /superset-frontend/plugins/plugin-chart-echarts ( #32927 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-01 10:22:12 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a8a6254ea2
chore(deps-dev): bump @typescript-eslint/parser from 8.19.0 to 8.29.0 in /superset-websocket ( #32925 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-01 10:21:01 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
be4bc3dec5
chore(deps-dev): bump ts-jest from 29.2.5 to 29.3.1 in /superset-websocket ( #32924 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-01 10:19:54 -07:00
Joe Li and Michael S. Molina
6e02d19b0d
fix: make packages PEP 625 compliant ( #32866 )
...
Co-authored-by: Michael S. Molina <michael.s.molina@gmail.com >
2025-03-31 21:34:24 -06:00
Usiel Riedl
662f0fa8f4
chore(reports): add task for slack channels warm-up ( #32585 )
2025-03-31 14:30:21 -03:00
JUST.in DO IT
56bf17f879
fix(sqllab): Invalid display of table column keys ( #32763 )
2025-03-31 14:26:31 -03:00
Kamil Gabryjelski
b92909d621
feat: Enable passing a permalink to cache_dashboard_screenshot endpoint ( #32900 )
2025-03-31 10:40:36 +02:00
mkramer5454
8f35a3ec8c
feat(plugins): Make comparison values on BigNumberPeriodOverPeriod toggleable ( #28605 )
2025-03-30 22:05:53 -06:00
Vladislav Korenkov
a4a092794a
feat(chart controls): Add "%d.%m.%Y" time format option ( #32814 )
2025-03-30 22:02:58 -06:00
bmaquet
174750c9dd
refactor(jinja macro): Update current_user_roles() macro to fetch roles from existing get_user_roles() method ( #32888 )
2025-03-28 20:50:53 -07:00
Levis Mbote
f2c0686346
feat: Add Aggregation Method for Big Number with Trendline ( #32767 )
2025-03-29 05:34:23 +02:00
github-actions[bot] and GitHub Action
c2afae51cb
chore( 🦾 ): bump python grpcio 1.68.0 -> 1.71.0 ( #32901 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-28 17:36:41 -07:00
Geido
6e1d1ad18b
refactor(Icons): Add typing support and improve structure ( #32880 )
2025-03-28 17:16:31 -07:00
Vitor Avila
ab22bb1878
fix(Jinja): Emit time grain to table charts even if they don't have a temporal column ( #32871 )
2025-03-28 13:48:49 -03:00
Đỗ Trọng Hải and Ville Brofeldt
e0ed652ed8
fix(backend/async_events): allow user to configure username for Redis authentication in GLOBAL_ASYNC_QUERIES_CACHE_BACKEND ( #32372 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Ville Brofeldt <33317356+villebro@users.noreply.github.com >
2025-03-27 19:39:05 -07:00
Luke Hart
103fedaf92
fix: use role_model from security manager ( #32873 )
2025-03-27 10:01:14 -07:00
Joe Li
50fe7483ae
chore: update migrations to use utils ( #32852 )
2025-03-26 10:29:04 -07:00
SBIN2010
37f626f5e2
fix(ColorPickerControl): change color picker control width ( #32851 )
2025-03-26 10:28:07 -07:00
Michael S. Molina
b1693f625a
chore: Removes unused file ( #32860 )
2025-03-26 13:35:14 -03:00
Vitor Avila
f0dc1e7527
fix(table-chart): Do not show comparison columns config if time_compare is set to [] ( #32863 )
2025-03-26 13:28:22 -03:00
Christiaan Baartse
6c7f089ebb
fix(translation): Dutch translations for Current datetime filter ( #31869 )
2025-03-26 22:13:50 +07:00
Beto Dealmeida
68a81c3989
fix: update dataset/query catalog on DB changes ( #32829 )
2025-03-26 08:56:02 -04:00
Vitor Avila
5222f940cc
fix(echarts): Sort series by name using naturalCompare ( #32850 )
2025-03-26 08:17:43 -03:00
Radovenchyk and Maxime Beauchemin
45ea11c1b6
docs: added a link to badge releases ( #32822 )
...
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-03-25 12:49:48 -07:00
Michael S. Molina
b624919d2f
fix: Bump FAB to 4.6.1 ( #32848 )
2025-03-25 15:29:19 -03:00
Joe Li
b5cb5f4525
chore: updating files for release 4.1.2 ( #32831 )
2025-03-25 10:26:37 -07:00
JUST.in DO IT
4a70065e5f
fix(log): store navigation path to get correct logging path ( #32795 )
2025-03-25 10:18:55 -07:00
Fardin Mustaque and Fardin Mustaque
7d77dc4fd2
fix: Time Comparison Feature Reverts Metric Labels to Metric Keys in Table Charts ( #32665 )
...
Co-authored-by: Fardin Mustaque <fardinmustaque@Fardins-Mac-mini.local >
2025-03-25 14:22:15 +02:00
Chris
6f69c84d10
fix: key error in frontend on disallowed GSheets ( #32792 )
2025-03-24 15:19:59 -07:00
bmaquet
6b96b37c38
feat: Add current_user_roles() Jinja macro ( #32770 )
2025-03-24 18:39:07 -03:00
github-actions[bot] and GitHub Action
b7435f84f0
chore( 🦾 ): bump python humanize 4.12.1 -> 4.12.2 ( #32826 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-24 13:44:15 -07:00
github-actions[bot] and GitHub Action
7bc349c3c3
chore( 🦾 ): bump python pyparsing 3.2.1 -> 3.2.2 ( #32827 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-24 13:43:52 -07:00
github-actions[bot] and GitHub Action
fd4e45aafc
chore( 🦾 ): bump python shillelagh subpackage(s) ( #32828 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-24 13:43:23 -07:00
github-actions[bot] and GitHub Action
b339d7ad20
chore( 🦾 ): bump python click-option-group 0.5.6 -> 0.5.7 ( #32825 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-24 13:43:01 -07:00
Vitor Avila
cedd186c21
feat(Jinja): to_datetime filter ( #32781 )
2025-03-24 16:55:37 -03:00
SBIN2010
c6c9114b40
fix: CSV/Excel upload form change column dates description ( #32797 )
2025-03-24 09:48:39 -07:00
Đỗ Trọng Hải
f4a05a5ffd
fix(docs): scrollable table of content right bar in Superset docs ( #32801 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-03-22 10:52:10 -06:00
Đỗ Trọng Hải
a82f916a71
fix(sec): resolve CVE-2025-29907 and CVE-2025-25977 by pinning jspdf to v3 ( #32802 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-03-22 10:50:13 -06:00
Đỗ Trọng Hải
ff0529c932
fix(model/helper): represent RLS filter clause in proper textual SQL string ( #32406 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-03-21 14:36:03 -06:00
CharlesNkdl
c0f83a7467
fix(excel export): big number truncation handling ( #32739 )
2025-03-21 09:39:59 -07:00
V9 Developer
9bb3a5782d
fix(config): correct slack image url in talisman ( #32778 )
2025-03-21 09:32:51 -07:00
Ruslan
5ec710efc6
fix(css): typos in styles ( #28350 )
2025-03-20 16:32:02 -06:00
Vladislav Korenkov and Vladislav Koren'kov
5866f3ec83
fix(import): Missing catalog field in saved query schema ( #32775 )
...
Co-authored-by: Vladislav Koren'kov <korenkov.vv@dns-shop.ru >
2025-03-20 16:33:51 -04:00
Antonio Rivero
01801e3c36
fix(sqllab): Pass query_id as kwarg so backoff can see it ( #32774 )
2025-03-20 18:46:31 +01:00
Vladislav Korenkov
d319543377
fix(chart control): Change default of "Y Axis Title Margin" ( #32720 )
2025-03-20 10:14:09 -03:00
Alexandru Soare
5392bafe28
feat(FormModal): Specialized Modal component for forms ( #32721 )
2025-03-20 14:28:25 +02:00
Elizabeth Thompson
89ce7ba0b0
fix: do not add calculated columns when syncing ( #32761 )
2025-03-19 17:33:28 -07:00
Antonio Rivero
376a1f49d3
fix(migrations): fix foreign keys to match FAB 4.6.0 tables ( #32759 )
2025-03-19 22:47:26 +01:00
Vitor Avila
6042ea8f28
feat(embedded): Force a specific referrerPolicy for the iframe request ( #32735 )
2025-03-19 15:44:07 -03:00
Giampaolo Capelli and Giampaolo Capelli
78efb62781
fix: Changing language doesn't affect echarts charts ( #31751 )
...
Co-authored-by: Giampaolo Capelli <giampaolo.capelli@docaposte.fr >
2025-03-19 11:38:53 -07:00
e9d5079986
chore( 🦾 ): bump python flask-appbuilder subpackage(s) ( #32744 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-03-19 11:24:24 -07:00
Radovenchyk
c6e0abbe13
chore: replaced the workflow badge link ( #32749 )
2025-03-19 11:42:47 -06:00
github-actions[bot] and GitHub Action
4f166a03f5
chore( 🦾 ): bump python slack-sdk 3.34.0 -> 3.35.0 ( #32742 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-18 20:46:48 -06:00
sowo
29b62f7c0a
fix(contextmenu): uncaught TypeError ( #28203 )
2025-03-18 20:42:38 -06:00
github-actions[bot] and GitHub Action
09ee3e2a1d
chore( 🦾 ): bump python shillelagh subpackage(s) ( #31255 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-18 18:52:34 -07:00
github-actions[bot] and GitHub Action
121e424a7f
chore( 🦾 ): bump python celery subpackage(s) ( #32743 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-18 18:52:19 -07:00
github-actions[bot] and GitHub Action
66c1a6a875
chore( 🦾 ): bump python sqlglot 26.1.3 -> 26.11.1 ( #32745 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-18 18:52:00 -07:00
CharlesNkdl
b26c373f4d
chore(lang): update and fix french translations ( #32711 )
2025-03-18 17:31:23 -07:00
4dd318ca68
chore( 🦾 ): bump python flask-appbuilder subpackage(s) ( #31251 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-03-18 16:25:15 -07:00
Enzo Martellucci
ce6d5f5551
refactor(Icons): Replaces custom icons with Ant Design 5 icons ( #32112 )
...
Replace custom icons with Ant Design 5 icons to standardize the icon
2025-03-18 22:22:41 +01:00
Daniel Höxtermann
9e3052968b
fix: ensure datasource permission in explore ( #32679 )
2025-03-18 17:15:10 -04:00
github-actions[bot] and GitHub Action
3f1ef2a283
chore( 🦾 ): bump python greenlet ( #31247 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-18 13:01:31 -07:00
Paul Rhodes
bc3e19d0a2
fix(import): Ensure import exceptions are logged ( #32410 )
2025-03-18 12:35:57 -07:00
Vitor Avila
850801f510
feat(where_in): Support returning None if filter_values return None ( #32731 )
2025-03-18 13:18:51 -06:00
Evan Rusackas
710af87faf
Revert "Revert "fix(asf): moving notifications to the top of .asf.yaml"" ( #32732 )
2025-03-18 13:18:36 -06:00
Evan Rusackas
6612343f33
Revert "fix(asf): moving notifications to the top of .asf.yaml" ( #32730 )
2025-03-18 12:22:53 -06:00
Evan Rusackas
c399295a4e
fix(docs): Another CSP hole for run.app to allow Kapa AI ( #32728 )
2025-03-18 13:42:07 -04:00
Evan Rusackas
e34644d983
fix(docs): poking ANOTHER hole in the CSP for the AI bot. ( #32727 )
2025-03-18 13:33:00 -04:00
Evan Rusackas
cc0097c87a
fix(asf): moving notifications to the top of .asf.yaml ( #32726 )
2025-03-18 13:19:47 -04:00
Evan Rusackas
d71e655a4b
fix(docs): allow recaptcha in CSP ( #32724 )
2025-03-18 13:13:51 -04:00
Beto Dealmeida
99e69c32ee
fix: coerce datetime conversion errors ( #32683 )
2025-03-18 13:09:23 -04:00
PyKen
a2c164a77d
chore(helm): bump postgresql image tag in helm values ( #32686 )
2025-03-18 09:49:32 -07:00
Evan Rusackas
78d2a584b7
chore(asf): Another .asf.yaml touch-up. ( #32714 )
2025-03-18 09:27:27 -06:00
Evan Rusackas
f0c8c12c1a
chore(docs): touching up AI styling/text ( #32689 )
2025-03-17 21:25:48 -06:00
Evan Rusackas
34cd741e9b
fix(docs): Fixes scrolling issue with AI widget on docs site ( #32713 )
2025-03-17 21:25:35 -06:00
Evan Rusackas
1684ddc7e6
chore(asf): trying to fix .asf.yaml again to re-enable Discussions ( #32712 )
2025-03-17 21:01:54 -06:00
Vitor Avila
e35145c816
feat(file uploads): List only allowed schemas in the file uploads dialog ( #32702 )
2025-03-17 23:36:16 -03:00
Evan Rusackas
4adf44a43c
chore(asf): Removing notifications from .asf.yaml - they still don't work :( ( #32710 )
2025-03-17 17:12:48 -06:00
JUST.in DO IT
cd5a94305c
fix(logging): missing path in event data ( #32708 )
2025-03-17 14:46:34 -07:00
Evan Rusackas
b4602aaf28
chore(asf): fixing(?) .asf.yaml ( #32709 )
2025-03-17 15:43:45 -06:00
Evan Rusackas
3e69ba1384
fix(repo): re-enable GitHub Discussions ( #32703 )
2025-03-17 14:34:50 -06:00
Beto Dealmeida
41bf215367
fix: boolean filters in Explore ( #32701 )
2025-03-17 14:38:00 -04:00
Evan Rusackas
06deaebe19
fix(docs): poking a CSP hole for Kapa AI widget ( #32704 )
2025-03-17 11:33:15 -06:00
Sam Firke
6a13ab8920
fix(spreadsheet uploads): make file extension comparisons case-insensitive ( #32696 )
2025-03-17 11:31:11 -06:00
Đỗ Trọng Hải
f1a222d356
fix(cosmetics): allow toast message to be toggled off when modal is opened ( #32691 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-03-17 11:28:04 -06:00
Đỗ Trọng Hải
a87bedf31a
docs(api): correct attribute name instead of table for GET table_metadata in openapi.json ( #32690 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-03-17 11:26:47 -06:00
Đỗ Trọng Hải
890b6079b9
build(dev-deps): bump prettier to v3.5.3 and follow-up refactor ( #32688 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-03-17 11:24:24 -06:00
Rytis Ulys
9c62456487
chore: add Oxylabs to INTHEWILD.md ( #32697 )
2025-03-17 10:18:52 -07:00
Geido
414cdbf83a
fix(no-restricted-imports): Fix overrides and include no-fa-icons-usage ( #32571 )
2025-03-17 18:52:52 +02:00
Michael S. Molina
df06bdf33b
fix: Signature of Celery pruner jobs ( #32699 )
2025-03-17 13:52:31 -03:00
JUST.in DO IT
449f51aed5
fix(log): Update recent_activity by event name ( #32681 )
2025-03-17 09:18:47 -07:00
Paul Rhodes
c9e2c7037e
feat: Implement sparse import for ImportAssetsCommand ( #32670 )
2025-03-17 08:44:15 -06:00
Đỗ Trọng Hải
a49a15f990
chore(docs): remove customized "Edit this page on GitHub" button ( #32407 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-03-15 21:27:10 +07:00
Evan Rusackas
eb39ddbfe3
feat(docs): Adding Kapa.ai integration ( #32682 )
2025-03-15 12:34:42 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
974d36d35e
chore(deps): bump jinja2 from 3.1.5 to 3.1.6 in /superset/translations ( #32580 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-15 12:17:18 +07:00
Beto Dealmeida
b64e3254fc
feat: DB migration for dataset folders ( #32680 )
2025-03-14 17:16:02 -04:00
Maxime Beauchemin
9907db9e1a
feat: add a note to install cors-related dependency when using ENABLE_CORS ( #32662 )
2025-03-14 10:33:31 -07:00
Michael S. Molina
b4dd64aa24
fix: Update RELEASING/README.md ( #32678 )
2025-03-14 10:28:18 -07:00
Pedro Martin-Steenstrup
6e049225f9
docs: add Hometogo to users list ( #32668 )
2025-03-14 10:27:28 -07:00
Beto Dealmeida
831369a44b
fix(gsheets): update params from encrypted extra ( #32661 )
2025-03-14 12:00:53 -04:00
Evan Rusackas
7c9c30db1d
chore(examples): Touching up Vehicle Sales a bit ( #32623 )
2025-03-14 09:31:02 -06:00
Vitor Avila
0c6d868483
fix(import): Import a DB connection with expanded rows enabled ( #32657 )
2025-03-14 12:02:39 -03:00
Andrey Yakir
777760b096
fix(dashboard): Ensure dashboardId is included in form_data for embedded mode ( #32646 )
2025-03-14 10:36:42 -04:00
Vitor Avila
e8ad096173
fix(sync perms): Avoid UnboundLocalError during perm sync for DBs that don't support catalogs ( #32658 )
2025-03-13 21:07:49 -03:00
Dolph Mathews
2f6f5c6778
fix: Upgrade node base image to Debian 12 bookworm ( #32652 )
2025-03-13 12:56:24 -07:00
JUST.in DO IT
832e028b39
fix(welcome): perf on distinct recent activities ( #32608 )
2025-03-13 09:44:48 -07:00
Beto Dealmeida
d92af9c95c
chore: simplify user impersonation ( #32485 )
2025-03-13 12:43:05 -04:00
Ville Brofeldt
12435159db
chore: add unique option to index migration utils ( #32641 )
2025-03-13 08:55:24 -07:00
Beto Dealmeida
8695239372
feat: OAuth2StoreTokenCommand ( #32546 )
2025-03-13 09:45:24 -04:00
SkinnyPigeon
29b4c40e43
feat(reports): removing index column ( #32366 )
2025-03-12 16:27:07 -07:00
github-actions[bot] and GitHub Action
53471072f4
chore( 🦾 ): bump python paramiko 3.5.0 -> 3.5.1 ( #32575 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 14:52:24 -07:00
github-actions[bot] and GitHub Action
bf902b2240
chore( 🦾 ): bump python croniter 5.0.1 -> 6.0.0 ( #32639 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 14:44:30 -07:00
github-actions[bot] and GitHub Action
4b4912ba99
chore( 🦾 ): bump python flask-session subpackage(s) ( #32637 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 14:43:21 -07:00
github-actions[bot] and GitHub Action
fa890ecb23
chore( 🦾 ): bump python celery subpackage(s) ( #32638 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 14:43:05 -07:00
github-actions[bot] and GitHub Action
67af8bd730
chore( 🦾 ): bump python importlib-metadata 8.5.0 -> 8.6.1 ( #32636 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 14:42:17 -07:00
github-actions[bot] and GitHub Action
f5eca4fe0b
chore( 🦾 ): bump python simplejson 3.19.3 -> 3.20.1 ( #32635 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 14:41:59 -07:00
github-actions[bot] and GitHub Action
057423ed92
chore( 🦾 ): bump python flask-caching 2.3.0 -> 2.3.1 ( #32634 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 14:41:36 -07:00
github-actions[bot] and GitHub Action
7dbe608d27
chore( 🦾 ): bump python sshtunnel subpackage(s) ( #32629 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 14:40:32 -07:00
Maxime Beauchemin
d8d4b75a11
chore: fix precommit for eslint ( #32596 )
2025-03-12 11:26:56 -07:00
Maxime Beauchemin
664047f3fb
chore: fix precommit for eslint ( #32596 )
2025-03-12 11:26:36 -07:00
github-actions[bot] and GitHub Action
1e20b048d3
chore( 🦾 ): bump python sqlparse 0.5.2 -> 0.5.3 ( #32631 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 10:43:23 -07:00
github-actions[bot] and GitHub Action
6c1806df74
chore( 🦾 ): bump python greenlet 3.0.3 -> 3.1.1 ( #32628 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 10:42:46 -07:00
github-actions[bot] and GitHub Action
d97d991b5f
chore( 🦾 ): bump python humanize 4.11.0 -> 4.12.1 ( #32632 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 10:40:37 -07:00
github-actions[bot] and GitHub Action
90e18e37d0
chore( 🦾 ): bump python nh3 0.2.19 -> 0.2.21 ( #32630 )
...
Co-authored-by: GitHub Action <action@github.com >
2025-03-12 10:40:03 -07:00
c5a2bc5484
chore( 🦾 ): bump python flask-migrate subpackage(s) ( #32578 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-03-12 10:19:05 -07:00
2ecc7e4f56
chore( 🦾 ): bump python pyparsing 3.2.0 -> 3.2.1 ( #32577 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-03-12 10:18:25 -07:00
JUST.in DO IT
9f79c5ab4d
fix(sqllab): Grid header menu ( #32381 )
2025-03-12 09:48:33 -07:00
JUST.in DO IT
e7721a8c4d
fix(dashboard): Support bigint value in native filters ( #32549 )
2025-03-12 09:47:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c8f5089f7a
chore(deps-dev): bump axios from 1.7.7 to 1.8.2 in /superset-embedded-sdk ( #32581 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-12 21:34:04 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a0ea905a7a
chore(deps): bump axios from 1.7.8 to 1.8.2 in /docs ( #32582 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-11 21:37:16 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b8fd1a30ee
chore(deps-dev): bump axios from 1.7.9 to 1.8.2 in /superset-frontend ( #32583 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-11 21:36:52 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ff9ae54ae9
chore(deps): bump @babel/runtime-corejs3 from 7.26.9 to 7.26.10 in /docs ( #32603 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-11 21:27:43 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a16de15015
chore(deps): bump @babel/helpers from 7.24.5 to 7.26.10 in /docs ( #32598 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-11 21:26:45 -06:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
079e40144e
chore(deps): bump @babel/runtime from 7.26.9 to 7.26.10 in /docs ( #32604 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-11 21:24:44 -06:00
Evan Rusackas
a3f3a35c20
docs(analytics): actually USING Matomo to track page views/changes ( #32607 )
2025-03-11 17:23:57 -06:00
Maxime Beauchemin
4fdeab8dad
docs: fix typo in ephemeral envs docs ( #32605 )
2025-03-11 16:17:30 -07:00
Maxime Beauchemin
9ea58381f4
docs: add information about ephemeral environments ( #32600 )
2025-03-11 15:26:54 -07:00
RealGreenDragon
85d51f5c9a
chore: bump postgresql from 15 to 16 ( #32597 )
2025-03-11 15:26:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3b1d763421
chore(deps): bump @babel/helpers from 7.17.2 to 7.26.10 in /superset-frontend/cypress-base ( #32602 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-11 15:25:33 -07:00
91ab123860
chore( 🦾 ): bump python slack-sdk 3.33.4 -> 3.34.0 ( #32576 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-03-11 15:15:52 -07:00
Vitor Avila
8e021b0c82
fix(Slack V2): Specify the filename for the Slack upload method ( #32599 )
2025-03-11 18:42:17 -03:00
7aa89db8d0
chore( 🦾 ): bump python pandas subpackage(s) ( #32579 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-03-11 12:36:26 -07:00
Sam Firke
d3ba2755e8
feat(charts): add two new boxplot parameter sets ( #32170 )
2025-03-11 14:58:02 -04:00
Maxime Beauchemin
0b0e0e9ce8
chore( 🦾 ): bump python cryptography 43.0.3 -> 44.0.2 ( #32573 )
2025-03-11 09:08:38 -07:00
Đỗ Trọng Hải
979f890cd5
fix(comp/async-ace-editor): proper import of ace-builds ( #32553 )
2025-03-11 19:13:08 +07:00
Michael S. Molina
89b6d7fb68
fix: Log table retention policy ( #32572 )
2025-03-10 18:47:57 -03:00
EmmanuelCbd
644882faff
chore(docs): Add Flowbird to users list ( #32561 )
2025-03-10 10:21:23 -06:00
Mehmet Salih Yavuz
edfcbed24f
refactor(input): Remove leftover direct usage of Ant Design input ( #32545 )
2025-03-10 11:22:47 +01:00
Ville Brofeldt
f45ab70080
chore: bump node to v20.18.3 ( #32550 )
2025-03-09 20:48:06 +07:00
Elizabeth Thompson
33aa9030bf
fix: add DateOffset to json serializer ( #32532 )
2025-03-07 16:15:06 -08:00
JUST.in DO IT
4c3aae7583
fix(sqllab): Allow clear on schema and catalog ( #32515 )
2025-03-07 13:28:05 -08:00
Jake Hoban
c5dd52bcc9
docs: add Canonical to INTHEWILD.md ( #32547 )
2025-03-07 11:20:34 -08:00
Geido
eae7cf81b0
chore(Ant Design): Remove unnecessary exports from version 4 ( #32544 )
2025-03-07 18:56:12 +01:00
Antonio Rivero
20e5df501e
fix(migrations): Handle comparator None in old time comparison migration ( #32538 )
2025-03-07 16:30:24 +01:00
Ville Brofeldt
68e8d9858c
fix: always extract query source from request ( #32525 )
2025-03-06 14:17:21 -08:00
Elizabeth Thompson
99238dccbb
fix: keep calculated columns when datasource is updated ( #32523 )
2025-03-06 13:45:52 -08:00
Beto Dealmeida
626736bdd3
chore: add logging to index error ( #31770 )
2025-03-06 14:47:40 -05:00
Elizabeth Thompson
c2de749d0e
fix: Show response message as default error ( #32507 )
2025-03-06 10:58:22 -08:00
Vitor Avila and Elizabeth Thompson
9ad9ea67cf
chore: Caching the Slack channels list ( #32529 )
...
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com >
2025-03-06 14:59:12 -03:00
Ville Brofeldt
82595df6f9
chore(ci): use npm/yarn lock files where possible ( #32527 )
2025-03-06 06:47:48 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
281d1a8ec4
chore(deps-dev): bump eslint-config-prettier from 8.10.0 to 10.0.2 in /docs ( #32448 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-06 20:44:22 +07:00
Vitor Avila
d2e0e2b79c
fix(Slack): Fix Slack recipients migration to V2 ( #32336 )
2025-03-06 08:52:15 -03:00
Usiel Riedl
05409d51da
feat(slack): adds rate limit error handler for Slack client ( #32510 )
2025-03-06 08:01:12 -03:00
Usiel Riedl
e98194cdd3
fix(beat): prune_query celery task args fix ( #32511 )
2025-03-05 19:25:53 -08:00
Ramachandran A G
317532752c
feat(KustoKQL): Update KQL alchemy version and update timegrain expressions ( #32509 )
2025-03-05 17:53:47 -08:00
Ville Brofeldt
c90e45a373
feat: make user agent customizable ( #32506 )
2025-03-05 16:33:24 -08:00
Paul Rhodes
8decc9e45f
feat(api): Added uuid to list api calls ( #32414 )
2025-03-05 16:28:29 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8053833e1f
chore(deps-dev): bump globals from 15.9.0 to 16.0.0 in /superset-websocket ( #32437 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-05 14:37:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
07221d8859
chore(deps): bump markdown-to-jsx from 7.7.3 to 7.7.4 in /superset-frontend ( #32456 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-05 14:36:42 -07:00
Ville Brofeldt
c1abe1ec44
chore(ci): show more failed pre-commit context ( #32517 )
2025-03-05 11:39:07 -08:00
Kamil Gabryjelski
b3dfd4930a
fix(explore): Glitch in a tooltip with metric's name ( #32499 )
2025-03-05 16:55:00 +01:00
Daniel Vaz Gaspar
fc844d3dfd
fix: dashboard, chart and dataset import validation ( #32500 )
2025-03-05 08:47:49 +00:00
d8686c2d12
chore(deps-dev): update @babel/types requirement from ^7.26.3 to ^7.26.9 in /superset-frontend/plugins/plugin-chart-pivot-table ( #32470 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-03-04 13:52:35 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
90388885db
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.19.0 to 8.26.0 in /superset-websocket ( #32503 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 13:51:42 -08:00
Maxime Beauchemin
33370eaa5c
chore: enable dependabot using uv for auto-bumping python packages ( #32501 )
2025-03-04 12:23:12 -08:00
Emad Rad and Evan Rusackas
2b53b1800e
chore: various markdown warnings resolved ( #30657 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2025-03-04 12:45:49 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
807dcddc28
chore(deps): bump @deck.gl/react from 9.1.0 to 9.1.4 in /superset-frontend ( #32453 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 12:31:34 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a45ce1e8d1
chore(deps-dev): bump @babel/types from 7.26.7 to 7.26.9 in /superset-frontend ( #32460 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 12:29:50 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3d5128735b
chore(deps): bump @rjsf/utils from 5.24.1 to 5.24.3 in /superset-frontend ( #32461 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 12:29:37 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6173a6c329
chore(deps): bump chrono-node from 2.7.7 to 2.7.8 in /superset-frontend ( #32462 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 12:29:21 -07:00
Beto Dealmeida
813e79fa9f
fix: skip DB filter when doing OAuth2 ( #32486 )
2025-03-04 13:33:53 -05:00
Evan Rusackas and Michael S. Molina
c0e92b1639
feat(flag flip): Setting Horizontal Filters to True by default. ( #32317 )
...
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2025-03-04 11:26:14 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ef08ccbaa2
chore(deps-dev): bump @types/jsonwebtoken from 9.0.6 to 9.0.9 in /superset-websocket ( #32440 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 11:25:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
93d759c689
chore(deps): bump swagger-ui-react from 5.19.0 to 5.20.0 in /docs ( #32454 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 11:25:35 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0d24ce0ef9
chore(deps-dev): bump @types/lodash from 4.17.14 to 4.17.16 in /superset-frontend ( #32476 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 11:25:21 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a4902a3685
chore(deps): bump antd from 5.24.1 to 5.24.2 in /docs ( #32447 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 10:23:43 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
16b08e333d
chore(deps-dev): bump webpack from 5.97.1 to 5.98.0 in /docs ( #32449 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-04 10:05:11 -07:00
Daniel Vaz Gaspar
15cf06699a
feat: security, user group support ( #32121 )
2025-03-04 09:54:12 +00:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fe33661821
chore(deps-dev): bump typescript from 5.1.6 to 5.8.2 in /docs ( #32452 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-03 21:35:23 -07:00
Maxime Beauchemin
2b98f326e8
feat: cache the frontend's bootstrap data ( #31996 )
2025-03-03 17:02:38 -08:00
Giampaolo Capelli
d7e0ee6ceb
fix(docker compose): replace port 8088 with 9000 ( #32481 )
2025-03-03 14:55:48 -08:00
ce367d6427
chore(deps-dev): bump @docusaurus/tsconfig from 3.6.3 to 3.7.0 in /docs ( #32087 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-03-03 14:50:58 -08:00
Evan Rusackas
6c3886aad0
fix(tooltip): displaying <a> tags correctly ( #32488 )
2025-03-03 15:04:05 -07:00
Beto Dealmeida
5af4e61aff
feat: improve GSheets OAuth2 ( #32048 )
2025-03-03 12:55:54 -05:00
Ville Brofeldt
5766c36372
fix(plugin-chart-echarts): remove erroneous upper bound value ( #32473 )
2025-03-01 22:07:12 -08:00
Đỗ Trọng Hải
61b72f0c0b
fix(com/grid-comp/markdown): pin remark-gfm to v3 to allow inline code block by backticks in Markdown ( #32420 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-03-01 15:55:31 -07:00
Vitor Avila
d79f7b28c2
feat: Update database permissions in async mode ( #32231 )
2025-02-28 21:25:47 -03:00
Le Xich Long
84b52b2323
fix(clickhouse): get_parameters_from_uri failing when secure is true ( #32423 )
2025-02-28 16:24:14 -05:00
Tejaswa Jain
eacb234872
docs: add SingleStore to the users list ( #32421 )
2025-02-28 12:30:42 -07:00
Damian Pendrak
6317a91541
fix(viz): update nesting logic to handle multiple dimensions in PartitionViz ( #32290 )
2025-02-28 16:57:11 +01:00
Beto Dealmeida
128c45e2d3
fix: prevent nested transactions ( #32401 )
2025-02-28 09:59:03 -05:00
4d6b4f8343
feat(filter): adding inputs to Numerical Range Filter ( #31726 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
Co-authored-by: Mehmet Salih Yavuz <salih.yavuz@proton.me >
2025-02-28 15:42:24 +01:00
Đỗ Trọng Hải
789049d386
docs(config): fill in commonly connection string for Oracle, Presto and SQL Server databases ( #32385 )
2025-02-28 08:32:29 +07:00
Đỗ Trọng Hải
cf7ce31054
build(deps): bump major versions for math-expression-evaluator and fetch-mock + clean up obsolete dev/override packages ( #32322 )
2025-02-28 08:06:19 +07:00
EmmanuelCbd
2c851b7580
feat(i18n): Add polish to default language ( #31506 )
2025-02-27 19:02:32 +01:00
Beto Dealmeida
f4105e9ed2
feat: default ports for SSH tunnel ( #32403 )
2025-02-27 10:59:48 -05:00
Dev10-34 and Michael S. Molina
74733ae310
feat: Adding the option and feature to enable borders with color, opacity and width control on heatmaps along with white borders on emphasis ( #32358 )
...
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2025-02-27 11:30:25 -03:00
omahs
1d823a0be5
chore(docs): fix typos ( #32393 )
2025-02-27 13:57:36 +07:00
ekansh-shipmnts and Ekansh Gupta
00429558c2
docs: add shipmnts to users list ( #32396 )
...
Co-authored-by: Ekansh Gupta <ekanshgupta@Ekanshs-MacBook-Pro.local >
2025-02-26 10:32:39 -08:00
Joe Li
dae6acf028
chore(docs): update instructions for pypi distribution ( #32380 )
2025-02-25 12:35:03 -08:00
Yuri
822d72c57d
fix(pinot): revert join and subquery flags ( #32382 )
2025-02-25 13:29:25 -07:00
Daniel Vaz Gaspar
c02a0a00f4
fix: bump FAB to 4.5.4 ( #32325 )
2025-02-25 19:06:41 +00:00
Sam Firke
a08c18febe
docs(intro): broaden link to installation options ( #32379 )
2025-02-25 13:37:30 -05:00
Kamil Gabryjelski
479a5d2f72
chore: Upgrade AG Grid to use tree shaking ( #32334 )
2025-02-25 19:00:53 +01:00
Evan Rusackas
793fbac405
chore(cleanup): removing accidentally committed package/lock files. ( #32365 )
2025-02-25 11:33:42 -05:00
Daniel Vaz Gaspar
167dacc2e4
fix: ephemeral CI fetching task ENI ( #32377 )
2025-02-25 15:51:49 +00:00
Beto Dealmeida
00883c395c
feat: allow importing encrypted_extra ( #32339 )
2025-02-24 19:29:04 -05:00
Beto Dealmeida
83071d0e5f
fix: ensure metric_macro expands templates ( #32344 )
2025-02-24 18:08:50 -05:00
Enzo Martellucci
b0dac046e6
refactor(DrillDetailTableControls): Upgrade DrillDetailTableControls component to Ant Design 5 ( #32313 )
2025-02-24 23:19:40 +02:00
Dino
8dcae810d4
fix: clickhouse-connect engine SSH parameter ( #32348 )
2025-02-24 12:58:49 -08:00
Evan Rusackas
b43e2ac8f4
chore(tests): converting enzyme to RTL, part 3 ( #32363 )
2025-02-24 12:08:52 -07:00
Thomas Shallenberger
bc02f05613
feat(number-format): adds memory data transfer rates in binary and decimal format ( #32264 )
2025-02-24 11:03:56 -08:00
Evan Rusackas
90651dfe3e
fix(dev/ci): pre-commit fixes galore ( #32352 )
2025-02-24 11:26:45 -07:00
alveifbklsiu259
c583eec4c7
fix(eslint-hook): ensure eslint hook receives arguments ( #32333 )
2025-02-24 08:57:48 -08:00
Vedant Prajapati
0f07d78e01
fix(docker): Configure nginx for consistent port mapping and hot reloading ( #32362 )
2025-02-24 08:53:51 -08:00
Beto Dealmeida
22fe985cfc
fix(firebolt): allow backslach escape for single quotes ( #32350 )
2025-02-24 11:12:34 -05:00
Enzo Martellucci
ace8a3adb7
refactor(DatabaseSelector): Changes the imported types from antd-4 to antd-5 ( #32314 )
2025-02-23 19:56:36 +01:00
Enzo Martellucci
4c4b5e8c64
fix(SSHTunnelForm): make the password tooltip visible ( #32356 )
2025-02-23 17:27:31 +01:00
Levis Mbote
2c37ddb2f6
fix(roles): Add SqlLabPermalinkRestApi as default sqlab roles. ( #32284 )
2025-02-21 15:42:35 -07:00
amineBouilzmin
b06a9edfd6
chore(docs): Fix typo in security.mdx ( #32349 )
2025-02-21 14:29:00 -07:00
alveifbklsiu259
5140250421
ci(type-checking): run type-checking-frontend hook sequentially ( #32323 )
2025-02-21 12:26:52 -08:00
Đỗ Trọng Hải
88cf2d5c39
fix(fe/dashboard-list): display modifier info for Last modified data ( #32035 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-02-21 12:14:08 -07:00
Elizabeth Thompson
422a07b382
fix: revert "fix: remove sort values on stacked totals ( #31333 )" ( #32337 )
2025-02-21 10:35:06 -08:00
Đỗ Trọng Hải
f820f9a976
chore(build): remove Lodash filter and noop usage in superset-frontend ( #32341 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-02-21 19:29:07 +07:00
Guen Prawiroatmodjo
c27aee2b14
chore(duckdb): Bump duckdb-engine, duckdb versions ( #32302 )
2025-02-20 16:29:55 -07:00
Dmitry Kochnev
7ce1a3445c
fix: oauth2 trino ( #31993 )
2025-02-20 16:04:11 -07:00
Kamil Gabryjelski
42a3c523ae
fix: Download as PDF fails due to cache error ( #32332 )
2025-02-20 10:59:39 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bb46dd93be
chore(deps): bump swagger-ui-react from 5.18.2 to 5.19.0 in /docs ( #32330 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-20 10:38:10 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b207f0616d
chore(deps): bump antd from 5.22.7 to 5.24.1 in /docs ( #32329 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-20 10:36:52 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9dcf788f47
chore(deps): bump @docsearch/react from 3.8.2 to 3.9.0 in /docs ( #32327 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-20 10:35:38 -08:00
Evan Rusackas
6900bc1855
chore(readme): updating video on Readme page. ( #32319 )
2025-02-20 10:25:27 -08:00
Ghazi Triki
b09bfd7889
chore(docs): Add RIADVICE to companies using Superset ( #32326 )
2025-02-20 10:56:50 -05:00
Đỗ Trọng Hải
2d8892958e
docs: various enhancements across /docs workspace ( #31921 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-02-20 09:18:49 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f9a43921c5
chore(deps): bump core-js from 3.39.0 to 3.40.0 in /superset-frontend/packages/superset-ui-demo ( #32066 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-19 17:26:16 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e74efd3072
chore(deps-dev): bump @docusaurus/module-type-aliases from 3.6.3 to 3.7.0 in /docs ( #32088 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-19 17:12:59 -07:00
Steven Liu and Steven Liu
d5a5bd46d2
fix: keep the tab order ( #30888 )
...
Co-authored-by: Steven Liu <steven.l@covergenius.com >
2025-02-19 16:26:36 -07:00
alveifbklsiu259
e422e3c620
feat(type-checking): Add type-checking pre-commit hooks ( #32261 )
2025-02-19 15:12:17 -08:00
Evan Rusackas
b269d920a9
chore(code owners): adding @mistercrunch to cypress/e2e code owners ( #32316 )
2025-02-19 13:47:18 -07:00
Evan Rusackas and JUST.in DO IT
de2bce6f47
chore(tests): Trying to kill enzyme, part 2 (more RTL!) ( #32226 )
...
Co-authored-by: JUST.in DO IT <justin.park@airbnb.com >
2025-02-19 11:33:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e061116032
chore(deps-dev): bump typescript from 5.7.2 to 5.7.3 in /docs ( #32090 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-19 20:17:08 +07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
878bcbd8c7
chore(deps-dev): bump @babel/preset-env from 7.26.0 to 7.26.7 in /superset-frontend ( #32103 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-19 18:29:39 +07:00
Đỗ Trọng Hải
093135ff30
chore(be/deps): add comments for un-greppable Python dependencies ( #32259 )
2025-02-17 19:09:35 +07:00
Đỗ Trọng Hải
734f8ed4c3
fix(sec): resolve Dependabot security alerts ( #32274 )
2025-02-17 08:02:09 +07:00
Đỗ Trọng Hải
dcc9628f31
fix(viz/table): selected column not shown in Conditional Formatting popover ( #32272 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-02-16 16:39:00 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
321d105c42
chore(deps): bump dompurify from 3.2.3 to 3.2.4 in /superset-frontend ( #32270 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Stability: no breaking change as described 3.2.4's GH release
Functionality: fixes Moderate GHSA-vhxf-7vqr-mrjg (CVE-2025-26791)
2025-02-16 14:42:22 +07:00
Đỗ Trọng Hải
460aec7bc9
build(fe/dev-deps): remove unused esbuild dev deps ( #32243 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-02-16 12:07:06 +07:00
Michael S. Molina
ffe9244458
fix: Decimal values for Histogram bins ( #32253 )
2025-02-14 09:04:23 -03:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fa09d8187a
chore(deps): bump cryptography from 43.0.3 to 44.0.1 ( #32236 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-14 11:11:07 +00:00
Erkka Tahvanainen and Erkka Tahvanainen
9da30956c0
fix(Datasource): handle undefined datasource_type in fetchSyncedColumns ( #32218 )
...
Co-authored-by: Erkka Tahvanainen <erkka.tahvanainen@confidently.fi >
2025-02-13 17:31:17 -08:00
Mehmet Salih Yavuz
9c7835a244
docs(api): Improve api documentation for dashboard endpoints(filter_state, permalink, embedded) ( #32142 )
2025-02-13 19:02:45 +02:00
gpchandran
ad057324b7
fix: upgrade to 3.11.11-slim-bookworm to address critical vulnerabilities ( #32240 )
2025-02-13 08:32:48 -03:00
Beto Dealmeida
2c583d1584
feat: recursive metric definitions ( #32228 )
2025-02-12 22:00:44 -05:00
Elizabeth Thompson
15fbb195e9
fix: remove sort values on stacked totals ( #31333 )
2025-02-12 16:56:53 -08:00
Maxime Beauchemin
5867b87680
docs: adding notes about using uv instead of raw pip ( #32239 )
2025-02-12 15:37:54 -08:00
Fardin Mustaque and Fardin Mustaque
52563d3eea
fix: Update 'Last modified' time when modifying RLS rules ( #32227 )
...
Co-authored-by: Fardin Mustaque <fardinmustaque@Fardins-Mac-mini.local >
2025-02-12 12:22:15 -08:00
Đỗ Trọng Hải
21348c418a
chore(backend): replace insecure shortid usage for native filter migration with native uuid Python implementation ( #32235 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-02-12 13:15:51 -03:00
Levis Mbote
af3589fe91
fix(Scope): Correct issue where filters appear out of scope when sort is unchecked. ( #32115 )
2025-02-12 14:32:20 +01:00
JUST.in DO IT
937d40cdde
fix(sqllab): close the table tab ( #32224 )
2025-02-11 13:13:47 -08:00
Evan Rusackas
319a860f23
chore: Working toward killing enzyme and cleaning up test noise. ( #32207 )
2025-02-11 12:14:36 -07:00
Maxime Beauchemin
d3b854a833
fix: set Rich tooltip -> 'Show percentage' to false by default ( #32212 )
2025-02-11 10:58:49 -08:00
Enzo Martellucci and Geido
650fa5ccfb
fix(SaveDatasetModal): repairs field alignment in the SaveDatasetModal component ( #32222 )
...
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
2025-02-11 19:16:54 +01:00
Đỗ Trọng Hải
db70c7912c
chore(fe): migrate 4 Enzyme-based tests to RTL ( #31634 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-02-11 09:01:59 -07:00
xavier-GitHub76 and Xavier RICHARD
3160607aaf
docs: Permissions 'can this form get on UserInfoEditView' and 'can this form get on UserInfoEditView' are not associated with Aplha and Gamma by default ( #32180 )
...
Co-authored-by: Xavier RICHARD <xavier.richard@developpement-durable.gouv.fr >
2025-02-11 14:52:13 +00:00
Beto Dealmeida
eec54affc3
fix: hidrate datasetsStatus ( #32211 )
2025-02-11 09:50:45 -05:00
Daniel Vaz Gaspar
31d6f5a639
chore(ci): fix ephemeral env null issue number (v2) ( #32221 )
2025-02-11 14:32:01 +00:00
Daniel Vaz Gaspar
60424c4ccd
chore(ci): fix ephemeral env null issue number ( #32220 )
2025-02-11 14:06:43 +00:00
Mehmet Salih Yavuz
60bbd72028
feat(dropdown accessibility): Wrap dropdown triggers with buttons for accessibility ( #32189 )
2025-02-11 13:09:35 +02:00
Đỗ Trọng Hải
a78968c68e
chore(ci): consolidate Node version reference in CI to associated .nvmrc ( #32192 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-02-10 11:52:36 -08:00
Maxime Beauchemin
1c3ec21e0f
chore: migrating easy-to-migrate AntD vanilla components ( #32010 )
2025-02-10 10:46:28 -08:00
Maxime Beauchemin
8d1fb9c82d
fix: false negative on critical security related to eslint-plugin-translation-vars ( #32018 )
2025-02-10 10:45:54 -08:00
Jonathan Morales Vélez
f01493277f
docs(docker-compose): remove extra backticks ( #32206 )
2025-02-10 15:26:34 -03:00
Damian Pendrak
0f6bd5ea83
fix: handlebars html and css templates reset on dataset update ( #32195 )
2025-02-10 16:40:55 +01:00
Alexandru Soare and Geido
0030f46d2d
refactor(Popover): Upgrade Popover to Antd5 ( #31973 )
...
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
2025-02-10 16:38:17 +02:00
Alex Duan
06f8f8e608
fix: TDengine move tdengine.png to databases/ subfolder ( #32176 )
2025-02-07 10:39:54 -08:00
Michael S. Molina
a144464506
fix: Adds an entry to UPDATING.md about DISABLE_LEGACY_DATASOURCE_EDITOR ( #32185 )
2025-02-07 15:30:18 -03:00
Levis Mbote
2770bc0865
fix(sqllab): correct URL format for SQL Lab permalinks ( #32154 )
2025-02-07 19:57:07 +02:00
Mehmet Salih Yavuz
bcc61bd933
refactor(Dropdown): Migrate Dropdown to Ant Design 5 ( #31972 )
2025-02-07 18:38:04 +01:00
asritha
38c46fcafd
docs(typo): PostgresQL corrected to PostgreSQL ( #32188 )
2025-02-07 12:29:22 -05:00
Jack and Kamil Gabryjelski
f3e7c64de6
fix(virtual dataset sync): Sync virtual dataset columns when changing the SQL query ( #30903 )
...
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
2025-02-07 18:16:44 +01:00
Levis Mbote
f9f8c5d07a
fix(sqllab): correct URL format for SQL Lab permalinks ( #32154 )
2025-02-07 18:53:29 +02:00
Adrian Koszałka and AdrianKoszalka
c5f4a7f302
feat: Add parseJson Handlebars Helper to Support Processing Nested JSON Data ( #31998 )
...
Co-authored-by: AdrianKoszalka <adrian.koszalka@techminers.com >
2025-02-06 15:44:49 -07:00
Elizabeth Thompson
389aae270b
chore: add query context data tests ( #32157 )
2025-02-06 14:33:38 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e97eb71a52
chore(deps): bump less from 4.2.1 to 4.2.2 in /docs ( #32085 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-06 14:22:27 -08:00
EmmanuelCbd
5a8488af36
fix(docker): Docker python-translation-build ( #32163 )
2025-02-06 12:49:36 -08:00
Adrian Koszałka and AdrianKoszalka
205cff3a94
feat: Add parseJson Handlebars Helper to Support Processing Nested JSON Data ( #31998 )
...
Co-authored-by: AdrianKoszalka <adrian.koszalka@techminers.com >
2025-02-06 12:48:28 -08:00
Alex Duan and Ville Brofeldt
649a0dec6c
feat: add TDengine.py driver to db_engine ( #32041 )
...
Co-authored-by: Ville Brofeldt <33317356+villebro@users.noreply.github.com >
2025-02-06 12:45:55 -08:00
Beto Dealmeida
e8990f4a36
fix: ScreenshotCachePayload serialization ( #32156 )
2025-02-06 15:13:40 -05:00
Chris Chinchilla
acf91e1f60
docs: fix typo in docker compose ( #32171 )
2025-02-06 13:01:23 -05:00
Antonio Rivero
6ed9dae2f7
fix(migrations): Handle no params in time comparison migration ( #32155 )
2025-02-05 23:00:22 +01:00
Đỗ Trọng Hải
ea5879bf2b
fix(releasing): fix borked SVN-based image building process ( #32151 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-02-05 13:06:21 -03:00
Beto Dealmeida
c7c3b1b0e9
fix: move oauth2 capture to get_sqla_engine ( #32137 )
2025-02-04 18:24:05 -05:00
Michael S. Molina
c64018d421
fix: Local tarball Docker container is missing zstd dependency ( #32135 )
2025-02-04 16:02:01 -03:00
Michael S. Molina
53d944d013
fix: No virtual environment when running Docker translation compiler ( #32133 )
2025-02-04 10:43:25 -03:00
Benjami
9aa8b09505
docs: incorrect psycopg2 package in k8s install instructions ( #31999 )
2025-02-04 02:33:43 -08:00
Elizabeth Thompson
8984f88a3e
chore(timeseries charts): adjust legend width by padding ( #32030 )
2025-02-03 14:11:09 -08:00
Michael S. Molina
386aa93e24
fix: Histogram examples config ( #32122 )
2025-02-03 13:53:34 -03:00
Daniel Vaz Gaspar
0cd0fcdecb
fix(ci): ephemeral env, handle different label, create comment ( #32040 )
2025-02-03 16:13:22 +00:00
Mehmet Salih Yavuz
cde2d49c95
fix(datepicker): Full width datepicker on filter value select ( #32064 )
2025-02-03 17:51:05 +02:00
AdheipSingh
9e5876dc17
feat: add connector for Parseable ( #32052 )
2025-01-31 14:36:48 -08:00
Beto Dealmeida
1064ad5d58
fix: enforce ALERT_REPORTS_MAX_CUSTOM_SCREENSHOT_WIDTH ( #32053 )
2025-01-31 14:56:56 -05:00
Jack and Kamil Gabryjelski
7db0589340
fix(thumbnail cache): Enabling force parameter on screenshot/thumbnail cache ( #31757 )
...
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
2025-01-31 19:22:31 +01:00
JUST.in DO IT
c590e90c87
feat(sqllab): improve table metadata UI ( #32051 )
2025-01-31 15:19:37 -03:00
Vitor Avila
101d3fa78d
chore: Re-enable asnyc event API tests ( #32062 )
2025-01-31 13:54:05 -03:00
Enzo Martellucci
468bb5f47a
refactor(Radio): Upgrade Radio Component to Ant Design 5 ( #32004 )
2025-01-31 17:45:06 +01:00
Geido
1c1494d3e0
fix(DatePicker): Increase z-index over Modal ( #32061 )
2025-01-31 15:59:35 +01:00
Vitor Avila
5fc11fb706
chore: Add more database-related tests (follow up to #31948 ) ( #32054 )
2025-01-31 08:36:09 -03:00
JUST.in DO IT
f73d61a597
feat(sqllab): Replace FilterableTable by AgGrid Table ( #29900 )
2025-01-30 16:43:22 -08:00
Vitor Avila
3f46bcf142
chore: Skip the creation of secondary perms during catalog migrations ( #32043 )
2025-01-30 18:29:07 -03:00
Đỗ Trọng Hải
aa67525b70
fix(fe/explore): prevent runtime error when editing Dataset-origin Chart with empty title ( #32031 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-01-30 11:40:39 -07:00
Maxime Beauchemin
568f6d958b
fix: Revert "fix: re-enable cypress checks" ( #32045 )
2025-01-30 14:20:55 -03:00
Maxime Beauchemin
b12f515185
fix: re-enable cypress checks ( #32008 )
2025-01-29 23:29:30 -08:00
Maxime Beauchemin
732de4ac7f
fix: eph env + improve docker images to run in userspace ( #32017 )
2025-01-29 10:01:40 -08:00
Daniel Vaz Gaspar
e4bdb28ba2
fix(ci): change ephemeral env to use github labels instead of comments ( #31340 )
2025-01-29 13:57:01 +00:00
Kamil Gabryjelski
a87a13c3ab
fix: Filters badge disappeared ( #32025 )
2025-01-29 14:29:45 +01:00
Đỗ Trọng Hải and Michael S. Molina
19e8a7049b
feat(fe): upgrade superset-frontend to Typescript v5 ( #31979 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2025-01-29 08:40:33 -03:00
Adrian Mastronardi
a21f184058
fix(issue #31927 ): TimeGrain.WEEK_STARTING_MONDAY ( #32015 )
2025-01-28 16:40:05 -08:00
geotab-data-platform and Vedant Prajapati
f4efce3475
fix: Reordering echart props to fix confidence interval in Mixed Charts ( #30716 )
...
Co-authored-by: Vedant Prajapati <40185967+vedantprajapati@users.noreply.github.com >
2025-01-28 11:51:52 -08:00
Mehmet Salih Yavuz and Geido
23d9f46d30
chore(Network Errors): Update network errors on filter bars and charts ( #31811 )
...
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
2025-01-28 19:13:43 +01:00
Steven Liu and Steven Liu
6478bb7eab
feat: add date format to the email subject ( #31413 )
...
Co-authored-by: Steven Liu <steven.l@covergenius.com >
2025-01-28 09:33:41 -08:00
Evan Rusackas and Kamil Gabryjelski
962fd4cca3
chore: Removing DASHBOARD_CROSS_FILTERS flag and all that comes with it. ( #31794 )
...
Co-authored-by: Kamil Gabryjelski <kamil.gabryjelski@gmail.com >
2025-01-28 17:39:30 +01:00
Daniel Vaz Gaspar
640d4f09bd
chore: add UPDATING note for CSV_UPLOAD_MAX_SIZE removal ( #32013 )
2025-01-28 13:31:24 -03:00
Kamil Gabryjelski
7e2b7941f3
refactor: Upgrade to React 17 ( #31961 )
2025-01-28 16:44:42 +01:00
JUST.in DO IT
aa74ba3da2
fix(sqllab): tab layout truncated ( #32005 )
2025-01-28 15:02:38 +01:00
Daniel Vaz Gaspar
1b375b715c
refactor: upload data unification, less permissions and less endpoints ( #31959 )
2025-01-28 11:09:55 +00:00
Đỗ Trọng Hải
09c1987de4
chore(fe): correct typing for sheetsColumnNames ( #32007 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-01-27 22:09:27 -08:00
sha174n
827042f12f
refactor: Remove CSV upload size limit and related validation ( #32000 )
2025-01-27 16:52:05 -07:00
Maxime Beauchemin
925938b4d1
feat: run prettier before eslint in pre-commit hooks ( #31984 )
2025-01-24 11:34:52 -08:00
Levis Mbote
65c4d39c31
refactor(Shared_url_query): Fix shared query URL access for SQL Lab users. ( #31421 )
2025-01-24 19:34:55 +01:00
Darpan Jain
4b0e907c3d
chore: Add FYND to INTHEWILD.md ( #31980 )
2025-01-24 10:30:06 -08:00
Michael S. Molina
687f762457
refactor: Removes the legacy dataset editor ( #31976 )
2025-01-24 14:52:22 -03:00
Maxime Beauchemin
6eb87e04c0
chore: refactor Alert-related components ( #31858 )
2025-01-24 08:39:09 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5fe6ef268e
chore(deps): bump react-transition-group and @types/react-transition-group in /superset-frontend ( #31547 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-23 18:31:45 -07:00
mcdogg17
51e090d67a
fix(verbose map): Correct raw metrics handling in verbose map ( #29417 )
2025-01-23 15:14:12 -08:00
Evan Rusackas and Maxime Beauchemin
fc5dde15fe
chore(build): enforce eslint rule banning antd imports outside of core Superset components ( #31963 )
...
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2025-01-23 15:12:04 -08:00
Beto Dealmeida
14f798afec
fix: proper URL building ( #31962 )
2025-01-23 15:59:45 -05:00
Đỗ Trọng Hải
6d117ffbb5
chore: fix tsc errors ( #31965 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-01-23 08:54:40 -03:00
Maxime Beauchemin
fcd166149c
chore: Empty state refactor ( #31860 )
2025-01-22 13:20:38 -08:00
Ville Brofeldt
7482b20f7b
chore: replace selenium user with fixed user ( #31844 )
2025-01-22 12:46:06 -08:00
JUST.in DO IT
1d6423e71f
fix(sqllab): Missing allowHTML props in ResultTableExtension ( #31960 )
2025-01-22 11:18:52 -08:00
Michael S. Molina
7cf7267085
refactor: Removes legacy dashboard endpoints ( #31943 )
2025-01-22 15:39:04 -03:00
Michael S. Molina
f5fff5eaad
refactor: Removes legacy CSS template endpoint ( #31942 )
2025-01-22 15:38:44 -03:00
Alexandru Soare and Diego Pucci
e4e07eef5a
feat(CalendarFrame): adding previous calendar quarter ( #31889 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2025-01-22 17:54:29 +01:00
Đỗ Trọng Hải and JUST.in DO IT
b74da7963b
chore(fe): migrate 6 Enzyme-based unit tests to RTL ( #31819 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: JUST.in DO IT <justin.park@airbnb.com >
2025-01-22 15:13:49 +01:00
Mehmet Salih Yavuz
7383e4348b
fix(timezoneselector): Correct the order to match names first ( #31941 )
2025-01-22 13:04:20 +01:00
Daniel Vaz Gaspar
983aa827a8
chore: bump FAB to 4.5.3 ( #31947 )
2025-01-22 08:32:56 +00:00
nsivarajan and Sivarajan Narayanan
78cd635b7a
chore(GAQ): Remove GLOBAL_ASYNC_QUERIES_REDIS_CONFIG ( #30284 )
...
Co-authored-by: Sivarajan Narayanan <narayanan_sivarajan@apple.com >
2025-01-21 20:03:00 -08:00
Maxime Beauchemin
dfb9af36df
chore: cypress set up tweaks ( #31926 )
2025-01-21 12:06:19 -08:00
Michael S. Molina
a02a2f5a96
chore: Reduces the form_data_key length ( #31905 )
2025-01-21 16:49:10 -03:00
Sebastian Liebscher and Michael S. Molina
dca3efb3dd
fix: correct value for config variable UPLOAD_FOLDER ( #25166 )
...
Co-authored-by: Michael S. Molina <michael.s.molina@gmail.com >
2025-01-21 12:37:26 -07:00
Vitor Avila
43a97f86f5
fix: Load cached DB metadata as DatasourceName and add catalog to schema_list cache key ( #31948 )
2025-01-21 16:36:25 -03:00
Eva
b5ac415afc
docs: Removed mentioning of .env-non-dev in docker/README.md ( #31460 )
2025-01-21 12:24:01 -07:00
Fardin Mustaque and Fardin Mustaque
4417e6eaef
fix: Prevent undo functionality from referencing incorrect dashboard edits ( #31809 )
...
Co-authored-by: Fardin Mustaque <fardinmustaque@Fardins-Mac-mini.local >
2025-01-21 12:23:27 -07:00
Đỗ Trọng Hải
f8fe780f52
chore: replace Lodash usage with native JS implementation ( #31907 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-01-21 11:33:31 -07:00
Geido and Beto Dealmeida
eec374426f
refactor(Menu): Upgrade Menu Component to Ant Design 5 ( #31699 )
...
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
2025-01-21 19:06:53 +01:00
Elizabeth Thompson
550123882c
fix: adjust line type as well as weight for time series ( #30949 )
2025-01-21 10:02:47 -08:00
Geido
79f21b09d2
fix(E2E): Fix flaky Dashboard list delete test ( #31933 )
2025-01-21 10:11:48 -07:00
alexandrusoare
63843c5682
fix(date_parser): fixed bug for advanced time range filter ( #31867 )
2025-01-20 18:36:30 +01:00
Đỗ Trọng Hải
8960db4132
chore(fe): dev deps cleanup ( #31908 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-01-18 08:58:17 -08:00
Maxime Beauchemin
66c22f896b
docs: clarify port configuration for Cypress ( #31916 )
2025-01-17 16:55:07 -08:00
Maxime Beauchemin
840773e626
feat: get docker-compose to work as the backend for Cypress tests ( #31796 )
2025-01-17 16:19:39 -08:00
JUST.in DO IT
2874096e27
refactor(sqllab): migrate share queries via kv by permalink ( #29163 )
2025-01-17 16:16:02 -08:00
ankur-zignite91
b86572b084
fix(documentation): updated link to CORS_OPTIONS in Networking Settings ( #31873 )
2025-01-17 15:51:45 -07:00
Beto Dealmeida
e4f6e55e89
fix: add catalog to cache key when getting tables/views ( #31910 )
2025-01-17 17:08:09 -05:00
c1cbc334ad
perf(dashboard): dashboard list endpoint returning large and unnecessary data ( #29121 )
...
Co-authored-by: Michael S. Molina <michael.s.molina@gmail.com >
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2025-01-17 13:17:57 -03:00
Evan Rusackas
249fdf444a
chore(config): Deprecating Domain Sharding ( #31894 )
2025-01-16 11:58:02 -07:00
Michael S. Molina
547b8b9314
chore: Re-enable skipped tests ( #31795 )
2025-01-16 15:33:22 -03:00
Maxime Beauchemin
ab6045691e
feat: use npm run dev-server in docker-compose ( #31876 )
2025-01-15 18:21:12 -08:00
Beto Dealmeida
fc8710f50a
chore: add a disable for pylint ( #31875 )
2025-01-15 15:41:28 -05:00
Maxime Beauchemin
aacfe4d667
docs: add a note about accessing the dev env's postgres database ( #31874 )
2025-01-15 10:30:26 -08:00
Beto Dealmeida
f235787703
fix(bigquery): return no catalogs when creds not set ( #31837 )
2025-01-15 11:58:44 -05:00
Beto Dealmeida
4ca5846c7f
feat: old Firebolt dialect ( #31849 )
2025-01-15 09:02:37 -05:00
Vitor Avila
754ccd0448
feat: Mutate SQL query executed by alerts ( #31840 )
2025-01-15 00:43:40 -03:00
Maxime Beauchemin
d4bd20ffb4
fix: d3.count doesn't exist ( #31848 )
2025-01-14 16:54:03 -08:00
Maxime Beauchemin
4bad1a258f
chore: add eslint to pre-commit hooks ( #31845 )
2025-01-14 14:18:09 -08:00
Evan Rusackas
ffb6913706
chore(ci): auto delete branches on merge ( #31847 )
2025-01-14 14:17:07 -08:00
Maxime Beauchemin
6531101517
chore: properly import expect from chai in cypress-base/cypress/support/e2e.ts ( #31846 )
2025-01-14 15:15:52 -07:00
Maxime Beauchemin
bbf7586fe8
fix: fix/suppress webpack console warnings ( #31830 )
2025-01-14 14:59:32 -07:00
Maxime Beauchemin
ef57318259
chore: bump @ant-design/icons to fix fill-rule console warning ( #31831 )
2025-01-14 12:42:09 -08:00
Vitor Avila
8050e351ed
fix(OAuth): Remove masked_encrypted_extra from DB update properties ( #31834 )
2025-01-14 11:45:21 -03:00
Beto Dealmeida
c2d7cf388d
feat: Firebolt sqlglot dialect ( #31825 )
2025-01-14 09:36:25 -05:00
Maxime Beauchemin
274aa143d3
chore: python version to 3.11 (while supporting 3.10) ( #31503 )
2025-01-13 18:22:49 -08:00
Evan Rusackas
855011360a
build(eslint): disabling wildcard imports with eslint ( #31761 )
2025-01-13 17:25:47 -07:00
Gnought and Evan Rusackas
44ff462718
chore(deps): bump selenium 4.14.0+ ( #25933 )
...
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2025-01-13 14:52:29 -07:00
Vitor Avila
9661afff16
fix(Embedded): Skip CSRF validation for dashboard download endpoints ( #31798 )
2025-01-13 16:50:24 -03:00
Vitor Avila
1a43654207
chore(tests): Changing the logic for an intermittent tag test ( #31820 )
2025-01-13 11:11:23 -08:00
alexandrusoare
822441e0bd
fix(modal): fixed z-index issue ( #31815 )
2025-01-13 18:30:32 +01:00
Levis Mbote
66f1e1f714
refactor(bulk_select): Fix bulk select tagging issues for users ( #31631 )
2025-01-13 17:30:29 +01:00
Mehmet Salih Yavuz and Geido
b5e62753b7
refactor(date picker): Migrate Date Picker to Ant Design 5 ( #31019 )
...
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
2025-01-13 15:02:17 +01:00
sha174n and Michael S. Molina
aae8fda11d
docs: improve dev python environment install ( #31787 )
...
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2025-01-13 10:22:53 +00:00
Evan Rusackas
bebcd3dcdd
fix: corrects spelling of USE_ANALAGOUS_COLORS to be USE_ANALOGOUS_COLORS ( #31774 )
2025-01-10 18:44:32 -07:00
Elizabeth Thompson
5e0de04eab
chore: adding Antonio as a helm codeowner ( #31797 )
2025-01-10 16:55:49 -08:00
Enzo Martellucci
472ca9d8f6
refactor(dashboard): Migrate ResizableContainer to TypeScript and functional component ( #31452 )
2025-01-10 20:15:52 +01:00
Vitor Avila
41ed37ab02
fix(oauth): Handle updates to the OAuth config ( #31777 )
2025-01-10 15:54:53 -03:00
Michael S. Molina
bbdc195a3b
chore: Skips integration tests affected by legacy charts removal ( #31791 )
2025-01-10 14:53:54 -03:00
Maxime Beauchemin
740fbf72d7
feat: redesign labels ( #31575 )
2025-01-10 09:30:12 -08:00
Mehmet Salih Yavuz
8a2aada58d
fix(button): change back button styles for dropdown buttons ( #31789 )
2025-01-10 14:23:36 +01:00
Maxime Beauchemin
7bd53a84d5
feat: improve docker-compose services boot sequence ( #31747 )
2025-01-09 16:24:53 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5f18e849c1
build(deps-dev): bump css-loader from 6.8.1 to 7.1.2 in /superset-frontend ( #31661 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-09 14:42:12 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
49876c3f13
build(deps-dev): bump css-minimizer-webpack-plugin from 5.0.1 to 7.0.0 in /superset-frontend ( #31668 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-09 13:44:07 -07:00
Michael S. Molina
399b709aaf
refactor: Removes 5.0 approved legacy charts ( #31582 )
2025-01-09 16:45:05 -03:00
Michael S. Molina
a477d84729
fix: Heatmap sorting ( #31752 )
2025-01-09 14:28:45 -03:00
Michael S. Molina
5acd03876b
refactor: Removes Apply to all panels filters scope configuration ( #31754 )
2025-01-09 10:59:41 -03:00
Damian Pendrak
3a6fdf8bdf
fix(sqllab): unable to update saved queries ( #31639 )
2025-01-09 11:16:08 +01:00
alexandrusoare
9cd3a8d5b0
refactor(Button): Upgrade Button component to Antd5 ( #31623 )
2025-01-09 11:04:59 +01:00
Maxime Beauchemin
840a920aba
feat: allowing print() statements to be unbuffered in docker ( #31760 )
2025-01-08 19:12:22 -08:00
Beto Dealmeida
e4b3ecd372
feat: push predicates into virtual datasets ( #31486 )
2025-01-08 22:11:28 -05:00
mujibishola
f29eafd044
docs: add Remita to list ( #31756 )
2025-01-08 14:57:38 -08:00
Steven Liu and Steven Liu
4f1a837bd3
docs: add cover genius to the user list ( #31750 )
...
Co-authored-by: Steven Liu <steven.l@covergenius.com >
2025-01-08 10:34:39 -08:00
Maxime Beauchemin
d5a4815836
fix: GHA frontend builds fail when frontends hasn't changed ( #31742 )
2025-01-07 17:33:11 -08:00
Joe Li
210537a4d2
feat: adds a github action to auto label draft prs ( #31518 )
2025-01-07 17:18:19 -08:00
Maxime Beauchemin
0eca79cb6c
feat: use docker in frontend GHA to parallelize work ( #31490 )
2025-01-07 16:35:57 -08:00
Maxime Beauchemin
550d893c38
feat: make CI against 'next' python version not-required ( #31740 )
2025-01-07 15:15:37 -08:00
Maxime Beauchemin
71dca5c076
feat: add and use UUIDMixin for most models ( #30398 )
2025-01-07 13:58:38 -08:00
Samra Hanif
7f72b062d1
feat(Sqllab): Enabling selection and copying of columns and rows in sql lab and dataset view ( #31602 )
2025-01-07 11:26:06 -07:00
Evan Rusackas
d68f8d11fe
chore(ff): deprecating DRILL_TO_DETAIL feature flag to launch it prime-time ( #31412 )
2025-01-07 10:03:17 -07:00
Beto Dealmeida
b54de611d3
fix: remove old database constraint on the Dataset model ( #29649 )
2025-01-07 10:22:17 -05:00
Mehmet Salih Yavuz
f3c5d1c608
refactor(Steps): Migrate Steps to Ant Design 5 ( #31718 )
2025-01-07 12:41:19 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9e17304523
chore(deps): bump react-virtualized-auto-sizer from 1.0.24 to 1.0.25 in /superset-frontend ( #31537 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 16:38:47 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
0460415bcb
chore(deps-dev): bump eslint-plugin-react-hooks from 4.6.0 to 4.6.2 in /superset-frontend ( #31552 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 16:22:13 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b4c5f65a5f
chore(deps-dev): bump webpack from 5.94.0 to 5.97.1 in /superset-frontend ( #31545 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 16:21:51 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
62486a7dd1
chore(deps-dev): bump eslint-plugin-cypress from 3.5.0 to 3.6.0 in /superset-frontend ( #31551 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 16:20:46 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8e32aca282
chore(deps): bump abortcontroller-polyfill from 1.7.5 to 1.7.8 in /superset-frontend ( #31559 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 16:20:21 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c7ae5c587a
build(deps): update @emotion/cache requirement from ^11.4.0 to ^11.14.0 in /superset-frontend/packages/superset-ui-demo ( #31653 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 16:19:39 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2cea1bcc82
build(deps): bump markdown-to-jsx from 7.4.7 to 7.7.2 in /superset-frontend ( #31664 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 15:48:34 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5ff2dfb8e2
build(deps): bump html-webpack-plugin from 5.6.0 to 5.6.3 in /superset-frontend ( #31665 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 15:47:35 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4b54b2b953
build(deps-dev): bump @emotion/babel-plugin from 11.12.0 to 11.13.5 in /superset-frontend ( #31666 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 15:47:00 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
7e4570bc9c
build(deps-dev): bump jsdom from 24.1.1 to 25.0.1 in /superset-frontend ( #31667 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 15:46:35 -08:00
Maxime Beauchemin
78d7df02cb
fix: docker builds in forks ( #31732 )
2025-01-06 15:12:52 -08:00
Maxime Beauchemin
ee36cf058c
fix: docker-compose-image-tag fails to start ( #31606 )
2025-01-06 11:21:58 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
668194d574
build(deps): bump jinja2 from 3.1.4 to 3.1.5 in /superset/translations ( #31685 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-06 11:20:19 -08:00
Gowtham Sai
c13cb8a1f2
fix(inthewild): Update companies using superset ( #31710 )
2025-01-06 10:22:43 -08:00
72e87d6980
feat(doris): add catalog support for Apache Doris ( #31580 )
...
Co-authored-by: Ville Brofeldt <33317356+villebro@users.noreply.github.com >
Co-authored-by: Beto Dealmeida <roberto@dealmeida.net >
2025-01-06 10:21:00 -08:00
Jan Suleiman and Jakob Miksch
a986a61b5f
feat(plugin): add plugin-chart-cartodiagram ( #25869 )
...
Co-authored-by: Jakob Miksch <jakob@meggsimum.de >
2025-01-06 08:58:03 -08:00
Đỗ Trọng Hải and Ville Brofeldt
5484db34f9
chore: replace imp built-in module usage for future Python3.12 usage ( #31622 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
Co-authored-by: Ville Brofeldt <33317356+villebro@users.noreply.github.com >
2025-01-06 08:45:45 -08:00
Đỗ Trọng Hải
109e6c69ff
chore(fe/sec): resolve High CVE-2024-21538 and Moderate CVE-2024-55565 by bumping nanoid and cross-spawn ( #31712 )
...
Signed-off-by: hainenber <dotronghai96@gmail.com >
2025-01-05 14:48:42 -07:00
Ville Brofeldt and ochalover
e311bc1ca5
chore(helm): bump helm on CI to latest version ( #31627 )
...
Co-authored-by: ochalover <notkadam@gmail.com >
2025-01-03 13:16:12 -08:00
Ville Brofeldt
553d41fedd
chore: add helm code owners ( #31701 )
2025-01-03 13:14:42 -08:00
Jillian
2996d9ab9c
docs: add Open edX to users list ( #31691 )
2025-01-03 10:55:37 -08:00
victor felder
bf1da0f91f
fix: typo in plugin-chart-echats controls ( #31673 )
2025-01-03 11:25:15 -07:00
Mehmet Salih Yavuz
ca12a1d466
refactor(space): Migrate Space to Ant Design 5 ( #31693 )
2025-01-03 16:41:03 +01:00
João Pedro Alcântara
7c90323649
fix(helm): change values.yaml comments ( #31688 )
2025-01-02 13:56:11 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27e42b5091
chore(deps-dev): bump eslint from 9.14.0 to 9.17.0 in /superset-websocket ( #31530 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-02 08:41:16 -08:00
65c72c12c4
build(deps): update echarts requirement from ^5.4.1 to ^5.6.0 in /superset-frontend/plugins/plugin-chart-echarts ( #31670 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-01-02 08:35:59 -08:00
bcf649a116
build(deps): update chalk requirement from ^5.4.0 to ^5.4.1 in /superset-frontend/packages/generator-superset ( #31652 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-01-02 08:34:44 -08:00
e371de4ea3
build(deps): bump core-js from 3.38.1 to 3.39.0 in /superset-frontend/packages/superset-ui-demo ( #31655 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-01-02 08:34:33 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b27df30222
build(deps): bump antd from 5.22.5 to 5.22.7 in /docs ( #31656 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-02 08:33:13 -08:00
892349d7c9
build(deps-dev): update @babel/core requirement from ^7.23.9 to ^7.26.0 in /superset-frontend/packages/superset-ui-demo ( #31657 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-01-02 08:32:56 -08:00
dec8a65730
build(deps): update @emotion/react requirement from ^11.13.3 to ^11.14.0 in /superset-frontend/packages/superset-ui-demo ( #31658 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-01-02 08:32:36 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3084cebd6b
build(deps-dev): bump @types/node from 22.7.4 to 22.10.3 in /superset-websocket ( #31662 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-02 08:32:11 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
879e795147
build(deps-dev): bump typescript-eslint from 8.12.2 to 8.19.0 in /superset-websocket ( #31663 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-02 08:31:52 -08:00
509c0a6aab
build(deps-dev): update @types/node requirement from ^22.5.4 to ^22.10.3 in /superset-frontend/packages/superset-ui-core ( #31672 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2025-01-02 08:30:48 -08:00
Mehmet Salih Yavuz
91d1648230
refactor(empty): Migrate Empty component to Ant Design 5 ( #31633 )
2024-12-30 12:38:14 +01:00
Fardin Mustaque and Geido
640dac1eff
fix: Big Number side cut fixed ( #31407 )
...
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
2024-12-27 12:21:58 +01:00
Mehmet Salih Yavuz
9321ab9deb
refactor(Divider): Migrate Divider to Ant Design 5 ( #31607 )
2024-12-27 11:47:21 +01:00
Mehmet Salih Yavuz
a193d790b2
refactor(moment): Replace Moment.js with DayJs ( #31310 )
2024-12-23 18:42:43 +01:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b382ef1058
build(deps-dev): update @types/jest requirement from ^29.5.12 to ^29.5.14 in /superset-frontend/plugins/plugin-chart-handlebars ( #30778 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 16:31:07 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
488e7b4692
chore(deps): bump hot-shots from 10.0.0 to 10.2.1 in /superset-websocket ( #31526 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 15:30:36 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
be7df6c16f
chore(deps-dev): update @babel/preset-react requirement from ^7.23.3 to ^7.26.3 in /superset-frontend/packages/superset-ui-demo ( #31538 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 15:25:17 -08:00
ddd964e49a
chore(deps-dev): bump eslint-plugin-jest-dom from 3.6.5 to 5.5.0 in /superset-frontend ( #31217 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2024-12-20 14:45:07 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a275a86d12
chore(deps): bump antd from 5.22.2 to 5.22.5 in /docs ( #31541 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 14:43:51 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1c99f399c2
chore(deps): bump prism-react-renderer from 2.4.0 to 2.4.1 in /docs ( #31536 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 14:42:54 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c38c7a29fd
build(deps): bump find-my-way and @applitools/eyes-cypress in /superset-frontend/cypress-base ( #30322 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 14:42:15 -07:00
0fde78cb17
build(deps-dev): update @types/lodash requirement from ^4.17.7 to ^4.17.13 in /superset-frontend/packages/superset-ui-core ( #30789 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-20 14:38:52 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5df3317ad0
chore(deps-dev): bump @types/lodash from 4.17.7 to 4.17.13 in /superset-websocket ( #31523 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 14:38:33 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e88c4e1100
chore(deps-dev): bump @types/rison from 0.0.9 to 0.1.0 in /superset-frontend ( #31546 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 14:37:57 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d85bb8b6a0
chore(deps): bump react-reverse-portal from 2.1.1 to 2.1.2 in /superset-frontend ( #31557 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 14:35:53 -07:00
Maxime Beauchemin
fd9c2b399e
fix: install uv in docker-bootstrap ( #31588 )
2024-12-20 13:22:53 -08:00
Sam Firke
e8daa63d7e
fix(docs): get quickstart guide working again ( #31583 )
2024-12-20 13:11:25 -08:00
shubham-rohatgi
640d6f848a
docs: add Virtuoso QA to users list ( #31577 )
2024-12-20 11:40:11 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8c5e525c57
chore(deps): bump debug from 4.3.7 to 4.4.0 in /superset-websocket/utils/client-ws-app ( #31520 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 11:38:36 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e87feba45d
build(deps-dev): bump thread-loader from 4.0.2 to 4.0.4 in /superset-frontend ( #30474 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 10:00:11 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9d3438a8b3
build(deps): bump gh-pages from 5.0.0 to 6.1.1 in /superset-frontend/packages/superset-ui-demo ( #30085 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 09:31:20 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fd6ef4f870
chore(deps-dev): bump eslint-import-resolver-typescript from 3.6.3 to 3.7.0 in /superset-frontend ( #31558 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 09:41:59 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d94bd413e5
chore(deps-dev): bump prettier from 3.3.3 to 3.4.2 in /superset-websocket ( #31521 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 09:41:45 -07:00
0c2f697f6d
build(deps-dev): update @types/underscore requirement from ^1.11.15 to ^1.13.0 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #30785 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-20 09:41:33 -07:00
b831bed7cd
build(deps-dev): update @types/lodash requirement from ^4.17.7 to ^4.17.13 in /superset-frontend/plugins/plugin-chart-handlebars ( #30779 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-20 09:40:30 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d9554622c0
chore(deps-dev): bump webpack from 5.96.1 to 5.97.1 in /docs ( #31539 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-19 16:52:48 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
89ad48764a
chore(deps): bump @algolia/client-search from 5.15.0 to 5.18.0 in /docs ( #31540 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-19 16:50:51 -07:00
5ab3c5ea99
build(deps): bump @math.gl/web-mercator from 3.6.3 to 4.0.1 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #27809 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2024-12-19 15:47:01 -08:00
fdc7273d56
chore(deps): update @deck.gl/aggregation-layers requirement from ^9.0.37 to ^9.0.38 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #31529 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 15:39:21 -08:00
a59a0fe475
chore(deps): bump gh-pages from 5.0.0 to 6.2.0 in /superset-frontend/packages/superset-ui-demo ( #31572 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 15:38:02 -08:00
16e29c466e
build(deps): bump @types/d3-format from 1.4.5 to 3.0.4 in /superset-frontend/packages/superset-ui-core ( #30458 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joe Li <joe@preset.io >
2024-12-19 16:35:10 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35d109389f
chore(deps): bump @docsearch/react from 3.6.3 to 3.8.2 in /docs ( #31542 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-19 16:17:11 -07:00
e5b561c87f
chore(deps-dev): bump typescript from 4.9.5 to 5.7.2 in /superset-frontend/packages/superset-ui-demo ( #31225 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 16:07:43 -07:00
3999c0fc41
chore(deps): update dompurify requirement from ^3.1.3 to ^3.2.3 in /superset-frontend/plugins/legacy-preset-chart-nvd3 ( #31388 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 16:07:03 -07:00
e2a1ce220e
chore(deps): bump @storybook/types from 8.1.11 to 8.4.7 in /superset-frontend/packages/superset-ui-demo ( #31543 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 15:57:20 -07:00
369346c03d
chore(deps): update chalk requirement from ^5.3.0 to ^5.4.0 in /superset-frontend/packages/generator-superset ( #31533 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 15:56:59 -07:00
d09ccb2504
chore(deps-dev): update @types/d3-time requirement from ^3.0.3 to ^3.0.4 in /superset-frontend/packages/superset-ui-core ( #31532 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 15:56:48 -07:00
c514b6b0b9
chore(deps): update yeoman-generator requirement from ^7.3.2 to ^7.4.0 in /superset-frontend/packages/generator-superset ( #31531 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 15:56:33 -07:00
040f27e6da
chore(deps): update @deck.gl/layers requirement from ^9.0.37 to ^9.0.38 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #31525 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 15:55:36 -07:00
a5fdf6d14a
chore(deps-dev): update @babel/types requirement from ^7.25.6 to ^7.26.3 in /superset-frontend/plugins/plugin-chart-pivot-table ( #31524 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 15:55:16 -07:00
16c9418ee1
chore(deps): update @emotion/styled requirement from ^11.3.0 to ^11.14.0 in /superset-frontend/packages/superset-ui-demo ( #31389 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evan Rusackas <evan@rusackas.com >
2024-12-19 15:55:00 -07:00
Maxime Beauchemin
d8aba2f7e6
chore: remove dependency on func_timeout because LGPL ( #31519 )
2024-12-19 09:32:20 -08:00
Maxime Beauchemin
db11a2a308
chore: update browser list ( #31517 )
2024-12-19 09:53:35 -07:00
alexandrusoare and Diego Pucci
f362c6f508
refactor(Modal): Upgrade Modal component to Antd5 ( #31420 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2024-12-19 17:22:11 +01:00
Beto Dealmeida
7458c4bbd5
chore: rename apply_post_process ( #31511 )
2024-12-19 10:13:28 -05:00
Maxime Beauchemin
531f1b6aa4
chore(gha): bump ubuntu to latest fresh release ( #31390 )
2024-12-18 23:32:10 -08:00
Maxime Beauchemin
723ef591a5
fix: add various recent issues on master CI ( #31561 )
2024-12-18 21:03:01 -08:00
Maxime Beauchemin and Elizabeth Thompson
e51b95ffa8
chore: enforce more ruff rules ( #31447 )
...
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com >
2024-12-18 17:41:34 -08:00
Maxime Beauchemin
9da65d6bfd
chore: deprecate pip-compile-multi in favor or uv ( #31313 )
2024-12-18 17:40:58 -08:00
Maxime Beauchemin
88cde7225e
chore: deprecate fossa in favor of liccheck to validate python licenses ( #31515 )
2024-12-18 17:03:25 -08:00
Maxime Alay-Eddine and Maxime ALAY-EDDINE
e788b858d0
feat(country-map): add map for France with all overseas territories ( #31037 )
...
Co-authored-by: Maxime ALAY-EDDINE <maxime@galeax.com >
2024-12-17 15:34:39 -07:00
Evan Rusackas
c0feb99f0e
chore(code owners): Update CODEOWNERS file to remove a couple inactive contributors ( #31501 )
2024-12-17 15:26:12 -07:00
Samra Hanif
567380ffe1
docs: Update new user for Careem to user's list ( #31496 )
2024-12-17 11:26:35 -07:00
Maxime Beauchemin
a5e36c9aab
fix: master docker builds fail because of multi-platform builds can't --load ( #31493 )
2024-12-17 09:41:13 -08:00
Kamil Gabryjelski
4c380b48e7
fix: Card component background color ( #31483 )
2024-12-17 14:54:46 +01:00
Maxime Beauchemin
3375e65486
feat(gha): various docker / docker-compose build improvements ( #31386 )
2024-12-16 17:50:15 -08:00
Michael Gerber
a1adb7f31c
fix(sunburst): Use metric label from verbose map ( #31480 )
2024-12-16 10:44:33 -07:00
Kamil Gabryjelski
9b28a6eed6
fix: Tooltip covers the date selector in native filters ( #31472 )
2024-12-16 18:29:10 +01:00
Kamil Gabryjelski
8be69aa647
fix(explore): Styling issue in Search Metrics input field ( #31473 )
2024-12-16 18:28:38 +01:00
Evan Rusackas
48510d2ffb
fix(filter options): full size list item targets ( #31449 )
2024-12-16 10:22:14 -07:00
Shane Zarechian
04077ce934
fix(api): typo api.py ( #31458 )
2024-12-15 13:37:57 -08:00
Maxime Beauchemin
092faa019b
chore: remove numba and llvmlite deps as they are large and we don't use them ( #31451 )
2024-12-13 21:17:52 -08:00
Maxime Beauchemin
1f17b975d6
fix: docker refactor ( #31385 )
2024-12-13 16:17:44 -08:00
Michael Gerber
15ede02c25
chore(translations): German translation update ( #30605 )
2024-12-13 16:52:43 -07:00
Maxime Beauchemin and Ville Brofeldt
4bccf36375
chore: deprecate pylint in favor of ruff ( #31262 )
...
Co-authored-by: Ville Brofeldt <33317356+villebro@users.noreply.github.com >
2024-12-13 12:53:14 -08:00
Vitor Avila
21e794a66f
fix(database import): Gracefully handle error to get catalog schemas ( #31437 )
2024-12-13 12:31:10 -03:00
Geido
e1f98e246f
fix(Dashboard): Sync color configuration via dedicated endpoint ( #31374 )
2024-12-13 15:58:02 +02:00
Ville Brofeldt
bf56a327f4
fix(tags): clean up bulk create api and schema ( #31427 )
2024-12-12 17:54:10 -08:00
Elizabeth Thompson
cd200f07a5
fix: prevent multiple pvm errors on migration ( #31332 )
2024-12-12 16:26:36 -08:00
Maxime Beauchemin
4ff9aac1fa
feat(sqllab): giving the query history pane a facelift ( #31316 )
2024-12-12 16:30:50 -07:00
Daniel Vaz Gaspar
988da2c477
docs: CVEs fixed on 4.1.0 v2 ( #31422 )
2024-12-12 18:48:54 +00:00
Maxime Beauchemin
f510f42b96
fix: pkg_resources is getting deprecated ( #31411 )
2024-12-12 09:20:52 -08:00
Vitor Avila
43314dc8db
fix(Pivot Table): Fix column width to respect currency config ( #31414 )
2024-12-12 10:44:07 -03:00
Luiz Otavio
423a0fefa5
feat: Adds helper functions for migrations ( #31303 )
2024-12-11 10:50:56 -03:00
Enzo Martellucci and JUST.in DO IT
fd57fce977
refactor: Migrate AdhocFilterEditPopoverSqlTabContent to TypeScript ( #31268 )
...
Co-authored-by: JUST.in DO IT <justin.park@airbnb.com >
2024-12-11 14:26:18 +02:00
Maxime Beauchemin
d8fbaa4cbe
fix: don't include chromium on ephemeral envs ( #31391 )
2024-12-10 18:33:56 -08:00
Evan Rusackas
a6e05f4558
build(packages): npm build/publish improvements. Making packages publishable again. ( #30196 )
2024-12-10 16:54:41 -07:00
Joe Li
42f4490bbc
fix: Revert "chore(deps-dev): bump esbuild from 0.20.0 to 0.24.0 in /super… ( #31387 )
2024-12-10 16:40:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
852e9ae173
chore(deps): bump nanoid from 3.3.7 to 3.3.8 in /docs ( #31378 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-10 11:56:26 -07:00
Evan Rusackas
26ec6b78eb
chore(embedded sdk): bump sdk version number ( #31381 )
2024-12-10 11:50:52 -07:00
Beto Dealmeida
d6a82f7852
feat: fine-grain chart data telemetry ( #31273 )
2024-12-10 13:09:39 -05:00
Evan Rusackas
232e2055aa
chore(embedded sdk): bumping dependencies ( #31380 )
2024-12-10 11:01:03 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
955efdac1a
chore(deps): bump nanoid from 5.0.7 to 5.0.9 in /superset-frontend/cypress-base ( #31362 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-10 09:53:06 -07:00
Daniel Vaz Gaspar
654701af4c
fix: ephemeral envs fail on noop ( #31236 )
2024-12-09 12:06:45 -08:00
Tatiana Cherne and Evan Rusackas
73d21a87ae
fix(histogram): axis margin padding consistent with other graphs ( #31335 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2024-12-09 12:03:22 -08:00
Daniel Grossberg and Evan Rusackas
878c7f0267
fix(docs): add custom editUrl path for intro page ( #31334 )
...
Co-authored-by: Evan Rusackas <evan@preset.io >
2024-12-09 11:53:54 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cb78c778dd
chore(deps): bump antd from 5.21.6 to 5.22.2 in /docs ( #31209 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-09 12:09:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
310558508e
chore(deps-dev): bump esbuild from 0.20.0 to 0.24.0 in /superset-frontend ( #31219 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-09 12:04:13 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3daca8d251
chore(deps): bump path-to-regexp and express in /superset-websocket/utils/client-ws-app ( #31314 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-09 10:47:26 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28b01c5464
chore(deps): bump winston from 3.15.0 to 3.17.0 in /superset-websocket ( #31220 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-09 10:38:38 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1fbdd21133
chore(deps-dev): bump @babel/eslint-parser from 7.23.10 to 7.25.9 in /superset-frontend ( #31218 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-09 10:37:31 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55a6c3a10a
chore(deps-dev): bump @eslint/js from 9.14.0 to 9.16.0 in /superset-websocket ( #31222 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-09 10:36:10 -07:00
Beto Dealmeida
fc45647440
fix(sqllab): duplicate error message ( #31353 )
2024-12-09 12:31:00 -05:00
Erkka Tahvanainen and Erkka Tahvanainen
3bfead66c4
fix(alerts&reports): tabs with userfriendly urls ( #31350 )
...
Co-authored-by: Erkka Tahvanainen <erkka.tahvanainen@confidently.fi >
2024-12-09 10:21:38 -07:00
Konstanty Karagiorgis
b54a97b5f0
fix: added missing pod labels for init job ( #30956 )
2024-12-09 09:14:41 -08:00
Yuri
931f69d6c7
fix(pinot): remove query aliases from SELECT and ORDER BY clauses in Pinot ( #31341 )
2024-12-09 09:07:03 -08:00
Daniel Vaz Gaspar
ae8c6865c9
docs: CVEs fixed on 4.1.0 ( #31352 )
2024-12-09 16:54:28 +00:00
alexandrusoare
0133bab038
fix(AllEntitiesTable): show Tags ( #31301 )
2024-12-09 18:06:32 +02:00
Oleg Ovcharuk
48c5ee4f8b
fix: Use clickhouse sqlglot dialect for YDB ( #31323 )
2024-12-07 12:58:23 -08:00
Beto Dealmeida
9315a8838c
fix: pass string to process_template ( #31329 )
2024-12-07 09:49:49 -05:00
592564b623
fix: cache-warmup fails ( #31173 )
...
Co-authored-by: Sivarajan Narayanan <narayanan_sivarajan@apple.com >
Co-authored-by: Pat Heard <patrick.heard@cds-snc.ca >
2024-12-06 17:41:38 -08:00
Levis Mbote and Diego Pucci
79aff6827c
refactor(Alert): Migrate Alert component to Ant Design V5 ( #31168 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2024-12-06 21:26:04 +02:00
079e7327a2
chore(FilterBar): move the "Add/edit filters" button in the FilterBar to the settings menu ( #31290 )
...
Co-authored-by: Geido <60598000+geido@users.noreply.github.com >
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2024-12-06 20:52:55 +02:00
JUST.in DO IT
48864ce8c7
fix(sqllab): Remove update_saved_query_exec_info to reduce lag ( #31294 )
2024-12-06 10:09:02 -08:00
Damian Pendrak
2816a70af3
fix: annotations on horizontal bar chart ( #31308 )
2024-12-05 13:20:22 -08:00
Levis Mbote
6af22a9cdd
refactor(Name_column): Make 'Name' column of Saved Query page into links ( #31312 )
2024-12-05 13:17:30 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
827fe06903
chore(deps): bump deck.gl from 9.0.34 to 9.0.36 in /superset-frontend/plugins/legacy-preset-chart-deckgl ( #31203 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-05 13:03:39 -07:00
Evan Rusackas
45815d8642
fix(filters): improving the add filter/divider UI. ( #31279 )
2024-12-05 09:13:24 -07:00
Oleg Ovcharuk
cf5c770adc
feat: add YDB as a new database engine ( #31141 )
2024-12-05 09:14:19 -05:00
Joe Li and Maxime Beauchemin
638f82b46d
chore: relax greenlet requirements ( #31275 )
...
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2024-12-04 14:02:25 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
e0e1eea9ce
chore(deps-dev): bump typescript from 5.6.3 to 5.7.2 in /docs ( #31205 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-04 14:17:41 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27c7240185
chore(deps): bump @algolia/client-search from 5.12.0 to 5.15.0 in /docs ( #31207 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-04 11:44:34 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5ca2a8f670
chore(deps): bump less from 4.2.0 to 4.2.1 in /docs ( #31208 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-04 11:43:22 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2d60a2d48c
chore(deps-dev): bump @docusaurus/tsconfig from 3.5.2 to 3.6.3 in /docs ( #31204 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-04 11:42:28 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b70c8ee7a8
chore(deps): bump swagger-ui-react from 5.17.14 to 5.18.2 in /docs ( #31206 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-04 11:22:32 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
a3fd7423b0
chore(deps-dev): bump @types/jest from 29.5.12 to 29.5.14 in /superset-websocket ( #31224 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-03 23:45:20 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f679a18e82
chore(deps): bump @types/react-table from 7.7.19 to 7.7.20 in /superset-frontend ( #31228 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-03 23:45:05 -07:00
Vitor Avila
77f3764fea
feat(Handlebars): formatNumber and group helpers ( #31261 )
2024-12-03 17:55:57 -03:00
JUST.in DO IT
1e0c04fc15
fix(trino): db session error in handle cursor ( #31265 )
2024-12-03 11:57:37 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
56b973f3cc
chore(deps-dev): bump @docusaurus/module-type-aliases from 3.5.2 to 3.6.3 in /docs ( #31210 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-03 10:19:29 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3479574bd4
chore(deps): bump @ant-design/icons from 5.5.1 to 5.5.2 in /docs ( #31213 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-03 10:18:43 -07:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
aa55751b1d
chore(deps): bump @scarf/scarf from 1.3.0 to 1.4.0 in /superset-frontend ( #31230 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-03 10:17:49 -07:00
Sam Firke
6c2aade375
chore(bug report template): bump Superset versions to reflect 4.1.1 release ( #31259 )
2024-12-03 12:14:36 -05:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
f51f19bcba
chore(deps): bump re-resizable from 6.10.0 to 6.10.1 in /superset-frontend ( #31231 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-03 10:13:14 -07:00
Kamil Gabryjelski
1d44662b1d
refactor: Split SliceHeaderControls into smaller files ( #31270 )
2024-12-03 16:36:39 +01:00
Daniel Vaz Gaspar
25f4226dbb
fix: add more clickhouse disallowed functions on config ( #31198 )
2024-12-03 10:48:06 +00:00
Maxime Beauchemin
dd1ba96adf
feat: use uv in CI ( #31260 )
2024-12-02 18:16:56 -08:00
Maxime Beauchemin
d4888fa4af
docs: adapt docs to suggest 'docker compose up --build' ( #30864 )
2024-12-02 18:03:13 -08:00
Maxime Beauchemin
b3559f644c
chore: simplify Dockerfile package install calls with bash wrappers ( #31034 )
2024-12-02 17:57:01 -08:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fe80fb1090
chore(deps): bump codecov/codecov-action from 4 to 5 ( #31214 )
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-02 17:50:12 -08:00
github-actions[bot] and GitHub Action
43efa05113
chore( 🦾 ): bump python flask-migrate subpackage(s) ( #31250 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-12-02 17:42:35 -08:00
github-actions[bot] and GitHub Action
e5e3f9e210
chore( 🦾 ): bump python nh3 0.2.18 -> 0.2.19 ( #31249 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-12-02 17:42:08 -08:00
github-actions[bot] and GitHub Action
468dfed416
chore( 🦾 ): bump python pyjwt 2.10.0 -> 2.10.1 ( #31253 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-12-02 17:41:41 -08:00
Maxime Beauchemin
3564740255
chore: pin greenlet in base dependencies ( #31254 )
2024-12-02 16:41:15 -08:00
Joe Li
8020729ced
fix: check for column before adding in migrations ( #31185 )
2024-12-02 13:47:55 -08:00
Maxime Beauchemin
deec63bb5b
docs(contributing): how to nuke the docker-compose postgres ( #31186 )
2024-12-02 11:50:49 -08:00
JUST.in DO IT and Michael S. Molina
339d491dfc
feat(sqllab): Popup notification when download data can exceed row count ( #31187 )
...
Co-authored-by: Michael S. Molina <70410625+michael-s-molina@users.noreply.github.com >
2024-12-02 11:15:25 -08:00
Vitor Avila
d66ac9f3f4
fix(Databricks): Escape catalog and schema names in pre-queries ( #31199 )
2024-12-02 14:00:00 -03:00
Kamil Gabryjelski
06fb330569
perf: Optimize DashboardPage and SyncDashboardState ( #31244 )
2024-12-02 16:10:02 +01:00
Kamil Gabryjelski
ce0e06a935
perf: Optimize native filters and cross filters ( #31243 )
2024-12-02 15:42:34 +01:00
Kamil Gabryjelski
5006f97f70
perf: Optimize dashboard grid components ( #31240 )
2024-12-02 15:05:29 +01:00
Kamil Gabryjelski
24d001e498
perf: Optimize Dashboard components ( #31242 )
2024-12-02 15:04:39 +01:00
Kamil Gabryjelski
eab888c63a
perf: Optimize dashboard chart-related components ( #31241 )
2024-12-02 15:04:29 +01:00
alexandrusoare and Diego Pucci
3d3c09d299
chore(Tooltip): Upgrade Tooltip to Ant Design 5 ( #31182 )
...
Co-authored-by: Diego Pucci <diegopucci.me@gmail.com >
2024-11-30 12:37:40 +02:00
Damian Pendrak
97dde8c485
fix: x axis title disappears when editing bar chart ( #30821 )
2024-11-29 16:09:03 +01:00
Vitor Avila
14682b9054
fix(embedded): Hide anchor links in embedded mode ( #31194 )
2024-11-29 12:06:44 -03:00
Michael S. Molina
93ba8e16c3
refactor: Creates the VizType enum ( #31193 )
2024-11-29 10:05:02 -03:00
Michael S. Molina
dbcb473040
fix: Time-series Line Chart Display unnecessary total ( #31181 )
2024-11-27 10:29:09 -08:00
scottduszy
f0811c8863
docs: update slack alert instructions to work with V2 slack API ( #31165 )
2024-11-27 10:19:18 -08:00
0166db9663
chore( 🦾 ): bump python sqlglot 23.6.3 -> 23.15.8 ( #28461 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2024-11-26 15:48:38 -08:00
github-actions[bot] and GitHub Action
c26f073134
chore( 🦾 ): bump python pyparsing 3.1.2 -> 3.2.0 ( #31171 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-26 15:48:13 -08:00
Beto Dealmeida
45668e31fc
feat: make sure to quote formulas on Excel export ( #31166 )
2024-11-26 18:16:44 -05:00
Maxime Beauchemin
529aed5da1
chore(deps): cap async_timeout<5.0.0 ( #31170 )
2024-11-26 14:12:04 -08:00
Beto Dealmeida
09802acf0d
refactor: remove more sqlparse ( #31032 )
2024-11-26 17:01:07 -05:00
github-actions[bot] and GitHub Action
9224051b80
chore( 🦾 ): bump python importlib-metadata 7.1.0 -> 8.5.0 ( #31126 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-26 13:39:08 -08:00
Maxime Beauchemin
fd9d3301f6
chore: deprecate tox in favor of act ( #29382 )
2024-11-26 13:27:37 -08:00
Beto Dealmeida
68499a1199
feat: purge OAuth2 tokens when DB changes ( #31164 )
2024-11-26 15:57:01 -05:00
Geido
f077323e6f
fix(Dashboard): Backward compatible shared_label_colors field ( #31163 )
2024-11-26 20:34:06 +02:00
Beto Dealmeida
7f2e752796
fix: check orderby ( #31156 )
2024-11-26 10:15:06 -05:00
Maxime Beauchemin
97683ec052
fix: helm chart deploy to open PRs to now-protected gh-pages branch ( #31155 )
2024-11-25 18:38:12 -08:00
github-actions[bot] and GitHub Action
73164c61ad
chore( 🦾 ): bump python billiard 4.2.0 -> 4.2.1 ( #31109 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:11:49 -08:00
github-actions[bot] and GitHub Action
564c168420
chore( 🦾 ): bump python flask-limiter 3.7.0 -> 3.8.0 ( #31138 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:11:21 -08:00
github-actions[bot] and GitHub Action
95f4fe0cb8
chore( 🦾 ): bump python mako 1.3.5 -> 1.3.6 ( #31140 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:10:58 -08:00
github-actions[bot] and GitHub Action
bbc6d374ea
chore( 🦾 ): bump python celery subpackage(s) ( #31127 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:10:23 -08:00
github-actions[bot] and GitHub Action
316da5e5f5
chore( 🦾 ): bump python humanize 4.9.0 -> 4.11.0 ( #31128 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:10:05 -08:00
github-actions[bot] and GitHub Action
e2b9b8e9fd
chore( 🦾 ): bump python simplejson 3.19.2 -> 3.19.3 ( #31129 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:09:49 -08:00
github-actions[bot] and GitHub Action
7154b8d40f
chore( 🦾 ): bump python numexpr 2.10.1 -> 2.10.2 ( #31130 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:09:32 -08:00
github-actions[bot] and GitHub Action
fcb3ff3a41
chore( 🦾 ): bump python slack-sdk 3.27.2 -> 3.33.4 ( #31132 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:09:12 -08:00
github-actions[bot] and GitHub Action
342cfc41ec
chore( 🦾 ): bump python pyopenssl 24.1.0 -> 24.2.1 ( #31133 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:08:54 -08:00
github-actions[bot] and GitHub Action
aa7d3b0f96
chore( 🦾 ): bump python dnspython 2.6.1 -> 2.7.0 ( #31135 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:06:53 -08:00
github-actions[bot] and GitHub Action
3e28bd2cfa
chore( 🦾 ): bump python zstandard 0.22.0 -> 0.23.0 ( #31136 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:06:35 -08:00
github-actions[bot] and GitHub Action
cc1eec69df
chore( 🦾 ): bump python limits 3.12.0 -> 3.13.0 ( #31137 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:06:18 -08:00
github-actions[bot] and GitHub Action
3fa0de4293
chore( 🦾 ): bump python flask-jwt-extended 4.6.0 -> 4.7.1 ( #31139 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 17:05:59 -08:00
github-actions[bot] and GitHub Action
2ad8af71b5
chore( 🦾 ): bump python gunicorn 22.0.0 -> 23.0.0 ( #31125 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 16:52:11 -08:00
github-actions[bot] and GitHub Action
b648cc1168
chore( 🦾 ): bump python zipp 3.19.0 -> 3.21.0 ( #31124 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 16:50:22 -08:00
github-actions[bot] and GitHub Action
f24bf873bf
chore( 🦾 ): bump python flask-compress 1.15 -> 1.17 ( #31123 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 16:50:06 -08:00
github-actions[bot] and GitHub Action
e0a5033596
chore( 🦾 ): bump python dill 0.3.8 -> 0.3.9 ( #31108 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 16:49:31 -08:00
github-actions[bot] and GitHub Action
ef14d58c64
chore( 🦾 ): bump python email-validator 2.1.1 -> 2.2.0 ( #31116 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 16:48:15 -08:00
Michael S. Molina
547a4adef5
fix: Remove unwanted commit on Trino's handle_cursor ( #31154 )
2024-11-25 17:42:31 -03:00
Evan Rusackas
5256a2f194
chore(asf): add gh-pages to protected branches ( #31153 )
2024-11-25 13:31:52 -07:00
github-actions[bot] and GitHub Action
0560c2615d
chore( 🦾 ): bump python async-timeout 4.0.3 -> 5.0.1 ( #31122 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 10:18:23 -08:00
Michael S. Molina
ff282492a1
fix: Revert "feat(trino): Add functionality to upload data ( #29164 )" ( #31151 )
2024-11-25 15:16:28 -03:00
github-actions[bot] and GitHub Action
312dc1c749
chore( 🦾 ): bump python prompt-toolkit 3.0.44 -> 3.0.48 ( #31121 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 10:05:13 -08:00
github-actions[bot] and GitHub Action
1e26c34758
chore( 🦾 ): bump python sqlparse 0.5.0 -> 0.5.2 ( #31119 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-25 10:04:43 -08:00
Maxime Beauchemin
decaba72c3
fix: try to re-enable gh-pages ( #31152 )
2024-11-25 09:58:30 -08:00
Maxime Beauchemin
7e8c77e636
fix: touch helm/ folder to trigger doc deploy in CI ( #31148 )
2024-11-25 09:08:34 -08:00
alexandrusoare
ba99980cf4
refactor(List): Upgrade List from antdesign4 to antdesign5 ( #30963 )
2024-11-25 16:44:17 +02:00
github-actions[bot] and GitHub Action
c62f722f99
chore( 🦾 ): bump python mysqlclient 2.2.4 -> 2.2.6 ( #31113 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:36:20 -08:00
github-actions[bot] and GitHub Action
3fd23508bc
chore( 🦾 ): bump python grpcio-status subpackage(s) ( #31114 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:34:54 -08:00
github-actions[bot] and GitHub Action
9ff9e0299b
chore( 🦾 ): bump python cycler 0.11.0 -> 0.12.1 ( #31112 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:34:35 -08:00
github-actions[bot] and GitHub Action
6488ced3d3
chore( 🦾 ): bump python croniter 2.0.5 -> 5.0.1 ( #31091 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:33:02 -08:00
github-actions[bot] and GitHub Action
9a2be95159
chore( 🦾 ): bump python google-auth 2.29.0 -> 2.36.0 ( #31107 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:25:23 -08:00
github-actions[bot] and GitHub Action
ef4e03c9fe
chore( 🦾 ): bump python psutil 6.0.0 -> 6.1.0 ( #31106 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:25:05 -08:00
github-actions[bot] and GitHub Action
ca2f0288e5
chore( 🦾 ): bump python dnspython 2.6.1 -> 2.7.0 ( #31105 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:24:46 -08:00
github-actions[bot] and GitHub Action
ca63760a4b
chore( 🦾 ): bump python markdown 3.6 -> 3.7 ( #31102 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:23:37 -08:00
github-actions[bot] and GitHub Action
83924f7e10
chore( 🦾 ): bump python pluggy 1.4.0 -> 1.5.0 ( #31101 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:23:18 -08:00
github-actions[bot] and GitHub Action
c4a56c3f6e
chore( 🦾 ): bump python sqloxide 0.1.43 -> 0.1.51 ( #31100 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:22:51 -08:00
github-actions[bot] and GitHub Action
cf134ab3aa
chore( 🦾 ): bump python wheel 0.43.0 -> 0.45.1 ( #31099 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:22:28 -08:00
github-actions[bot] and GitHub Action
043c585008
chore( 🦾 ): bump python pyproject-api 1.6.1 -> 1.8.0 ( #31098 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:22:08 -08:00
github-actions[bot] and GitHub Action
0d346d4414
chore( 🦾 ): bump python pytest-cov 5.0.0 -> 6.0.0 ( #31096 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:21:50 -08:00
github-actions[bot] and GitHub Action
9067371234
chore( 🦾 ): bump python chardet 5.1.0 -> 5.2.0 ( #31094 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:21:22 -08:00
github-actions[bot] and GitHub Action
40fe05c5e2
chore( 🦾 ): bump python jsonpath-ng 1.6.1 -> 1.7.0 ( #31093 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:20:26 -08:00
github-actions[bot] and GitHub Action
e3bdfb5def
chore( 🦾 ): bump python sshtunnel subpackage(s) ( #31092 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 22:20:11 -08:00
55f0713a2f
chore( 🦾 ): bump python mako 1.3.5 -> 1.3.6 ( #31097 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2024-11-24 22:19:16 -08:00
github-actions[bot] and GitHub Action
5aee59cc3a
chore( 🦾 ): bump python tomlkit 0.12.5 -> 0.13.2 ( #31090 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:28:45 -08:00
github-actions[bot] and GitHub Action
94d3774d9e
chore( 🦾 ): bump python isodate 0.6.1 -> 0.7.2 ( #31087 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:28:28 -08:00
github-actions[bot] and GitHub Action
b665254f39
chore( 🦾 ): bump python db-dtypes 1.2.0 -> 1.3.1 ( #31082 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:28:11 -08:00
github-actions[bot] and GitHub Action
4dc8cce8e8
chore( 🦾 ): bump python trino 0.328.0 -> 0.330.0 ( #31081 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:27:52 -08:00
github-actions[bot] and GitHub Action
d206a20ce7
chore( 🦾 ): bump python certifi 2024.2.2 -> 2024.8.30 ( #31089 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:27:18 -08:00
github-actions[bot] and GitHub Action
6fcc282a4e
chore( 🦾 ): bump python pydata-google-auth 1.7.0 -> 1.9.0 ( #31088 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:26:58 -08:00
github-actions[bot] and GitHub Action
93c35a7ba5
chore( 🦾 ): bump python pyproject-hooks 1.0.0 -> 1.2.0 ( #31086 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:26:36 -08:00
github-actions[bot] and GitHub Action
9dfa8d5f8f
chore( 🦾 ): bump python sqlalchemy-bigquery 1.11.0 -> 1.12.0 ( #31085 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:26:14 -08:00
github-actions[bot] and GitHub Action
87504056fe
chore( 🦾 ): bump python kiwisolver 1.4.5 -> 1.4.7 ( #31084 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:25:47 -08:00
github-actions[bot] and GitHub Action
429c18f9e8
chore( 🦾 ): bump python coverage subpackage(s) ( #31083 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:25:33 -08:00
github-actions[bot] and GitHub Action
5bddc81f60
chore( 🦾 ): bump python cfgv 3.3.1 -> 3.4.0 ( #31077 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:25:12 -08:00
github-actions[bot] and GitHub Action
9837b4a61e
chore( 🦾 ): bump python fonttools 4.51.0 -> 4.55.0 ( #31075 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:24:49 -08:00
github-actions[bot] and GitHub Action
454f143661
chore( 🦾 ): bump python pyasn1-modules 0.4.0 -> 0.4.1 ( #31076 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:03:01 -08:00
github-actions[bot] and GitHub Action
7376dfc6e9
chore( 🦾 ): bump python pyhive subpackage(s) ( #31079 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 21:00:56 -08:00
github-actions[bot] and GitHub Action
838d47d578
chore( 🦾 ): bump python google-cloud-core 2.3.2 -> 2.4.1 ( #31078 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 20:57:49 -08:00
14e81d0a9a
chore( 🦾 ): bump python sqlalchemy-utils subpackage(s) ( #31048 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2024-11-24 20:45:06 -08:00
github-actions[bot] and GitHub Action
f68c2b2454
chore( 🦾 ): bump python amqp 5.2.0 -> 5.3.1 ( #31073 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 20:44:29 -08:00
github-actions[bot] and GitHub Action
814c3dfecc
chore( 🦾 ): bump python cachetools 5.3.3 -> 5.5.0 ( #31071 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 20:44:05 -08:00
github-actions[bot] and GitHub Action
b8aade776b
chore( 🦾 ): bump python kombu 5.3.7 -> 5.4.2 ( #31074 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 20:43:26 -08:00
github-actions[bot] and GitHub Action
e092e6002d
chore( 🦾 ): bump python pyyaml 6.0.1 -> 6.0.2 ( #31066 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 18:10:24 -08:00
github-actions[bot] and GitHub Action
673754d16e
chore( 🦾 ): bump python tqdm 4.66.4 -> 4.67.1 ( #31068 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 18:10:06 -08:00
github-actions[bot] and GitHub Action
27deeb2f51
chore( 🦾 ): bump python proto-plus 1.22.2 -> 1.25.0 ( #31069 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 18:09:38 -08:00
github-actions[bot] and GitHub Action
9a7a84c7a0
chore( 🦾 ): bump python importlib-resources 6.4.0 -> 6.4.5 ( #31067 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 18:09:13 -08:00
github-actions[bot] and GitHub Action
a3d2588313
chore( 🦾 ): bump python apispec subpackage(s) ( #31062 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 17:56:17 -08:00
github-actions[bot] and GitHub Action
5c87fee282
chore( 🦾 ): bump python deprecated 1.2.14 -> 1.2.15 ( #31056 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 17:55:07 -08:00
b24323d500
chore( 🦾 ): bump python pre-commit 3.7.1 -> 4.0.1 ( #31050 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2024-11-24 17:34:36 -08:00
github-actions[bot] and GitHub Action
824aca85d0
chore( 🦾 ): bump python charset-normalizer 3.3.2 -> 3.4.0 ( #31064 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 17:31:13 -08:00
1e4098a29e
chore( 🦾 ): bump python ruff 0.4.5 -> 0.8.0 ( #31001 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2024-11-24 17:30:48 -08:00
3aa8f32ca9
chore( 🦾 ): bump python googleapis-common-protos 1.63.0 -> 1.66.0 ( #31049 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2024-11-24 17:15:24 -08:00
github-actions[bot] and GitHub Action
bf42ea70ba
chore( 🦾 ): bump python cron-descriptor 1.4.3 -> 1.4.5 ( #31046 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 16:31:38 -08:00
github-actions[bot] and GitHub Action
d69da5f0f5
chore( 🦾 ): bump python flask-wtf 1.2.1 -> 1.2.2 ( #31052 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 16:23:35 -08:00
Rida KEJJI and Rida KEJJI
078257dd1b
docs: updated the install process in pypi.mdx ( #31044 )
...
Co-authored-by: Rida KEJJI <42012627+ShameGod@users.noreply.github.com >
2024-11-24 16:23:17 -08:00
github-actions[bot] and GitHub Action
8c1c2570b3
chore( 🦾 ): bump python nh3 0.2.17 -> 0.2.18 ( #31054 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 16:22:15 -08:00
github-actions[bot] and GitHub Action
a80803566d
chore( 🦾 ): bump python marshmallow 3.21.2 -> 3.23.1 ( #31045 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 16:21:48 -08:00
github-actions[bot] and GitHub Action
f551f5b7b6
chore( 🦾 ): bump python idna 3.7 -> 3.10 ( #31041 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 13:38:14 -08:00
github-actions[bot] and GitHub Action
1978cde4f1
chore( 🦾 ): bump python pyjwt 2.8.0 -> 2.10.0 ( #31042 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 13:37:57 -08:00
c5f6cc6382
chore( 🦾 ): bump python et-xmlfile 1.1.0 -> 2.0.0 & remove pyhive[hive] from requirements/development.in ( #31040 )
...
Co-authored-by: GitHub Action <action@github.com >
Co-authored-by: Maxime Beauchemin <maximebeauchemin@gmail.com >
2024-11-24 13:35:50 -08:00
Birk Skyum
e9e2c0bee8
chore(legacy-plugin-chart-map-box): replace viewport-mercator-project with @math.gl/web-mercator ( #30651 )
2024-11-24 20:00:26 +00:00
github-actions[bot] and GitHub Action
33a9817388
chore( 🦾 ): bump python pandas subpackage(s) ( #31004 )
...
Co-authored-by: GitHub Action <action@github.com >
2024-11-24 10:05:59 -08:00
Geido
91301bcd5b
fix(Dashboard): Ensure shared label colors are updated ( #31031 )
2024-11-23 16:39:40 +02:00
Maxime Beauchemin
67ad7da5cc
fix: ephemeral environments missing env var ( #31035 )
2024-11-22 17:39:34 -08:00
Maxime Beauchemin
e0deb704f9
feat: make ephemeral env use supersetbot + deprecate build_docker.py ( #30870 )
2024-11-22 14:19:08 -08:00
Kamil Gabryjelski
abf3790ea6
chore: Cleanup code related to MetadataBar, fix types ( #31030 )
2024-11-22 16:02:13 +01:00