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/07 23:22:39 UTC

(superset) branch reduce-innerHTML-use updated (34975bfb0f -> 98212dfb6c)

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

rusackas pushed a change to branch reduce-innerHTML-use
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 34975bfb0f touchups
     add 4d4b19e8ba fix(init-job): Fix envFrom for init job in helm chart (#26157)
     add c8e69e2f9d feat(docker): Add ARM builds (#26196)
     add bf5b18ccb1 chore: Lower giveup log level for retried functions to warning (#26188)
     add f68dd8293f fix(docker): Remove race condition when building image (#26205)
     add 39c6488463 fix: Includes 90° x-axis label rotation (#26207)
     add f30f685eb5 fix(sqllab): flaky json explore modal due to over-rendering (#26156)
     add 3a04ac7720 build(deps-dev): bump @types/node from 20.10.3 to 20.10.4 in /superset-websocket (#26204)
     add b4a35e624b chore: Adds note about numerical x-axis (#26208)
     add 88fb342887 fix(dashboard): use textContent to render hidden title (#26189)
     add d2adc858cb fix: support custom links in markdown (#26211)
     add 98212dfb6c Merge branch 'master' into reduce-innerHTML-use

No new revisions were added by this update.

Summary of changes:
 Dockerfile                                         |  14 +-
 UPDATING.md                                        |   1 +
 helm/superset/Chart.yaml                           |   2 +-
 helm/superset/README.md                            |   2 +-
 helm/superset/templates/init-job.yaml              |   2 +-
 scripts/docker_build_push.sh                       |  11 +-
 .../src/components/SafeMarkdown.tsx                |   1 +
 .../src/Bubble/controlPanel.tsx                    |   1 +
 .../src/MixedTimeseries/controlPanel.tsx           |   1 +
 .../src/Timeseries/Area/controlPanel.tsx           |   1 +
 .../src/Timeseries/Regular/Bar/controlPanel.tsx    |   1 +
 .../src/Timeseries/Regular/Line/controlPanel.tsx   |   1 +
 .../Timeseries/Regular/Scatter/controlPanel.tsx    |   1 +
 .../Timeseries/Regular/SmoothLine/controlPanel.tsx |   1 +
 .../src/Timeseries/Step/controlPanel.tsx           |   1 +
 .../SqlLab/components/QueryAutoRefresh/index.tsx   |   2 +-
 .../components/QueryHistory/QueryHistory.test.tsx  |   5 +-
 .../src/SqlLab/components/QueryHistory/index.tsx   |  29 +-
 .../src/SqlLab/components/QueryTable/index.tsx     |   3 +-
 .../SqlLab/components/ResultSet/ResultSet.test.tsx | 333 ++++++++++++++++-----
 .../src/SqlLab/components/ResultSet/index.tsx      |  52 +++-
 .../{SouthPane.test.tsx => Results.test.tsx}       |  87 +++---
 .../src/SqlLab/components/SouthPane/Results.tsx    | 106 +++++++
 .../SqlLab/components/SouthPane/SouthPane.test.tsx |  81 +++--
 .../src/SqlLab/components/SouthPane/index.tsx      | 174 ++++-------
 .../SqlLab/components/SqlEditor/SqlEditor.test.tsx |   7 +-
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |  17 +-
 .../src/SqlLab/reducers/sqlLab.test.js             |   5 +-
 .../src/components/DynamicEditableTitle/index.tsx  |   5 +-
 superset-websocket/package-lock.json               |  14 +-
 superset-websocket/package.json                    |   2 +-
 superset/utils/retries.py                          |   3 +
 32 files changed, 616 insertions(+), 350 deletions(-)
 copy superset-frontend/src/SqlLab/components/SouthPane/{SouthPane.test.tsx => Results.test.tsx} (60%)
 create mode 100644 superset-frontend/src/SqlLab/components/SouthPane/Results.tsx