This is an automated email from the ASF dual-hosted git repository.
enzomartellucci pushed a change to branch enxdev/refactor-antd5-icons
in repository https://gitbox.apache.org/repos/asf/superset.git
from 0cefa6dca9 lint
add af3589fe91 fix(Scope): Correct issue where filters appear out of scope
when sort is unchecked. (#32115)
add 21348c418a chore(backend): replace insecure `shortid` usage for native
filter migration with native `uuid` Python implementation (#32235)
add 52563d3eea fix: Update 'Last modified' time when modifying RLS rules
(#32227)
add 5867b87680 docs: adding notes about using uv instead of raw pip
(#32239)
add 15fbb195e9 fix: remove sort values on stacked totals (#31333)
add 2c583d1584 feat: recursive metric definitions (#32228)
add ad057324b7 fix: upgrade to 3.11.11-slim-bookworm to address critical
vulnerabilities (#32240)
add 9c7835a244 docs(api): Improve api documentation for dashboard
endpoints(filter_state, permalink, embedded) (#32142)
add 9da30956c0 fix(Datasource): handle undefined datasource_type in
fetchSyncedColumns (#32218)
add fa09d8187a chore(deps): bump cryptography from 43.0.3 to 44.0.1
(#32236)
add ffe9244458 fix: Decimal values for Histogram bins (#32253)
add 90843e1afa Merge branch 'master' into enxdev/refactor-antd5-icons
No new revisions were added by this update.
Summary of changes:
Dockerfile | 2 +-
UPDATING.md | 1 +
docs/docs/installation/kubernetes.mdx | 2 +-
pyproject.toml | 3 +-
requirements/base.txt | 2 -
requirements/development.txt | 4 -
.../src/sections/chartTitle.tsx | 2 +-
.../superset-ui-core/src/query/getMetricLabel.ts | 24 ++--
.../src/Histogram/controlPanel.tsx | 57 +++++++++-
.../src/Histogram/transformProps.ts | 37 ++++--
.../plugin-chart-echarts/src/Histogram/types.ts | 2 +
.../src/MixedTimeseries/transformProps.ts | 13 ++-
.../src/Timeseries/transformProps.ts | 7 +-
.../plugin-chart-echarts/src/utils/series.ts | 6 +-
.../test/Timeseries/transformProps.test.ts | 34 ++++--
.../plugin-chart-echarts/test/utils/series.test.ts | 118 +++++++++++++++++++
.../src/components/Datasource/utils.js | 2 +-
.../components/nativeFilters/state.test.ts | 126 +++++++++++++++++++++
.../dashboard/components/nativeFilters/state.ts | 25 ++--
superset/dashboards/filter_state/api.py | 74 ++++++++++++
superset/dashboards/permalink/api.py | 69 +++++++++++
superset/embedded/api.py | 32 +++++-
superset/jinja_context.py | 57 ++++++++--
superset/migrations/shared/native_filters.py | 17 ++-
superset/row_level_security/schemas.py | 2 +-
superset/utils/pandas_postprocessing/histogram.py | 3 +-
tests/unit_tests/jinja_context_test.py | 93 +++++++++++++++
.../pandas_postprocessing/test_histogram.py | 48 ++++----
28 files changed, 764 insertions(+), 98 deletions(-)
create mode 100644
superset-frontend/src/dashboard/components/nativeFilters/state.test.ts