This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch chore/bump-serialize-javascript-docs
in repository https://gitbox.apache.org/repos/asf/superset.git
omit 1fc4817cea4 chore(deps): force serialize-javascript 7.0.5 in docs
add 8c6271e9ff8 chore(deps): bump urllib3, Mako, and python-multipart for
high-severity CVEs (#40534)
add f165c3fa786 fix(ci): grant security-events write to GHA validator
workflow (#40539)
add 7f54b0b13d0 test(database): regression test for sqla engine creation
(#27897) (#40237)
add 838ee27c299 chore(deps): bump protobuf to 5.29.6 and
google-cloud-bigquery-storage to 2.26.0 (#40537)
add fa4e571db5d chore(deps): force uuid 11.1.1 in docs (#40542)
add f4787a4f252 chore(deps): bump ws to 8.20.1 in docs (#40538)
add 2e7bec3646c chore(ci): harden GitHub Actions workflows per static
analysis (#40545)
add 2d6e68b5f29 fix(ci): remove deprecated ephemeral env workflows +
resolve fixable GHA-related security issues (#40121)
add 4d95a8d0348 feat(listview): compact filter pills with popover for CRUD
views (#40169)
add 8b54cefa2ee chore(deps): force serialize-javascript 7.0.5 in docs
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (1fc4817cea4)
\
N -- N -- N refs/heads/chore/bump-serialize-javascript-docs
(8b54cefa2ee)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/actions/setup-backend/action.yml | 2 +-
.github/actions/setup-supersetbot/action.yml | 1 +
.github/dependabot.yml | 60 ++--
.github/workflows/cancel_duplicates.yml | 43 ---
.github/workflows/check_db_migration_confict.yml | 2 +
.github/workflows/claude.yml | 4 +
.github/workflows/codeql-analysis.yml | 2 +
.github/workflows/dependency-review.yml | 4 +
.github/workflows/embedded-sdk-release.yml | 2 +
.github/workflows/embedded-sdk-test.yml | 2 +
.github/workflows/ephemeral-env-pr-close.yml | 83 -----
.github/workflows/ephemeral-env.yml | 350 -------------------
.github/workflows/github-action-validator.yml | 5 +
.github/workflows/labeler.yml | 2 +-
.github/workflows/latest-release-tag.yml | 4 +-
.github/workflows/release.yml | 6 +
.github/workflows/showtime-trigger.yml | 2 +-
.github/workflows/superset-docs-deploy.yml | 3 +
.github/workflows/superset-docs-verify.yml | 5 +
.github/workflows/superset-extensions-cli.yml | 2 +-
.github/workflows/superset-frontend.yml | 5 +-
.../workflows/superset-python-integrationtest.yml | 6 +-
.github/workflows/superset-python-presto-hive.yml | 4 +-
.github/workflows/superset-python-unittest.yml | 2 +-
.github/workflows/tag-release.yml | 13 +-
.github/workflows/tech-debt.yml | 2 +
.github/workflows/welcome-new-users.yml | 2 +-
docs/package.json | 1 +
docs/yarn.lock | 19 +-
requirements/base.txt | 4 +-
requirements/development.txt | 11 +-
scripts/oxlint.sh | 2 +-
superset-frontend/spec/helpers/testing-library.tsx | 30 ++
.../src/components/Chart/chartAction.ts | 7 +-
.../components/ListView/CardSortSelect.test.tsx | 102 ++++++
.../src/components/ListView/CardSortSelect.tsx | 76 ++--
.../ListView/Filters/CompactFilterTrigger.test.tsx | 145 ++++++++
.../ListView/Filters/CompactFilterTrigger.tsx | 198 +++++++++++
.../ListView/Filters/CompactSelectPanel.test.tsx | 339 ++++++++++++++++++
.../ListView/Filters/CompactSelectPanel.tsx | 318 +++++++++++++++++
.../src/components/ListView/Filters/DateRange.tsx | 112 ------
.../ListView/Filters/FilterPopoverContent.test.tsx | 80 +++++
.../ListView/Filters/FilterPopoverContent.tsx | 74 ++++
.../components/ListView/Filters/Select.test.tsx | 267 --------------
.../src/components/ListView/Filters/Select.tsx | 154 ---------
.../components/ListView/Filters/TimeRange.test.tsx | 251 ++++++++++++++
.../src/components/ListView/Filters/TimeRange.tsx | 291 ++++++++++++++++
.../src/components/ListView/Filters/index.test.tsx | 335 +++++++++++++++++-
.../src/components/ListView/Filters/index.tsx | 385 ++++++++++++++++-----
.../src/components/ListView/ListView.test.tsx | 21 +-
.../src/components/ListView/ListView.tsx | 81 ++++-
.../src/pages/ChartList/ChartList.test.tsx | 9 +-
.../DashboardList/DashboardList.cardview.test.tsx | 16 +-
.../src/pages/DashboardList/DashboardList.test.tsx | 8 +-
.../DatasetList/DatasetList.integration.test.tsx | 6 +-
.../DatasetList/DatasetList.listview.test.tsx | 23 +-
.../src/pages/DatasetList/DatasetList.test.tsx | 7 +-
.../src/pages/GroupsList/GroupsList.test.tsx | 16 +-
.../src/pages/RolesList/RolesList.test.tsx | 7 +-
.../RowLevelSecurityList.test.tsx | 9 +-
.../src/pages/UsersList/UsersList.test.tsx | 20 +-
superset/models/core.py | 71 +++-
tests/unit_tests/models/core_test.py | 94 +++++
63 files changed, 2924 insertions(+), 1283 deletions(-)
delete mode 100644 .github/workflows/cancel_duplicates.yml
delete mode 100644 .github/workflows/ephemeral-env-pr-close.yml
delete mode 100644 .github/workflows/ephemeral-env.yml
create mode 100644
superset-frontend/src/components/ListView/CardSortSelect.test.tsx
create mode 100644
superset-frontend/src/components/ListView/Filters/CompactFilterTrigger.test.tsx
create mode 100644
superset-frontend/src/components/ListView/Filters/CompactFilterTrigger.tsx
create mode 100644
superset-frontend/src/components/ListView/Filters/CompactSelectPanel.test.tsx
create mode 100644
superset-frontend/src/components/ListView/Filters/CompactSelectPanel.tsx
delete mode 100644
superset-frontend/src/components/ListView/Filters/DateRange.tsx
create mode 100644
superset-frontend/src/components/ListView/Filters/FilterPopoverContent.test.tsx
create mode 100644
superset-frontend/src/components/ListView/Filters/FilterPopoverContent.tsx
delete mode 100644
superset-frontend/src/components/ListView/Filters/Select.test.tsx
delete mode 100644 superset-frontend/src/components/ListView/Filters/Select.tsx
create mode 100644
superset-frontend/src/components/ListView/Filters/TimeRange.test.tsx
create mode 100644
superset-frontend/src/components/ListView/Filters/TimeRange.tsx