This is an automated email from the ASF dual-hosted git repository. enzomartellucci pushed a change to branch enxdev/feat/migrate-action-log in repository https://gitbox.apache.org/repos/asf/superset.git
from a0637b9db2 Merge branch 'master' into enxdev/feat/migrate-action-log add 72cd9dffa3 fix: Persist catalog change during dataset update + validation fixes (#33384) add a391ebecca feat: Run SQL on DataSourceEditor implementation (#33340) add fe4144834c Merge branch 'master' into enxdev/feat/migrate-action-log add 71ed4949c7 feat(ActionLog): add a table with filters inside ActionLog page add 28bde0dc23 fix(IconTooltipStories): put useTheme inside a function add e0f048e872 feat(ActionLog): add tooltip and copy button for JSON and Referrer columns No new revisions were added by this update. Summary of changes: .../src/components/Datasource/DatasourceEditor.jsx | 91 ++++- .../src/components/Datasource/DatasourceModal.tsx | 142 ++++---- .../src/components/Datasource/Field.test.tsx | 15 +- .../src/components/Datasource/Field.tsx | 63 ++-- .../components/IconTooltip/IconTooltip.stories.tsx | 26 +- .../src/components/Icons/AntdEnhanced.tsx | 2 + superset-frontend/src/database/actions.ts | 68 ++++ .../reducers.js => database/reducers.ts} | 50 ++- .../{types/TaggedObject.ts => database/types.ts} | 51 ++- superset-frontend/src/features/datasets/types.ts | 1 + superset-frontend/src/pages/ActionLog/index.tsx | 232 ++++++++++++- superset-frontend/src/views/store.ts | 3 +- superset/commands/dataset/exceptions.py | 15 +- superset/commands/dataset/update.py | 89 +++-- tests/integration_tests/datasets/api_tests.py | 377 ++++++++++++++++----- .../dataset/{test_update.py => update_test.py} | 165 +++++---- 16 files changed, 1070 insertions(+), 320 deletions(-) create mode 100644 superset-frontend/src/database/actions.ts copy superset-frontend/src/{components/MessageToasts/reducers.js => database/reducers.ts} (53%) copy superset-frontend/src/{types/TaggedObject.ts => database/types.ts} (52%) rename tests/unit_tests/commands/dataset/{test_update.py => update_test.py} (72%)