You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by el...@apache.org on 2023/06/10 00:01:29 UTC

[superset] branch elizabeth/test-2.1.1 updated (9809255382 -> 43cbf8ac99)

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

elizabeth pushed a change to branch elizabeth/test-2.1.1
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 9809255382 update changelog
 discard 45a414b1bf fix: update order of build for testing a release (#24317)
 discard 402598ef34 update package version
 discard b965ddb033 update changelog
 discard a214d6f36e merge in fix with migration (#24314)
 discard a10dedfdc3 fix: handle temporal columns in presto partitions (#24054)
 discard 31311ea261 lint
 discard 550159abae fix: handle comments in `has_table_query` (#23882)
 discard 06f0eddf90 fix: enable strong session protection by default (#24256)
 discard c8625aa8e5 fix: disable SHOW_STACKTRACE by default (#24137)
 discard 05b914d162 fix: db validate parameters permission (#24185)
 discard fe5ad8939d chore: update UPDATING for 2.1.0 (#24294)
 discard 1aed126994 chore: Remove unnecessary information from response (#24056)
 discard 87ea36117d remove tests that don't apply
 discard 07ccadaf62 add changelog
 discard 3ea0bdb4cf lint
 discard cb31d53e6d remove blocking test from release
 discard 20655df30e fix: allow db driver distinction on enforced URI params (#23769)
 discard fc2264c26f lint
 discard badc3ef16e add license to package and plugin readme files
 discard f8087f4115 feat: add enforce URI query params with a specific for MySQL (#23723)
     add 70bdf408a6 fix: permission checks on import (#23200)
     add 48ea6c0866 feat: add enforce URI query params with a specific for MySQL (#23723)
     add 78d043309c add license to package and plugin readme files
     add dc5bed4ec4 lint
     add 2b3aa098ae fix: allow db driver distinction on enforced URI params (#23769)
     add 43cbf8ac99 remove blocking test from release

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   (9809255382)
            \
             N -- N -- N   refs/heads/elizabeth/test-2.1.1 (43cbf8ac99)

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:
 CHANGELOG.md                                       |  34 +--
 RELEASING/from_tarball_entrypoint.sh               |   6 +-
 UPDATING.md                                        |  10 +-
 docs/docs/contributing/testing-locally.mdx         |   2 +-
 docs/docs/security.mdx                             |  31 +--
 superset-frontend/package-lock.json                |   4 +-
 superset-frontend/package.json                     |   2 +-
 superset/charts/api.py                             |   2 +
 superset/charts/commands/importers/v1/utils.py     |   9 +-
 superset/commands/importers/v1/examples.py         |  21 +-
 superset/config.py                                 |   9 +-
 superset/connectors/sqla/models.py                 |   7 +-
 superset/constants.py                              |   4 +-
 superset/dashboards/api.py                         |   3 +
 superset/dashboards/commands/importers/v1/utils.py |  10 +-
 superset/dashboards/permalink/commands/base.py     |   3 +-
 superset/dashboards/permalink/commands/create.py   |   1 -
 superset/dashboards/permalink/commands/get.py      |   6 +-
 superset/dashboards/schemas.py                     |   4 +-
 superset/databases/commands/importers/v1/utils.py  |  13 +-
 superset/datasets/api.py                           |   4 +-
 superset/datasets/commands/importers/v1/utils.py   |   9 +-
 superset/db_engine_specs/base.py                   |   2 +-
 superset/db_engine_specs/hive.py                   |   2 +-
 superset/db_engine_specs/presto.py                 |  18 +-
 superset/examples/utils.py                         |   6 +-
 superset/explore/permalink/commands/base.py        |   3 +-
 superset/explore/permalink/commands/create.py      |   3 +-
 superset/explore/permalink/commands/get.py         |   1 -
 superset/extensions/metastore_cache.py             |  11 +-
 superset/key_value/commands/create.py              |  23 +-
 superset/key_value/commands/get.py                 |  15 +-
 superset/key_value/commands/update.py              |  11 +-
 superset/key_value/commands/upsert.py              |  13 +-
 superset/key_value/shared_entries.py               |  12 +-
 superset/key_value/types.py                        |  33 +--
 ...2a5681ddfd_convert_key_value_entries_to_json.py |  96 -------
 superset/models/dashboard.py                       |   6 +-
 superset/models/filter_set.py                      |   6 +-
 superset/models/slice.py                           |   8 +-
 superset/queries/api.py                            |   1 +
 superset/queries/schemas.py                        |   2 +-
 superset/sql_parse.py                              |   4 +-
 superset/tags/schemas.py                           |  59 ----
 superset/temporary_cache/api.py                    |  13 +-
 superset/temporary_cache/commands/parameters.py    |   3 -
 tests/integration_tests/charts/api_tests.py        | 109 +-------
 tests/integration_tests/charts/commands_tests.py   |  11 +-
 tests/integration_tests/csv_upload_tests.py        | 146 +++++-----
 tests/integration_tests/dashboards/api_tests.py    | 106 +------
 .../integration_tests/dashboards/commands_tests.py |  12 +-
 .../integration_tests/databases/commands_tests.py  | 310 +++++++++++++++++----
 tests/integration_tests/datasets/api_tests.py      | 102 -------
 tests/integration_tests/datasets/commands_tests.py |  17 +-
 .../explore/permalink/api_tests.py                 |   5 +-
 tests/integration_tests/fixtures/importexport.py   | 105 +++++++
 .../key_value/commands/create_test.py              |  55 +---
 .../key_value/commands/delete_test.py              |  13 +-
 .../key_value/commands/fixtures.py                 |  15 +-
 .../key_value/commands/get_test.py                 |  25 +-
 .../key_value/commands/update_test.py              |  11 +-
 .../key_value/commands/upsert_test.py              |  11 +-
 tests/integration_tests/queries/api_tests.py       |   1 +
 .../queries/saved_queries/commands_tests.py        |  10 +-
 tests/integration_tests/sqllab_tests.py            |  26 +-
 .../charts/commands/importers/v1/import_test.py    |  45 ++-
 .../commands/importers/v1/assets_test.py           |  16 +-
 .../commands/importers/v1/import_test.py           |  46 ++-
 .../databases/commands/importers/v1/import_test.py |  44 ++-
 .../datasets/commands/importers/v1/import_test.py  |  38 ++-
 tests/unit_tests/db_engine_specs/test_presto.py    |  43 +--
 tests/unit_tests/sql_parse_tests.py                |   8 -
 72 files changed, 826 insertions(+), 1049 deletions(-)
 delete mode 100644 superset/migrations/versions/2023-05-01_12-03_9c2a5681ddfd_convert_key_value_entries_to_json.py
 delete mode 100644 superset/tags/schemas.py