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/03/13 23:54:26 UTC

[superset] branch 2.1 updated (70b9083e0a -> 2a5ef50e5d)

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

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


 discard 70b9083e0a fix: add disallowed query params for engines specs (#23217)
    omit 54ca85fbc6 fix(ssh-tunnel): add password to `from_private_key` function (#23175)
    omit 90526272e3 fix(ssh_tunnel): Display SSHTunnel Switch when editing a DB that was created with the Dynamic Form (#23195)
    omit b0a62d841e fix(sshtunnel): argument params to properly setting `server_port` (#23196)
    omit 7530c2199e Revert "fix: dashboard get by id or slug access filter (#22358)"
    omit 179cf924f8 Revert "feat: Add excel export (#22006)"
     add a6d714b0c4 fix(sshtunnel): argument params to properly setting `server_port` (#23196)
     add e0a394fe9b fix(ssh_tunnel): Display SSHTunnel Switch when editing a DB that was created with the Dynamic Form (#23195)
     add f5a5c261e0 fix(ssh-tunnel): add password to `from_private_key` function (#23175)
     add 649b355767 bump version, changelog and updating for 2.1
     add b1f2a8323a fix: Validate jinja rendered query (#22851)
     add 379ddbdfa8 chore: Add docs for ssh tunneling (#23131)
     add 6c340be6a9 fix(rbac): show objects accessible by database access perm (#23118)
     add 529af97084 fix: bump FAB to 4.3.0 (#23184)
     add 76c9f34869 fix(clickhouse): add clickhouse connect driver (#23185)
     add cec5c45113 fix(clickhouse): add missing default format (#23192)
     add 2a61e15731 fix(dashboard): Focusing charts and native filters from filters badge (#23190)
     add ef648ae4d6 fix: memoized decorator memory leak (#23139)
     add 710fb81ef2 fix: add disallowed query params for engines specs (#23217)
     add 3ddcfefd92 fix(dashboard): Don't show cross filters checkbox to users without write permissions (#23237)
     add eef894a007 docs: update installation docs to include frontend asset build (#23199)
     add ffb110ac10 fix: refuse to start with default secret on non debug envs (#23186)
     add 2adcde2e10 fix(dao): use explicit id filter (#23246)
     add cc483e69e8 fix: customize tab on heatmap chart is blank (#23243)
     add dd792f9e7f fix(dashboard): Charts crashing when cross filter on adhoc column is applied (#23238)
     add 65232d3f5b fix(dashboard): Infinite load when filter with default first value is out of scope (#23299)
     add 9b253f0c4c docs: improve API v1 migration documentation (#23298)
     add 4e9d7644ff update changelog
     add d19d298d9d chore: use util test env for init check (#23325)
     add 2a5ef50e5d update releasing process for testing

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   (70b9083e0a)
            \
             N -- N -- N   refs/heads/2.1 (2a5ef50e5d)

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:
 .github/workflows/superset-python-unittest.yml     |    2 +
 CHANGELOG.md                                       | 1172 ++++++++++++++++++++
 RELEASING/Dockerfile.from_local_tarball            |    3 +-
 RELEASING/from_tarball_entrypoint.sh               |    1 +
 RESOURCES/FEATURE_FLAGS.md                         |    1 +
 UPDATING.md                                        |   23 +-
 docker/.env-non-dev                                |    1 +
 docs/docs/installation/configuring-superset.mdx    |    4 +-
 .../installing-superset-from-scratch.mdx           |    6 +
 docs/docs/installation/setup-ssh-tunneling.mdx     |   21 +
 requirements/base.txt                              |    4 +-
 setup.py                                           |    3 +-
 superset-frontend/package.json                     |    2 +-
 .../DashboardBuilder/DashboardBuilder.tsx          |    9 +-
 .../dashboard/components/FiltersBadge/index.tsx    |   16 +-
 .../dashboard/components/FiltersBadge/selectors.ts |    5 +-
 .../FilterBar/FilterBarSettings/index.tsx          |    2 +-
 .../FilterBar/FilterControls/FilterControl.tsx     |    2 -
 .../FilterBar/FilterControls/FilterControls.tsx    |   17 +-
 .../FilterBar/FilterControls/FilterValue.tsx       |   43 +-
 .../FilterBar/FiltersDropdownContent/index.tsx     |    3 +
 .../FiltersOutOfScopeCollapsible/index.tsx         |    3 +
 .../nativeFilters/FilterBar/Horizontal.tsx         |    2 -
 .../nativeFilters/FilterBar/Vertical.tsx           |    3 -
 .../components/nativeFilters/FilterBar/index.tsx   |    3 -
 .../components/nativeFilters/FilterBar/types.ts    |    8 +-
 .../FilterBar/useFilterControlFactory.tsx          |    9 +-
 .../nativeFilters/FilterBar/useFilterOutlined.ts}  |   32 +-
 .../nativeFilters/FilterCard/DependenciesRow.tsx   |    4 +-
 .../nativeFilters/FilterCard/FilterCard.test.tsx   |    6 +-
 .../components/ControlPanelsContainer.test.tsx     |   39 +
 .../explore/components/ControlPanelsContainer.tsx  |    2 +-
 .../useExploreAdditionalActionsMenu/index.jsx      |   22 +
 superset/charts/data/api.py                        |   28 +-
 superset/charts/filters.py                         |   26 +-
 superset/common/chart_data.py                      |    6 +
 superset/common/query_actions.py                   |   26 +-
 superset/common/query_context_processor.py         |   17 +-
 superset/common/utils/query_cache_manager.py       |   15 +
 superset/config.py                                 |   10 +-
 superset/connectors/sqla/models.py                 |   57 +-
 superset/connectors/sqla/utils.py                  |    7 +-
 superset/constants.py                              |    2 +
 superset/dao/base.py                               |    4 +-
 superset/dashboards/dao.py                         |   23 +-
 superset/dashboards/filters.py                     |   14 +-
 superset/db_engine_specs/base.py                   |    1 -
 superset/db_engine_specs/clickhouse.py             |  315 +++++-
 superset/exceptions.py                             |    4 +
 superset/initialization/__init__.py                |   18 +-
 superset/jinja_context.py                          |    8 +-
 ...29_09-24_620241d1153f_update_time_grain_sqla.py |    2 -
 superset/models/core.py                            |    7 +-
 superset/models/datasource_access_request.py       |    2 -
 superset/models/helpers.py                         |    7 +-
 superset/models/slice.py                           |   11 +-
 superset/security/manager.py                       |   25 +-
 superset/sqllab/commands/execute.py                |    6 +-
 superset/utils/core.py                             |    4 +-
 superset/utils/date_parser.py                      |    6 +-
 .../{temporary_cache/utils.py => utils/excel.py}   |   12 +-
 superset/{models/cache.py => utils/filters.py}     |   29 +-
 superset/utils/memoized.py                         |   81 --
 superset/views/base.py                             |   45 +-
 superset/views/chart/filters.py                    |    9 +-
 superset/views/core.py                             |   49 +-
 superset/viz.py                                    |   33 +-
 tests/integration_tests/charts/api_tests.py        |   18 +-
 tests/integration_tests/charts/data/api_tests.py   |   82 ++
 tests/integration_tests/dashboards/api_tests.py    |   65 +-
 tests/integration_tests/dashboards/dao_tests.py    |   67 +-
 .../dashboards/filter_state/api_tests.py           |   47 +-
 .../dashboards/permalink/api_tests.py              |    9 +-
 tests/integration_tests/datasets/api_tests.py      |   37 +-
 tests/integration_tests/sqllab_tests.py            |   32 +
 tests/integration_tests/utils_tests.py             |    1 +
 .../unit_tests/db_engine_specs/test_clickhouse.py  |  162 ++-
 tests/unit_tests/db_engine_specs/test_mssql.py     |    4 +-
 tests/unit_tests/memoized_tests.py                 |   96 --
 tests/unit_tests/models/core_test.py               |    4 +-
 80 files changed, 2425 insertions(+), 581 deletions(-)
 create mode 100644 docs/docs/installation/setup-ssh-tunneling.mdx
 copy superset-frontend/src/dashboard/{util/getChartAndLabelComponentIdFromPath.test.js => components/nativeFilters/FilterBar/useFilterOutlined.ts} (65%)
 copy superset/{temporary_cache/utils.py => utils/excel.py} (73%)
 copy superset/{models/cache.py => utils/filters.py} (53%)
 mode change 100755 => 100644
 delete mode 100644 superset/utils/memoized.py
 delete mode 100644 tests/unit_tests/memoized_tests.py