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 2024/01/22 22:56:12 UTC

(superset) branch dependabot/npm_and_yarn/docs/ant-design/icons-5.2.6 updated (28ec905059 -> ccfc4ced96)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/docs/ant-design/icons-5.2.6
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 28ec905059 build(deps): bump @ant-design/icons from 4.7.0 to 5.2.6 in /docs
     add c0b57bd1c3 feat(sqlparse): improve table parsing (#26476)
     add ce26ecbd90 build(deps-dev): bump @types/node from 20.11.1 to 20.11.5 in /superset-websocket (#26733)
     add f46121dba9 chore: silence SECRET_KEY warning when running tests (#26703)
     add 4a27e79001 chore(dependencies): npm audit fix for superset-ui-demo (#26691)
     add c989a1cbce chore(dependencies): removes unused bootstrap-slider (#26684)
     add 775474366e chore(dependencies): remove unused @babel/runtime-corejs3 (#26685)
     add 9f7db406f1 chore(dependencies): removes unused @visx/tooltip (#26686)
     add 9c3f40d87c chore(dependencies): remove unused ansi-regex (#26687)
     add 214142f54a chore(dependencies): remove unused react-datetime (#26688)
     add eba3929ed1 chore(dependencies): remove unused lodash-es (#26689)
     add ae3bb47708 chore(dependencies): remove unused global-box (#26690)
     add 969f8edc5a chore(dependencies): removes unused minimist (#26692)
     add 60004f5bf3 chore(dependencies): removes unsued d3-color and d3-array (#26694)
     add a49526d984 build(deps): bump @babel/traverse from 7.22.8 to 7.23.2 in /superset-frontend (#25665)
     add ef4878b845 fix: do not use lodash/memoize (#26709)
     add 3ed70d8f53 fix(legacy-charts): Show Time Grain control for legacy charts (#26705)
     add ffc357c6a1 chore(dependencies): loosen constraints on dependency checker (#26708)
     add 5eb4e82d27 fix(db2): Improving support for ibm db2 connections (#26744)
     add be748f35cd build(deps): bump @docsearch/react from 3.3.3 to 3.5.2 in /docs (#26720)
     add 6a1ce6a704 build(deps): bump @saucelabs/theme-github-codeblock from 0.1.1 to 0.2.3 in /docs (#26724)
     add ccfc4ced96 build(deps): bump @ant-design/icons from 4.7.0 to 5.2.6 in /docs

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   (28ec905059)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/docs/ant-design/icons-5.2.6 (ccfc4ced96)

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/dependency-review.yml            |    8 +-
 docs/package.json                                  |    4 +-
 docs/yarn.lock                                     |  365 ++----
 requirements/base.txt                              |   15 +-
 requirements/testing.txt                           |    6 +-
 setup.py                                           |    3 +-
 superset-frontend/package-lock.json                | 1233 ++++++++------------
 superset-frontend/package.json                     |   10 -
 .../src/shared-controls/sharedControls.tsx         |    2 +-
 .../packages/superset-ui-demo/package.json         |    1 -
 .../src/utils/getControlsForVizType.js             |    4 +-
 superset-websocket/package-lock.json               |   14 +-
 superset-websocket/package.json                    |    2 +-
 superset/commands/dataset/duplicate.py             |    5 +-
 superset/commands/sql_lab/export.py                |    5 +-
 superset/connectors/sqla/models.py                 |    2 +-
 superset/connectors/sqla/utils.py                  |    2 +-
 superset/db_engine_specs/base.py                   |   12 +-
 superset/db_engine_specs/bigquery.py               |    2 +-
 superset/db_engine_specs/db2.py                    |   55 +
 superset/models/helpers.py                         |    2 +-
 superset/models/sql_lab.py                         |    6 +-
 superset/security/manager.py                       |    5 +-
 superset/sql_lab.py                                |   11 +-
 superset/sql_parse.py                              |  246 ++--
 superset/sql_validators/presto_db.py               |    4 +-
 superset/sqllab/query_render.py                    |    6 +-
 tests/integration_tests/superset_test_config.py    |    1 +
 .../superset_test_config_thumbnails.py             |    1 +
 tests/unit_tests/db_engine_specs/test_db2.py       |   75 ++
 tests/unit_tests/sql_parse_tests.py                |   55 +-
 31 files changed, 1030 insertions(+), 1132 deletions(-)
 create mode 100644 tests/unit_tests/db_engine_specs/test_db2.py