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


    omit 1321fdf1b0 build(deps-dev): bump @typescript-eslint/eslint-plugin
     add e585db85b6 chore: use contextlib.surpress instead of passing on error 
(#24896)
     add 29355577f1 fix(sqllab): error while removing a referenced table 
(#25114)
     add e642361399 docs: Update UPDATING.md regarding potential breaking 
change to `ab_user.email` column (#25115)
     add 00550d7c02 fix: Date format when importing international timestamps 
(#25113)
     add 46a0a6e08a fix(DB Connection): Update placeholder values for Snowflake 
connection (#25119)
     add 067bfbf950 chore: move TypedDict from typing_extensions to typing 
(#25121)
     add 66e2807009 feat: removing renderCard from Tags/index.tsc to remove 
cardview from Tags ListView (#25105)
     add eeecd59c9d refactor(frontend): make "Search" box the first filter for 
charts and datasets (#25129)
     add 846c79ef55 chore: consolidate sqllab store into SPA store (#25088)
     add 9df1b26654 fix: Bumps Flask Caching to fix RCE vulnerability (#25090)
     add 1144ac15c9 fix: Partially reverts #25007 (#25124)
     add e18294463e docs: Fix typo in UPDATING.md (#25127)
     add 15d6508407 build(deps): bump jsonwebtoken from 9.0.1 to 9.0.2 in 
/superset-websocket/utils/client-ws-app (#25140)
     add 0b780d55bb build(deps): bump jsonwebtoken from 9.0.1 to 9.0.2 in 
/superset-websocket (#25141)
     add 62f9e54c8f build(deps-dev): bump @types/uuid from 9.0.2 to 9.0.3 in 
/superset-websocket (#25142)
     new 5730f7797e 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   (1321fdf1b0)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.5.0
 (5730f7797e)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CONTRIBUTING.md                                    |  88 ++++----
 UPDATING.md                                        |   1 +
 docker/pythonpath_dev/superset_config.py           |   2 +-
 docs/docs/installation/async-queries-celery.mdx    |   4 +-
 docs/docs/installation/configuring-superset.mdx    |   2 +-
 helm/superset/Chart.yaml                           |   2 +-
 helm/superset/README.md                            |   2 +-
 helm/superset/templates/_helpers.tpl               |   2 +-
 requirements/base.txt                              |   6 +-
 setup.cfg                                          |   2 +-
 setup.py                                           |   3 +-
 superset-frontend/src/SqlLab/App.jsx               |  88 +-------
 superset-frontend/src/SqlLab/actions/sqlLab.js     |  20 +-
 .../src/SqlLab/components/TableElement/index.tsx   |  11 +-
 .../middlewares/persistSqlLabStateEnhancer.js      |  85 ++++++++
 .../src/SqlLab/reducers/getInitialState.ts         |   9 +-
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |   6 +-
 .../src/SqlLab/reducers/sqlLab.test.js             |  32 +++
 .../SqlLab/utils/reduxStateToLocalStorageHelper.js |  23 +++
 .../DatabaseConnectionForm/ValidatedInputField.tsx |   4 +-
 .../src/features/databases/DatabaseModal/index.tsx |   7 +-
 superset-frontend/src/pages/ChartList/index.tsx    |  14 +-
 superset-frontend/src/pages/DatasetList/index.tsx  |  14 +-
 superset-frontend/src/pages/Tags/index.tsx         |  34 +--
 superset-frontend/src/views/store.ts               |  22 +-
 superset-websocket/package-lock.json               | 124 +++++++++--
 superset-websocket/package.json                    |   4 +-
 .../utils/client-ws-app/package-lock.json          | 122 ++++++++---
 .../utils/client-ws-app/package.json               |   2 +-
 superset/charts/data/api.py                        |  12 +-
 superset/common/query_context_processor.py         |  10 +-
 superset/common/tags.py                            |  27 +--
 superset/config.py                                 |   2 +-
 superset/db_engine_specs/base.py                   |  25 ++-
 superset/db_engine_specs/bigquery.py               |  10 +-
 superset/db_engine_specs/databricks.py             |   3 +-
 superset/db_engine_specs/gsheets.py                |   9 +-
 superset/db_engine_specs/mysql.py                  |   5 +-
 superset/db_engine_specs/ocient.py                 |   6 +-
 superset/db_engine_specs/presto.py                 |  10 +-
 superset/db_engine_specs/snowflake.py              |   3 +-
 superset/db_engine_specs/trino.py                  |   9 +-
 superset/explore/commands/get.py                   |   7 +-
 superset/explore/form_data/commands/state.py       |   4 +-
 superset/extensions/__init__.py                    |   2 +-
 superset/initialization/__init__.py                |  10 +-
 superset/jinja_context.py                          |   5 +-
 superset/models/core.py                            |  18 +-
 superset/security/manager.py                       |  21 +-
 superset/sqllab/sqllab_execution_context.py        |   5 +-
 superset/superset_typing.py                        |   4 +-
 .../form_view/csv_to_database_view/edit.html       | 229 ++++++++++-----------
 superset/temporary_cache/api.py                    |   5 +-
 superset/temporary_cache/commands/entry.py         |   4 +-
 superset/utils/core.py                             |  34 ++-
 superset/utils/mock_data.py                        |   3 +-
 superset/views/core.py                             |  40 ++--
 superset/views/database/forms.py                   |   4 +
 superset/views/database/views.py                   |   2 +
 superset/views/datasource/schemas.py               |   3 +-
 superset/views/sql_lab/views.py                    |  38 +++-
 superset/views/utils.py                            |   6 +-
 tests/integration_tests/cachekeys/api_tests.py     |   5 +
 tests/integration_tests/core_tests.py              |   1 +
 tests/integration_tests/reports/alert_tests.py     |  12 +-
 tests/integration_tests/sql_lab/conftest.py        |   9 +-
 66 files changed, 749 insertions(+), 588 deletions(-)
 create mode 100644 
superset-frontend/src/SqlLab/middlewares/persistSqlLabStateEnhancer.js

Reply via email to