This is an automated email from the ASF dual-hosted git repository.

vavila pushed a change to branch fix/non-owners-favorite-fix
in repository https://gitbox.apache.org/repos/asf/superset.git


    omit 5306bb0a623 fix: Allow non-owners to fave/unfave charts
     add c175346808a fix(table-charts): Prevent time grain from altering Raw 
Records in Tables + Interactive Tables (#37561)
     add 0b77ace1109 chore: fix lint issue with `no-unsafe-optional-chaining` 
rule (#38103)
     add f5a5a804e23 perf(dashboard): skip thumbnail_url computing on single 
dashboard endpoint (#38015)
     add b7a3224f040 feat: Larger folder drag area in folders editor (#38102)
     add e12140beb65 fix: Warning toast copy in folders editor (#38099)
     add 86c8fa5cd7b fix: Badge count in folders editor (#38100)
     add f049d3e34aa fix: Search in folders editor with verbose names (#38101)
     add 1f76944c2b1 fix: Add editors to ContributionConfig and additional 
properties to EditorKeyword (#38098)
     add 5cc8ae5427d chore(deps): bump ol from 7.5.2 to 10.8.0 in 
/superset-frontend (#37961)
     add 6a61baf5be8 fix(alerts): show friendly filter names in report edit 
modal (#38054)
     add 2a19a0b22a9 fix: Allow non-owners to fave/unfave charts

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5306bb0a623)
            \
             N -- N -- N   refs/heads/fix/non-owners-favorite-fix (2a19a0b22a9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../src/superset_core/extensions/types.py          |   4 +
 superset-frontend/jest.config.js                   |   2 +-
 superset-frontend/package-lock.json                | 226 +++++++------
 superset-frontend/package.json                     |   2 +-
 .../packages/superset-core/src/api/editors.ts      |   4 +
 .../src/connection/callApi/callApi.ts              |  10 +-
 .../test/connection/callApi/callApi.test.ts        |  15 +
 .../src/AgGridTableChart.tsx                       |  18 +-
 .../src/transformProps.ts                          |   3 +-
 .../test/AgGridTableChart.test.tsx                 | 359 +++++++++++++++++++++
 .../plugins/plugin-chart-cartodiagram/package.json |   2 +-
 .../test/MixedTimeseries/transformProps.test.ts    |   2 +-
 .../test/Timeseries/transformProps.test.ts         |   6 +-
 .../plugins/plugin-chart-table/src/TableChart.tsx  |   9 +-
 .../plugin-chart-table/src/transformProps.ts       |   3 +-
 .../plugin-chart-table/test/TableChart.test.tsx    |  56 +++-
 .../components/EditorWrapper/useKeywords.test.ts   |   4 +-
 .../SqlLab/components/EditorWrapper/useKeywords.ts |   2 +-
 .../Datasource/FoldersEditor/TreeItem.styles.ts    |  15 +-
 .../Datasource/FoldersEditor/TreeItem.tsx          |   5 +-
 .../Datasource/FoldersEditor/constants.ts          |   3 +
 .../FoldersEditor/folderOperations.test.ts         |  37 +++
 .../Datasource/FoldersEditor/folderOperations.ts   |   8 +-
 .../FoldersEditor/hooks/useDragHandlers.ts         |   4 +-
 .../Datasource/FoldersEditor/treeUtils.test.ts     |  59 ++++
 .../Datasource/FoldersEditor/treeUtils.ts          |  19 ++
 .../DatasourceEditor/DatasourceEditor.tsx          |  17 +-
 .../src/core/editors/AceEditorProvider.tsx         |   2 +
 .../ColumnSelectPopover.test.tsx                   |   4 +-
 .../controlUtils/getColumnKeywords.test.tsx        |   2 +-
 .../src/explore/controlUtils/getColumnKeywords.tsx |   2 +-
 .../src/features/alerts/AlertReportModal.test.tsx  | 284 ++++++++++++++--
 .../src/features/alerts/AlertReportModal.tsx       |   7 +
 .../src/hooks/apiResources/dashboards.test.ts      |  23 +-
 .../src/hooks/apiResources/dashboards.ts           |  35 +-
 superset/dashboards/api.py                         |  28 +-
 tests/integration_tests/dashboards/api_tests.py    |  81 +++++
 tests/unit_tests/dashboards/api_test.py            |  99 ++++++
 38 files changed, 1270 insertions(+), 191 deletions(-)
 create mode 100644 
superset-frontend/plugins/plugin-chart-ag-grid-table/test/AgGridTableChart.test.tsx
 create mode 100644 tests/unit_tests/dashboards/api_test.py

Reply via email to