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.8.0
in repository https://gitbox.apache.org/repos/asf/superset.git
omit a06a200873 build(deps-dev): bump @typescript-eslint/eslint-plugin
add 51c56dd2a0 fix(header navlinks): link navlinks to path prefix (#25495)
add 1991d240bf build(deps-dev): bump @babel/traverse from 7.16.0 to 7.23.2
in /superset-websocket (#25661)
add cb963585ad chore: sync lock files (#25667)
add f473d13d0d fix: improve upload ZIP file validation (#25658)
add 150e5c90f7 docs: make project-specific security page more prominent
(#25654)
add deef3b04eb feat(sqllab): ResultTable extension (#25423)
add 16cc089b19 fix: warning of nth-child (#23638)
add 32e37d8cda chore: Cleanup hostNamesConfig.js (#25543)
add a27a809f07 fix(tags): +n tags for listview (#25603)
add 8b32b2abd3 build(deps-dev): bump @types/jsonwebtoken from 9.0.3 to
9.0.4 in /superset-websocket (#25688)
add dc06fb8b11 chore: Adds 3.0.1 data to CHANGELOG.md (#25691)
add be82657940 fix(dremio): Fixes issue with Dremio SQL generation for
Charts with Series Limit (#25657)
add 26498fc099 chore: add latest-official docker tag (#25322)
add e7cdfeeb2c feat: Add week time grain for Elasticsearch datasets
(#25683)
add 4e94fc4cff fix(sqllab): reinstate "Force trino client async execution"
(#25680)
add 1d37f3a15b build(deps-dev): bump @types/node from 20.8.6 to 20.8.7 in
/superset-websocket (#25700)
new 2115296e8c 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 (a06a200873)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.8.0
(2115296e8c)
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:
.github/workflows/docker-release.yml | 3 +-
.github/workflows/docker.yml | 2 +-
CHANGELOG.md | 46 ++
.../docs/databases/installing-database-drivers.mdx | 6 +-
docs/docs/frequently-asked-questions.mdx | 2 +-
docs/docs/installation/configuring-superset.mdx | 4 +-
docs/docs/security/security.mdx | 3 +-
docs/docusaurus.config.js | 2 +-
requirements/base.txt | 14 +-
.../workflows => scripts}/docker_build_push.sh | 51 +-
scripts/tag_latest_release.sh | 140 ++++--
.../superset-ui-core/src/ui-overrides/types.ts | 10 +
.../src/ReactParallelCoordinates.jsx | 2 +-
.../legacy-preset-chart-nvd3/src/ReactNVD3.jsx | 2 +-
.../src/SqlLab/components/ResultSet/index.tsx | 9 +-
.../components/SaveDatasetActionButton/index.tsx | 2 +-
.../src/components/ButtonGroup/index.tsx | 6 +-
.../src/components/DropdownButton/index.tsx | 2 +-
.../components/DropdownSelectableIcon/index.tsx | 2 +-
.../FilterableTable/FilterableTable.test.tsx | 20 +-
.../src/components/FilterableTable/index.tsx | 136 +-----
.../FilterableTable/useCellContentParser.test.ts | 58 +++
.../FilterableTable/useCellContentParser.ts | 69 +++
.../src/components/FilterableTable/utils.test.tsx | 79 ++++
.../src/components/FilterableTable/utils.tsx | 59 +++
.../src/components/JsonModal/JsonModal.test.tsx | 60 +++
.../src/components/JsonModal/index.tsx | 112 +++++
superset-frontend/src/components/Tags/Tag.test.tsx | 21 +
superset-frontend/src/components/Tags/Tag.tsx | 62 +--
superset-frontend/src/components/Tags/TagsList.tsx | 6 +-
superset-frontend/src/features/home/Menu.test.tsx | 6 +-
superset-frontend/src/features/home/Menu.tsx | 30 +-
superset-frontend/src/types/TagType.ts | 1 +
superset-frontend/src/utils/hostNamesConfig.js | 7 +-
superset-websocket/package-lock.json | 522 ++++++++++++++-------
superset-websocket/package.json | 4 +-
superset/commands/importers/v1/utils.py | 2 +
superset/config.py | 10 +-
superset/db_engine_specs/base.py | 18 +
superset/db_engine_specs/dremio.py | 2 -
superset/db_engine_specs/elasticsearch.py | 1 +
superset/db_engine_specs/trino.py | 66 ++-
superset/sql_lab.py | 7 +-
superset/utils/core.py | 19 +
.../{ascend_tests.py => elasticsearch_tests.py} | 28 +-
tests/unit_tests/db_engine_specs/test_trino.py | 31 +-
.../unit_tests/fixtures/bash_mock.py | 48 +-
tests/unit_tests/scripts/docker_build_push_test.py | 44 ++
.../unit_tests/scripts/tag_latest_release_test.py | 49 ++
tests/unit_tests/sql_lab_test.py | 10 +-
tests/unit_tests/utils/test_core.py | 57 +++
51 files changed, 1474 insertions(+), 478 deletions(-)
rename {.github/workflows => scripts}/docker_build_push.sh (76%)
create mode 100644
superset-frontend/src/components/FilterableTable/useCellContentParser.test.ts
create mode 100644
superset-frontend/src/components/FilterableTable/useCellContentParser.ts
create mode 100644
superset-frontend/src/components/FilterableTable/utils.test.tsx
create mode 100644 superset-frontend/src/components/FilterableTable/utils.tsx
create mode 100644
superset-frontend/src/components/JsonModal/JsonModal.test.tsx
create mode 100644 superset-frontend/src/components/JsonModal/index.tsx
copy tests/integration_tests/db_engine_specs/{ascend_tests.py =>
elasticsearch_tests.py} (50%)
copy superset/migrations/versions/2017-09-19_15-09_d39b1e37131d_.py =>
tests/unit_tests/fixtures/bash_mock.py (53%)
create mode 100644 tests/unit_tests/scripts/docker_build_push_test.py
create mode 100644 tests/unit_tests/scripts/tag_latest_release_test.py