This is an automated email from the ASF dual-hosted git repository.
michaelsmolina pushed a change to branch 4.0
in repository https://gitbox.apache.org/repos/asf/superset.git
from 19efb146b2 fix(Alerts & Reports): Fixing bug that resets cron value to
default when empty (#27262)
new 94aeef5f82 fix: improve explore REST api validations (#27395)
new 4f3a7f3931 fix(API): Updating assets via the API should preserve
ownership configuration (#27364)
new db6df71fad fix(sqllab): Close already removed tab (#27391)
new 0baa2af200 fix: Re-enable CI checks on release branches (#27390)
new 2060e545e6 fix: typescript errors in 4.0 (#27402)
new ba6b86bbc4 fix: missing shared color in mixed timeseries (#27403)
The 6 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/check_db_migration_confict.yml | 3 +-
.github/workflows/codeql-analysis.yml | 12 +--
.github/workflows/docker.yml | 1 +
.github/workflows/embedded-sdk-release.yml | 5 +-
.github/workflows/generate-FOSSA-report.yml | 5 +-
.github/workflows/pre-commit.yml | 3 +-
.github/workflows/prefer-typescript.yml | 3 +-
.github/workflows/release.yml | 3 +-
.github/workflows/superset-cli.yml | 7 +-
.github/workflows/superset-docs-deploy.yml | 3 +-
.github/workflows/superset-e2e.yml | 3 +-
.github/workflows/superset-frontend.yml | 1 +
.github/workflows/superset-helm-release.yml | 1 +
.../workflows/superset-python-integrationtest.yml | 15 +--
.github/workflows/superset-python-misc.yml | 3 +-
.github/workflows/superset-python-presto-hive.yml | 11 +-
.github/workflows/superset-python-unittest.yml | 9 +-
.github/workflows/superset-translations.yml | 5 +-
.github/workflows/superset-websocket.yml | 3 +-
.github/workflows/tech-debt.yml | 5 +-
.../superset-ui-core/src/query/api/v1/makeApi.ts | 4 +-
.../src/MixedTimeseries/transformProps.ts | 5 +-
superset-frontend/src/SqlLab/actions/sqlLab.js | 19 ++--
.../AlteredSliceTag/AlteredSliceTagMocks.ts | 2 +-
.../src/components/AlteredSliceTag/index.tsx | 6 +-
.../src/components/TelemetryPixel/index.tsx | 1 +
.../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 +++++++++++++++++++++
43 files changed, 593 insertions(+), 83 deletions(-)
create mode 100644 tests/unit_tests/commands/test_utils.py