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

vavila pushed a change to branch feat/d2d-in-embedded
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 1b09b50e5b Fixing more tests
 discard c994fa2f4b Try fixing frontend tests
 discard a545a86d52 Fixing backend tests
 discard c363d1493f Fixing tests
 discard d1b7a2d415 Addressing PR feedback and removing FF
 discard ec56f66768 feat: Enable drilling in embedded
     add 6c9cda758a chore: update chart list e2e and component tests (#34393)
     add cb27d5fe8d chore: proper current_app.config proxy usage (#34345)
     add 348bd8981b feat: Enable drilling in embedded
     add b5c7d93414 Addressing PR feedback and removing FF
     add 8d0d9e68c9 Fixing tests
     add 636f2cd72c Fixing backend tests
     add 1e3eb3743c Try fixing frontend tests
     add 59fbd99638 Fixing more tests

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   (1b09b50e5b)
            \
             N -- N -- N   refs/heads/feat/d2d-in-embedded (59fbd99638)

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/contributing/development.mdx             |   8 -
 scripts/python_tests.sh                            |   2 +-
 .../cypress/e2e/chart_list/list.test.ts            |  55 --
 .../src/components/FacePile/FacePile.test.tsx      | 112 ++-
 .../src/components/Tag/utils.test.tsx              | 167 +++-
 .../src/components/TagsList/TagsList.test.tsx      | 126 +++
 .../pages/ChartList/ChartList.cardview.test.tsx    | 588 ++++++++++++++
 .../pages/ChartList/ChartList.listview.test.tsx    | 883 +++++++++++++++++++++
 .../pages/ChartList/ChartList.permissions.test.tsx | 486 ++++++++++++
 .../src/pages/ChartList/ChartList.test.jsx         | 433 ----------
 .../src/pages/ChartList/ChartList.test.tsx         | 476 +++++++++++
 .../src/pages/ChartList/ChartList.testHelpers.tsx  | 332 ++++++++
 superset-frontend/src/utils/chartRegistry.test.ts  | 225 ++++++
 superset-frontend/src/views/CRUD/hooks.test.tsx    | 153 ++++
 superset/__init__.py                               |   3 -
 superset/advanced_data_type/api.py                 |   7 +-
 superset/async_events/async_query_manager.py       |  29 +-
 superset/available_domains/api.py                  |   5 +-
 superset/charts/api.py                             |   3 +-
 superset/charts/data/api.py                        |   4 +-
 superset/charts/schemas.py                         |  38 +-
 superset/cli/lib.py                                |  48 --
 superset/cli/main.py                               |  37 +-
 superset/cli/reset.py                              | 101 +--
 superset/cli/test.py                               |   5 +-
 superset/commands/dashboard/filter_state/get.py    |   5 +-
 superset/commands/dashboard/update.py              |   5 +-
 superset/commands/database/create.py               |   4 +-
 superset/commands/database/importers/v1/utils.py   |   4 +-
 superset/commands/database/sync_permissions.py     |   6 +-
 superset/commands/database/validate_sql.py         |   6 +-
 superset/commands/dataset/importers/v1/utils.py    |   6 +-
 superset/commands/distributed_lock/base.py         |   4 +-
 superset/commands/distributed_lock/create.py       |   4 +-
 superset/commands/distributed_lock/delete.py       |   4 +-
 superset/commands/distributed_lock/get.py          |   4 +-
 superset/commands/explore/form_data/get.py         |   5 +-
 superset/commands/report/alert.py                  |   3 +-
 superset/commands/report/base.py                   |   4 +-
 superset/commands/report/execute.py                |   6 +-
 superset/commands/sql_lab/estimate.py              |  11 +-
 superset/commands/sql_lab/export.py                |   9 +-
 superset/commands/sql_lab/results.py               |   9 +-
 superset/commands/theme/seed.py                    |  12 +-
 superset/common/query_actions.py                   |   3 -
 superset/common/query_context_factory.py           |   7 +-
 superset/common/query_context_processor.py         |  21 +-
 superset/common/utils/query_cache_manager.py       |  18 +-
 superset/common/utils/time_range_utils.py          |   7 +-
 superset/connectors/sqla/models.py                 |  10 +-
 superset/databases/api.py                          |  11 +-
 superset/databases/filters.py                      |   4 +-
 superset/databases/ssh_tunnel/models.py            |   3 -
 superset/datasource/api.py                         |   3 +-
 superset/db_engine_specs/__init__.py               |   3 +-
 superset/db_engine_specs/base.py                   |  20 +-
 superset/db_engine_specs/clickhouse.py             |   4 +-
 superset/db_engine_specs/duckdb.py                 |   5 +-
 superset/db_engine_specs/hive.py                   |  19 +-
 superset/db_engine_specs/impala.py                 |   4 +-
 superset/db_engine_specs/ocient.py                 |   3 +-
 superset/db_engine_specs/presto.py                 |   4 +-
 superset/db_engine_specs/singlestore.py            |   6 +-
 superset/db_engine_specs/snowflake.py              |   8 +-
 superset/db_engine_specs/trino.py                  |  10 +-
 superset/examples/birth_names.py                   |   9 +-
 superset/examples/helpers.py                       |   5 +-
 superset/examples/multiformat_time_series.py       |   5 +-
 superset/examples/random_time_series.py            |   5 +-
 superset/examples/world_bank.py                    |   5 +-
 superset/initialization/__init__.py                |  62 +-
 superset/migrations/shared/migrate_viz/base.py     |   6 +-
 ...c2d8ec8595_create_ssh_tunnel_credentials_tbl.py |   3 -
 superset/models/core.py                            |  30 +-
 superset/models/dashboard.py                       |   6 +-
 superset/models/helpers.py                         |  11 +-
 superset/models/sql_lab.py                         |   4 +-
 superset/reports/notifications/email.py            |  11 +-
 superset/security/manager.py                       |  33 +-
 superset/sql_lab.py                                |  59 +-
 superset/sql_validators/presto_db.py               |   2 -
 superset/sqllab/api.py                             |  11 +-
 superset/tasks/cron_util.py                        |   5 +-
 superset/tasks/scheduler.py                        |  21 +-
 superset/thumbnails/digest.py                      |  12 +-
 superset/utils/cache.py                            |  23 +-
 superset/utils/core.py                             |  26 +-
 superset/utils/database.py                         |  10 +-
 superset/utils/decorators.py                       |  12 +-
 superset/utils/encrypt.py                          |   2 +-
 superset/utils/machine_auth.py                     |  10 +-
 superset/utils/oauth2.py                           |  10 +-
 superset/utils/screenshots.py                      |   9 +-
 superset/utils/slack.py                            |   8 +-
 superset/utils/urls.py                             |   8 +-
 superset/utils/webdriver.py                        |  44 +-
 superset/views/base.py                             | 107 +--
 superset/views/core.py                             |   5 +-
 superset/views/database/views.py                   |   5 +-
 superset/views/datasource/schemas.py               |  20 +-
 superset/views/datasource/utils.py                 |   3 +-
 superset/views/error_handling.py                   |   3 +
 superset/views/filters.py                          |  10 +-
 superset/views/health.py                           |  12 +-
 superset/views/users/api.py                        |  15 +-
 superset/views/utils.py                            |   8 +-
 superset/viz.py                                    |  54 +-
 tests/conftest.py                                  |   3 +-
 .../advanced_data_type/api_tests.py                |  17 +-
 .../available_domains/api_tests.py                 |   6 +-
 tests/integration_tests/base_api_tests.py          |   2 +-
 tests/integration_tests/cache_tests.py             |   2 +-
 tests/integration_tests/charts/data/api_tests.py   |  28 +-
 tests/integration_tests/charts/schema_tests.py     |   9 +-
 tests/integration_tests/cli_tests.py               |  29 +-
 tests/integration_tests/core_tests.py              |  18 +-
 tests/integration_tests/dashboards/api_tests.py    |   2 +-
 tests/integration_tests/dashboards/base_case.py    |   6 +-
 .../dashboards/security/security_dataset_tests.py  |   8 +-
 tests/integration_tests/databases/api_tests.py     |  88 +-
 tests/integration_tests/datasets/api_tests.py      |   1 -
 tests/integration_tests/datasource_tests.py        |  19 +-
 tests/integration_tests/email_tests.py             | 115 +--
 .../explore/form_data/commands_tests.py            |  17 +-
 .../explore/permalink/commands_tests.py            |   7 +-
 tests/integration_tests/model_tests.py             |  11 +-
 tests/integration_tests/query_context_tests.py     |   5 +-
 tests/integration_tests/reports/api_tests.py       |  10 +-
 tests/integration_tests/reports/commands_tests.py  |  46 +-
 .../security/row_level_security_tests.py           |  11 +-
 tests/integration_tests/security_tests.py          |   8 +-
 tests/integration_tests/sql_lab/commands_tests.py  |   5 +-
 .../sql_lab/test_execute_sql_statements.py         |   7 +-
 tests/integration_tests/test_app.py                |   1 +
 tests/integration_tests/thumbnails_tests.py        |   8 +-
 tests/integration_tests/utils_tests.py             |  18 +-
 tests/integration_tests/viz_tests.py               |  71 +-
 tests/unit_tests/charts/test_schemas.py            | 154 ++++
 tests/unit_tests/commands/report/base_test.py      |  12 +-
 tests/unit_tests/config_test.py                    | 142 ++--
 tests/unit_tests/databases/api_test.py             |  31 +-
 .../databases/commands/importers/v1/import_test.py |   7 +-
 tests/unit_tests/databases/filters_test.py         |   6 +-
 tests/unit_tests/db_engine_specs/test_base.py      |   2 +-
 tests/unit_tests/db_engine_specs/test_duckdb.py    |  11 +-
 tests/unit_tests/db_engine_specs/test_gsheets.py   |   4 +-
 tests/unit_tests/extensions/test_sqlalchemy.py     |  69 +-
 tests/unit_tests/jinja_context_test.py             |  62 +-
 .../unit_tests/migrations/shared/catalogs_test.py  |   6 +-
 tests/unit_tests/models/core_test.py               |  13 +-
 tests/unit_tests/reports/schemas_test.py           |  12 +-
 tests/unit_tests/sql_lab_test.py                   |  35 +-
 tests/unit_tests/themes/commands_test.py           |  87 +-
 tests/unit_tests/thumbnails/test_digest.py         |  11 +-
 tests/unit_tests/utils/test_core.py                |  21 +-
 tests/unit_tests/utils/test_decorators.py          |   3 +-
 156 files changed, 4960 insertions(+), 1625 deletions(-)
 create mode 100644 
superset-frontend/src/pages/ChartList/ChartList.cardview.test.tsx
 create mode 100644 
superset-frontend/src/pages/ChartList/ChartList.listview.test.tsx
 create mode 100644 
superset-frontend/src/pages/ChartList/ChartList.permissions.test.tsx
 delete mode 100644 superset-frontend/src/pages/ChartList/ChartList.test.jsx
 create mode 100644 superset-frontend/src/pages/ChartList/ChartList.test.tsx
 create mode 100644 
superset-frontend/src/pages/ChartList/ChartList.testHelpers.tsx
 create mode 100644 superset-frontend/src/utils/chartRegistry.test.ts
 delete mode 100755 superset/cli/lib.py
 create mode 100644 tests/unit_tests/charts/test_schemas.py

Reply via email to