This is an automated email from the ASF dual-hosted git repository.
michael-s-molina pushed a change to branch 6.2
in repository https://gitbox.apache.org/repos/asf/superset.git
from 592d92e5825 feat(extensions): add Chat contribution type (SIP-214)
(#41205)
new fb552055fb7 fix(chart-explore): allow Save (Overwrite) after editing
chart properties (#41602)
new 7077ced9707 fix(chart): chart description not showing (#41453)
new 977bdd35502 chore(ci): update GHA actions to Node.js 24-compatible
versions (#40477) (#41932)
new 55d2e54c8eb fix(jinja): drill-to-detail respects remove_filter=True in
Jinja templates (#41934)
new ec0f2e6d148 fix(cross-filter): correctly cast adhoc column types when
cross filtering (#41936)
new a7dbbcb6a9d fix: playwright-tests-experimental failures
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/actions/setup-docker/action.yml | 6 +-
.github/actions/setup-supersetbot/action.yml | 4 +-
.github/workflows/docker.yml | 6 +-
superset-frontend/playwright/helpers/navigation.ts | 57 +++++
.../playwright/pages/ChartCreationPage.ts | 3 +-
.../playwright/pages/ChartListPage.ts | 3 +-
.../playwright/pages/CreateDatasetPage.ts | 3 +-
.../playwright/pages/DashboardListPage.ts | 3 +-
.../playwright/pages/DashboardPage.ts | 5 +-
.../playwright/pages/DatasetListPage.ts | 3 +-
.../MessageToasts/ToastPresenter.test.tsx | 8 +
.../components/MessageToasts/ToastPresenter.tsx | 8 +
superset-frontend/src/dashboard/actions/hydrate.ts | 2 +-
.../src/explore/components/SaveModal.test.tsx | 8 +
.../src/explore/reducers/exploreReducer.test.ts | 48 ++++-
.../src/explore/reducers/exploreReducer.ts | 29 ++-
superset/connectors/sqla/models.py | 21 +-
superset/jinja_context.py | 37 ++++
superset/models/helpers.py | 16 +-
superset/models/sql_lab.py | 13 +-
tests/unit_tests/jinja_context_test.py | 95 +++++++++
tests/unit_tests/models/helpers_test.py | 233 ++++++++++++++++++++-
22 files changed, 568 insertions(+), 43 deletions(-)
create mode 100644 superset-frontend/playwright/helpers/navigation.ts