You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by gi...@apache.org on 2022/12/31 10:25:17 UTC

[superset] branch dependabot/pip/requirements/tox-3.28.0 updated (9b34c29224 -> 954e4110f8)

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

github-bot pushed a change to branch dependabot/pip/requirements/tox-3.28.0
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 9b34c29224 chore(deps): bump tox from 3.25.1 to 3.28.0 in /requirements
     add 9b26794419 chore: Update dataset_id & dataset_type datasource_id & datasource_type for SPA explore (#22461)
     add 87617095b9 chore: Bump Pillow to 9.3.0 (#22489)
     add 9e81c3a119 feat: update time comparison choices (again) (#22458)
     add 7926a43aed refactor: rename filter_rel_fields to base_related_field_filters (#22508)
     add b6d39d194c feat(trino): support early cancellation of queries (#22498)
     add 9c0d6c51f1 chore(ssh-tunnel): Refactor establishing raw connection with contextmanger (#22366)
     add c2ace8dacb fix(explore): datasource_type typo (#22543)
     add d5bf1f5b37 build(deps): bump fast-json-patch from 3.1.0 to 3.1.1 in /docs (#22557)
     add 86768a6325 build(deps): bump wheel from 0.37.0 to 0.38.1 in /requirements (#22533)
     add 954e4110f8 chore(deps): bump tox from 3.25.1 to 3.28.0 in /requirements

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   (9b34c29224)
            \
             N -- N -- N   refs/heads/dependabot/pip/requirements/tox-3.28.0 (954e4110f8)

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/yarn.lock                                     |   6 +-
 requirements/development.txt                       |   2 +-
 requirements/integration.txt                       |   2 +-
 setup.py                                           |   2 +-
 .../src/sections/advancedAnalytics.tsx             |   2 +
 .../src/controlPanel.tsx                           |   2 +
 .../legacy-plugin-chart-rose/src/controlPanel.tsx  |   2 +
 .../legacy-preset-chart-nvd3/src/NVD3Controls.tsx  |   2 +
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   6 +-
 .../src/SqlLab/actions/sqlLab.test.js              |  31 ++++++
 .../src/SqlLab/components/ResultSet/index.tsx      |  26 ++---
 .../SqlLab/components/SqlEditorTabHeader/index.tsx |   4 +-
 superset-frontend/src/SqlLab/fixtures.ts           |   2 +-
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |  29 ++---
 .../src/explore/controlPanels/sections.tsx         |   2 +
 .../exploreUtils/getParsedExploreURLParams.test.ts |   4 +-
 .../exploreUtils/getParsedExploreURLParams.ts      |  20 ++--
 .../views/CRUD/data/dataset/DatasetList.test.jsx   |   2 +-
 .../src/views/CRUD/data/query/QueryList.test.tsx   |   3 +-
 .../src/views/CRUD/data/query/QueryList.tsx        |  34 ++++--
 .../CRUD/data/query/QueryPreviewModal.test.tsx     |   3 +-
 superset-frontend/src/views/CRUD/types.ts          |  10 +-
 superset/charts/api.py                             |   2 +-
 superset/connectors/base/models.py                 |   2 +-
 superset/connectors/sqla/utils.py                  |  39 +++----
 superset/connectors/sqla/views.py                  |   2 +-
 superset/constants.py                              |   3 +
 superset/dashboards/api.py                         |   2 +-
 superset/datasets/api.py                           |   2 +-
 superset/db_engine_specs/base.py                   |  67 +++++++-----
 superset/db_engine_specs/gsheets.py                |  11 +-
 superset/db_engine_specs/hive.py                   |   2 +-
 superset/db_engine_specs/presto.py                 |  32 +++---
 superset/db_engine_specs/trino.py                  |  23 +++-
 superset/explore/api.py                            |  12 +--
 superset/explore/commands/get.py                   |  56 +++++-----
 superset/explore/commands/parameters.py            |   4 +-
 superset/explore/exceptions.py                     |   6 +-
 superset/models/core.py                            |  13 +++
 superset/queries/api.py                            |   4 +-
 superset/queries/saved_queries/api.py              |   2 +-
 superset/reports/api.py                            |   2 +-
 superset/sql_lab.py                                | 120 ++++++++++-----------
 superset/sql_validators/presto_db.py               |   2 +
 superset/views/base_api.py                         |  24 +++--
 superset/views/filters.py                          |   2 +-
 tests/integration_tests/core_tests.py              |   2 +-
 .../db_engine_specs/presto_tests.py                |  32 ++----
 tests/integration_tests/explore/api_tests.py       |  14 +--
 tests/integration_tests/sqllab_tests.py            |   6 +-
 tests/unit_tests/db_engine_specs/test_trino.py     |  59 ++++++++++
 tests/unit_tests/explore/api_test.py               |   2 +-
 52 files changed, 446 insertions(+), 299 deletions(-)