You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by mi...@apache.org on 2023/06/08 13:13:49 UTC

[superset] branch master updated (e13b80aff1 -> 522eb97b65)

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

michaelsmolina pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


    from e13b80aff1 fix(sql-lab): SQL Lab commit connection even if no CTA query is made (#19808)
     add 522eb97b65 feat: Migrates Pivot Table v1 to v2 (#23712)

No new revisions were added by this update.

Summary of changes:
 UPDATING.md                                        |     1 +
 .../e2e/explore/visualizations/pivot_table.test.js |    33 +-
 superset-frontend/package-lock.json                |    28 -
 superset-frontend/package.json                     |     1 -
 .../packages/superset-ui-demo/package.json         |    35 +-
 .../legacy-plugin-chart-pivot-table/Stories.tsx    |   159 -
 .../legacy-plugin-chart-pivot-table/CHANGELOG.md   |    43 -
 .../legacy-plugin-chart-pivot-table/README.md      |    52 -
 .../legacy-plugin-chart-pivot-table/package.json   |    40 -
 .../src/PivotTable.js                              |   154 -
 .../src/ReactPivotTable.js                         |    22 -
 .../src/controlPanel.ts                            |   148 -
 .../src/images/example.jpg                         |   Bin 59676 -> 0 bytes
 .../src/images/thumbnail.png                       |   Bin 43066 -> 0 bytes
 .../src/images/thumbnailLarge.png                  |   Bin 127194 -> 0 bytes
 .../legacy-plugin-chart-pivot-table/src/index.js   |    47 -
 .../src/transformProps.js                          |    37 -
 .../src/utils/fixTableHeight.js                    |    33 -
 .../src/utils/formatCells.ts                       |    71 -
 .../test/PivotTable.test.ts                        |    91 -
 .../legacy-plugin-chart-pivot-table/tsconfig.json  |    25 -
 .../src/components/ReportModal/index.tsx           |     1 -
 .../useExploreAdditionalActionsMenu/index.jsx      |     2 +-
 .../src/features/alerts/AlertReportModal.tsx       |     1 -
 .../src/visualizations/presets/MainPreset.js       |     2 -
 superset/charts/post_processing.py                 |    37 -
 superset/examples/birth_names.py                   |     8 +-
 .../migrations/shared/migrate_viz/processors.py    |    33 +
 ...2_9ba2ce3086e5_migrate_pivot_table_v1_to_v2.py} |    17 +-
 superset/translations/de/LC_MESSAGES/messages.json |    96 +-
 superset/translations/de/LC_MESSAGES/messages.po   |  4358 ++++---
 superset/translations/en/LC_MESSAGES/messages.json |   112 +-
 superset/translations/en/LC_MESSAGES/messages.po   |  2886 +++--
 superset/translations/es/LC_MESSAGES/messages.json |    82 +-
 superset/translations/es/LC_MESSAGES/messages.po   |  2927 +++--
 superset/translations/fr/LC_MESSAGES/messages.json |    83 +-
 superset/translations/fr/LC_MESSAGES/messages.po   |  2930 +++--
 superset/translations/it/LC_MESSAGES/messages.json |    83 +-
 superset/translations/it/LC_MESSAGES/messages.po   |  2915 +++--
 superset/translations/ja/LC_MESSAGES/messages.json |    82 +-
 superset/translations/ja/LC_MESSAGES/messages.po   |  2920 +++--
 superset/translations/ko/LC_MESSAGES/messages.json |    86 +-
 superset/translations/ko/LC_MESSAGES/messages.po   |  2915 +++--
 superset/translations/messages.pot                 |  2883 +++--
 superset/translations/nl/LC_MESSAGES/messages.json |    89 +-
 superset/translations/nl/LC_MESSAGES/messages.po   |  2923 +++--
 superset/translations/pt/LC_MESSAGES/messages.json |    84 +-
 superset/translations/pt/LC_MESSAGES/messages.po   |  2917 +++--
 .../translations/pt_BR/LC_MESSAGES/messages.json   |  1617 +--
 .../translations/pt_BR/LC_MESSAGES/messages.po     | 12947 ++++++++++++++-----
 superset/translations/ru/LC_MESSAGES/messages.json |    77 +-
 superset/translations/ru/LC_MESSAGES/messages.po   |  2945 +++--
 superset/translations/sk/LC_MESSAGES/messages.json |   106 +-
 superset/translations/sk/LC_MESSAGES/messages.po   |  2895 +++--
 superset/translations/sl/LC_MESSAGES/messages.json |    76 +-
 superset/translations/sl/LC_MESSAGES/messages.po   |  2949 +++--
 superset/translations/zh/LC_MESSAGES/messages.json |    64 +-
 superset/translations/zh/LC_MESSAGES/messages.po   |  2946 +++--
 superset/viz.py                                    |   151 +-
 tests/integration_tests/viz_tests.py               |    72 +-
 tests/unit_tests/charts/test_post_processing.py    |     2 +-
 tests/unit_tests/conftest.py                       |    40 +-
 .../migrations/viz/pivot_table_v1_v2_test.py       |   134 +
 63 files changed, 34090 insertions(+), 25423 deletions(-)
 delete mode 100644 superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/CHANGELOG.md
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/README.md
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/example.jpg
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-pivot-table/tsconfig.json
 copy superset/migrations/versions/{2016-03-22_23-25_d2424a248d63_.py => 2023-06-08_09-02_9ba2ce3086e5_migrate_pivot_table_v1_to_v2.py} (73%)
 create mode 100644 tests/unit_tests/migrations/viz/pivot_table_v1_v2_test.py