You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2023/03/17 22:37:26 UTC

[superset] branch hugh/migrate-estimate_query_cost-to-v1 updated (3883ad3b14 -> 715f49142a)

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

hugh pushed a change to branch hugh/migrate-estimate_query_cost-to-v1
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 3883ad3b14 address concerns
     add ad72cd3171 chore(dashboard): Disable 'Set filter mapping' when appropriate (#23261)
     add a17028c7de build(deps): bump @sideway/formula from 3.0.0 to 3.0.1 in /docs (#23369)
     add fe4f9d6232 build(deps-dev): bump @typescript-eslint/parser from 5.54.1 to 5.55.0 in /superset-websocket (#23379)
     add 635ac8e8a8 build(deps-dev): bump webpack from 5.67.0 to 5.76.0 in /superset-embedded-sdk (#23367)
     add e13fa27074 build(deps-dev): bump webpack from 5.64.0 to 5.76.0 in /docs (#23368)
     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 715f49142a Merge branch 'master' of https://github.com/apache/superset into hugh/migrate-estimate_query_cost-to-v1

No new revisions were added by this update.

Summary of changes:
 Dockerfile                                         |   14 +-
 docs/docs/security.mdx                             |    6 +-
 docs/package.json                                  |    2 +-
 docs/yarn.lock                                     | 4423 +++++++++-----------
 superset-embedded-sdk/package-lock.json            |   96 +-
 superset-frontend/package-lock.json                |  148 +-
 superset-frontend/package.json                     |    2 +-
 .../HeaderActionsDropdown.test.tsx                 |   70 +-
 .../Header/HeaderActionsDropdown/index.jsx         |   22 +-
 .../components/Select/SelectFilterPlugin.tsx       |   92 +-
 superset-websocket/package-lock.json               |  374 +-
 superset-websocket/package.json                    |    6 +-
 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 +-
 30 files changed, 2737 insertions(+), 2895 deletions(-)