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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/superset-frontend/packages/superset-ui-demo/react-19.2.4
in repository https://gitbox.apache.org/repos/asf/superset.git


    omit 84cc2606156 chore(deps): bump react in 
/superset-frontend/packages/superset-ui-demo
     add 7110fc9cde7 fix(explore): remove extra spacing when Advanced Analytics 
section is hidden (#37456)
     add 675a4c7a66d fix(charts): numerical column for the Point Radius field 
in mapbox (#36962)
     add 6cb3cea960d feat(extensions): Allow replacing editors using extensions 
(#37499)
     add 1501af06fe0 fix(Multilayer): preserve dashboard context for embedded 
(#37495)
     add 810d6ff4807 fix(sqllab): Resolve stale closure bug causing text 
selection to break (#37550)
     add 55ec1152ec0 fix(deckgl): change deck gl Path default line width unit 
to meters (#37248)
     add 0b34363654a fix(mcp): Instance not bound to session error (#37548)
     add 5a99588f579 fix(themes): correct action icons size and restore missing 
tooltips (#37409)
     add 3ef33dcb766 feat(playwright): add documentation screenshot generator 
(#37494)
     add 9c0337d092c fix(explore): correct `validationDependancies` typo to 
`validationDependencies` (#37554)
     add c16e8f747ca chore(deps-dev): bump css-loader from 7.1.2 to 7.1.3 in 
/superset-frontend (#37544)
     add d6029f5c8ac chore(deps): bump dependencies to address security 
vulnerabilities (#37552)
     add ab4f646ef60 chore(deps): bump @babel/core from 7.28.5 to 7.28.6 in 
/docs (#37540)
     add c7fd1a2f659 chore(deps-dev): bump @types/node from 25.0.10 to 25.1.0 
in /superset-websocket (#37539)
     add 72bcff4d504 chore(deps): bump react in 
/superset-frontend/packages/superset-ui-demo

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   (84cc2606156)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/superset-frontend/packages/superset-ui-demo/react-19.2.4
 (72bcff4d504)

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:
 README.md                                          |   2 +-
 .../extensions/contribution-types.md               |  31 +-
 .../extensions/extension-points/editors.md         | 245 +++++++++++++
 docs/developer_portal/extensions/registry.md       |   1 +
 docs/package.json                                  |   2 +-
 docs/static/img/extensions/editors-bundle.png      | Bin 0 -> 397539 bytes
 docs/static/img/screenshots/dashboard.jpg          | Bin 0 -> 136723 bytes
 docs/static/img/screenshots/explore.jpg            | Bin 651168 -> 106386 bytes
 docs/static/img/screenshots/gallery.jpg            | Bin 965607 -> 121316 bytes
 docs/static/img/screenshots/sql_lab.jpg            | Bin 455005 -> 101650 bytes
 docs/yarn.lock                                     | 234 +++++--------
 pyproject.toml                                     |   1 +
 requirements/base.in                               |  10 +-
 requirements/base.txt                              |  14 +-
 requirements/development.txt                       |  14 +-
 scripts/check-type.js                              |   5 +
 .../cypress-base/cypress/e2e/sqllab/tabs.test.ts   |   4 +-
 superset-frontend/package-lock.json                |  25 +-
 superset-frontend/package.json                     |   5 +-
 .../superset-core/src/api/contributions.ts         |  24 +-
 .../packages/superset-core/src/api/editors.ts      | 381 ++++++++++++++++++++
 .../packages/superset-core/src/api/index.ts        |   2 +
 .../superset-ui-core/src/components/index.ts       |   1 +
 .../generators/docs/docs-screenshots.spec.ts       | 230 +++++++++++++
 .../playwright/generators/playwright.config.ts     |  81 +++++
 superset-frontend/playwright/utils/urls.ts         |   5 +-
 .../src/ScatterPlotGlowOverlay.jsx                 |  64 ++++
 .../src/transformProps.js                          |   4 +-
 .../test/ScatterPlotGlowOverlay.test.tsx           | 346 +++++++++++++++++++
 .../src/Multi/Multi.test.tsx                       |  83 +++++
 .../legacy-preset-chart-deckgl/src/Multi/Multi.tsx |   2 +
 .../src/layers/Path/Path.test.tsx                  | 120 +++++++
 .../src/layers/Path/controlPanel.ts                |   2 +-
 .../src/controlPanel.tsx                           |   2 +-
 .../plugin-chart-table/src/controlPanel.tsx        |   2 +-
 .../SqlLab/components/AceEditorWrapper/index.tsx   | 249 --------------
 .../EditorWrapper.test.tsx}                        | 102 ++++--
 .../src/SqlLab/components/EditorWrapper/index.tsx  | 382 +++++++++++++++++++++
 .../useAnnotations.test.ts                         |   0
 .../useAnnotations.ts                              |   0
 .../useKeywords.test.ts                            |   0
 .../useKeywords.ts                                 |   0
 .../SqlLab/components/SqlEditor/SqlEditor.test.tsx |   4 +-
 .../src/SqlLab/components/SqlEditor/index.tsx      | 155 ++++++---
 .../TemplateParamsEditor.test.tsx                  |   4 +-
 .../components/TemplateParamsEditor/index.tsx      |  14 +-
 .../src/components/ListView/ActionsBar.tsx         |   3 +-
 .../components/SQLEditorWithValidation/index.tsx   |  50 ++-
 .../src/core/editors/AceEditorProvider.test.tsx    | 191 +++++++++++
 .../src/core/editors/AceEditorProvider.tsx         | 358 +++++++++++++++++++
 .../src/core/editors/EditorHost.test.tsx           |  90 +++++
 superset-frontend/src/core/editors/EditorHost.tsx  | 128 +++++++
 .../src/core/editors/EditorProviders.test.ts       | 339 ++++++++++++++++++
 .../src/core/editors/EditorProviders.ts            | 243 +++++++++++++
 superset-frontend/src/core/editors/index.ts        | 130 +++++++
 superset-frontend/src/core/index.ts                |   1 +
 .../dashboard/components/PropertiesModal/index.tsx |   3 -
 .../PropertiesModal/sections/AdvancedSection.tsx   |  35 +-
 .../PropertiesModal/sections/StylingSection.tsx    |  13 +-
 .../gridComponents/Markdown/Markdown.jsx           |  34 +-
 .../gridComponents/Markdown/Markdown.test.tsx      |  25 +-
 .../explore/components/ControlPanelsContainer.tsx  |   2 +-
 .../DndColumnSelectControl/ColumnSelectPopover.tsx |   8 +-
 .../DndFilterSelect.test.tsx                       |   8 +-
 .../DndMetricSelect.test.tsx                       |  14 +-
 .../AdhocFilterEditPopoverSqlTabContent.test.tsx   |  16 +-
 .../AdhocFilterEditPopoverSqlTabContent/index.tsx  |   7 +-
 .../MetricControl/AdhocMetricEditPopover/index.tsx |  11 +-
 .../src/explore/reducers/exploreReducer.js         |   4 +-
 .../src/extensions/ExtensionsManager.ts            |  66 ++--
 .../src/extensions/ExtensionsStartup.tsx           |  11 +-
 .../src/features/annotations/AnnotationModal.tsx   |  38 +-
 .../src/features/cssTemplates/CssTemplateModal.tsx |  11 +-
 .../src/features/themes/ThemeModal.tsx             |  45 ++-
 superset-frontend/src/pages/ThemeList/index.tsx    |  22 +-
 superset-websocket/package-lock.json               |  14 +-
 superset-websocket/package.json                    |   2 +-
 .../examples/deckgl_demo/charts/Deck.gl_Path.yaml  |   1 +
 superset/mcp_service/auth.py                       |  77 +++--
 79 files changed, 4141 insertions(+), 711 deletions(-)
 create mode 100644 docs/developer_portal/extensions/extension-points/editors.md
 create mode 100644 docs/static/img/extensions/editors-bundle.png
 create mode 100644 docs/static/img/screenshots/dashboard.jpg
 create mode 100644 superset-frontend/packages/superset-core/src/api/editors.ts
 create mode 100644 
superset-frontend/playwright/generators/docs/docs-screenshots.spec.ts
 create mode 100644 superset-frontend/playwright/generators/playwright.config.ts
 create mode 100644 
superset-frontend/plugins/legacy-plugin-chart-map-box/test/ScatterPlotGlowOverlay.test.tsx
 create mode 100644 
superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/Path.test.tsx
 delete mode 100644 
superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx
 rename 
superset-frontend/src/SqlLab/components/{AceEditorWrapper/AceEditorWrapper.test.tsx
 => EditorWrapper/EditorWrapper.test.tsx} (53%)
 create mode 100644 
superset-frontend/src/SqlLab/components/EditorWrapper/index.tsx
 rename superset-frontend/src/SqlLab/components/{AceEditorWrapper => 
EditorWrapper}/useAnnotations.test.ts (100%)
 rename superset-frontend/src/SqlLab/components/{AceEditorWrapper => 
EditorWrapper}/useAnnotations.ts (100%)
 rename superset-frontend/src/SqlLab/components/{AceEditorWrapper => 
EditorWrapper}/useKeywords.test.ts (100%)
 rename superset-frontend/src/SqlLab/components/{AceEditorWrapper => 
EditorWrapper}/useKeywords.ts (100%)
 create mode 100644 
superset-frontend/src/core/editors/AceEditorProvider.test.tsx
 create mode 100644 superset-frontend/src/core/editors/AceEditorProvider.tsx
 create mode 100644 superset-frontend/src/core/editors/EditorHost.test.tsx
 create mode 100644 superset-frontend/src/core/editors/EditorHost.tsx
 create mode 100644 superset-frontend/src/core/editors/EditorProviders.test.ts
 create mode 100644 superset-frontend/src/core/editors/EditorProviders.ts
 create mode 100644 superset-frontend/src/core/editors/index.ts

Reply via email to