You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by di...@apache.org on 2023/01/30 16:11:03 UTC

[superset] branch fix/jinja-schema-auth updated (59000966c9 -> a9203ab715)

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

diegopucci pushed a change to branch fix/jinja-schema-auth
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 59000966c9 Sort
     add b94052e438 chore: migrate /sql_json and /results to apiv1 (#22809)
     add a9203ab715 Merge branch 'master' of https://github.com/apache/superset into fix/jinja-schema-auth

No new revisions were added by this update.

Summary of changes:
 docs/static/resources/openapi.json                 | 1428 ++++++++------------
 .../cypress/integration/sqllab/query.test.ts       |    4 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   16 +-
 .../src/SqlLab/actions/sqlLab.test.js              |    7 +-
 .../SqlLab/components/SqlEditor/SqlEditor.test.jsx |    2 +-
 superset-frontend/src/SqlLab/fixtures.ts           |    1 +
 superset/initialization/__init__.py                |    2 +
 superset/sqllab/api.py                             |  248 ++++
 .../sqllab/{command.py => commands/execute.py}     |    0
 superset/sqllab/commands/results.py                |  131 ++
 superset/sqllab/query_render.py                    |    2 +-
 superset/sqllab/schemas.py                         |   83 ++
 superset/sqllab/validators.py                      |    2 +-
 superset/translations/de/LC_MESSAGES/messages.json |    2 +-
 superset/translations/de/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/en/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/es/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/fr/LC_MESSAGES/messages.json |    2 +-
 superset/translations/fr/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/it/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/ja/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/ko/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/messages.pot                 |    2 +-
 superset/translations/nl/LC_MESSAGES/messages.json |    2 +-
 superset/translations/nl/LC_MESSAGES/messages.po   |    2 +-
 .../translations/pt_BR/LC_MESSAGES/messages.po     |    2 +-
 superset/translations/ru/LC_MESSAGES/messages.json |    2 +-
 superset/translations/ru/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/sk/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/sl/LC_MESSAGES/messages.json |    2 +-
 superset/translations/sl/LC_MESSAGES/messages.po   |    2 +-
 superset/translations/zh/LC_MESSAGES/messages.po   |    2 +-
 superset/views/base_api.py                         |    3 +-
 superset/views/core.py                             |    8 +-
 tests/integration_tests/base_tests.py              |    2 +-
 tests/integration_tests/celery_tests.py            |    2 +-
 tests/integration_tests/sql_lab/api_tests.py       |  178 +++
 tests/integration_tests/sql_lab/commands_tests.py  |  161 +++
 38 files changed, 1449 insertions(+), 869 deletions(-)
 create mode 100644 superset/sqllab/api.py
 rename superset/sqllab/{command.py => commands/execute.py} (100%)
 create mode 100644 superset/sqllab/commands/results.py
 create mode 100644 superset/sqllab/schemas.py
 create mode 100644 tests/integration_tests/sql_lab/api_tests.py
 create mode 100644 tests/integration_tests/sql_lab/commands_tests.py