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.40.0
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 71bc29b07c build(deps-dev): bump eslint from 7.32.0 to 8.40.0 in
/superset-frontend
add 724fd82919 fix(filters): Stop breaking if translateToSql returns an
object (#23715)
add 2af76fc41f fix: MySQL et al. super calls (#23971)
add d96b72d46f chore(sqllab): Refactor react-query by redux-toolkit query
(#23760)
add 3a116aead8 build(deps-dev): bump eslint from 7.32.0 to 8.40.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 (71bc29b07c)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/eslint-8.40.0 (3a116aead8)
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:
superset-frontend/package-lock.json | 96 ------------
superset-frontend/package.json | 1 -
superset-frontend/spec/helpers/testing-library.tsx | 30 ++--
superset-frontend/src/SqlLab/App.jsx | 17 +--
.../SqlLab/components/SqlEditor/SqlEditor.test.jsx | 161 ++++++++-------------
.../SqlEditorLeftBar/SqlEditorLeftBar.test.jsx | 82 +++++++----
.../TabbedSqlEditors/TabbedSqlEditors.test.jsx | 9 +-
.../DatabaseSelector/DatabaseSelector.test.tsx | 28 ++--
.../src/components/DatabaseSelector/index.tsx | 9 +-
.../components/Datasource/DatasourceModal.test.jsx | 18 +--
.../TableSelector/TableSelector.test.tsx | 28 +++-
.../src/components/TableSelector/index.tsx | 5 +-
.../FilterControl/AdhocFilter/AdhocFilter.test.js | 32 ++++
.../src/explore/exploreUtils/index.js | 4 +-
.../src/hooks/apiResources/queryApi.test.ts | 100 +++++++++++++
.../src/hooks/apiResources/queryApi.ts | 71 +++++++++
.../src/hooks/apiResources/schemas.test.ts | 113 +++++++++------
.../src/hooks/apiResources/schemas.ts | 129 +++++++++++------
.../src/hooks/apiResources/tables.test.ts | 144 ++++++++++--------
superset-frontend/src/hooks/apiResources/tables.ts | 144 +++++++++++-------
superset-frontend/src/views/App.tsx | 49 +++----
superset-frontend/src/views/QueryProvider.tsx | 43 ------
superset-frontend/src/views/store.ts | 4 +-
superset/db_engine_specs/mysql.py | 10 +-
superset/db_engine_specs/ocient.py | 4 +-
25 files changed, 766 insertions(+), 565 deletions(-)
create mode 100644 superset-frontend/src/hooks/apiResources/queryApi.test.ts
create mode 100644 superset-frontend/src/hooks/apiResources/queryApi.ts
delete mode 100644 superset-frontend/src/views/QueryProvider.tsx