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.7.0
in repository https://gitbox.apache.org/repos/asf/superset.git
omit 01057084b0 build(deps-dev): bump @typescript-eslint/eslint-plugin
add 8eff5a75b4 chore: Remove the ability to switch to filter-box chart
when DASHBOARD_NATIVE_FILTERS feature is enabled (#25275)
add 426aa777fb build(deps): bump uuid from 9.0.0 to 9.0.1 in
/superset-websocket (#25279)
add e1ddba9c0f docs: rewrite superset docker localhost prose (#25296)
add bb002d6147 fix: is_select with UNION (#25290)
add ec61910232 build(deps): bump ws from 8.13.0 to 8.14.1 in
/superset-websocket (#25293)
add 467e062e8e build(docker): bump geckodriver and firefox to latest
(#25287)
add 14c324950a feat(datasource): Checkbox for always filtering main dttm
in datasource (#25204)
add 78cbdc3e42 chore: changing one word (disablement -> disabling) (#25291)
add 52faa2e17d chore(sqllab): Migrate tests to typescript (#25274)
add 06c0a5bba9 build(deps-dev): bump @types/uuid from 9.0.3 to 9.0.4 in
/superset-websocket (#25311)
new c7f03734bc 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 (01057084b0)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.7.0
(c7f03734bc)
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:
CHANGELOG.md | 2 +-
CONTRIBUTING.md | 2 +-
Dockerfile | 4 +-
docs/docs/contributing/hooks-and-linting.mdx | 2 +-
.../installing-superset-using-docker-compose.mdx | 6 +-
.../HighlightedSql/HighlightedSql.test.jsx | 64 ----------------------
.../HighlightedSql/HighlightedSql.test.tsx | 48 ++++++++++++++++
.../QueryStateLabel/QueryStateLabel.test.jsx | 39 -------------
.../QueryStateLabel/QueryStateLabel.test.tsx} | 26 +++++----
.../SqlLab/components/QueryStateLabel/index.tsx | 2 +-
.../{QueryTable.test.jsx => QueryTable.test.tsx} | 54 +++++++++---------
.../src/components/Datasource/DatasourceEditor.jsx | 10 ++++
.../src/components/Datasource/DatasourceModal.tsx | 1 +
.../components/controls/VizTypeControl/index.tsx | 9 +++
superset-frontend/src/features/datasets/types.ts | 1 +
.../src/pages/ChartCreation/index.tsx | 2 +-
superset-websocket/package-lock.json | 58 +++++++++++---------
superset-websocket/package.json | 6 +-
superset/connectors/sqla/models.py | 4 ++
superset/connectors/sqla/views.py | 7 +++
superset/dashboards/schemas.py | 1 +
superset/datasets/api.py | 2 +
superset/datasets/commands/duplicate.py | 1 +
superset/datasets/schemas.py | 4 ++
superset/db_engine_specs/README.md | 38 -------------
superset/db_engine_specs/base.py | 1 -
superset/db_engine_specs/clickhouse.py | 1 -
superset/db_engine_specs/elasticsearch.py | 2 -
superset/db_engine_specs/kusto.py | 2 -
superset/db_engine_specs/lib.py | 1 -
superset/db_engine_specs/solr.py | 1 -
...17970b4400c_added_time_secondary_column_to_.py} | 20 +++----
superset/models/helpers.py | 6 +-
superset/sql_parse.py | 10 +++-
superset/views/datasource/schemas.py | 4 ++
superset/views/datasource/views.py | 2 +
tests/integration_tests/dashboard_utils.py | 7 ++-
tests/integration_tests/datasets/api_tests.py | 1 +
tests/integration_tests/datasets/commands_tests.py | 2 +
tests/integration_tests/datasource_tests.py | 58 ++++++++++++++++++++
tests/integration_tests/fixtures/importexport.py | 2 +
tests/unit_tests/datasets/commands/export_test.py | 2 +
tests/unit_tests/sql_parse_tests.py | 10 ++++
43 files changed, 281 insertions(+), 244 deletions(-)
delete mode 100644
superset-frontend/src/SqlLab/components/HighlightedSql/HighlightedSql.test.jsx
create mode 100644
superset-frontend/src/SqlLab/components/HighlightedSql/HighlightedSql.test.tsx
delete mode 100644
superset-frontend/src/SqlLab/components/QueryStateLabel/QueryStateLabel.test.jsx
copy superset-frontend/src/{components/Tags/Tag.test.tsx =>
SqlLab/components/QueryStateLabel/QueryStateLabel.test.tsx} (63%)
rename superset-frontend/src/SqlLab/components/QueryTable/{QueryTable.test.jsx
=> QueryTable.test.tsx} (55%)
copy
superset/migrations/versions/{2023-08-14_09-38_9f4a086c2676_add_normalize_columns_to_sqla_model.py
=> 2023-09-06_13-18_317970b4400c_added_time_secondary_column_to_.py} (79%)
mode change 100644 => 100755