This is an automated email from the ASF dual-hosted git repository.
beto pushed a change to branch file-handler
in repository https://gitbox.apache.org/repos/asf/superset.git
omit 04b9a3e624 Fix test
omit 8e716e49bc fix: use local types in service worker to avoid global
pollution
omit 4102ccae58 fix: TypeScript errors in PWA file handler
omit b16eeadc13 fix: PWA file handler installation and routing issues
omit 470cfc1a74 Improve code
omit 6061388adf Add tests
omit 67084838a1 feat: file handler for CSV/XSL
omit 6b948ee894 docs(badges): Restore project badges on README - and
re-implement the Docusaurus ones (#36495)
omit 5e0ee40762 feat(chart): support icons and text in the `deck.gl
Geojson` visualization (#36201)
omit 6aaf2266a9 chore(deps-dev): add baseline-browser-mapping (#36645)
omit d14f502126 fix: store form_data as dict during viz type migration
(#36680)
omit d0361cb881 test(playwright): convert and create new dataset list
playwright tests (#36196)
omit 821b259805 fix: Support datetime_format during import (#36679)
omit 2329d49f9e fix(DatasourceEditor): add mount guards and fix async race
conditions (#35810)
omit 28e3ba749e feat: SQL execution API for Superset (#36529)
omit cd2c889c9a feat(frontend): upgrade Storybook and add extension
component documentation (#36498)
omit 52c711b0bc fix(dashboard): import with overwrite flag replaces charts
instead of merging (#36551)
omit 6f8052b828 docs: add contribution guidelines from wiki to Developer
Portal (#36523)
omit 5f431ee1ec chore(deps-dev): bump @types/node from 24.8.1 to 25.0.2 in
/superset-frontend (#36620)
omit de7a72a37b feat(ci): use TTL labels for showtime cleanup (#36643)
omit a1a57d50a4 fix(tests): resolve flaky "should edit correctly" test in
chart list (#36641)
omit 5844c05281 docs: clarify Jinja from_dttm/to_dttm availability in SQL
Lab (#36544)
omit c7a4d4f2cc fix(sql): handle backtick-quoted identifiers with base
dialect (#36545)
omit d6d8e71b71 chore(deps): Remove redundant polished direct dependency
(#36431)
add 57a210f7d6 feat: column-level security
add 5c61c40704 Support filters
add e9fc7c6f6c Initial rules
add 808ba668ff Integrate apply_data_access_rules() into SQL Lab query
execution
add 0141bdd2b0 Integrate into chart/explore query execution
add 4d9378a818 Filter hidden columns
add b469b01e0f Initial UI
add 3554325104 Testing
add 2e7df4614c RLS and CLS working
add 902509b1f0 Explore working
add 0aaa13ab79 Tree
add ca7635dfc2 UI progress
add c5d2329297 CLS implementation
add b66729ad08 RLS
add 3ad694e5a9 Add name and description
add 853d57337d Fix role name
add 78e4f55ede Add icons
add b180cc4fca Fix icons
add 40787496e2 Fix DB toggle
add d97a2a0425 chore(deps): Remove redundant polished direct dependency
(#36431)
add 82b0fa6d07 fix(sql): handle backtick-quoted identifiers with base
dialect (#36545)
add 4b2fb54fb0 docs: clarify Jinja from_dttm/to_dttm availability in SQL
Lab (#36544)
add 130a34353f fix(tests): resolve flaky "should edit correctly" test in
chart list (#36641)
add a284eb2532 feat(ci): use TTL labels for showtime cleanup (#36643)
add 6dcf0409f2 chore(deps-dev): bump @types/node from 24.8.1 to 25.0.2 in
/superset-frontend (#36620)
add e506a47083 docs: add contribution guidelines from wiki to Developer
Portal (#36523)
add ecc974d2a6 fix(dashboard): import with overwrite flag replaces charts
instead of merging (#36551)
add 40c4a740ff feat(frontend): upgrade Storybook and add extension
component documentation (#36498)
add c62a9a58d4 feat: SQL execution API for Superset (#36529)
add 4b4efe1b1f fix(DatasourceEditor): add mount guards and fix async race
conditions (#35810)
add 6cec3fc1f8 fix: Support datetime_format during import (#36679)
add 777298e13f test(playwright): convert and create new dataset list
playwright tests (#36196)
add cc4777d7ab fix: store form_data as dict during viz type migration
(#36680)
add f342ddcd98 chore(deps-dev): add baseline-browser-mapping (#36645)
add 38fe9bcf42 feat(chart): support icons and text in the `deck.gl
Geojson` visualization (#36201)
add 2a3b8285cb docs(badges): Restore project badges on README - and
re-implement the Docusaurus ones (#36495)
add b1c1ca1ffb feat: file handler for CSV/XSL
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 (04b9a3e624)
\
N -- N -- N refs/heads/file-handler (b1c1ca1ffb)
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:
docker/pythonpath_dev/superset_config.py | 2 +-
.../src/components/TableCollection/utils.tsx | 4 +-
.../superset-ui-core/src/utils/featureFlags.ts | 1 +
.../src/assets/images/pwa/icon-192.png | Bin 9097 -> 0 bytes
.../src/assets/images/pwa/icon-512.png | Bin 25535 -> 0 bytes
.../src/assets/images/pwa/screenshot-narrow.png | Bin 100187 -> 0 bytes
.../src/assets/images/pwa/screenshot-wide.png | Bin 253025 -> 0 bytes
.../dataAccessRules/DataAccessRuleModal.tsx | 496 ++++++
.../dataAccessRules/PermissionsTree/api.ts | 144 ++
.../dataAccessRules/PermissionsTree/index.tsx | 832 ++++++++++
.../dataAccessRules/PermissionsTree/types.ts | 73 +
.../dataAccessRules/PermissionsTree/utils.ts | 548 +++++++
.../{annotationLayers => dataAccessRules}/types.ts | 23 +-
.../index.tsx | 151 +-
.../src/pages/FileHandler/index.test.tsx | 368 -----
superset-frontend/src/pages/FileHandler/index.tsx | 138 --
superset-frontend/src/pwa-manifest.json | 65 -
superset-frontend/src/service-worker.ts | 38 -
superset-frontend/src/views/routes.tsx | 14 +
superset/commands/database/tables.py | 24 +-
superset/config.py | 4 +
superset/connectors/sqla/models.py | 18 +-
.../common => data_access_rules}/__init__.py | 16 +-
superset/data_access_rules/api.py | 235 +++
superset/data_access_rules/models.py | 119 ++
superset/data_access_rules/schemas.py | 249 +++
superset/data_access_rules/utils.py | 896 ++++++++++
superset/databases/api.py | 84 +-
superset/databases/filters.py | 18 +-
superset/databases/schemas.py | 13 +-
superset/databases/utils.py | 6 +
superset/initialization/__init__.py | 14 +
...00_a352d7609189_add_data_access_rules_table.py} | 47 +-
...0_add_name_description_to_data_access_rules.py} | 20 +-
superset/models/helpers.py | 34 +
superset/security/manager.py | 68 +
superset/sql/parse.py | 714 +++++++-
superset/sql_lab.py | 8 +
superset/static/service-worker.js | 27 -
superset/utils/filters.py | 69 +-
superset/views/sqla.py | 11 +
.../unit_tests/data_access_rules}/__init__.py | 0
tests/unit_tests/data_access_rules/schemas_test.py | 261 +++
tests/unit_tests/data_access_rules/utils_test.py | 768 +++++++++
tests/unit_tests/models/helpers_test.py | 119 ++
tests/unit_tests/sql/parse_tests.py | 1713 ++++++++++++++++++++
tests/unit_tests/sql_lab_test.py | 118 ++
47 files changed, 7772 insertions(+), 798 deletions(-)
delete mode 100644 superset-frontend/src/assets/images/pwa/icon-192.png
delete mode 100644 superset-frontend/src/assets/images/pwa/icon-512.png
delete mode 100644
superset-frontend/src/assets/images/pwa/screenshot-narrow.png
delete mode 100644 superset-frontend/src/assets/images/pwa/screenshot-wide.png
create mode 100644
superset-frontend/src/features/dataAccessRules/DataAccessRuleModal.tsx
create mode 100644
superset-frontend/src/features/dataAccessRules/PermissionsTree/api.ts
create mode 100644
superset-frontend/src/features/dataAccessRules/PermissionsTree/index.tsx
create mode 100644
superset-frontend/src/features/dataAccessRules/PermissionsTree/types.ts
create mode 100644
superset-frontend/src/features/dataAccessRules/PermissionsTree/utils.ts
copy superset-frontend/src/features/{annotationLayers =>
dataAccessRules}/types.ts (78%)
copy superset-frontend/src/pages/{RowLevelSecurityList =>
DataAccessRulesList}/index.tsx (75%)
delete mode 100644 superset-frontend/src/pages/FileHandler/index.test.tsx
delete mode 100644 superset-frontend/src/pages/FileHandler/index.tsx
delete mode 100644 superset-frontend/src/pwa-manifest.json
delete mode 100644 superset-frontend/src/service-worker.ts
copy superset/{mcp_service/common => data_access_rules}/__init__.py (65%)
create mode 100644 superset/data_access_rules/api.py
create mode 100644 superset/data_access_rules/models.py
create mode 100644 superset/data_access_rules/schemas.py
create mode 100644 superset/data_access_rules/utils.py
copy superset/migrations/versions/{2025-07-15_16-40_3fd555e76e3d_theme_crud.py
=> 2025-12-17_10-00_a352d7609189_add_data_access_rules_table.py} (71%)
copy
superset/migrations/versions/{2025-03-03_20-52_94e7a3499973_add_folders_column_to_dataset.py
=> 2025-12-17_12-00_b463d8709290_add_name_description_to_data_access_rules.py}
(71%)
delete mode 100644 superset/static/service-worker.js
copy {superset-core/src/superset_core/api =>
tests/unit_tests/data_access_rules}/__init__.py (100%)
create mode 100644 tests/unit_tests/data_access_rules/schemas_test.py
create mode 100644 tests/unit_tests/data_access_rules/utils_test.py