You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2024/03/13 22:31:07 UTC

(superset) branch chart-telemetry updated (37170a02ee -> 55b682678b)

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

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


    omit 37170a02ee Use extension
    omit 20c1ebf111 Small fixes
    omit a4cd8ebb34 Add unit tests
    omit cd70c01b8b feat: chart telemetry
     add a75bb7685d chore: Add an extension for Home submenu (#27480)
     add 26d8077e97 chore: improve SQL parsing (#26767)
     add 5f7b246cb6 feat: chart telemetry
     add 9cef219d59 Add unit tests
     add 8f3a7146bd Small fixes
     add 55b682678b Use extension

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   (37170a02ee)
            \
             N -- N -- N   refs/heads/chart-telemetry (55b682678b)

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:
 .../cypress/e2e/explore/AdhocMetrics.test.ts       |   2 +-
 .../e2e/explore/visualizations/table.test.ts       |   4 +-
 .../superset-ui-core/src/ui-overrides/types.ts     |  23 ++-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   1 +
 superset-frontend/src/pages/Home/Home.test.tsx     |  16 ++
 superset-frontend/src/pages/Home/index.tsx         |   7 +-
 superset/connectors/sqla/models.py                 |  53 +-----
 superset/db_engine_specs/base.py                   |   4 +-
 superset/db_engine_specs/postgres.py               |   7 +-
 superset/errors.py                                 |   2 +
 superset/exceptions.py                             |  17 ++
 superset/models/helpers.py                         |  27 ++-
 superset/sql_parse.py                              | 190 ++++++++++++++++++++-
 superset/sqllab/api.py                             |   4 +-
 superset/sqllab/schemas.py                         |   1 +
 tests/integration_tests/celery_tests.py            |   8 +-
 tests/integration_tests/charts/data/api_tests.py   |   8 +-
 tests/integration_tests/core_tests.py              |   2 +-
 tests/integration_tests/datasource_tests.py        |   2 +-
 .../db_engine_specs/base_engine_spec_tests.py      |   5 +-
 .../db_engine_specs/bigquery_tests.py              |   2 +-
 tests/integration_tests/model_tests.py             |  57 +------
 tests/integration_tests/query_context_tests.py     |  67 +++++---
 .../security/row_level_security_tests.py           |   4 +-
 tests/integration_tests/sql_lab/api_tests.py       |   2 +-
 tests/integration_tests/sqla_models_tests.py       |  21 ++-
 tests/unit_tests/db_engine_specs/test_base.py      |   6 +-
 tests/unit_tests/db_engine_specs/test_bigquery.py  |   7 +-
 tests/unit_tests/jinja_context_test.py             |  52 +++---
 tests/unit_tests/sql_parse_tests.py                |  35 ++++
 30 files changed, 438 insertions(+), 198 deletions(-)