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/07/12 16:34:54 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.0.0 updated (6a3fe09f07 -> de39a31b83)

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/typescript-eslint/eslint-plugin-6.0.0
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 6a3fe09f07 build(deps-dev): bump @typescript-eslint/eslint-plugin
     add 0efb88479e fix: Validation of out of scope filters and interaction with Clear All (#24610)
     add bbffc4c1f8 fix: Incorrect initial global scoping of cross filters (#24642)
     add 2e4d9f2e2a fix: Ensure config is a dict in cross filters scope migration (#24661)
     add 4caf33b41d fix: Chart can be added to dashboard by non-owner via save as option (#24630)
     add 7476f7af73 docs(databases): correct the way of using use environment variables (#24633)
     add cbf39650d0 chore: Re-enable some GitHub action workflows in draft mode (#24626)
     add 2d2a76a8ac build(deps): bump winston from 3.9.0 to 3.10.0 in /superset-websocket (#24659)
     add 8c6f5fe1d3 build(deps): bump trim and @superset-ui/core in /superset-frontend/cypress-base (#24656)
     add 057539037b build(deps): bump semver from 6.3.0 to 6.3.1 in /superset-frontend/cypress-base (#24655)
     add 7aa9f35808 build(deps): bump semver from 6.3.0 to 6.3.1 in /superset-websocket (#24654)
     add ca8c8d2ad3 fix(sqllab): missing column meta on autocomplete (#24611)
     add b4d08aecdb build(deps): bump semver from 5.7.1 to 5.7.2 in /superset-frontend (#24653)
     add ae00489779 chore(dao): Add explicit ON DELETE CASCADE for ownership (#24628)
     add 1473d97055 feat(sqllab): add shortcut for run current sql (#24329)
     add 88418fc609 feat(csv-upload): Configurable max filesize (#24618)
     add ea968e47cc chore: Update Rockset—switching out rockset for rockset-sqlalchemy (#24649)
     add 462418ba82 chore: Bump/relax Flask libs (#24652)
     add 8230ac7b4a build(deps-dev): bump @typescript-eslint/parser from 5.61.0 to 5.62.0 in /superset-websocket (#24673)
     add de39a31b83 build(deps-dev): bump @typescript-eslint/eslint-plugin

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   (6a3fe09f07)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.0.0 (de39a31b83)

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:
 .github/workflows/docker-release.yml               |    1 -
 .github/workflows/docker.yml                       |    1 -
 .github/workflows/embedded-sdk-test.yml            |    1 -
 .github/workflows/superset-cli.yml                 |    1 -
 .github/workflows/superset-e2e.yml                 |    1 -
 .github/workflows/superset-frontend.yml            |    1 -
 .../workflows/superset-python-integrationtest.yml  |    3 -
 .github/workflows/superset-python-misc.yml         |    3 -
 .github/workflows/superset-python-presto-hive.yml  |    2 -
 .github/workflows/superset-python-unittest.yml     |    1 -
 .github/workflows/superset-translations.yml        |    2 -
 .github/workflows/superset-websocket.yml           |    1 -
 UPDATING.md                                        |    3 +-
 docs/docs/databases/extra-settings.mdx             |    6 +-
 .../docs/databases/installing-database-drivers.mdx |    3 +-
 docs/docs/databases/rockset.mdx                    |   11 +-
 requirements/base.txt                              |    2 +-
 requirements/development.txt                       |    2 +
 requirements/integration.txt                       |   11 +-
 requirements/testing.txt                           |    8 +-
 setup.py                                           |    8 +-
 superset-frontend/cypress-base/package-lock.json   | 2502 ++++++++++++++------
 superset-frontend/cypress-base/package.json        |    2 +-
 superset-frontend/package-lock.json                |  748 +++---
 .../SqlLab/components/AceEditorWrapper/index.tsx   |   48 +-
 .../src/SqlLab/components/SqlEditor/index.jsx      |   61 +-
 .../FilterBar/FilterControls/FilterControl.tsx     |   13 +-
 .../FilterBar/FilterControls/FilterValue.tsx       |   11 +-
 .../FilterBar/FilterControls/types.ts              |    1 +
 .../components/nativeFilters/FilterBar/index.tsx   |   27 +-
 .../dashboard/components/nativeFilters/state.ts    |    2 +-
 .../src/dashboard/util/crossFilters.test.ts        |   84 +-
 .../src/dashboard/util/crossFilters.ts             |    9 +-
 .../src/explore/components/SaveModal.test.jsx      |    2 +-
 .../src/explore/components/SaveModal.tsx           |   17 +-
 superset-frontend/src/hooks/apiResources/index.ts  |    2 +-
 superset-frontend/src/hooks/apiResources/tables.ts |    1 +
 superset-frontend/src/views/store.ts               |    1 +
 superset-websocket/package-lock.json               |  497 ++--
 superset-websocket/package.json                    |    4 +-
 superset/charts/api.py                             |    5 +
 superset/charts/commands/create.py                 |    5 +
 superset/charts/commands/delete.py                 |    4 -
 superset/charts/commands/exceptions.py             |    4 +
 superset/config.py                                 |    3 +
 superset/daos/chart.py                             |    1 -
 superset/daos/dashboard.py                         |    1 -
 superset/daos/report.py                            |   26 +-
 superset/examples/birth_names.py                   |    1 -
 superset/forms.py                                  |   25 +-
 superset/migrations/shared/constraints.py          |   57 +
 ...-41_4ea966691069_cross_filter_global_scoping.py |    4 +
 ..._add_on_delete_cascade_for_tables_references.py |   92 +-
 ..._add_on_delete_cascade_for_owners_references.py |   78 +
 superset/models/dashboard.py                       |   10 +-
 superset/models/slice.py                           |   10 +-
 superset/reports/models.py                         |   18 +-
 superset/tables/models.py                          |    4 +-
 superset/views/database/forms.py                   |    2 +
 tests/integration_tests/charts/api_tests.py        |   35 +-
 tests/integration_tests/charts/commands_tests.py   |    2 -
 tests/integration_tests/commands_test.py           |    7 -
 tests/integration_tests/dashboard_tests.py         |    1 -
 .../integration_tests/dashboards/commands_tests.py |    3 -
 tests/integration_tests/datasets/commands_tests.py |    2 -
 tests/unit_tests/forms_tests.py                    |   54 +
 66 files changed, 2979 insertions(+), 1579 deletions(-)
 create mode 100644 superset/migrations/shared/constraints.py
 create mode 100644 superset/migrations/versions/2023-07-11_15-51_6d05b0a70c89_add_on_delete_cascade_for_owners_references.py
 create mode 100644 tests/unit_tests/forms_tests.py