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:18:47 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/eslint-8.43.0 updated (748c875385 -> 354abd53b2)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/superset-websocket/eslint-8.43.0
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 748c875385 build(deps-dev): bump eslint in /superset-websocket
     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)
     add 354abd53b2 build(deps-dev): bump eslint in /superset-websocket

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   (748c875385)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-websocket/eslint-8.43.0 (354abd53b2)

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:
 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%)