You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2023/08/18 16:14:36 UTC

[superset] branch rename_get_iterable updated (2a8643982c -> f87b6404a3)

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

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


    from 2a8643982c Small fixes
     add f94dc49fd0 fix(snowflake): opt-in denormalization of column names (#24982)
     add 2b63577046 fix: Revert "fix(chart): Time Series set showMaxLabel as null for time xAxis (#20627) (#24995)
     add 48fdc8103a build(deps-dev): bump prettier from 3.0.1 to 3.0.2 in /superset-websocket (#24998)
     add bc1c5c2f84 fix: update permalink schema (#24970)
     add 2eb0a255d9 chore: Removes src/modules top folder (#25005)
     add 10abb68288 feat(sqllab): Add /sqllab endpoint to the v1 api (#24983)
     add 269c99293f chore: isolate examples database by default (#25003)
     add 712e1f760c feat: Moves Profile to Single Page App (SPA) (#25001)
     add 35eb66a322 fix: Date column in Heatmap is displayed as unix timestamp (#25009)
     add 62cbc0c95c fix: Downgrades Prophet to 1.1.1 and Holidays to 0.23 (#25017)
     add 4a59a265fb chore: Update DAOs to use singular deletion method instead of bulk (#24894)
     add 258e56285a fix: Don't let users see dashboards only because it's favorited (#24991)
     add b428b06217 chore: Removes Saved Query old code (#25007)
     add f87b6404a3 Merge branch 'master' into rename_get_iterable

No new revisions were added by this update.

Summary of changes:
 UPDATING.md                                        |    2 +
 docker-compose.yml                                 |    1 +
 docker/.env                                        |    6 +
 docker/docker-entrypoint-initdb.d/examples-init.sh |   15 +
 docker/pythonpath_dev/superset_config.py           |   24 +-
 docs/static/resources/openapi.json                 | 9522 ++++++++++++++------
 requirements/base.txt                              |   10 +-
 requirements/testing.txt                           |    8 +-
 setup.py                                           |    4 +-
 .../legacy-plugin-chart-heatmap/src/Heatmap.js     |    9 +-
 .../src/controlPanel.tsx                           |   11 +
 .../src/transformProps.js                          |   22 +-
 .../src/Timeseries/transformProps.ts               |   15 +-
 .../src/components/Chart/chartAction.js            |    4 +-
 .../src/components/Datasource/DatasourceEditor.jsx |   10 +
 .../src/components/Datasource/DatasourceModal.tsx  |    1 +
 .../AnnotationLayerControl/AnnotationLayer.jsx     |   11 +-
 .../AnnotationLayer.test.tsx                       |    2 +-
 .../AnnotationLayerControl}/AnnotationTypes.js     |    0
 superset-frontend/src/features/datasets/types.ts   |    1 +
 superset-frontend/src/features/home/RightMenu.tsx  |    2 +-
 .../profile}/CreatedContent.test.tsx               |    2 +-
 .../profile}/CreatedContent.tsx                    |    0
 .../profile}/Favorites.test.tsx                    |    2 +-
 .../components => features/profile}/Favorites.tsx  |    2 +-
 .../profile}/RecentActivity.test.tsx               |    2 +-
 .../profile}/RecentActivity.tsx                    |    7 +-
 .../profile}/Security.test.tsx                     |    2 +-
 .../components => features/profile}/Security.tsx   |    0
 .../profile}/UserInfo.test.tsx                     |    2 +-
 .../components => features/profile}/UserInfo.tsx   |    0
 .../components => features/profile}/fixtures.tsx   |    0
 .../src/{ => features}/profile/types.ts            |    0
 .../Profile/Profile.test.tsx}                      |   13 +-
 .../components/App.tsx => pages/Profile/index.tsx} |   10 +-
 superset-frontend/src/profile/App.tsx              |   58 -
 superset-frontend/src/profile/index.tsx            |   23 -
 superset-frontend/src/showSavedQuery/index.jsx     |   73 -
 superset-frontend/src/showSavedQuery/utils.js      |   44 -
 .../src/showSavedQuery/utils.test.jsx              |   64 -
 superset-frontend/src/views/routes.tsx             |    8 +
 superset-frontend/webpack.config.js                |    2 -
 superset-websocket/package-lock.json               |   14 +-
 superset-websocket/package.json                    |    2 +-
 superset/config.py                                 |    2 +-
 superset/connectors/sqla/models.py                 |    3 +
 superset/connectors/sqla/utils.py                  |    6 +-
 superset/connectors/sqla/views.py                  |    5 +
 superset/daos/chart.py                             |   20 +-
 superset/daos/dashboard.py                         |   19 +-
 superset/daos/dataset.py                           |   41 +-
 superset/dashboards/filters.py                     |   13 +-
 superset/dashboards/schemas.py                     |    1 +
 superset/datasets/api.py                           |    2 +
 superset/datasets/commands/duplicate.py            |    1 +
 superset/datasets/schemas.py                       |    4 +
 superset/explore/permalink/api.py                  |    2 +-
 superset/initialization/__init__.py                |    4 +-
 ...86c2676_add_normalize_columns_to_sqla_model.py} |   42 +-
 superset/security/manager.py                       |    1 +
 superset/sqllab/api.py                             |   51 +-
 superset/sqllab/schemas.py                         |   49 +
 superset/utils/database.py                         |    6 +-
 superset/views/base.py                             |    2 +-
 superset/views/core.py                             |   20 +-
 superset/views/datasource/schemas.py               |    6 +-
 superset/views/datasource/views.py                 |    3 +
 superset/views/{annotations.py => profile.py}      |   22 +-
 superset/views/sql_lab/views.py                    |   99 +-
 tests/integration_tests/core_tests.py              |  186 +-
 tests/integration_tests/dashboard_tests.py         |   39 -
 tests/integration_tests/dashboard_utils.py         |    2 +-
 .../dashboards/security/security_dataset_tests.py  |   43 -
 tests/integration_tests/datasets/api_tests.py      |   40 +-
 tests/integration_tests/datasets/commands_tests.py |    2 +
 tests/integration_tests/datasource_tests.py        |    5 +
 tests/integration_tests/fixtures/importexport.py   |    2 +
 tests/integration_tests/import_export_tests.py     |    5 +-
 tests/integration_tests/profile_tests.py           |  164 +
 tests/integration_tests/sql_lab/api_tests.py       |   85 +
 tests/unit_tests/datasets/commands/export_test.py  |    2 +
 81 files changed, 7175 insertions(+), 3834 deletions(-)
 create mode 100755 docker/docker-entrypoint-initdb.d/examples-init.sh
 rename superset-frontend/src/{modules => explore/components/controls/AnnotationLayerControl}/AnnotationTypes.js (100%)
 rename superset-frontend/src/{profile/components => features/profile}/CreatedContent.test.tsx (95%)
 rename superset-frontend/src/{profile/components => features/profile}/CreatedContent.tsx (100%)
 rename superset-frontend/src/{profile/components => features/profile}/Favorites.test.tsx (96%)
 rename superset-frontend/src/{profile/components => features/profile}/Favorites.tsx (98%)
 rename superset-frontend/src/{profile/components => features/profile}/RecentActivity.test.tsx (95%)
 rename superset-frontend/src/{profile/components => features/profile}/RecentActivity.tsx (91%)
 rename superset-frontend/src/{profile/components => features/profile}/Security.test.tsx (97%)
 rename superset-frontend/src/{profile/components => features/profile}/Security.tsx (100%)
 rename superset-frontend/src/{profile/components => features/profile}/UserInfo.test.tsx (97%)
 rename superset-frontend/src/{profile/components => features/profile}/UserInfo.tsx (100%)
 rename superset-frontend/src/{profile/components => features/profile}/fixtures.tsx (100%)
 rename superset-frontend/src/{ => features}/profile/types.ts (100%)
 rename superset-frontend/src/{profile/components/App.test.tsx => pages/Profile/Profile.test.tsx} (79%)
 rename superset-frontend/src/{profile/components/App.tsx => pages/Profile/index.tsx} (90%)
 delete mode 100644 superset-frontend/src/profile/App.tsx
 delete mode 100644 superset-frontend/src/profile/index.tsx
 delete mode 100644 superset-frontend/src/showSavedQuery/index.jsx
 delete mode 100644 superset-frontend/src/showSavedQuery/utils.js
 delete mode 100644 superset-frontend/src/showSavedQuery/utils.test.jsx
 copy superset/migrations/versions/{2018-04-03_08-19_130915240929_is_sqllab_viz_flow.py => 2023-08-14_09-38_9f4a086c2676_add_normalize_columns_to_sqla_model.py} (69%)
 copy superset/views/{annotations.py => profile.py} (72%)
 create mode 100644 tests/integration_tests/profile_tests.py