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

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


 discard 12b90cab74 test
 discard ac1281e46d before moving bootstrap payload
 discard b8870403ed working through stuff
 discard 91b69f155c more conf
 discard 8c78a3207a chore: module scope should not require the app context
     add b4ab36a6a5 fix: Small tweaks for Line and Area chart migrations 
(ECharts) (#28334)
     add 467e612533 fix: Remedy logic for UpdateDatasetCommand uniqueness check 
(#28341)
     add b549977f05 feat: Utility function to render chart tooltips (#27950)
     add b7ac526257 docs: clarifying that config.SQL_QUERY_MUTATOR does not 
affect cache (#28360)
     add c618767c6b fix: don't strip SQL comments in Explore (#28363)
     add f04b4e87fb refactor(superset-ui-core): Migrate FallbackComponent.test 
to RTL (#28359)
     add 1bf04015c6 feat(reports): Set a minimum interval for each report's 
execution (#28176)
     add bd1c3fcba4 docs: update CVE list (#28373)
     add 8c27d4d47f chore(build): uplift `webpack`-related packages to v5 
(#28342)
     add 5a13e64dc6 fix: Revert "chore(build): uplift `webpack`-related 
packages to v5 (#28342)" (#28384)
     add 9e4ba6762f fix: Scroll to top when selecting a global dashboard tab 
(#28386)
     add 55f3b46f41 fix: Contribution percentages for ECharts plugins (#28368)
     add c8185694be fix: update links to reference docs listing Superset issue 
codes (#28389)
     add 709c3432a2 chore: module scope should not require the app context
     add 01a54585d7 more conf
     add ab9d5887b7 working through stuff
     add 77331aeb65 before moving bootstrap payload
     add 557e9fcc0a test
     add f33b7d444a more

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   (12b90cab74)
            \
             N -- N -- N   refs/heads/late_config (f33b7d444a)

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/alerts-reports.mdx         |   9 +
 docs/docs/security/cves.mdx                        |   5 +
 .../src/operators/contributionOperator.ts          |   3 +-
 .../packages/superset-ui-core/src/utils/index.ts   |   1 +
 .../packages/superset-ui-core/src/utils/tooltip.ts |  57 +++++
 .../chart/components/FallbackComponent.test.tsx    |  66 +++---
 .../superset-ui-core/test/utils/tooltip.test.ts    | 115 ++++++++++
 .../BigNumberWithTrendline/transformProps.ts       |  37 ++-
 .../src/Bubble/transformProps.ts                   |  15 +-
 .../src/Funnel/transformProps.ts                   |  72 +++---
 .../src/Gauge/transformProps.ts                    |   6 +-
 .../src/Graph/transformProps.ts                    |  31 +--
 .../src/Heatmap/transformProps.ts                  |  41 ++--
 .../src/MixedTimeseries/transformProps.ts          |  42 +++-
 .../plugin-chart-echarts/src/Pie/transformProps.ts |  63 ++---
 .../src/Sunburst/transformProps.ts                 |  56 ++---
 .../src/Timeseries/EchartsTimeseries.tsx           |   6 +-
 .../src/Timeseries/buildQuery.ts                   |  10 +-
 .../src/Timeseries/transformProps.ts               |  69 ++++--
 .../plugin-chart-echarts/src/Timeseries/types.ts   |   2 -
 .../src/Tree/transformProps.ts                     |  13 +-
 .../src/Treemap/transformProps.ts                  |  14 +-
 .../src/Waterfall/transformProps.ts                |  44 +---
 .../plugin-chart-echarts/src/utils/forecast.ts     |  35 +--
 .../plugin-chart-echarts/src/utils/tooltip.ts      |   1 +
 .../test/Bubble/transformProps.test.ts             |  62 ++---
 .../test/Funnel/transformProps.test.ts             |  70 +-----
 .../test/Graph/transformProps.test.ts              |  36 +--
 .../test/Pie/transformProps.test.ts                |  54 +----
 .../test/utils/forecast.test.ts                    |  12 +-
 .../src/components/ErrorMessage/IssueCode.test.tsx |   2 +-
 .../src/components/ErrorMessage/IssueCode.tsx      |   2 +-
 .../src/dashboard/actions/dashboardState.js        |   5 -
 .../DashboardBuilder/DashboardBuilder.tsx          |   1 +
 .../src/dashboard/reducers/dashboardState.js       |   7 -
 .../src/dashboard/reducers/dashboardState.test.ts  |  14 +-
 superset/__init__.py                               |   4 +-
 superset/charts/api.py                             |   8 +-
 superset/charts/data/api.py                        |   7 +-
 superset/commands/database/create.py               |   5 +-
 superset/commands/database/ssh_tunnel/delete.py    |   4 +-
 superset/commands/database/test_connection.py      |   5 +-
 superset/commands/database/update.py               |   5 +-
 superset/commands/dataset/create.py                |   7 +-
 superset/commands/dataset/duplicate.py             |   4 +-
 superset/commands/dataset/exceptions.py            |  19 +-
 superset/commands/dataset/update.py                |  14 +-
 superset/commands/report/base.py                   |  47 +++-
 superset/commands/report/create.py                 |  54 +++--
 superset/commands/report/exceptions.py             |  27 +++
 superset/commands/report/update.py                 |  69 +++---
 superset/common/query_object.py                    |   2 +-
 superset/config.py                                 |  11 +-
 superset/connectors/sqla/models.py                 |   4 +-
 superset/daos/dashboard.py                         |   9 +-
 superset/dashboards/api.py                         |   6 +-
 superset/dashboards/filters.py                     |  12 +-
 superset/databases/schemas.py                      |   4 +-
 superset/db_engine_specs/__init__.py               |   3 +-
 superset/db_engine_specs/base.py                   |   5 +-
 superset/db_engine_specs/gsheets.py                |   2 +-
 superset/db_engine_specs/presto.py                 |   8 +-
 superset/embedded/api.py                           |   5 +-
 superset/embedded/view.py                          |   5 +-
 superset/initialization/bootstrap.py               | 197 ++++++++++++++++
 .../migrations/shared/migrate_viz/processors.py    |   4 +
 superset/models/dashboard.py                       |   4 +-
 superset/models/helpers.py                         |   9 +-
 superset/models/slice.py                           |   4 +-
 superset/models/sql_lab.py                         |   2 +-
 superset/queries/saved_queries/api.py              |   9 +-
 superset/reports/api.py                            |   5 +-
 superset/reports/logs/api.py                       |   4 +-
 superset/security/manager.py                       |  18 +-
 superset/sql_lab.py                                |   8 +-
 superset/sqllab/api.py                             |   7 +-
 superset/sqllab/query_render.py                    |   5 +-
 superset/sqllab/sqllab_execution_context.py        |   4 +-
 superset/sqllab/utils.py                           |   4 +-
 superset/utils/cache.py                            |   3 +-
 superset/utils/oauth2.py                           |   2 +-
 .../utils/pandas_postprocessing/contribution.py    | 105 +++++++--
 superset/views/alerts.py                           |   6 +-
 superset/views/all_entities.py                     |   6 +-
 superset/views/core.py                             |  34 +--
 superset/views/dashboard/views.py                  |   4 +-
 superset/views/dynamic_plugins.py                  |   4 +-
 superset/views/key_value.py                        |   4 +-
 superset/views/tags.py                             |   7 +-
 tests/integration_tests/conftest.py                |   1 +
 tests/integration_tests/core_tests.py              |   4 +-
 tests/integration_tests/datasets/api_tests.py      |  17 +-
 tests/integration_tests/datasource_tests.py        |   8 +-
 tests/integration_tests/reports/api_tests.py       | 217 +++++++++++++++++-
 tests/integration_tests/sqllab_tests.py            |   4 +-
 tests/unit_tests/commands/dataset/test_update.py   |  60 +++++
 tests/unit_tests/commands/report/base_test.py      | 253 +++++++++++++++++++++
 tests/unit_tests/dao/dataset_test.py               |   3 -
 .../pandas_postprocessing/test_contribution.py     |  86 +++++--
 99 files changed, 1799 insertions(+), 746 deletions(-)
 create mode 100644 
superset-frontend/packages/superset-ui-core/src/utils/tooltip.ts
 create mode 100644 
superset-frontend/packages/superset-ui-core/test/utils/tooltip.test.ts
 create mode 100644 superset/initialization/bootstrap.py
 create mode 100644 tests/unit_tests/commands/dataset/test_update.py
 create mode 100644 tests/unit_tests/commands/report/base_test.py

Reply via email to