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 2024/03/13 13:47:08 UTC

(superset) branch remove-sqlparse-step-1 updated (f6ccbd50d4 -> 316e3ce48f)

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

beto pushed a change to branch remove-sqlparse-step-1
in repository https://gitbox.apache.org/repos/asf/superset.git


    omit f6ccbd50d4 Rename SQLQuery to SQLScript
    omit 44c675c79d Update tests
    omit 859ce3c491 chore: get rid of sqlparse
     add 89e89de341 fix: SSH Tunnel configuration settings  (#27186)
     add 372cac9527 chore: upgrade setuptools/pip in Dockerfile (#27405)
     add 91781ca045 build(deps): bump @storybook/types from 7.6.13 to 7.6.17 in /superset-frontend (#27347)
     add 6f1cbfa12d build(deps-dev): bump @types/node from 20.11.16 to 20.11.24 in /superset-websocket (#27326)
     add b1adede1ee feat: docker-compose to work off repo Dockerfile (#27434)
     add fbc8943fbd feat: show more information when loading chart (#27255)
     add 2a5b5fe049 build(deps-dev): bump eslint from 8.56.0 to 8.57.0 in /superset-websocket (#27327)
     add 6a7e5c2faf chore: add unit test for `values_for_column` (#27469)
     add 47ae9d4cc3 fix(webpack): remove double-dotted file extensions in webpack config (#27471)
     add 85d0d88fc2 test(Migration to RTL): Refactor ChartTable.test.tsx from Enzyme to RTL (#27429)
     add 735b895dd5 fix: check if guest user modified query (#27484)
     add c3e1ffedec chore: get rid of sqlparse
     add 419a11c662 Update tests
     add 5158276a23 Rename SQLQuery to SQLScript
     add 316e3ce48f Fix unit tests

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f6ccbd50d4)
            \
             N -- N -- N   refs/heads/remove-sqlparse-step-1 (316e3ce48f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 Dockerfile                                         |    1 +
 UPDATING.md                                        |    5 +
 ...ose-non-dev.yml => docker-compose-image-tag.yml |   10 +-
 docker-compose-non-dev.yml                         |   31 +-
 docker-compose.yml                                 |   32 +-
 docker/.env                                        |    2 +
 docker/.env-non-dev                                |   53 -
 docker/docker-frontend.sh                          |   18 +-
 docs/docs/frequently-asked-questions.mdx           |    2 +-
 .../installing-superset-using-docker-compose.mdx   |  177 +++-
 requirements/base.txt                              |   14 +-
 requirements/development.in                        |    1 -
 requirements/development.txt                       |    4 +-
 superset-frontend/package-lock.json                | 1040 +++++++++++++++++++-
 .../superset-ui-core/src/ui-overrides/types.ts     |   18 +-
 .../packages/superset-ui-demo/package.json         |    2 +-
 superset-frontend/src/components/Chart/Chart.jsx   |   64 +-
 .../src/features/alerts/AlertReportModal.test.tsx  |    4 +-
 .../DatabaseConnectionForm/CommonParameters.tsx    |   35 +-
 .../DatabaseConnectionForm/EncryptedField.tsx      |    2 +-
 .../DatabaseConnectionForm/TableCatalog.tsx        |    3 +-
 .../DatabaseConnectionForm/ValidatedInputField.tsx |    2 +-
 .../DatabaseModal/DatabaseConnectionForm/index.tsx |  130 ++-
 .../databases/DatabaseModal/SSHTunnelForm.tsx      |   12 +-
 .../DatabaseModal/SSHTunnelSwitch.test.tsx         |  162 +++
 .../databases/DatabaseModal/SSHTunnelSwitch.tsx    |   82 +-
 .../databases/DatabaseModal/index.test.tsx         |   11 +-
 .../src/features/databases/DatabaseModal/index.tsx |  132 +--
 superset-frontend/src/features/databases/types.ts  |   80 +-
 .../src/features/home/ChartTable.test.tsx          |  130 ++-
 superset-frontend/src/views/CRUD/hooks.ts          |    7 +-
 superset-frontend/webpack.config.js                |    4 +-
 superset-websocket/package-lock.json               |   80 +-
 superset-websocket/package.json                    |    4 +-
 superset/commands/database/create.py               |   10 +-
 superset/commands/database/ssh_tunnel/create.py    |   11 +
 .../commands/database/ssh_tunnel/exceptions.py     |    4 +
 superset/commands/database/ssh_tunnel/update.py    |   25 +-
 superset/commands/database/test_connection.py      |   45 +-
 superset/commands/database/update.py               |   79 +-
 superset/databases/api.py                          |    7 +-
 superset/security/manager.py                       |   85 +-
 superset/sql_parse.py                              |    5 +-
 tests/integration_tests/databases/api_tests.py     |  201 ++++
 .../databases/ssh_tunnel/commands/create_test.py   |   45 +-
 .../databases/ssh_tunnel/commands/update_test.py   |   35 +-
 tests/unit_tests/db_engine_specs/test_base.py      |    6 +-
 tests/unit_tests/jinja_context_test.py             |    9 +
 tests/unit_tests/models/helpers_test.py            |   72 ++
 tests/unit_tests/security/manager_test.py          |  112 ++-
 50 files changed, 2484 insertions(+), 621 deletions(-)
 copy docker-compose-non-dev.yml => docker-compose-image-tag.yml (94%)
 delete mode 100644 docker/.env-non-dev
 create mode 100644 superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.test.tsx
 create mode 100644 tests/unit_tests/models/helpers_test.py