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

hugh pushed a change to branch ref-get-sqla-engine-2
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 95d079e196 change remaining bits
     add a88dfe24c7 fix: check that imports are ZIPs (#21875)
     add 40024064ae fix: BIGINT rendering regression in chartAction (#21937)
     add 059e53a39f fix: Crash caused by numpy.vectorize (#21936)
     add 203b289021 feat(bigquery): Custom message when Service Account doesnt 
have the correct Roles and Permissions (#21838)
     add edce579047 feat(dashboard): Move dashboard auto refresh intervals 
options to config (#21924)
     add 2d5ee4faaa docs(athena): add assuming IAM role with PyAthena (#21951)
     add 95b43238a0 fix(dashboard): Remove bar at bottom of dashboard edit 
sidebar (#21807)
     add 7e3e13321b fix: Most common flaky Cypress tests (#21941)
     add 06da7bf65c feat(helm): Support for flower and websocket containers 
(#21806)
     add fb8231b50c fix(sqllab): wiped out unsaved changes by delayed actions 
(#21877)
     add 9d25453425 fix(explore): Chart save modal displays error instead of 
failing silently (#21920)
     add 102909e004 fix: small bump to shillelagh (#21953)
     add 3c7a081281 fix(explore): Small changes in metadata bar copy and 
tooltip placement (#21952)
     add 7f563cf92d chore: Remove several React app console warnings and errors 
v2 (#21725)
     add 87c0d79602 Merge branch 'master' into ref-get-sqla-engine-2

No new revisions were added by this update.

Summary of changes:
 .github/workflows/superset-helm-lint.yml           |   1 +
 .markdownlint.json                                 |   4 +
 docs/docs/databases/athena.mdx                     |   8 +
 helm/superset/Chart.lock                           |   9 +
 helm/superset/Chart.yaml                           |  25 +-
 helm/superset/README.md                            | 249 ++++++++
 helm/superset/README.md.gotmpl                     |  40 ++
 helm/superset/templates/deployment-beat.yaml       |  42 +-
 ...deployment-beat.yaml => deployment-flower.yaml} | 104 +--
 helm/superset/templates/deployment-worker.yaml     |  50 +-
 helm/superset/templates/deployment-ws.yaml         | 138 ++++
 helm/superset/templates/deployment.yaml            |  66 +-
 helm/superset/templates/ingress.yaml               |  15 +-
 helm/superset/templates/init-job.yaml              |  12 +-
 ...{secret-superset-config.yaml => secret-ws.yaml} |  19 +-
 helm/superset/templates/service.yaml               |  58 ++
 helm/superset/values.schema.json                   | 700 ---------------------
 helm/superset/values.yaml                          | 433 ++++++++++---
 lintconf.yaml                                      |   8 +-
 setup.py                                           |   2 +-
 .../cypress/integration/chart_list/list.test.ts    |   3 +-
 .../cypress/integration/dashboard/editmode.test.ts |  16 +-
 .../integration/dashboard/nativeFilters.test.ts    |  14 +-
 .../integration/explore/advanced_analytics.test.ts |   9 +-
 .../cypress/integration/explore/chart.test.js      |   4 +-
 .../cypress/integration/explore/control.test.ts    |  16 +-
 .../cypress/integration/explore/utils.ts           |  17 +-
 .../cypress/integration/sqllab/tabs.test.ts        |   4 +-
 superset-frontend/package-lock.json                |  60 +-
 superset-frontend/package.json                     |   4 +-
 .../packages/superset-ui-core/package.json         |  15 +-
 .../src/connection/callApi/parseResponse.ts        |  14 +-
 .../superset-ui-core/src/connection/types.ts       |   8 +-
 .../test/connection/callApi/parseResponse.test.ts  |  15 +
 superset-frontend/src/SqlLab/actions/sqlLab.js     |  15 +-
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |  49 +-
 .../src/SqlLab/reducers/sqlLab.test.js             |  26 +-
 .../Chart/DrillDetail/DrillDetailPane.tsx          |   4 +-
 .../src/components/Chart/chartAction.js            |   2 +
 .../src/components/Chart/chartActions.test.js      |  38 ++
 .../src/components/ListView/Filters/index.tsx      |   7 +-
 superset-frontend/src/components/ListView/types.ts |   1 +
 .../src/components/ListViewCard/index.tsx          |  20 +-
 .../src/components/MetadataBar/MetadataBar.tsx     |  17 +-
 .../BuilderComponentPane.test.tsx                  |   2 +-
 .../components/BuilderComponentPane/index.tsx      | 158 ++---
 .../src/dashboard/components/Dashboard.jsx         |   2 +-
 .../DashboardBuilder/DashboardBuilder.tsx          |   7 +-
 .../src/dashboard/components/DashboardGrid.jsx     |   4 +-
 .../dashboard/components/Header/Header.test.tsx    |   7 +-
 .../HeaderActionsDropdown.test.tsx                 |   7 +-
 .../Header/HeaderActionsDropdown/index.jsx         |  26 +-
 .../src/dashboard/components/Header/index.jsx      |  23 +-
 .../dashboard/components/PublishedStatus/index.jsx |   6 +-
 .../components/RefreshIntervalModal.test.tsx       |  17 +-
 .../dashboard/components/RefreshIntervalModal.tsx  |  29 +-
 .../src/dashboard/components/SliceAdder.jsx        |  59 +-
 .../src/dashboard/components/SliceAdder.test.jsx   |  12 +-
 .../src/dashboard/components/SliceHeader/index.tsx |   1 -
 .../src/dashboard/components/dnd/DragDroppable.jsx |   4 +-
 .../dashboard/components/gridComponents/Chart.jsx  |   6 +-
 .../dashboard/components/gridComponents/Tabs.jsx   |   6 +-
 .../dashboard/stylesheets/builder-sidepane.less    | 132 ----
 .../src/dashboard/stylesheets/index.less           |   1 -
 .../src/dashboard/util/propShapes.jsx              |  14 +-
 superset-frontend/src/explore/ExplorePage.tsx      |   9 +-
 .../src/explore/actions/exploreActions.ts          |   6 +
 .../src/explore/actions/hydrateExplore.test.ts     |   4 +
 .../src/explore/actions/hydrateExplore.ts          |  10 +-
 .../src/explore/actions/saveModalActions.js        |   6 +
 .../ExploreChartHeader/ExploreChartHeader.test.tsx |  42 +-
 .../components/ExploreChartHeader/index.jsx        |  46 +-
 .../components/ExploreViewContainer/index.jsx      |  49 +-
 .../src/explore/components/SaveModal.tsx           | 175 +++---
 .../controls/MetricControl/savedMetricType.js      |   4 +-
 .../explore/components/controls/SelectControl.jsx  |   2 +-
 .../src/explore/reducers/exploreReducer.js         |   6 +
 .../src/explore/reducers/saveModalReducer.js       |   3 +
 superset-frontend/src/explore/types.ts             |   3 +
 .../src/views/CRUD/alert/AlertList.tsx             |   4 +
 .../CRUD/annotationlayers/AnnotationLayersList.tsx |   2 +
 .../src/views/CRUD/chart/ChartList.tsx             |   8 +
 .../views/CRUD/csstemplates/CssTemplatesList.tsx   |   2 +
 .../src/views/CRUD/dashboard/DashboardList.tsx     |   6 +
 .../src/views/CRUD/data/database/DatabaseList.tsx  |   3 +
 .../src/views/CRUD/data/dataset/DatasetList.tsx    |   6 +
 .../src/views/CRUD/data/query/QueryList.tsx        |   5 +
 .../views/CRUD/data/savedquery/SavedQueryList.tsx  |   3 +
 superset/charts/api.py                             |   9 +-
 superset/config.py                                 |  13 +
 superset/databases/api.py                          |  15 +-
 superset/databases/commands/create.py              |   8 +
 superset/databases/commands/test_connection.py     |  68 +-
 superset/db_engine_specs/bigquery.py               |  13 +-
 superset/queries/saved_queries/api.py              |   9 +-
 superset/result_set.py                             |   9 +-
 superset/views/base.py                             |   1 +
 tests/integration_tests/databases/api_tests.py     |  54 +-
 .../integration_tests/databases/commands_tests.py  |   5 +-
 .../db_engine_specs/bigquery_tests.py              |   4 +-
 tests/unit_tests/databases/api_test.py             |  34 +
 tests/unit_tests/importexport/api_test.py          |   3 +-
 102 files changed, 1901 insertions(+), 1632 deletions(-)
 create mode 100644 .markdownlint.json
 create mode 100644 helm/superset/Chart.lock
 create mode 100644 helm/superset/README.md
 create mode 100644 helm/superset/README.md.gotmpl
 copy helm/superset/templates/{deployment-beat.yaml => deployment-flower.yaml} 
(51%)
 create mode 100644 helm/superset/templates/deployment-ws.yaml
 copy helm/superset/templates/{secret-superset-config.yaml => secret-ws.yaml} 
(70%)
 delete mode 100644 helm/superset/values.schema.json
 delete mode 100644 
superset-frontend/src/dashboard/stylesheets/builder-sidepane.less

Reply via email to