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

elizabeth pushed a change to tag 2.1.1rc1
in repository https://gitbox.apache.org/repos/asf/superset.git


*** WARNING: tag 2.1.1rc1 was modified! ***

    from 43cbf8ac99 (commit)
      to 7b6907fe0f (commit)
    omit 43cbf8ac99 remove blocking test from release
    omit 2b3aa098ae fix: allow db driver distinction on enforced URI params 
(#23769)
    omit dc5bed4ec4 lint
    omit 78d043309c add license to package and plugin readme files
    omit 48ea6c0866 feat: add enforce URI query params with a specific for 
MySQL (#23723)
    omit 70bdf408a6 fix: permission checks on import (#23200)
    omit 7213aa994f fix: check sqlalchemy_uri (#23901)
     add 502b8b81e0 test #1
     add 831978f0f7 fix: check sqlalchemy_uri (#23901)
     add cfc2ca672e fix: permission checks on import (#23200)
     add 0a9f47e4ac fix: load examples as anon user (#23600)
     add 8821174921 feat: add enforce URI query params with a specific for 
MySQL (#23723)
     add 4345a14841 add license to package and plugin readme files
     add 2f3471a87e lint
     new b26901cb05 fix: allow db driver distinction on enforced URI params 
(#23769)
     new 483195ad70 remove blocking test from release
     new f244c24bb9 lint
     new f478038281 add changelog
     new b53325e576 remove tests that don't apply
     new 831cd9b030 chore: Remove unnecessary information from response (#24056)
     new 8d32525f97 chore: update UPDATING for 2.1.0 (#24294)
     new e804489a89 fix: db validate parameters permission (#24185)
     new 4af81bf70a fix: disable SHOW_STACKTRACE by default (#24137)
     new a25347c113 fix: enable strong session protection by default (#24256)
     new 9e6c9d2aa3 fix: handle comments in `has_table_query` (#23882)
     new cfb4d27d8c lint
     new 5f21e7385f fix: handle temporal columns in presto partitions (#24054)
     new 7247b9bb07 merge in fix with migration (#24314)
     new 801389f2f1 update changelog
     new 3f20b9ebab update package version
     new aad2c75551 fix: update order of build for testing a release (#24317)
     new 7b6907fe0f update changelog

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
tag 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   (43cbf8ac99)
            \
             N -- N -- N   refs/tags/2.1.1rc1 (7b6907fe0f)

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.

The 18 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/docker.yml                       |  18 ++
 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     |   7 +-
 superset/commands/importers/v1/examples.py         |  41 +++--
 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  |   6 +-
 superset/datasets/api.py                           |   4 +-
 superset/datasets/commands/importers/v1/utils.py   |   6 +-
 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                         |   2 +-
 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 +++-
 ...a5681ddfd_convert_key_value_entries_to_json.py} |  66 ++++---
 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/csv_upload_tests.py        | 146 +++++++--------
 tests/integration_tests/dashboards/api_tests.py    | 106 ++++++++++-
 .../integration_tests/databases/commands_tests.py  | 200 ---------------------
 tests/integration_tests/datasets/api_tests.py      | 102 +++++++++++
 .../explore/permalink/api_tests.py                 |   5 +-
 .../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 -
 tests/integration_tests/sqllab_tests.py            |  26 +--
 tests/unit_tests/db_engine_specs/test_presto.py    |  43 ++++-
 tests/unit_tests/sql_parse_tests.py                |   8 +
 63 files changed, 960 insertions(+), 453 deletions(-)
 copy 
superset/migrations/versions/{2022-06-27_14-59_7fb8bca906d2_permalink_rename_filterstate.py
 => 2023-05-01_12-03_9c2a5681ddfd_convert_key_value_entries_to_json.py} (55%)
 create mode 100644 superset/tags/schemas.py

Reply via email to