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/03/17 19:44:48 UTC

[superset] branch dependabot/npm_and_yarn/superset-frontend/eslint-8.36.0 updated (b983e30643 -> 34eeb7e2f3)

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

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


 discard b983e30643 build(deps-dev): bump eslint from 7.32.0 to 8.36.0 in /superset-frontend
     add e3a7d2014d fix(webdriver): default WEBDRIVER_OPTION_ARGS and update Firefox deps (#23388)
     add 2fe695d3cf fix: Select all issue with "Dynamically search all filter values" in FilterBar (#23400)
     add d4657f6198 fix(docker): multi-architecture image build (#23409)
     add 42e8d1b498 chore: improve schema security (#23385)
     add 2feb599a0e chore(docs): three typos (#23403)
     add 7b1ba673f2 build(deps): bump ws from 8.12.1 to 8.13.0 in /superset-websocket (#23343)
     add 067c2e35b2 build(deps-dev): bump webpack from 5.52.1 to 5.76.0 in /superset-frontend (#23366)
     add d950eb85d7 build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.53.0 to 5.55.0 in /superset-websocket (#23359)
     add 34eeb7e2f3 build(deps-dev): bump eslint from 7.32.0 to 8.36.0 in /superset-frontend

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   (b983e30643)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-frontend/eslint-8.36.0 (34eeb7e2f3)

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:
 Dockerfile                                         |  14 +-
 docs/docs/security.mdx                             |   6 +-
 superset-frontend/package-lock.json                | 146 ++++-----
 superset-frontend/package.json                     |   2 +-
 .../components/Select/SelectFilterPlugin.tsx       |  92 +++---
 superset-websocket/package-lock.json               | 340 ++++++++-------------
 superset-websocket/package.json                    |   4 +-
 superset/config.py                                 |   5 +-
 superset/db_engine_specs/base.py                   |  64 +++-
 superset/db_engine_specs/drill.py                  |  17 +-
 superset/db_engine_specs/hive.py                   |  13 +-
 superset/db_engine_specs/mysql.py                  |  19 +-
 superset/db_engine_specs/postgres.py               |  36 +++
 superset/db_engine_specs/presto.py                 |  23 +-
 superset/db_engine_specs/snowflake.py              |  18 +-
 superset/models/core.py                            |  17 ++
 superset/security/manager.py                       |  15 +-
 tests/unit_tests/db_engine_specs/test_drill.py     |  16 +
 tests/unit_tests/db_engine_specs/test_hive.py      |  15 +
 tests/unit_tests/db_engine_specs/test_mysql.py     |  14 +
 tests/unit_tests/db_engine_specs/test_postgres.py  |  42 +++
 tests/unit_tests/db_engine_specs/test_presto.py    |  24 ++
 tests/unit_tests/db_engine_specs/test_snowflake.py |  32 ++
 tests/unit_tests/explore/utils_test.py             |   4 +-
 tests/unit_tests/security/manager_test.py          |   3 +-
 25 files changed, 622 insertions(+), 359 deletions(-)