This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a change to branch setup-git-lfs
in repository https://gitbox.apache.org/repos/asf/superset.git
omit 9feb7c39c1 rm for docs
omit 761ab41a51 2nd try
omit b6081e4401 exclude mp4 files from license check
omit 7f66bfb2b1 chore: set up git lfs for larger files
add a1983e468b fix(frontend): allow "constructor" property in response
data (#25407)
add 4428bde024 docs: fix broken OS Dependencies link in CONTRIBUTING.md
(#27932)
add 662c1ed618 chore: Adds 4.0.0 data to CHANGELOG.md and UPDATING.md
(#27937)
add 34b1db219c feat(accessibility): add tabbing to chart menu in dashboard
(#26138)
add c5b7f7a08c fix: fix-zh-translation-2 (#27922)
add 5377b6cb2f fix: docker-release GHA fails with pathspec error (#27925)
add 996cced3d4 fix: Locale sent to frontend (#27926)
add 7c8e1bb46e fix(docs): CSP mods to re-enable Algolia search (#27942)
add e80d194b8f fix: improve change detection for GHAs (#27904)
add 32f15a32cf chore: set up git lfs for larger files
add b88f878aa8 exclude mp4 files from license check
add ea8f157801 2nd try
add 3908d1f3d7 rm for 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 (9feb7c39c1)
\
N -- N -- N refs/heads/setup-git-lfs (3908d1f3d7)
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/ISSUE_TEMPLATE/bug-report.yml | 3 +-
.github/actions/change-detector/action.yml | 31 +
.github/workflows/codeql-analysis.yml | 11 +-
.github/workflows/docker-release.yml | 18 +-
.github/workflows/docker.yml | 24 +-
.github/workflows/no-op.yml | 114 -
.github/workflows/superset-cli.yml | 18 +-
.github/workflows/superset-e2e.yml | 27 +-
.github/workflows/superset-frontend.yml | 36 +-
.../workflows/superset-python-integrationtest.yml | 64 +-
.github/workflows/superset-python-misc.yml | 28 +-
.github/workflows/superset-python-presto-hive.yml | 56 +-
.github/workflows/superset-python-unittest.yml | 26 +-
.github/workflows/superset-translations.yml | 21 +-
.pre-commit-config.yaml | 1 +
CHANGELOG.md | 1 +
CHANGELOG/4.0.0.md | 472 +
CONTRIBUTING.md | 2 +-
UPDATING.md | 13 +-
docs/static/.htaccess | 2 +-
scripts/change_detector.py | 156 +
scripts/ci_check_no_file_changes.sh | 68 -
.../cypress/e2e/dashboard/drilltodetail.test.ts | 18 +-
.../cypress/e2e/dashboard/editmode.test.ts | 26 +-
.../src/connection/callApi/parseResponse.ts | 6 +-
.../test/connection/callApi/parseResponse.test.ts | 12 +-
.../Chart/ChartContextMenu/ChartContextMenu.tsx | 4 +
.../DrillDetail/DrillDetailMenuItems.test.tsx | 28 +-
.../Chart/DrillDetail/DrillDetailMenuItems.tsx | 16 +-
.../src/components/Dropdown/Dropdown.test.tsx | 65 +
.../src/components/Dropdown/index.tsx | 22 +-
.../src/components/EditableTitle/index.tsx | 1 +
.../src/components/ErrorMessage/ErrorAlert.tsx | 31 +
.../src/components/FilterableTable/index.tsx | 7 +-
superset-frontend/src/components/Menu/index.tsx | 29 +
.../src/components/ModalTrigger/index.tsx | 3 +-
.../src/components/PageHeaderWithActions/index.tsx | 3 +
.../DashboardBuilder/DashboardContainer.tsx | 13 +
.../Header/HeaderActionsDropdown/index.jsx | 43 +-
.../SliceHeaderControls.test.tsx | 198 +-
.../components/SliceHeaderControls/index.tsx | 479 +-
.../components/URLShortLinkButton/index.tsx | 2 +-
.../components/menu/ShareMenuItems/index.tsx | 31 +-
.../src/dashboard/containers/DashboardPage.tsx | 4 +
superset-frontend/src/dashboard/styles.ts | 42 +
superset-frontend/src/dashboard/types.ts | 29 +
.../explore/components/DataTableControl/index.tsx | 14 +-
.../components/DataTableControls.tsx | 2 +-
superset-frontend/src/features/home/Menu.tsx | 8 +-
superset/__init__.py | 1 +
superset/translations/zh/LC_MESSAGES/messages.json | 658 +-
superset/translations/zh/LC_MESSAGES/messages.po | 40195 ++++++++++---------
superset/views/base.py | 17 +-
53 files changed, 22288 insertions(+), 20911 deletions(-)
create mode 100644 .github/actions/change-detector/action.yml
delete mode 100644 .github/workflows/no-op.yml
create mode 100644 CHANGELOG/4.0.0.md
create mode 100755 scripts/change_detector.py
delete mode 100755 scripts/ci_check_no_file_changes.sh
create mode 100644 superset-frontend/src/components/Dropdown/Dropdown.test.tsx