This is an automated email from the ASF dual-hosted git repository.

diegopucci pushed a change to branch geido/refactor/antd5-upgrade-menu
in repository https://gitbox.apache.org/repos/asf/superset.git


    from effeffce95 Merge
     add 740fbf72d7 feat: redesign labels (#31575)
     add bbdc195a3b chore: Skips integration tests affected by legacy charts 
removal (#31791)
     add 41ed37ab02 fix(oauth): Handle updates to the OAuth config (#31777)
     add 472ca9d8f6 refactor(dashboard): Migrate ResizableContainer to 
TypeScript and functional component (#31452)
     add 5e0de04eab chore: adding Antonio as a helm codeowner (#31797)
     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 28d7db33f8 Merge branch 'master' of https://github.com/apache/superset 
into geido/refactor/antd5-upgrade-menu

No new revisions were added by this update.

Summary of changes:
 .github/CODEOWNERS                                 |   4 +-
 UPDATING.md                                        |   2 +-
 docs/docs/contributing/development.mdx             |   3 +-
 .../cypress-base/cypress/e2e/explore/link.test.ts  |   7 +-
 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 +-
 .../stories/superset-ui-style/Theme.stories.tsx    | 101 ++++++-
 .../src/components/AlteredSliceTag/index.tsx       |  25 +-
 .../src/components/AntdThemeProvider/index.tsx     |  12 +-
 .../components/DatePicker/DatePicker.stories.tsx   |  38 ++-
 .../DatePicker.test.tsx}                           |  11 +-
 .../src/components/DatePicker/index.tsx            |  10 +-
 superset-frontend/src/components/Icons/Icon.tsx    |   4 +
 .../src/components/Label/Label.stories.tsx         |  88 ++++--
 .../src/components/Label/Label.test.tsx            |   4 +-
 superset-frontend/src/components/Label/index.tsx   |  75 +++--
 .../Label/reusable/DatasetTypeLabel.tsx}           |  36 ++-
 .../Label/reusable/PublishedLabel.tsx}             |  42 +--
 .../src/components/ListView/Filters/DateRange.tsx  |  60 ++--
 .../src/components/ListView/ListView.test.jsx      |  15 +-
 superset-frontend/src/components/Timer/index.tsx   |   3 +-
 .../TimezoneSelector.DaylightSavingTime.test.tsx   |   4 +-
 .../TimezoneSelector/TimezoneSelector.test.tsx     |   2 +-
 .../src/components/TimezoneSelector/index.tsx      |  38 +--
 .../src/dashboard/components/DashboardGrid.jsx     |   9 +-
 .../dashboard/components/DashboardGrid.test.jsx    |   6 +-
 .../dashboard/components/PublishedStatus/index.tsx |  32 +-
 .../components/gridComponents/DynamicComponent.tsx |   8 +-
 .../components/resizable/ResizableContainer.jsx    | 327 --------------------
 .../resizable/ResizableContainer.test.tsx          |  35 +--
 .../components/resizable/ResizableContainer.tsx    | 321 ++++++++++++++++++++
 .../{ResizableHandle.jsx => ResizableHandle.tsx}   |   6 +-
 .../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 ++-
 superset-frontend/src/hooks/useLocale.ts           |  83 +++++
 .../src/pages/DashboardList/index.tsx              |   6 +-
 superset-frontend/src/pages/DatasetList/index.tsx  |  22 +-
 .../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/database/update.py               |  29 +-
 superset/config.py                                 |   2 +-
 tests/integration_tests/async_events/api_tests.py  |   2 +
 tests/integration_tests/cache_tests.py             |   4 +
 tests/integration_tests/charts/api_tests.py        |   4 +-
 tests/integration_tests/charts/commands_tests.py   |   2 +
 tests/integration_tests/core_tests.py              |  10 +
 .../integration_tests/tasks/async_queries_tests.py |   1 +
 tests/integration_tests/utils_tests.py             |   1 +
 tests/integration_tests/viz_tests.py               | 170 -----------
 tests/unit_tests/commands/databases/update_test.py |  89 +++++-
 64 files changed, 1266 insertions(+), 1223 deletions(-)
 copy superset-frontend/src/components/{Space/Space.test.tsx => 
DatePicker/DatePicker.test.tsx} (76%)
 copy superset-frontend/src/{SqlLab/components/QueryStateLabel/index.tsx => 
components/Label/reusable/DatasetTypeLabel.tsx} (51%)
 copy 
superset-frontend/src/{explore/components/controls/MapViewControl/ExtentTag.tsx 
=> components/Label/reusable/PublishedLabel.tsx} (56%)
 delete mode 100644 
superset-frontend/src/dashboard/components/resizable/ResizableContainer.jsx
 create mode 100644 
superset-frontend/src/dashboard/components/resizable/ResizableContainer.tsx
 rename 
superset-frontend/src/dashboard/components/resizable/{ResizableHandle.jsx => 
ResizableHandle.tsx} (87%)
 create mode 100644 superset-frontend/src/hooks/useLocale.ts

Reply via email to