This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch feat/database-troubleshooting-docs
in repository https://gitbox.apache.org/repos/asf/superset.git
from d1a01b5970 fix(docs): use specific exception types instead of broad
Exception
add d4723ef116 feat: Handle OAuth2 dance with TableSelector (#37315)
add 02495a130f chore(deps): bump lodash from 4.17.21 to 4.17.23 in
/superset-websocket (#37321)
add 5e7fe81cfa chore(deps-dev): bump prettier from 3.8.0 to 3.8.1 in /docs
(#37329)
add 0289028313 chore(deps-dev): bump baseline-browser-mapping from 2.9.14
to 2.9.17 in /superset-frontend (#37330)
add 3fa5bb4138 fix(echarts): restore dashed line style for time comparison
series (#37135)
add aa37e96a02 chore(deps-dev): bump @babel/eslint-parser from 7.28.5 to
7.28.6 in /superset-frontend (#37331)
add febc5d54d5 chore(deps-dev): bump prettier-plugin-packagejson from
2.5.20 to 3.0.0 in /superset-frontend (#37340)
add 7f4c260cbe chore(deps): bump mapbox-gl from 3.17.0 to 3.18.0 in
/superset-frontend (#37328)
add b576665f9a chore(deps): bump lodash-es from 4.17.22 to 4.17.23 in
/superset-frontend (#37347)
add 7888da9e30 chore(deps): bump lodash from 4.17.21 to 4.17.23 in /docs
(#37346)
add 2b647d2352 chore(deps-dev): bump @applitools/eyes-storybook from
3.63.4 to 3.63.8 in /superset-frontend (#37336)
add de6ac2a444 chore(deps-dev): bump lightningcss from 1.30.2 to 1.31.1 in
/superset-frontend (#37335)
add cc972cad5a fix: DB OAuth2 fixes (#37350)
add fadab21493 fix(api): nan is not properly handled for athena
connections (#37071)
add 9fabd7f997 docs: show Developer Portal in global navigation (#37313)
add b630830841 fix(sqllab): add colorEditorSelection token for visible
text selection (#36932)
add 87bbd54d0a feat(examples): Transpile virtual dataset SQL on import
(#37311)
add 5830751467 Merge branch 'master' into
feat/database-troubleshooting-docs
No new revisions were added by this update.
Summary of changes:
docs/docusaurus.config.ts | 2 +-
docs/package.json | 2 +-
docs/versions-config.json | 2 +-
docs/yarn.lock | 14 +-
superset-frontend/package-lock.json | 303 ++++++++++-----------
superset-frontend/package.json | 12 +-
.../packages/generator-superset/package.json | 2 +-
.../packages/superset-core/src/ui/theme/types.ts | 7 +
.../src/operators/utils/isDerivedSeries.ts | 7 +-
.../test/operators/utils/isDerivedSeries.test.ts | 21 ++
.../src/components/AsyncAceEditor/index.tsx | 3 +-
.../src/Timeseries/transformProps.ts | 52 ++--
.../test/Timeseries/transformProps.test.ts | 165 +++++++++++
.../TableSelector/TableSelector.test.tsx | 41 +++
.../src/components/TableSelector/index.tsx | 28 +-
superset-frontend/src/hooks/apiResources/tables.ts | 9 +-
superset-websocket/package-lock.json | 15 +-
superset-websocket/package.json | 2 +-
superset/commands/dashboard/export_example.py | 4 +
superset/commands/importers/v1/examples.py | 58 ++++
superset/config.py | 7 +
superset/dataframe.py | 7 +-
superset/datasets/schemas.py | 2 +
superset/db_engine_specs/base.py | 20 +-
superset/models/core.py | 25 +-
superset/sql/parse.py | 21 +-
superset/utils/oauth2.py | 5 +-
.../commands/importers/v1/examples_test.py | 244 +++++++++++++++++
tests/unit_tests/dataframe_test.py | 196 +++++++++++--
tests/unit_tests/models/core_test.py | 196 +++++++++++++
tests/unit_tests/sql/transpile_to_dialect_test.py | 51 ++++
31 files changed, 1275 insertions(+), 248 deletions(-)
create mode 100644 tests/unit_tests/commands/importers/v1/examples_test.py