This is an automated email from the ASF dual-hosted git repository. elizabeth pushed a change to branch subdirectories in repository https://gitbox.apache.org/repos/asf/superset.git
omit d5697d5926 chore: restore package-lock.json from master omit 06d1bac9f2 refactor: improve code comments to describe functionality directly omit fb8111a921 fix: ensure alert/report screenshot URLs include subdirectory prefix omit 4bc7acbd8a refactor: remove swagger redirect, focus on app icon subdirectory deployment omit 61a7cfe8ae fix: add subdirectory deployment support for Swagger UI and app icon omit ec309fc6a5 fix: add subdirectory deployment support for Swagger UI and app icon add 927cc1cda1 chore(deps): bump tar-fs from 3.1.0 to 3.1.1 in /superset-frontend (#35272) add abc2d46fed refactor: remove obsolete Flask flash messaging system (#35237) add 0de78d8203 fix(deck.gl): ensure min/max values are included in polygon map legend breakpoints (#35033) add 7a9dbfe879 fix(BuilderComponentPane): navigation tabs padding (#35213) add fb9032c05c fix: Cosmetic issues (#35122) add 77a5969dc1 feat(pdf): add configurable PDF compression level support (#34096) add b652fab042 fix(table): New ad-hoc columns retain the name of previous columns (#35274) add 027b25e6b8 fix(DateFilterControl): remove modal overlay style to fix z-index issues (#35292) add 784ff82847 fix(sqllab): fix blank bottom section in SQL Lab left panel (#35309) add 7acdb90c10 fix: add subdirectory deployment support for Swagger UI and app icon add 95da73c114 fix: add subdirectory deployment support for Swagger UI and app icon add 6529b4f4df refactor: remove swagger redirect, focus on app icon subdirectory deployment add 5085ba40fe fix: ensure alert/report screenshot URLs include subdirectory prefix add a74206e206 refactor: improve code comments to describe functionality directly 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 (d5697d5926) \ N -- N -- N refs/heads/subdirectories (a74206e206) 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: .../legacy-preset-chart-deckgl/src/utils.test.ts | 446 ++++++++++++++++++++- .../legacy-preset-chart-deckgl/src/utils.ts | 41 +- .../spec/fixtures/mockDashboardInfo.js | 1 - .../src/SqlLab/components/SqlEditor/index.tsx | 3 + .../SqlLab/components/SqlEditorLeftBar/index.tsx | 29 +- .../Chart/ChartContextMenu/ChartContextMenu.tsx | 174 ++++---- .../components/Chart/DrillBy/DrillByMenuItems.tsx | 277 ------------- ...yMenuItems.test.tsx => DrillBySubmenu.test.tsx} | 183 ++++----- .../components/Chart/DrillBy/DrillBySubmenu.tsx | 342 ++++++++++++++++ .../Chart/DrillDetail/DrillDetailMenuItems.tsx | 253 ------------ .../src/components/Chart/DrillDetail/index.ts | 21 - .../index.tsx} | 200 ++++----- .../useDrillDetailMenuItems.test.tsx} | 94 +++-- .../FlashProvider/FlashProvider.test.tsx | 65 --- .../src/components/FlashProvider/index.tsx | 51 --- .../src/components/FlashProvider/types.ts | 20 - superset-frontend/src/components/index.ts | 1 - superset-frontend/src/constants.ts | 2 +- superset-frontend/src/dashboard/actions/hydrate.js | 1 - .../components/BuilderComponentPane/index.tsx | 155 ++++--- .../dashboard/components/FiltersBadge/index.tsx | 11 +- .../src/dashboard/components/SliceHeader/index.tsx | 2 +- .../components/SliceHeaderControls/index.tsx | 22 +- .../src/dashboard/components/menu/HoverMenu.tsx | 2 +- .../util/useFilterFocusHighlightStyles.ts | 2 +- .../src/embedded/EmbeddedContextProviders.tsx | 38 +- .../components/DataTablesPane/DataTablesPane.tsx | 10 +- .../controls/DateFilterControl/DateFilterLabel.tsx | 41 +- .../tests/DateFilterLabel.test.tsx | 9 - .../components/controls/DateFilterControl/types.ts | 1 - .../ColumnSelectPopoverTrigger.test.tsx | 183 +++++++++ .../ColumnSelectPopoverTrigger.tsx | 11 +- .../utils/useDatePickerInAdhocFilter.tsx | 1 - superset-frontend/src/explore/types.ts | 1 - superset-frontend/src/pages/Login/Login.test.tsx | 6 +- superset-frontend/src/pages/Login/index.tsx | 28 +- .../src/theme/tests/ThemeController.test.ts | 2 - superset-frontend/src/types/bootstrapTypes.ts | 3 +- superset-frontend/src/utils/downloadAsPdf.ts | 4 + .../src/views/RootContextProviders.tsx | 42 +- superset/config.py | 1 + superset/views/auth.py | 7 +- superset/views/base.py | 13 +- superset/views/core.py | 61 +-- superset/views/utils.py | 8 +- .../dashboards/security/security_rbac_tests.py | 12 +- 46 files changed, 1523 insertions(+), 1357 deletions(-) delete mode 100644 superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx rename superset-frontend/src/components/Chart/DrillBy/{DrillByMenuItems.test.tsx => DrillBySubmenu.test.tsx} (60%) create mode 100644 superset-frontend/src/components/Chart/DrillBy/DrillBySubmenu.tsx delete mode 100644 superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx delete mode 100644 superset-frontend/src/components/Chart/DrillDetail/index.ts rename superset-frontend/src/components/Chart/{DrillDetail/useDrillDetailMenuItems.tsx => useDrillDetailMenuItems/index.tsx} (61%) rename superset-frontend/src/components/Chart/{DrillDetail/DrillDetailMenuItems.test.tsx => useDrillDetailMenuItems/useDrillDetailMenuItems.test.tsx} (84%) delete mode 100644 superset-frontend/src/components/FlashProvider/FlashProvider.test.tsx delete mode 100644 superset-frontend/src/components/FlashProvider/index.tsx delete mode 100644 superset-frontend/src/components/FlashProvider/types.ts create mode 100644 superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.test.tsx