This is an automated email from the ASF dual-hosted git repository.
villebro pushed a change to branch 1.5
in repository https://gitbox.apache.org/repos/asf/superset.git
from 90b08fa095 chore: skip SIP-68 shadow writing for LTS
add ccf296b786 update changelog
new f8b202f670 fix: Filter dependencies are not being applied in default
values (#19698)
new 28aa69628f chore: Clean redundant dependency from useMemo dep array
(#19732)
new 2d7d2dd373 fix(permalink): remove memoize on get salt func (#19749)
new 5df14ed8f9 fix(explore): make to show the null value as N/A in view
result (#19603)
new c9e3ca11e2 fix(dashboard): copy permalink to dashboard chart (#19772)
new 87b51c26f4 fix(sql lab): replace the output column in the query
history table (#19370)
new 1d141be463 fix: SQL Lab UI Error: Objects are not valid as a React
child (#19783)
new 2b6e35e039 fix: dashboard standalone class not added when parameter
set (#16619)
new 8c8bbfb89f feat: add renameOperator (#19776)
new 5567828ee8 fix(chart & explore): Show labels for `SliderControl`
(#19765)
new 4fa96d3a3b fix: lost renameOperator in mixed timeseries chart (#19802)
new 387138eb9e Fix display of column config in table chart (#19806)
new 1050fcbd3c fix(key_value): use longblob on mysql (#19805)
new 397a182c2f fix(sql lab): when editing a saved query, the status is
lost when switching tabs (#19448)
The 14 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:
CHANGELOG.md | 8 +-
.../src/operators/flattenOperator.ts | 17 +-
.../src/operators/index.ts | 1 +
.../src/operators/renameOperator.ts | 89 +++++++++++
.../ColumnConfigControl/ColumnConfigItem.tsx | 4 +-
.../test/utils/operators/flattenOperator.test.ts | 31 ----
.../test/utils/operators/renameOperator.test.ts | 146 +++++++++++++++++
.../src/query/types/PostProcessing.ts | 13 ++
.../src/MixedTimeseries/buildQuery.ts | 18 ++-
.../src/Timeseries/buildQuery.ts | 6 +
superset-frontend/src/SqlLab/actions/sqlLab.js | 1 +
.../src/SqlLab/components/QueryHistory/index.tsx | 2 +-
.../src/SqlLab/components/QueryTable/index.tsx | 15 +-
.../src/components/URLShortLinkButton/index.jsx | 8 +-
.../components/SliceHeaderControls/index.tsx | 6 +-
.../components/menu/ShareMenuItems/index.tsx | 28 ++--
.../FiltersConfigForm/FiltersConfigForm.tsx | 40 ++++-
.../explore/components/DataTableControl/index.tsx | 4 +-
.../DndColumnSelectControl/DndColumnSelect.tsx | 5 +-
.../explore/components/controls/SliderControl.tsx | 41 ++++-
superset-frontend/src/utils/urlUtils.ts | 14 +-
superset/charts/schemas.py | 27 +---
superset/key_value/shared_entries.py | 2 -
.../versions/6766938c6065_add_key_value_store.py | 2 +-
superset/utils/pandas_postprocessing/__init__.py | 2 +
superset/utils/pandas_postprocessing/flatten.py | 18 ++-
superset/utils/pandas_postprocessing/rename.py | 58 +++++++
superset/views/core.py | 3 +
.../pandas_postprocessing/test_rename.py | 175 +++++++++++++++++++++
29 files changed, 654 insertions(+), 130 deletions(-)
create mode 100644
superset-frontend/packages/superset-ui-chart-controls/src/operators/renameOperator.ts
create mode 100644
superset-frontend/packages/superset-ui-chart-controls/test/utils/operators/renameOperator.test.ts
create mode 100644 superset/utils/pandas_postprocessing/rename.py
create mode 100644 tests/unit_tests/pandas_postprocessing/test_rename.py