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/08/04 20:42:20 UTC

[superset] tag 2.1.1rc2 updated (e7816aab92 -> 5f0adc3b53)

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

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


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

    from e7816aab92 (commit)
      to 5f0adc3b53 (commit)
    from e7816aab92 lint
     add b7e8a84b9f fix(permalink): migrate to marshmallow codec (#24166)
     add cc840cd6c7 chore(metastore-cache): add codec support (#24586)
     add 249973613c fix(permalink): Incorrect component schema reference (#24482)
     add 5f0adc3b53 fix: pass schema on dataset creation (#24815)

No new revisions were added by this update.

Summary of changes:
 .../SaveDatasetModal/SaveDatasetModal.test.tsx     |  42 ++++++-
 .../SqlLab/components/SaveDatasetModal/index.tsx   |   1 +
 superset-frontend/src/SqlLab/fixtures.ts           |   1 +
 superset/config.py                                 |  25 ++++-
 superset/dashboards/permalink/api.py               |   8 +-
 superset/dashboards/permalink/commands/base.py     |   9 +-
 superset/dashboards/permalink/commands/create.py   |   3 +
 superset/dashboards/permalink/commands/get.py      |   7 +-
 superset/dashboards/permalink/schemas.py           |  11 +-
 superset/explore/permalink/api.py                  |   6 +-
 superset/explore/permalink/commands/base.py        |   9 +-
 superset/explore/permalink/commands/create.py      |   3 +
 superset/explore/permalink/commands/get.py         |   7 +-
 superset/explore/permalink/schemas.py              |  26 ++++-
 superset/extensions/metastore_cache.py             |  38 +++++--
 superset/key_value/exceptions.py                   |  12 ++
 superset/key_value/types.py                        |  36 +++++-
 .../explore/permalink/api_tests.py                 |  16 ++-
 .../extensions/metastore_cache_test.py             |  49 ++++++++-
 tests/unit_tests/key_value/codec_test.py           | 122 +++++++++++++++++++++
 20 files changed, 391 insertions(+), 40 deletions(-)
 create mode 100644 tests/unit_tests/key_value/codec_test.py