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 2023/06/20 21:19:18 UTC

[superset] branch dependabot/pip/requirements/tox-4.6.3 updated (4bfb944539 -> bea92ead32)

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

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


    omit 4bfb944539 build(deps): bump tox from 4.6.1 to 4.6.3 in /requirements
     add 5af298e1f6 chore: Migrate warm up cache endpoint to api v1 (#23853)
     add c3b5d72f2b chore: Enable CSP by default (#24262)
     add fdef9cbc96 fix: Viz migration adjustments - 2 (#24429)
     add 93e1db4bd9 fix: save columns reference from sqllab save datasets flow (#24248)
     add 86ce440833 fix: Revert to old endpoint temporarily to enable sharing saved queries (#24434)
     add 54b0031389 build(deps-dev): bump @typescript-eslint/parser from 5.59.11 to 5.60.0 in /superset-websocket (#24453)
     add 7a3a75ac28 build(deps): bump pre-commit from 3.3.2 to 3.3.3 in /requirements (#24397)
     new bea92ead32 build(deps): bump tox from 4.6.1 to 4.6.3 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   (4bfb944539)
            \
             N -- N -- N   refs/heads/dependabot/pip/requirements/tox-4.6.3 (bea92ead32)

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 1 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:
 UPDATING.md                                        |   1 +
 docs/docs/security.mdx                             |  42 ++---
 requirements/integration.txt                       |   2 +-
 .../superset-ui-chart-controls/src/constants.ts    |   2 +-
 .../src/utils/columnChoices.ts                     |  13 +-
 .../test/utils/getTemporalColumns.test.ts          |   2 +-
 .../src/models/ExtensibleFunction.ts               |   3 +-
 .../superset-ui-core/src/query/types/Query.ts      |  22 +--
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   3 +-
 .../SqlLab/components/ResultSet/ResultSet.test.tsx |   4 +-
 .../src/SqlLab/components/ResultSet/index.tsx      |   6 +-
 .../SqlLab/components/SaveDatasetModal/index.tsx   |   8 +-
 superset-frontend/src/SqlLab/fixtures.ts           |  46 ++---
 .../src/components/Datasource/DatasourceEditor.jsx |  11 +-
 .../src/explore/components/SaveModal.tsx           |   2 -
 superset-websocket/package-lock.json               | 143 +++++++++++++--
 superset-websocket/package.json                    |   2 +-
 superset/charts/api.py                             |  61 +++++++
 superset/charts/commands/exceptions.py             |   5 +
 superset/charts/commands/warm_up_cache.py          |  84 +++++++++
 superset/charts/schemas.py                         |  38 ++++
 superset/config.py                                 |  38 +++-
 superset/connectors/base/models.py                 |   9 +-
 superset/connectors/sqla/models.py                 |  26 +--
 superset/connectors/sqla/utils.py                  |   4 +-
 superset/daos/query.py                             |   3 +
 superset/databases/utils.py                        |   4 +-
 superset/datasets/api.py                           |  68 +++++++-
 superset/datasets/commands/create.py               |   4 +
 superset/datasets/commands/exceptions.py           |   5 +
 superset/datasets/commands/warm_up_cache.py        |  69 ++++++++
 superset/datasets/schemas.py                       |  40 +++++
 superset/db_engine_specs/base.py                   |  25 ++-
 superset/db_engine_specs/bigquery.py               |  18 +-
 superset/db_engine_specs/druid.py                  |   3 +-
 superset/db_engine_specs/hive.py                   |  11 +-
 superset/db_engine_specs/presto.py                 |  58 +++++--
 superset/initialization/__init__.py                |   6 +-
 .../migrations/shared/migrate_viz/processors.py    |   7 +
 superset/models/core.py                            |   5 +-
 superset/models/sql_lab.py                         |   2 +-
 superset/result_set.py                             |   2 +-
 superset/superset_typing.py                        |  21 ++-
 superset/tables/models.py                          |   5 +-
 superset/tasks/cache.py                            |  90 ++++++----
 .../appbuilder/general/widgets/base_list.html      |   2 +-
 .../appbuilder/general/widgets/search.html         |   2 +-
 superset/templates/superset/export_dashboards.html |   2 +-
 .../templates/superset/form_view/csv_scripts.html  |   2 +-
 .../form_view/csv_to_database_view/edit.html       |   2 +-
 .../form_view/database_schemas_selector.html       |   2 +-
 .../templates/superset/models/database/macros.html |   8 +-
 .../templates/superset/partials/asset_bundle.html  |   2 +-
 superset/templates/superset/theme.html             |  14 +-
 superset/views/utils.py                            |   4 +
 tests/integration_tests/charts/api_tests.py        |  90 +++++++++-
 tests/integration_tests/charts/commands_tests.py   |  30 +++-
 tests/integration_tests/datasets/api_tests.py      | 118 ++++++++++++-
 tests/integration_tests/datasets/commands_tests.py |  32 ++++
 tests/integration_tests/datasource_tests.py        |  12 +-
 .../db_engine_specs/presto_tests.py                | 192 +++++++++++++++++----
 tests/integration_tests/result_set_tests.py        |  22 +--
 tests/integration_tests/strategy_tests.py          |  44 ++---
 tests/unit_tests/config_test.py                    |  34 ++--
 tests/unit_tests/db_engine_specs/test_base.py      |  30 ++++
 tests/unit_tests/db_engine_specs/test_bigquery.py  |  22 ++-
 tests/unit_tests/db_engine_specs/test_presto.py    |  10 +-
 .../unit_tests/queries/dao_test.py                 |  34 ++--
 68 files changed, 1396 insertions(+), 337 deletions(-)
 create mode 100644 superset/charts/commands/warm_up_cache.py
 create mode 100644 superset/datasets/commands/warm_up_cache.py
 copy superset/sqllab/validators.py => tests/unit_tests/queries/dao_test.py (50%)


[superset] 01/01: build(deps): bump tox from 4.6.1 to 4.6.3 in /requirements

Posted by gi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit bea92ead32dde20b58603d5ad4f290a484a40f3f
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Tue Jun 20 21:19:12 2023 +0000

    build(deps): bump tox from 4.6.1 to 4.6.3 in /requirements
    
    Bumps [tox](https://github.com/tox-dev/tox) from 4.6.1 to 4.6.3.
    - [Release notes](https://github.com/tox-dev/tox/releases)
    - [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
    - [Commits](https://github.com/tox-dev/tox/compare/4.6.1...4.6.3)
    
    ---
    updated-dependencies:
    - dependency-name: tox
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
---
 requirements/integration.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/requirements/integration.txt b/requirements/integration.txt
index 336f9f0058..20023d62ae 100644
--- a/requirements/integration.txt
+++ b/requirements/integration.txt
@@ -46,7 +46,7 @@ pluggy==1.0.0
     # via tox
 pre-commit==3.3.3
     # via -r integration.in
-pyproject-api==1.5.1
+pyproject-api==1.5.2
     # via tox
 pyproject-hooks==1.0.0
     # via build
@@ -54,9 +54,9 @@ pyyaml==5.4.1
     # via pre-commit
 toposort==1.10
     # via pip-compile-multi
-tox==4.6.1
+tox==4.6.3
     # via -r integration.in
-virtualenv==20.23.0
+virtualenv==20.23.1
     # via
     #   pre-commit
     #   tox