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/01/05 21:08:46 UTC

[superset] branch fix-dataset-modal-ssh-tunnel updated (722bd2d17f -> d5f34cba56)

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

hugh pushed a change to branch fix-dataset-modal-ssh-tunnel
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 722bd2d17f 1 more test
     add 01671b9d1b fix(helm): Fixing up chart and linting (#22590)
     add 6e4d6e599b chore: adding missing examples in the gallery for several chart types (#22597)
     add b3529479ab feat(chart): Added Papua New Guinea to countries map (#22589)
     add 037deb9a1d feat(rbac): add customizable related filters (#22526)
     add 84177cbc75 fix: Talisman configuration (#22591)
     add d6bce09ac3 feat(helm): add deploymentLabels variable (#22541)
     add 3761694d72 fix: dashboard get by id or slug access filter (#22358)
     add db201804ae fix: adding extraConfig to celery beat deployment (#22586)
     add d5f34cba56 Merge branch 'master' of https://github.com/apache/superset into fix-dataset-modal-ssh-tunnel

No new revisions were added by this update.

Summary of changes:
 .github/actions/chart-testing-action               |   2 +-
 helm/superset/Chart.lock                           |   8 +-
 helm/superset/Chart.yaml                           |   6 +-
 helm/superset/README.md                            |  12 ++-
 helm/superset/README.md.gotmpl                     |   4 +
 helm/superset/templates/deployment-beat.yaml       |  10 +++
 helm/superset/templates/deployment-worker.yaml     |   3 +
 helm/superset/templates/deployment.yaml            |   3 +
 helm/superset/values.yaml                          |   8 ++
 .../src/countries.ts                               |   2 +
 .../src/countries/papua new guinea.geojson         |  28 +++++++
 .../src/images/example.jpg                         | Bin 0 -> 85099 bytes
 .../legacy-plugin-chart-event-flow/src/index.ts    |   2 +
 .../src/types/external.d.ts                        |   1 +
 .../src/images/example1.jpg                        | Bin 0 -> 116296 bytes
 .../src/images/example2.jpg                        | Bin 0 -> 50161 bytes
 .../plugins/legacy-plugin-chart-rose/src/index.js  |   3 +
 .../src/DualLine/images/example.jpg                | Bin 0 -> 121614 bytes
 .../legacy-preset-chart-nvd3/src/DualLine/index.js |   2 +
 .../src/LineMulti/images/example.jpg               | Bin 0 -> 223147 bytes
 .../src/LineMulti/index.js                         |   2 +
 .../src/Funnel/images/example.jpg                  | Bin 0 -> 43090 bytes
 .../plugin-chart-echarts/src/Funnel/index.ts       |   2 +
 .../src/Gauge/images/example1.jpg                  | Bin 0 -> 56912 bytes
 .../src/Gauge/images/example2.jpg                  | Bin 0 -> 37092 bytes
 .../plugin-chart-echarts/src/Gauge/index.ts        |   3 +
 .../src/Graph/images/example.jpg                   | Bin 0 -> 57705 bytes
 .../plugin-chart-echarts/src/Graph/index.ts        |   2 +
 .../src/Radar/images/example1.jpg                  | Bin 0 -> 68385 bytes
 .../src/Radar/images/example2.jpg                  | Bin 0 -> 66606 bytes
 .../plugin-chart-echarts/src/Radar/index.ts        |   3 +
 .../src/images/example1.jpg                        | Bin 0 -> 97899 bytes
 .../src/images/example2.jpg                        | Bin 0 -> 294384 bytes
 .../plugin-chart-handlebars/src/plugin/index.ts    |   3 +
 .../plugin-chart-handlebars/types/external.d.ts    |   2 +-
 .../FilterBox/FilterBoxChartPlugin.js              |   3 +
 .../visualizations/FilterBox/images/example1.jpg   | Bin 0 -> 10921 bytes
 .../visualizations/FilterBox/images/example2.jpg   | Bin 0 -> 16969 bytes
 superset/config.py                                 |  28 +++++++
 superset/dashboards/api.py                         |   8 +-
 superset/dashboards/dao.py                         |  23 ++++--
 superset/initialization/__init__.py                |  28 ++++---
 superset/views/filters.py                          |  30 +++++++-
 tests/integration_tests/base_api_tests.py          |  20 +++++
 tests/integration_tests/dashboards/api_tests.py    |  85 +++++++++++++++++++--
 tests/integration_tests/dashboards/dao_tests.py    |  67 ++++++++--------
 .../dashboards/filter_state/api_tests.py           |  47 +++---------
 .../dashboards/permalink/api_tests.py              |   9 +--
 48 files changed, 347 insertions(+), 112 deletions(-)
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/papua new guinea.geojson
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-event-flow/src/images/example.jpg
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-rose/src/images/example1.jpg
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-rose/src/images/example2.jpg
 create mode 100644 superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/images/example.jpg
 create mode 100644 superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/images/example.jpg
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Funnel/images/example.jpg
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Gauge/images/example1.jpg
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Gauge/images/example2.jpg
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Graph/images/example.jpg
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Radar/images/example1.jpg
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Radar/images/example2.jpg
 create mode 100644 superset-frontend/plugins/plugin-chart-handlebars/src/images/example1.jpg
 create mode 100644 superset-frontend/plugins/plugin-chart-handlebars/src/images/example2.jpg
 create mode 100644 superset-frontend/src/visualizations/FilterBox/images/example1.jpg
 create mode 100644 superset-frontend/src/visualizations/FilterBox/images/example2.jpg