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

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


    omit e0db9183a0 one more try
    omit db12a348c1 fix test
    omit b33ffb24a8 test: Update propTypes expectations in reactify tests to 
match behavior
    omit f161a7cb15 ligther border
    omit bcb25ed6d6 style: Update AceEditor border color to lighter shade
    omit f44ea9a862 style: Update tooltip border color in AsyncAceEditor 
component
    omit 951814bb1f style: Remove explicit fontSize from AntdIconComponent 
styles
    omit 8e1db22651 compile
    omit b75bbfed0d fix(Menu): Adjust hover and bottom styles in light mode
    omit 64eecf79fb minor style adjustments
    omit 6ef924fee4 using colorSplit where we have split in the app
    omit 9628b14865 don't pass down invalid props
    omit 3e52a27f89 fixups
    omit 6441beac20 factoring out types
    omit 7c8bbecf04 factor out types
    omit dc8a554750 factoring out pre-commit changes into another PR
    omit 5c889d16a6 fix types
    omit ba4fcd8275 feat: messing with the theme
     add b12f515185 fix: re-enable cypress checks (#32008)
     add 568f6d958b fix: Revert "fix: re-enable cypress checks" (#32045)
     add aa67525b70 fix(fe/explore): prevent runtime error when editing 
Dataset-origin Chart with empty title  (#32031)
     add 3f46bcf142 chore: Skip the creation of secondary perms during catalog 
migrations (#32043)
     add f73d61a597 feat(sqllab): Replace FilterableTable by AgGrid Table 
(#29900)
     add 5fc11fb706 chore: Add more database-related tests (follow up to 
#31948) (#32054)
     add 1c1494d3e0 fix(DatePicker): Increase z-index over Modal (#32061)
     add 468bb5f47a refactor(Radio): Upgrade Radio Component to Ant Design 5 
(#32004)
     add 101d3fa78d chore: Re-enable asnyc event API tests (#32062)
     add c590e90c87 feat(sqllab): improve table metadata UI (#32051)
     add 7db0589340 fix(thumbnail cache): Enabling force parameter on 
screenshot/thumbnail cache (#31757)
     add 1064ad5d58 fix: enforce `ALERT_REPORTS_MAX_CUSTOM_SCREENSHOT_WIDTH` 
(#32053)
     add 9e5876dc17 feat: add connector for Parseable (#32052)
     add 41370119f5 feat: messing with the theme
     add b7b2205291 fix types
     add 4aa95713cf factoring out pre-commit changes into another PR
     add 5dfbf0c1c9 factor out types
     add f5e498bc49 factoring out types
     add fbecb371c0 fixups
     add b96be8aa1c don't pass down invalid props
     add e133d9057c using colorSplit where we have split in the app
     add a8450b6d6a minor style adjustments
     add 5d29a4528f fix(Menu): Adjust hover and bottom styles in light mode
     add 43177543b1 compile
     add 0d1f466189 style: Remove explicit fontSize from AntdIconComponent 
styles
     add 1fa72af869 style: Update tooltip border color in AsyncAceEditor 
component
     add f281a83651 style: Update AceEditor border color to lighter shade
     add e4d09f12db ligther border
     add b4db2d6ce8 test: Update propTypes expectations in reactify tests to 
match behavior
     add 7dcd123f02 fix test
     add bc8e70b4f2 one more try
     add 20cfa50365 fix types
     add 296111557c merge

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   (e0db9183a0)
            \
             N -- N -- N   refs/heads/template_less (296111557c)

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:
 docs/docs/configuration/databases.mdx              |  18 +
 pyproject.toml                                     |   1 +
 superset-frontend/package-lock.json                |  33 +-
 superset-frontend/package.json                     |   4 +-
 .../superset-ui-core/src/ui-overrides/types.ts     |  11 +
 superset-frontend/src/GlobalStyles.tsx             |   3 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |  40 +-
 .../src/SqlLab/actions/sqlLab.test.js              |  70 +++-
 .../AceEditorWrapper/AceEditorWrapper.test.tsx     |  19 +-
 .../AceEditorWrapper/useKeywords.test.ts           |   2 +
 .../src/SqlLab/components/App/index.tsx            |   2 +-
 .../SqlLab/components/ResultSet/ResultSet.test.tsx |  10 +-
 .../SqlLab/components/SaveDatasetModal/index.tsx   |   4 +-
 .../src/SqlLab/components/ShowSQL/index.tsx        |  12 +-
 .../SqlLab/components/SouthPane/SouthPane.test.tsx |   6 +-
 .../src/SqlLab/components/SouthPane/index.tsx      |  95 +++--
 .../SqlEditorLeftBar/SqlEditorLeftBar.test.tsx     |  63 ++-
 .../SqlLab/components/SqlEditorLeftBar/index.tsx   |  11 +-
 .../components/TableElement/TableElement.test.tsx  |  10 +-
 .../components/TablePreview/TablePreview.test.tsx  | 173 +++++++++
 .../src/SqlLab/components/TablePreview/index.tsx   | 430 +++++++++++++++++++++
 superset-frontend/src/SqlLab/fixtures.ts           |   5 +-
 .../src/SqlLab/reducers/getInitialState.test.ts    |  10 +-
 .../src/SqlLab/reducers/getInitialState.ts         |   7 +-
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |  50 ++-
 superset-frontend/src/SqlLab/types.ts              |   2 +-
 .../Chart/DrillBy/useDisplayModeToggle.tsx         |  28 +-
 .../FilterableTable/FilterableTable.test.tsx       |  33 +-
 .../src/components/GridTable/GridTable.test.tsx    |  66 ++++
 .../src/components/GridTable/Header.test.tsx       | 109 ++++++
 .../src/components/GridTable/Header.tsx            | 200 ++++++++++
 .../src/components/GridTable/HeaderMenu.test.tsx   | 266 +++++++++++++
 .../src/components/GridTable/HeaderMenu.tsx        | 247 ++++++++++++
 .../components/GridTable/constants.ts}             |   7 +-
 .../src/components/GridTable/index.tsx             | 241 ++++++++++++
 .../src/components/Icons/AntdEnhanced.tsx          |  16 +
 .../src/components/Radio/Radio.stories.tsx         | 149 +++++--
 superset-frontend/src/components/Radio/index.tsx   |  80 ++--
 .../header-renderers/HeaderWithRadioGroup.tsx      |  20 +-
 .../FiltersConfigForm/FiltersConfigForm.tsx        |  36 +-
 .../explore/components/DataTableControl/index.tsx  |  22 +-
 .../components/ExploreChartHeader/index.jsx        |   2 +-
 .../controls/DateFilterControl/DateFilterLabel.tsx |   6 -
 .../DateFilterControl/components/CalendarFrame.tsx |  18 +-
 .../DateFilterControl/components/CommonFrame.tsx   |  18 +-
 .../components/CurrentCalendarFrame.tsx            |  25 +-
 .../DateFilterControl/components/CustomFrame.tsx   |  15 +-
 .../DateFilterControl/tests/CalendarFrame.test.tsx |   8 +-
 .../DateFilterControl/tests/CustomFrame.test.tsx   |   8 +-
 .../controls/DateFilterControl/utils/constants.ts  |  13 +-
 .../src/features/reports/ReportModal/index.tsx     |  40 +-
 .../src/features/reports/ReportModal/styles.tsx    |   4 -
 superset-frontend/src/hooks/apiResources/sqlLab.ts |   4 +-
 superset-frontend/src/hooks/apiResources/tables.ts |  10 +-
 superset/charts/api.py                             | 111 +++---
 superset/charts/schemas.py                         |  15 +
 superset/commands/database/tables.py               |   6 +
 superset/commands/report/execute.py                |  26 +-
 superset/config.py                                 |  11 +
 superset/dashboards/api.py                         | 261 +++++++------
 superset/dashboards/schemas.py                     |   6 +
 .../db_engine_specs/{crate.py => parseable.py}     |  46 ++-
 superset/migrations/shared/catalogs.py             |  11 +-
 superset/models/slice.py                           |   4 +-
 superset/tasks/thumbnails.py                       |  15 +-
 superset/utils/screenshots.py                      | 190 +++++----
 superset/utils/webdriver.py                        |  10 +-
 tests/integration_tests/async_events/api_tests.py  |   9 +-
 tests/integration_tests/cli_tests.py               |   6 +-
 tests/integration_tests/dashboards/api_tests.py    |  40 +-
 tests/integration_tests/thumbnails_tests.py        |  27 +-
 tests/unit_tests/commands/databases/tables_test.py |  28 +-
 tests/unit_tests/commands/report/execute_test.py   | 115 ++++++
 .../{test_crate.py => test_parseable.py}           |  32 +-
 .../unit_tests/migrations/shared/catalogs_test.py  | 250 ++++++++++++
 tests/unit_tests/models/core_test.py               |  56 +++
 tests/unit_tests/utils/screenshot_test.py          | 194 ++++++++++
 77 files changed, 3538 insertions(+), 713 deletions(-)
 create mode 100644 
superset-frontend/src/SqlLab/components/TablePreview/TablePreview.test.tsx
 create mode 100644 
superset-frontend/src/SqlLab/components/TablePreview/index.tsx
 create mode 100644 
superset-frontend/src/components/GridTable/GridTable.test.tsx
 create mode 100644 superset-frontend/src/components/GridTable/Header.test.tsx
 create mode 100644 superset-frontend/src/components/GridTable/Header.tsx
 create mode 100644 
superset-frontend/src/components/GridTable/HeaderMenu.test.tsx
 create mode 100644 superset-frontend/src/components/GridTable/HeaderMenu.tsx
 copy 
superset-frontend/{plugins/legacy-plugin-chart-country-map/src/geojson.d.ts => 
src/components/GridTable/constants.ts} (89%)
 create mode 100644 superset-frontend/src/components/GridTable/index.tsx
 copy superset/db_engine_specs/{crate.py => parseable.py} (56%)
 copy tests/unit_tests/db_engine_specs/{test_crate.py => test_parseable.py} 
(60%)
 create mode 100644 tests/unit_tests/utils/screenshot_test.py

Reply via email to