This is an automated email from the ASF dual-hosted git repository.
michaelsmolina pushed a change to branch 3.1
in repository https://gitbox.apache.org/repos/asf/superset.git
from 4972fbe751 fix: Results section in Explore shows an infinite spinner
(#27366)
new efd305eb8d fix(docker): Remove race condition when building image
(#26205)
new 4b5de7d203 fix: improve explore REST api validations (#27395)
new e84b2a3ba1 fix(API): Updating assets via the API should preserve
ownership configuration (#27364)
new ee8be59fdc fix(sqllab): Close already removed tab (#27391)
new c294b9d63c fix: missing shared color in mixed timeseries (#27403)
The 5 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:
Dockerfile | 14 ++-
.../src/MixedTimeseries/transformProps.ts | 5 +-
superset-frontend/src/SqlLab/actions/sqlLab.js | 19 ++--
.../src/hooks/apiResources/queryApi.ts | 5 +-
superset/commands/base.py | 22 +++-
superset/commands/chart/update.py | 5 +-
superset/commands/dashboard/update.py | 9 +-
superset/commands/dataset/update.py | 5 +-
superset/commands/explore/get.py | 11 +-
superset/commands/report/update.py | 7 +-
superset/commands/utils.py | 21 +++-
superset/views/datasource/views.py | 4 +-
superset/views/sql_lab/views.py | 20 +++-
tests/integration_tests/charts/api_tests.py | 53 ++++++++-
tests/integration_tests/dashboards/api_tests.py | 37 +++++++
tests/integration_tests/datasets/api_tests.py | 55 ++++++++++
tests/integration_tests/explore/api_tests.py | 20 +++-
tests/integration_tests/reports/api_tests.py | 87 +++++++++++++++
tests/integration_tests/sql_lab/api_tests.py | 59 +++++++++++
tests/unit_tests/commands/test_utils.py | 118 +++++++++++++++++++++
20 files changed, 532 insertions(+), 44 deletions(-)
create mode 100644 tests/unit_tests/commands/test_utils.py