This is an automated email from the ASF dual-hosted git repository.
diegopucci pushed a change to branch chore/color-scheme-tests
in repository https://gitbox.apache.org/repos/asf/superset.git
from a0b2e3e0da Update selectors
add af1bddffad fix(explore): Adhoc columns don't display correctly (#20802)
add 34278c2d56 fix: Redirects old Explore URLs to the new one (#20812)
add 279ab954b1 fix: chart empty state & result panel when multiple queries
are executed display incorrectly (#20816)
add fe9eb58ede chore: bumps the handlebars plugin package version to match
the family. (#20813)
add 51869f32ac Temporal X Axis values are not properly displayed if the
time column has a custom label defined (#20819)
add 39545352d2 chore: update Pillow to 9.1.1 (#20775)
add f011abae2b feat: the samples endpoint supports filters and pagination
(#20683)
add 6e0ddcf848 fix: [explore][mixed time series chart] when user change
size of view query window, query B part will disappear (#20750)
add 52f409c2e5 Merge branch 'master' of https://github.com/apache/superset
into chore/color-scheme-tests
add e15bfdaabe Verify charts changing colors
No new revisions were added by this update.
Summary of changes:
requirements/development.txt | 2 +-
setup.py | 2 +-
.../integration/dashboard/edit_properties.test.ts | 63 +++++--
.../cypress/integration/dashboard/save.test.js | 8 +-
.../cypress/integration/explore/control.test.ts | 2 +-
.../src/components/labelUtils.tsx | 6 +-
.../src/chart/components/SuperChart.tsx | 12 +-
.../src/chart/models/ChartMetadata.ts | 5 +
.../superset-ui-core/src/query/types/Column.ts | 2 +-
.../src/MixedTimeseries/index.ts | 1 +
.../src/Timeseries/transformProps.ts | 3 +-
.../plugins/plugin-chart-handlebars/package.json | 2 +-
.../src/components/Chart/chartAction.js | 5 +-
.../DataTablesPane/components/useResultsPane.tsx | 40 +++--
.../test/ResultsPaneOnDashboard.test.tsx | 15 +-
.../DataTablesPane/test/SamplesPane.test.tsx | 12 +-
.../src/explore/components/DataTablesPane/utils.ts | 24 ---
.../DndColumnSelectControl/ColumnSelectPopover.tsx | 2 +-
.../DndColumnSelect.test.tsx | 20 ++-
.../src/explore/components/controls/ViewQuery.tsx | 4 +-
.../explore/components/controls/ViewQueryModal.tsx | 13 +-
superset/datasets/api.py | 70 +-------
superset/datasets/commands/samples.py | 80 ---------
superset/explore/api.py | 84 +--------
superset/explore/commands/samples.py | 93 ----------
superset/views/core.py | 3 +
superset/views/datasource/schemas.py | 32 +++-
superset/views/datasource/utils.py | 115 ++++++++++++
superset/views/datasource/views.py | 24 +++
tests/integration_tests/conftest.py | 104 +++++++++++
tests/integration_tests/datasets/api_tests.py | 101 -----------
tests/integration_tests/datasource_tests.py | 194 ++++++++++++++++++++-
32 files changed, 634 insertions(+), 509 deletions(-)
delete mode 100644
superset-frontend/src/explore/components/DataTablesPane/utils.ts
delete mode 100644 superset/datasets/commands/samples.py
delete mode 100644 superset/explore/commands/samples.py
create mode 100644 superset/views/datasource/utils.py