This is an automated email from the ASF dual-hosted git repository.
vavila pushed a change to branch fix/remove-csrf-validation-embedded-downloads
in repository https://gitbox.apache.org/repos/asf/superset.git
omit cfe5ee855a fix(Embedded): Skip CSRF validation for dashboard download
endpoints
add bebcd3dcdd fix: corrects spelling of USE_ANALAGOUS_COLORS to be
USE_ANALOGOUS_COLORS (#31774)
add aae8fda11d docs: improve dev python environment install (#31787)
add b5e62753b7 refactor(date picker): Migrate Date Picker to Ant Design 5
(#31019)
add 66f1e1f714 refactor(bulk_select): Fix bulk select tagging issues for
users (#31631)
add 822441e0bd fix(modal): fixed z-index issue (#31815)
add 1a43654207 chore(tests): Changing the logic for an intermittent tag
test (#31820)
add 7c68ea5233 fix(Embedded): Skip CSRF validation for dashboard download
endpoints
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 (cfe5ee855a)
\
N -- N -- N
refs/heads/fix/remove-csrf-validation-embedded-downloads (7c68ea5233)
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:
UPDATING.md | 2 +-
docs/docs/contributing/development.mdx | 3 +-
superset-frontend/package-lock.json | 180 ++++-------
superset-frontend/package.json | 3 -
.../superset-ui-chart-controls/src/constants.ts | 2 +-
.../src/color/CategoricalColorScale.ts | 4 +-
.../superset-ui-core/src/utils/featureFlags.ts | 2 +-
.../test/color/CategoricalColorScale.test.ts | 2 +-
.../test/color/LabelsColorMapSingleton.test.ts | 6 +-
superset-frontend/src/GlobalStyles.tsx | 5 +-
.../src/components/AntdThemeProvider/index.tsx | 12 +-
.../components/DatePicker/DatePicker.stories.tsx | 38 ++-
.../DatePicker.test.tsx} | 11 +-
.../src/components/DatePicker/index.tsx | 10 +-
.../src/components/ListView/Filters/DateRange.tsx | 60 ++--
.../src/components/ListView/ListView.test.jsx | 15 +-
.../TimezoneSelector.DaylightSavingTime.test.tsx | 4 +-
.../TimezoneSelector/TimezoneSelector.test.tsx | 2 +-
.../src/components/TimezoneSelector/index.tsx | 38 +--
.../components/controls/ComparisonRangeLabel.tsx | 16 +-
.../DateFilterControl/components/CustomFrame.tsx | 334 ++++++++++-----------
.../DateFilterControl/tests/CustomFrame.test.tsx | 7 +-
.../controls/DateFilterControl/utils/constants.ts | 30 +-
.../controls/DateFilterControl/utils/dateParser.ts | 16 +-
.../components/controls/TimeOffsetControl.test.tsx | 6 +-
.../components/controls/TimeOffsetControl.tsx | 54 ++--
.../src/features/annotations/AnnotationModal.tsx | 34 ++-
.../src/features/tags/BulkTagModal.test.tsx | 114 +++++++
.../src/features/tags/BulkTagModal.tsx | 2 +-
superset-frontend/src/hooks/useLocale.ts | 83 +++++
.../src/pages/QueryHistoryList/index.tsx | 4 +-
superset-frontend/src/theme/index.ts | 5 +
superset-frontend/src/utils/common.js | 2 +-
superset-frontend/src/utils/dates.ts | 7 +
superset-frontend/webpack.config.js | 22 --
superset/commands/tag/create.py | 37 ++-
superset/config.py | 2 +-
tests/integration_tests/tags/api_tests.py | 13 +-
38 files changed, 669 insertions(+), 518 deletions(-)
copy superset-frontend/src/components/{Space/Space.test.tsx =>
DatePicker/DatePicker.test.tsx} (76%)
create mode 100644 superset-frontend/src/features/tags/BulkTagModal.test.tsx
create mode 100644 superset-frontend/src/hooks/useLocale.ts