You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/12/27 03:07:34 UTC

(superset) branch map-notebook-touchups updated (570770abf8 -> 10986b27a8)

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

rusackas pushed a change to branch map-notebook-touchups
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 570770abf8 npm tak to update maps
     add eb4b41233b chore(cleanup): removing redundant rendering logic in telemetry pixel (#26293)
     add 6a3db35bb2 build(deps-dev): bump eslint from 8.55.0 to 8.56.0 in /superset-websocket (#26294)
     add 84ac72f550 feat(releasing): adding SHA512 and RSA signature validation script to verify releases (#26278)
     add 04f1c356a5 fix(typings): model_id is a multiple option (#25967)
     add 596f5569be chore(sqlalchemy): import from correct path (#26301)
     add 9111eb9f30 chore: update changelog for 2.1.3 (#26287)
     add 90a3d685a0 build(deps-dev): bump @types/node from 20.10.4 to 20.10.5 in /superset-websocket (#26305)
     add 8c32c6da16 docs: update CVEs fixed on 3.0.2 and 2.1.3 (#26308)
     add eb65cea971 chore: Disables minor ticks by default (#26310)
     add 3f9183a162 chore: Use WEBDRIVER_OPTION_ARGS with Playwright (#26315)
     add 9d3796828c fix(sql lab): Use quote_schema instead of quote method to format schema name (#26281)
     add 60abf7e2af fix(redshift): convert_dttm method for redshift dataset and tests (#26283)
     add 5e85f5c81f chore: Add downloadAsImage types, change filter selector (#26297)
     add 5bd7fd7990 chore: Adds a tooltip for the alert's SQL input (#26317)
     add 39ac45351b fix(dashboard): Don't switch to first tab when directPathToChild changes (#26340)
     add 5400d30b20 feat(echarts-funnel): Implement % calculation type (#26290)
     add 3391e29093 fix(tagging): adding tags containing a “:” to dashboards (#26324)
     add b6d433de32 fix(accessibility): Enable tabbing on sort header of table chart (#26326)
     add 5f5a656835 fix(logging): Add logging of change_dashboard_filter event for native dashboard filters (#26333)
     add fe9fbadade chore(Embedded): Avoid creating a filter key for guest users (#26312)
     add 863f8bbbcd fix(chart): Set max row limit + removed the option to use an empty row limit value (#26151)
     add 10986b27a8 Merge branch 'master' into map-notebook-touchups

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md                                       |  18 ++++
 RELEASING/README.md                                |  15 +++
 RELEASING/validate_this_release.sh                 |  54 +++++++++++
 RELEASING/verify_release.py                        | 101 +++++++++++++++++++++
 docs/docs/security/cves.mdx                        |  17 +++-
 superset-frontend/package-lock.json                |  25 +++--
 superset-frontend/package.json                     |   2 +
 .../superset-ui-chart-controls/src/constants.ts    |   2 +
 .../src/shared-controls/sharedControls.tsx         |  10 +-
 .../superset-ui-core/src/validator/index.ts        |   1 +
 .../src/validator/validateMaxValue.ts              |   8 ++
 ...dateNumber.test.ts => validateMaxValue.test.ts} |  31 +++----
 .../src/Funnel/controlPanel.tsx                    |  31 ++++++-
 .../src/Funnel/transformProps.ts                   |  51 +++++++++--
 .../plugin-chart-echarts/src/Funnel/types.ts       |   7 ++
 .../src/MixedTimeseries/controlPanel.tsx           |   2 +
 .../src/MixedTimeseries/transformProps.ts          |   6 +-
 .../src/MixedTimeseries/types.ts                   |   1 +
 .../src/Timeseries/Area/controlPanel.tsx           |   2 +
 .../src/Timeseries/Regular/Bar/controlPanel.tsx    |   2 +
 .../src/Timeseries/Regular/Line/controlPanel.tsx   |   2 +
 .../Timeseries/Regular/Scatter/controlPanel.tsx    |   2 +
 .../Timeseries/Regular/SmoothLine/controlPanel.tsx |   2 +
 .../src/Timeseries/Step/controlPanel.tsx           |   2 +
 .../src/Timeseries/transformProps.ts               |   4 +-
 .../plugin-chart-echarts/src/Timeseries/types.ts   |   1 +
 .../plugins/plugin-chart-echarts/src/controls.tsx  |  11 +++
 .../test/Funnel/transformProps.test.ts             |  32 ++++++-
 .../plugins/plugin-chart-table/src/TableChart.tsx  |  13 +++
 .../src/components/TelemetryPixel/index.tsx        |   3 +-
 .../DashboardBuilder/DashboardContainer.tsx        |  13 ++-
 .../dashboard/components/DashboardBuilder/utils.ts |  13 ---
 .../components/nativeFilters/FilterBar/index.tsx   |  13 ++-
 .../src/features/alerts/AlertReportModal.tsx       |  14 ++-
 superset-frontend/src/pages/Tags/index.tsx         |   2 +-
 superset-frontend/src/types/dom-to-image-more.d.ts |  18 +---
 superset-frontend/src/utils/downloadAsImage.ts     |   7 +-
 superset-websocket/package-lock.json               |  44 ++++-----
 superset-websocket/package.json                    |   4 +-
 superset/cli/thumbnails.py                         |   8 +-
 superset/commands/dataset/importers/v1/utils.py    |   2 +-
 superset/commands/importers/v1/examples.py         |   2 +-
 superset/daos/tag.py                               |  14 +--
 superset/db_engine_specs/base.py                   |   3 +-
 superset/db_engine_specs/postgres.py               |  26 +++---
 superset/db_engine_specs/redshift.py               |   6 +-
 ...f00fe8_add_percent_calculation_type_funnel_.py} |  44 +++++----
 superset/models/helpers.py                         |   2 +-
 superset/tags/models.py                            |   3 +-
 superset/utils/webdriver.py                        |   3 +-
 superset/views/base_schemas.py                     |   2 +-
 superset/views/datasource/views.py                 |   3 +-
 superset/views/utils.py                            |   2 +-
 tests/integration_tests/tags/dao_tests.py          |  28 +++---
 .../{test_hana.py => test_redshift.py}             |   8 +-
 55 files changed, 552 insertions(+), 190 deletions(-)
 create mode 100755 RELEASING/validate_this_release.sh
 create mode 100755 RELEASING/verify_release.py
 create mode 100644 superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts
 copy superset-frontend/packages/superset-ui-core/test/validator/{validateNumber.test.ts => validateMaxValue.test.ts} (54%)
 copy superset/migrations/versions/{2017-12-08_08-19_67a6ac9b727b_update_spatial_params.py => 2023-12-15_17-58_06dd9ff00fe8_add_percent_calculation_type_funnel_.py} (57%)
 copy tests/unit_tests/db_engine_specs/{test_hana.py => test_redshift.py} (82%)