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

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


    omit 0c88517b1e Revert small change
    omit 5c5f567997 Fix style
    omit eb07418c78 Add affordances
    omit 9193109e5a Update reports model
    omit 2db835d862 Add some constants
     add a846e8a58d feat(tags): move tags from navbar to settings (#24518)
     add 262b769d19 fix(native-filters): Infinite load when filter with default 
first value is out of scope in horizontal bar (#24542)
     add a90f740a81 fix: Release scripts Python version (#24544)
     add cdbe4f3fa7 fix: Revert enable strong session protection by default 
(#24256) (#24545)
     add 0986423d30 chore: Constrain selenium version (#24538)
     add e402c94a9f fix: Use Celery task ETA for alert/report schedule (#24537)
     add 83ff4cd86a feat: Implement currencies formatter for saved metrics 
(#24517)
     add 71f3fcab74 fix: SQL Lab - correct setting name from DISPLAY_MAX_ROWS 
to DISPLAY_MAX_ROW (#24519)
     add c81975eed3 fix(permalink): Incorrect component schema reference 
(#24482)
     add 0d72e63491 fix(translations): typo mistake (translation to Spanish) 
(#24475)
     add 1e7ee8c4ad fix(docs): Typo in filter migration. (#24541)
     add f1b003f109 refactor: pkg_resources -> importlib.metadata (#24514)
     add 75543af550 chore(dao): Add explicit ON DELETE CASCADE when deleting 
datasets (#24488)
     new 785f5ff851 Add some constants
     new e6d614b4b3 Update reports model
     new dbe32a207b Add affordances
     new 9d1516ddb8 Fix style
     new 6a358f5fec Revert small change

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   (0c88517b1e)
            \
             N -- N -- N   refs/heads/customize_screenshot_width (6a358f5fec)

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.

The 5 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:
 RELEASING/Dockerfile.from_local_tarball            |   2 +-
 RELEASING/Dockerfile.from_svn_tarball              |   2 +-
 RELEASING/Dockerfile.make_docs                     |   2 +-
 RELEASING/Dockerfile.make_tarball                  |   2 +-
 RELEASING/README.md                                |   4 +-
 RELEASING/from_tarball_entrypoint.sh               |   5 +-
 UPDATING.md                                        |   2 +-
 .../docs/miscellaneous/native-filter-migration.mdx |   2 +-
 docs/docs/security.mdx                             |  21 ++-
 requirements/base.txt                              |   4 +-
 setup.py                                           |   3 +-
 superset-frontend/package-lock.json                |   9 +-
 .../superset-ui-chart-controls/src/fixtures.ts     |   2 +
 .../superset-ui-chart-controls/src/types.ts        |   2 +
 .../test/utils/columnChoices.test.tsx              |   1 +
 .../test/utils/defineSavedMetrics.test.tsx         |   1 +
 .../src/currency-format/CurrencyFormatter.ts       |  79 +++++++++++
 .../colorSchemes => currency-format}/index.ts      |   4 +-
 .../packages/superset-ui-core/src/index.ts         |   1 +
 .../superset-ui-core/src/query/types/Datasource.ts |   8 ++
 .../superset-ui-core/src/query/types/Metric.ts     |   1 +
 .../packages/superset-ui-core/src/types/index.ts   |   5 +
 .../test/currency-format/CurrencyFormatter.test.ts | 158 +++++++++++++++++++++
 .../src/BigNumber/BigNumberTotal/transformProps.ts |  25 +++-
 .../BigNumberWithTrendline/transformProps.ts       |  18 ++-
 .../plugin-chart-echarts/src/BigNumber/types.ts    |   4 +-
 .../src/Funnel/transformProps.ts                   |  14 +-
 .../src/Gauge/transformProps.ts                    |  15 +-
 .../plugin-chart-echarts/src/Pie/transformProps.ts |  15 +-
 .../src/Timeseries/transformProps.ts               |  78 +++++++++-
 .../src/Timeseries/transformers.ts                 |   4 +-
 .../src/Treemap/transformProps.ts                  |  17 ++-
 .../plugin-chart-echarts/src/utils/forecast.ts     |   4 +-
 .../plugin-chart-echarts/src/utils/series.ts       |   3 +-
 .../src/utils/valueFormatter.ts                    |  63 ++++++++
 .../test/BigNumber/transformProps.test.ts          |  25 ++++
 .../src/PivotTableChart.tsx                        |  31 +++-
 .../src/plugin/transformProps.ts                   |   3 +-
 .../plugins/plugin-chart-pivot-table/src/types.ts  |   2 +
 .../test/plugin/buildQuery.test.ts                 |   1 +
 .../test/plugin/transformProps.test.ts             |   1 +
 .../plugins/plugin-chart-table/package.json        |  42 +++---
 .../plugin-chart-table/src/transformProps.ts       |   8 +-
 .../plugins/plugin-chart-table/src/types.ts        |   7 +-
 .../plugin-chart-table/src/utils/formatValue.ts    |   1 -
 .../plugin-chart-table/src/utils/isEqualColumns.ts |   1 +
 .../plugin-chart-table/test/TableChart.test.tsx    |  21 +++
 .../plugins/plugin-chart-table/test/testData.ts    |  11 ++
 .../src/SqlLab/components/ResultSet/index.tsx      |   2 +-
 .../src/components/Datasource/DatasourceEditor.jsx |  70 +++++++++
 .../Datasource/DatasourceEditor.test.jsx           |  86 ++++++++++-
 .../src/components/Datasource/DatasourceModal.tsx  |  32 ++++-
 .../src/components/DropdownContainer/index.tsx     |   7 +-
 .../src/components/Popover/Popover.test.tsx        |   5 +
 .../BooleanCell/index.tsx => Popover/Popover.tsx}  |  14 +-
 superset-frontend/src/components/Popover/index.tsx |   4 +-
 .../FilterBar/FilterControls/FilterControls.tsx    |   1 +
 superset-frontend/src/dashboard/constants.ts       |   1 +
 .../src/explore/actions/datasourcesActions.test.ts |   2 +
 .../src/explore/actions/hydrateExplore.ts          |   1 +
 .../src/explore/controlUtils/controlUtils.test.tsx |   1 +
 ...etControlValuesCompatibleWithDatasource.test.ts |   1 +
 superset-frontend/src/explore/fixtures.tsx         |   2 +
 superset-frontend/src/features/datasets/types.ts   |   3 +
 .../src/utils/getDatasourceUid.test.ts             |   1 +
 superset/charts/commands/warm_up_cache.py          |   1 -
 superset/config.py                                 |   4 +-
 superset/connectors/base/models.py                 |  21 +++
 superset/connectors/sqla/models.py                 |  11 +-
 superset/connectors/sqla/views.py                  |   1 +
 superset/daos/dataset.py                           |  26 ++--
 superset/dashboards/permalink/api.py               |   2 +-
 superset/dashboards/schemas.py                     |   1 +
 superset/databases/api.py                          |   4 +-
 superset/datasets/api.py                           |   2 +
 superset/datasets/commands/bulk_delete.py          |  30 +---
 superset/datasets/commands/delete.py               |  18 +--
 superset/datasets/commands/warm_up_cache.py        |   1 -
 superset/datasets/schemas.py                       |   2 +
 superset/db_engine_specs/__init__.py               |   6 +-
 superset/db_engine_specs/base.py                   |   1 +
 superset/explore/schemas.py                        |   1 +
 superset/initialization/__init__.py                |  11 +-
 ...90139bf715e4_add_currency_column_to_metrics.py} |  20 +--
 ..._add_on_delete_cascade_for_tables_references.py |  94 ++++++++++++
 superset/tasks/scheduler.py                        |  15 +-
 superset/translations/de/LC_MESSAGES/messages.json |   4 +-
 superset/translations/de/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/en/LC_MESSAGES/messages.json |   2 +-
 superset/translations/en/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/es/LC_MESSAGES/messages.json |   4 +-
 superset/translations/es/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/fr/LC_MESSAGES/messages.json |   2 +-
 superset/translations/fr/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/it/LC_MESSAGES/messages.json |   2 +-
 superset/translations/it/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/ja/LC_MESSAGES/messages.json |   2 +-
 superset/translations/ja/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/ko/LC_MESSAGES/messages.json |   2 +-
 superset/translations/ko/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/nl/LC_MESSAGES/messages.json |   2 +-
 superset/translations/nl/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/pt/LC_MESSAGES/messages.json |   2 +-
 superset/translations/pt/LC_MESSAGES/messages.po   |   2 +-
 .../translations/pt_BR/LC_MESSAGES/messages.json   |   4 +-
 .../translations/pt_BR/LC_MESSAGES/messages.po     |   4 +-
 superset/translations/ru/LC_MESSAGES/messages.json |   4 +-
 superset/translations/ru/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/sk/LC_MESSAGES/messages.json |   2 +-
 superset/translations/sk/LC_MESSAGES/messages.po   |   2 +-
 superset/translations/sl/LC_MESSAGES/messages.json |   4 +-
 superset/translations/sl/LC_MESSAGES/messages.po   |   4 +-
 superset/translations/zh/LC_MESSAGES/messages.json |   4 +-
 superset/translations/zh/LC_MESSAGES/messages.po   |   4 +-
 superset/utils/core.py                             |  21 ++-
 superset/views/base.py                             |   1 +
 tests/integration_tests/charts/api_tests.py        |   2 -
 tests/integration_tests/charts/commands_tests.py   |   1 -
 tests/integration_tests/commands_test.py           |   3 +-
 .../integration_tests/dashboards/commands_tests.py |   1 -
 tests/integration_tests/databases/api_tests.py     |   2 -
 tests/integration_tests/datasets/api_tests.py      |   2 -
 tests/integration_tests/datasets/commands_tests.py |   5 +-
 tests/integration_tests/reports/scheduler_tests.py |   4 +-
 tests/integration_tests/sqla_models_tests.py       |   9 +-
 tests/unit_tests/datasets/commands/export_test.py  |   1 +
 tests/unit_tests/db_engine_specs/test_init.py      |   1 -
 127 files changed, 1095 insertions(+), 275 deletions(-)
 create mode 100644 
superset-frontend/packages/superset-ui-core/src/currency-format/CurrencyFormatter.ts
 copy superset-frontend/packages/superset-ui-core/src/{color/colorSchemes => 
currency-format}/index.ts (88%)
 create mode 100644 
superset-frontend/packages/superset-ui-core/test/currency-format/CurrencyFormatter.test.ts
 create mode 100644 
superset-frontend/plugins/plugin-chart-echarts/src/utils/valueFormatter.ts
 copy 
superset-frontend/src/components/{Table/cell-renderers/BooleanCell/index.tsx => 
Popover/Popover.tsx} (75%)
 copy 
superset/migrations/versions/{2017-09-15_15-09_19a814813610_adding_metric_warning_text.py
 => 2023-06-21_14-02_90139bf715e4_add_currency_column_to_metrics.py} (69%)
 create mode 100644 
superset/migrations/versions/2023-06-22_13-39_6fbe660cac39_add_on_delete_cascade_for_tables_references.py

Reply via email to