You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2023/03/13 15:35:21 UTC

[superset] branch update-pre-commit updated (6b6bafbd23 -> 45a0d2a18b)

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

hugh pushed a change to branch update-pre-commit
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 6b6bafbd23 first rd of fixes
     add b7028445c6 linting
     add 989fe27a0f chore: log different selenium timeout errors differently (#23290)
     add 33b758d716 docs: improve API v1 migration documentation (#23298)
     add 2cf75cc0ce docs(alerts and reports): Update ExecutorType class (#23323)
     add 6311b40329 build(deps-dev): bump @typescript-eslint/parser from 5.53.0 to 5.54.1 in /superset-websocket (#23294)
     add c2b282ac71 feat(dashboard): Refactor FiltersBadge (#23286)
     add a8d5cb89a8 chore: use util test env for init check (#23325)
     add a591130e0b fix(trino): normalize non-iso timestamps (#23339)
     add 78ee60e227 fix(dashboard): Cross filters with time shifted series (#23347)
     add 45a0d2a18b Merge branch 'master' of https://github.com/apache/superset into update-pre-commit

No new revisions were added by this update.

Summary of changes:
 .github/workflows/superset-python-unittest.yml     |   2 +
 .pre-commit-config.yaml                            |   1 +
 RELEASING/changelog.py                             |   2 +-
 UPDATING.md                                        |  11 ++
 docs/docs/installation/alerts-reports.mdx          |  14 +-
 .../integration/dashboard/nativeFilters.test.ts    |   7 +-
 .../superset-ui-core/src/time-format/index.ts      |   2 +
 .../src/time-format/utils/normalizeTimestamp.ts}   |  14 +-
 .../time-format/utils/normalizeTimestamp.test.ts   |  43 +++++
 .../src/Timeseries/transformProps.ts               |  15 +-
 .../plugin-chart-echarts/src/Timeseries/types.ts   |   1 +
 .../test/Timeseries/transformProps.test.ts         |  31 +++
 .../src/utils/DateWithFormatter.ts                 |  21 +-
 .../DetailsPanel/DetailsPanel.test.tsx             |  80 +-------
 .../components/FiltersBadge/DetailsPanel/index.tsx | 211 +++++----------------
 .../FiltersBadge/FilterIndicator/index.tsx         |  49 ++---
 .../components/FiltersBadge/FiltersBadge.test.tsx  |  63 ------
 .../dashboard/components/FiltersBadge/Styles.tsx   | 106 ++++-------
 .../dashboard/components/FiltersBadge/index.tsx    |  47 +----
 .../src/dashboard/components/SliceHeader/index.tsx |  30 +--
 .../FilterBar/CrossFilters/Vertical.tsx            |  10 +-
 .../FilterBar/CrossFilters/selectors.ts            |  46 +++--
 .../FilterBar/FilterControls/FilterControls.tsx    |  10 +-
 .../nativeFilters/FilterBar/Horizontal.tsx         |   9 +-
 .../components/nativeFilters/selectors.ts          |  93 +++++----
 superset-websocket/package-lock.json               | 158 +++++++++++++--
 superset-websocket/package.json                    |   2 +-
 superset/config.py                                 |  12 +-
 superset/db_engine_specs/hive.py                   |   2 +-
 superset/initialization/__init__.py                |   5 +-
 superset/utils/core.py                             |   2 +-
 superset/utils/machine_auth.py                     |   2 +-
 superset/utils/webdriver.py                        |  54 ++++--
 superset/views/base.py                             |  13 +-
 superset/views/core.py                             |  49 ++---
 35 files changed, 601 insertions(+), 616 deletions(-)
 copy superset-frontend/{plugins/plugin-chart-echarts/src/utils/convertInteger.ts => packages/superset-ui-core/src/time-format/utils/normalizeTimestamp.ts} (77%)
 create mode 100644 superset-frontend/packages/superset-ui-core/test/time-format/utils/normalizeTimestamp.test.ts