This is an automated email from the ASF dual-hosted git repository.

michaelsmolina pushed a change to branch 5.0
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 5d333ac6dc fix: do not add calculated columns when syncing (#32761)
     new 49398ce93e feat: DB migration for dataset folders (#32680)
     new 770b3e17bb fix(migrations): fix foreign keys to match FAB 4.6.0 tables 
(#32759)
     new 95c09aa38b fix(chart control): Change default of "Y Axis Title Margin" 
(#32720)
     new db2b4cc297 fix(sqllab): Pass query_id as kwarg so backoff can see it 
(#32774)
     new 1306b36823 fix(import): Missing catalog field in saved query schema 
(#32775)
     new 4f6b7d02f4 fix(css): typos in styles (#28350)
     new e49ebce03c fix(config): correct slack image url in talisman (#32778)
     new 171574b1ca fix(excel export): big number truncation handling (#32739)
     new 5f9fdfe019 fix(model/helper): represent RLS filter clause in proper 
textual SQL string (#32406)
     new ca7c65456a fix(sec): resolve CVE-2025-29907 and CVE-2025-25977 by 
pinning `jspdf` to v3 (#32802)
     new 10ff151971 fix: CSV/Excel upload form change column dates description 
(#32797)
     new 76070218ca fix: key error in frontend on disallowed GSheets (#32792)
     new 9f719d2ed2 fix: Time Comparison Feature Reverts Metric Labels to 
Metric Keys in Table Charts (#32665)
     new fd44f70528 fix(log): store navigation path to get correct logging path 
(#32795)
     new f049049f71 fix: Bump FAB to 4.6.1 (#32848)

The 15 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:
 docs/docs/security/security.mdx                    |  43 +++++++
 pyproject.toml                                     |   2 +-
 requirements/base.txt                              |   2 +-
 requirements/development.txt                       |   2 +-
 .../cypress/e2e/dashboard/drillby.test.ts          |  36 +++---
 .../cypress/e2e/dashboard/drilltodetail.test.ts    |  16 +--
 superset-frontend/package-lock.json                |  36 +++---
 superset-frontend/package.json                     |   1 +
 .../src/sections/chartTitle.tsx                    |   2 +-
 .../src/Bubble/transformProps.ts                   |   4 +-
 .../src/Timeseries/Regular/Bar/controlPanel.tsx    |   2 +-
 .../plugins/plugin-chart-table/src/TableChart.tsx  |   8 +-
 .../plugin-chart-table/src/transformProps.ts       |   5 +
 .../plugins/plugin-chart-table/src/types.ts        |   2 +
 .../plugin-chart-table/test/TableChart.test.tsx    |  80 ++++++++++++
 .../features/databases/UploadDataModel/index.tsx   |   2 +-
 superset-frontend/src/middleware/logger.test.js    |  22 +++-
 .../src/middleware/loggerMiddleware.js             | 140 +++++++++++----------
 superset/config.py                                 |   7 +-
 superset/migrations/shared/utils.py                |  81 ++++++++++--
 ..._94e7a3499973_add_folders_column_to_dataset.py} |  19 +--
 ...46_32bf93dfe2a4_add_on_cascade_in_fab_tables.py | 111 ++++++++++++++++
 superset/models/helpers.py                         |   2 +-
 superset/queries/saved_queries/schemas.py          |   1 +
 superset/sql_lab.py                                |   4 +-
 superset/translations/ar/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/de/LC_MESSAGES/messages.po   |   6 +-
 superset/translations/en/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/es/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/fr/LC_MESSAGES/messages.po   |   6 +-
 superset/translations/it/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/ja/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/ko/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/messages.pot                 |   2 +-
 superset/translations/nl/LC_MESSAGES/messages.po   |   6 +-
 superset/translations/pt/LC_MESSAGES/messages.po   |   4 +-
 .../translations/pt_BR/LC_MESSAGES/messages.po     |   6 +-
 superset/translations/ru/LC_MESSAGES/messages.po   |   6 +-
 superset/translations/sk/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/sl/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/tr/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/uk/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/zh/LC_MESSAGES/messages.po   |   4 +-
 .../translations/zh_TW/LC_MESSAGES/messages.po     |   4 +-
 superset/utils/excel.py                            |  14 +++
 superset/views/base.py                             |   5 +-
 tests/integration_tests/fixtures/importexport.py   |   1 +
 tests/unit_tests/models/helpers_test.py            |  16 +--
 tests/unit_tests/utils/excel_tests.py              |  24 ++++
 49 files changed, 577 insertions(+), 193 deletions(-)
 copy 
superset/migrations/versions/{2024-05-10_11-09_9621c6d56ffb_add_subject_column_to_report_schedule.py
 => 2025-03-03_20-52_94e7a3499973_add_folders_column_to_dataset.py} (73%)
 create mode 100644 
superset/migrations/versions/2025-03-19_17-46_32bf93dfe2a4_add_on_cascade_in_fab_tables.py

Reply via email to