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

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


    from a2f59b6e48 help text and json error state
     add c2afae51cb chore(🦾): bump python grpcio 1.68.0 -> 1.71.0 (#32901)
     add f2c0686346 feat: Add Aggregation Method for Big Number with Trendline 
(#32767)
     add 174750c9dd refactor(jinja macro): Update current_user_roles() macro to 
fetch roles from existing get_user_roles() method (#32888)
     add a4a092794a feat(chart controls): Add  "%d.%m.%Y" time format option 
(#32814)
     add 8f35a3ec8c feat(plugins): Make comparison values on 
BigNumberPeriodOverPeriod toggleable (#28605)
     add b92909d621 feat: Enable passing a permalink to 
cache_dashboard_screenshot endpoint (#32900)
     add 56bf17f879 fix(sqllab): Invalid display of table column keys (#32763)
     add 662f0fa8f4 chore(reports): add task for slack channels warm-up (#32585)
     add 6e02d19b0d fix: make packages PEP 625 compliant (#32866)
     add e3342bb731 Merge branch 'master' into template_less
     add 971715931b refactor(form): Migrate Form component to Ant Design 5 
(#32729)
     add 27d723fba1 force colorLink in GlobalStyles
     new 599ad3f74c Merge branch 'template_less' into 
template_less_preset_theme_editor
     new 103bdb03ef close modal on apply
     new 3272a65bae fix links and bring GlobalStyles to superset-ui/core
     add 952658ee63 fix links and bring GlobalStyles to superset-ui/core
     new 08c2f718e5 Merge branch 'template_less' into 
template_less_preset_theme_editor
     new 3d90ab4991 remove console.log
     new 13eb4b9138 Fix storybook + raw button for ThemeEditor

The 6 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:
 .gitignore                                         |   1 +
 README.md                                          |  14 +-
 RELEASING/Dockerfile.from_local_tarball            |  26 +--
 RELEASING/Dockerfile.from_svn_tarball              |  24 +--
 RELEASING/README.md                                |  12 +-
 RELEASING/email_templates/announce.j2              |   2 +-
 RELEASING/make_tarball.sh                          |   2 +-
 RELEASING/make_tarball_entrypoint.sh               |   2 +-
 RELEASING/set_release_env.sh                       |   4 +-
 RELEASING/test_run_tarball.sh                      |   2 +-
 RELEASING/validate_this_release.sh                 |   2 +-
 docs/docs/configuration/databases.mdx              |   2 +-
 docs/docs/configuration/networking-settings.mdx    |   2 +-
 docs/docs/contributing/contributing.mdx            |   4 +-
 docs/docs/installation/pypi.mdx                    |   6 +-
 docs/docs/installation/upgrading-superset.mdx      |   2 +-
 pyproject.toml                                     |   2 +-
 requirements/development.txt                       |   2 +-
 setup.py                                           |   1 +
 superset-frontend/.storybook/preview.jsx           |   2 -
 .../e2e/dashboard/horizontalFilterBar.test.ts      |   4 +-
 .../cypress/e2e/database/modal.test.ts             |   4 +-
 .../{histogramOperator.ts => aggregateOperator.ts} |  48 ++++--
 .../src/operators/index.ts                         |   1 +
 .../src/shared-controls/customControls.tsx         |  26 +++
 .../src/shared-controls/index.ts                   |   1 +
 .../src/utils/D3Formatting.ts                      |   1 +
 .../test/operators/aggregateOperator.test.ts       | 121 ++++++++++++++
 .../test/operators/timeCompareOperator.test.ts     |   2 +-
 .../src/query/types/PostProcessing.ts              |   4 +-
 .../superset-ui-core/src/theme/GlobalStyles.tsx    |  88 ++++++++++
 .../packages/superset-ui-core/src/theme/Theme.tsx  |   2 +
 .../test/query/types/PostProcessing.test.ts        |   2 +-
 .../test/time-comparison/getComparisonInfo.test.ts |  24 ++-
 .../BigNumber/BigNumberPeriodOverPeriod/PopKPI.tsx |  95 ++++++-----
 .../BigNumberPeriodOverPeriod/controlPanel.ts      |  38 ++++-
 .../BigNumberPeriodOverPeriod/transformProps.ts    |   2 +
 .../BigNumber/BigNumberPeriodOverPeriod/types.ts   |   5 +
 .../BigNumber/BigNumberWithTrendline/buildQuery.ts |  15 ++
 .../BigNumberWithTrendline/controlPanel.tsx        |   2 +
 .../BigNumberWithTrendline/transformProps.ts       |  82 ++++++---
 .../test/BigNumber/transformProps.test.ts          | 185 +++++++++++++++++++++
 superset-frontend/src/GlobalStyles.tsx             |  88 ----------
 .../src/components/Datasource/Field.tsx            |   2 +-
 .../src/components/Flex/Flex.stories.tsx           |  86 ++++++++++
 .../{Space/Space.test.tsx => Flex/Flex.test.tsx}   |   8 +-
 .../src/components/{Divider => Flex}/index.tsx     |  12 +-
 superset-frontend/src/components/Form/Form.tsx     |  18 +-
 superset-frontend/src/components/Form/FormItem.tsx |  13 +-
 .../src/components/Form/FormLabel.tsx              |  34 ++--
 .../src/components/Form/LabeledErrorBoundInput.tsx |   6 +-
 superset-frontend/src/components/Form/index.tsx    |   4 +-
 .../src/components/JsonModal/JsonModal.test.tsx    |  15 ++
 .../src/components/JsonModal/index.tsx             |  17 +-
 .../src/components/ThemeEditor/index.tsx           |  25 +--
 superset-frontend/src/components/index.ts          |   4 -
 .../dashboard/components/PropertiesModal/index.tsx |  10 +-
 .../FilterBar/FilterControls/FilterControl.tsx     |  25 +--
 .../nativeFilters/FilterBar/Horizontal.tsx         |   2 -
 .../nativeFilters/FilterBar/Vertical.tsx           |  11 +-
 .../FiltersConfigForm/ColumnSelect.tsx             |   7 +-
 .../FiltersConfigForm/DefaultValue.tsx             |   2 +-
 .../FiltersConfigForm/FilterScope/FilterScope.tsx  |   4 +-
 .../__tests__/TreeInitialization.test.tsx          |   2 +-
 .../FilterScope/__tests__/TreeSelection.test.tsx   |   2 +-
 .../FilterScope/__tests__/utils.tsx                |   8 +-
 .../FiltersConfigForm/FiltersConfigForm.tsx        |  88 +++-------
 .../FiltersConfigForm/getControlItemsMap.test.tsx  |   6 +-
 .../FiltersConfigForm/getControlItemsMap.tsx       |   4 +-
 .../FiltersConfigModal/FiltersConfigForm/state.ts  |   2 +-
 .../FiltersConfigModal/FiltersConfigForm/utils.ts  |   2 +-
 .../FiltersConfigModal/FiltersConfigModal.tsx      |  12 +-
 .../nativeFilters/FiltersConfigModal/utils.ts      |   2 +-
 .../explore/components/PropertiesModal/index.tsx   |  13 +-
 .../controls/ColumnConfigControl/constants.tsx     |  12 +-
 .../LayerConfigsPopoverContent.tsx                 |   2 +-
 .../DatabaseConnectionForm/EncryptedField.tsx      |   2 +-
 .../DatabaseConnectionForm/TableCatalog.tsx        |   2 +-
 .../databases/DatabaseModal/SSHTunnelForm.tsx      |   4 +-
 .../features/databases/UploadDataModel/index.tsx   |  16 +-
 .../filters/components/Range/RangeFilterPlugin.tsx |   7 +-
 .../components/Select/SelectFilterPlugin.tsx       |   7 +-
 .../TimeColumn/TimeColumnFilterPlugin.tsx          |  12 +-
 .../components/TimeGrain/TimeGrainFilterPlugin.tsx |  12 +-
 superset-frontend/src/filters/components/common.ts |   7 -
 superset-frontend/src/theme.ts                     |   3 +
 superset-frontend/src/views/App.tsx                |   2 -
 superset/config.py                                 |   9 +-
 superset/dashboards/api.py                         |  17 +-
 superset/dashboards/schemas.py                     |   1 +
 superset/jinja_context.py                          |  15 +-
 .../dashboard_import_export.py => tasks/slack.py}  |  24 +--
 superset/utils/core.py                             |  13 --
 superset/utils/screenshots.py                      |   5 +-
 superset/utils/slack.py                            |  25 ++-
 tests/integration_tests/dashboards/api_tests.py    |  12 ++
 tests/integration_tests/sqla_models_tests.py       |  11 +-
 tests/unit_tests/jinja_context_test.py             |   9 +-
 tests/unit_tests/utils/slack_test.py               |  39 +++--
 99 files changed, 1127 insertions(+), 541 deletions(-)
 copy 
superset-frontend/packages/superset-ui-chart-controls/src/operators/{histogramOperator.ts
 => aggregateOperator.ts} (53%)
 create mode 100644 
superset-frontend/packages/superset-ui-chart-controls/test/operators/aggregateOperator.test.ts
 create mode 100644 
superset-frontend/packages/superset-ui-core/src/theme/GlobalStyles.tsx
 delete mode 100644 superset-frontend/src/GlobalStyles.tsx
 create mode 100644 superset-frontend/src/components/Flex/Flex.stories.tsx
 copy superset-frontend/src/components/{Space/Space.test.tsx => 
Flex/Flex.test.tsx} (88%)
 copy superset-frontend/src/components/{Divider => Flex}/index.tsx (79%)
 copy superset/{utils/dashboard_import_export.py => tasks/slack.py} (65%)

Reply via email to