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/eslint-10.0.2
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 5e198d23e3f chore(deps-dev): bump eslint from 8.57.1 to 10.0.2 in 
/superset-frontend
     add f2f55591ecc chore: remove redundant service-worker.js placeholder 
(#38348)
     add 016417f7939 fix(explore): prevent TypeError when chart dimension 
returns empty string (#38276)
     add c35bf344a96 chore(extensions): clean up backend entrypoints and file 
globs (#38360)
     add 2ab9d37a001 fix(templates): restore css_bundle calls in spa.html for 
production builds (#38350)
     add fa346099523 feat: Support OAuth2 single-use refresh tokens (#38364)
     add 1136e86cf70 chore(deps): bump ioredis from 5.9.3 to 5.10.0 in 
/superset-websocket (#38318)
     add f10cb14d92b chore(deps-dev): bump @types/node from 25.3.2 to 25.3.3 in 
/superset-websocket (#38319)
     add 983b633972f feat(bar-chart): add option to color bars by primary axis 
when no dimensions are set  (#37531)
     add ef4b1d674be feat(docs): add filterable UI Components table and improve 
build performance (#38253)
     add 7815afb24d2 fix(charts): improve minor gridline visibility in dark 
themes (#38371)
     add 51ac758b801 fix(tags): expire tag relationship after deleting all 
tagged objects (#38163)
     add 80a29cd6fed chore(deps-dev): bump terser-webpack-plugin from 5.3.16 to 
5.3.17 in /superset-frontend (#38386)
     add 4c90c312c91 chore(deps-dev): bump eslint from 8.57.1 to 10.0.2 in 
/superset-frontend

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   (5e198d23e3f)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/superset-frontend/eslint-10.0.2 (4c90c312c91)

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:
 .gitignore                                         |   2 +-
 docs/.gitignore                                    |   8 +-
 docs/babel.config.js                               |  32 -
 docs/developer_docs/api.mdx                        |  36 +-
 docs/developer_docs/extensions/development.md      |  35 +-
 docs/developer_docs/extensions/overview.md         |   4 +
 docs/docusaurus.config.ts                          |  28 +
 docs/package.json                                  |  11 +-
 docs/scripts/generate-database-docs.mjs            |   8 +-
 docs/scripts/generate-extension-components.mjs     | 676 --------------------
 docs/scripts/generate-if-changed.mjs               | 307 +++++++++
 docs/scripts/generate-superset-components.mjs      | 241 ++++++-
 docs/sidebarTutorials.js                           |  11 -
 docs/src/components/databases/DatabaseIndex.tsx    |   1 +
 .../components/ui-components/ComponentIndex.tsx    | 262 ++++++++
 .../src/components/ui-components/index.ts          |   3 +-
 .../src/components/ui-components}/types.ts         |  43 +-
 docs/src/data/databases.json                       |  12 +-
 docs/src/shims/superset-ui-core.ts                 |  57 ++
 docs/src/types/apache-superset-core/index.d.ts     |   4 +-
 docs/src/webpack.extend.ts                         |  15 +-
 docs/tsconfig.json                                 |   5 +-
 docs/yarn.lock                                     | 697 ++++++++++++++++++---
 .../src/superset_core/extensions/types.py          |   9 +-
 .../src/superset_extensions_cli/cli.py             | 123 +++-
 .../templates/backend/pyproject.toml.j2            |   7 +
 .../templates/extension.json.j2                    |   6 -
 superset-extensions-cli/tests/test_cli_build.py    | 275 ++++++--
 superset-extensions-cli/tests/test_cli_init.py     |  13 +-
 superset-extensions-cli/tests/test_cli_validate.py |  14 +-
 superset-extensions-cli/tests/test_templates.py    |  20 +-
 superset-frontend/package-lock.json                |   9 +-
 superset-frontend/package.json                     |   2 +-
 .../src/Timeseries/Regular/Bar/controlPanel.tsx    |   2 +
 .../src/Timeseries/transformProps.ts               | 125 +++-
 .../src/Timeseries/transformers.ts                 |  49 +-
 .../plugin-chart-echarts/src/Timeseries/types.ts   |   1 +
 .../plugin-chart-echarts/src/components/Echart.tsx |   6 +
 .../plugins/plugin-chart-echarts/src/controls.tsx  |  28 +
 .../test/Timeseries/Bar/transformProps.test.ts     | 283 +++++++++
 .../explore/components/DataTableControl/index.tsx  |   2 +-
 superset-frontend/webpack.config.js                |   7 +-
 superset-websocket/package-lock.json               |  44 +-
 superset-websocket/package.json                    |   4 +-
 superset/daos/tag.py                               |   7 +
 superset/db_engine_specs/base.py                   |   6 +
 superset/initialization/__init__.py                |  13 +-
 superset/static/service-worker.js                  |  27 -
 superset/templates/superset/spa.html               |   5 +
 superset/utils/oauth2.py                           |   4 +
 tests/unit_tests/db_engine_specs/test_base.py      |  91 +++
 tests/unit_tests/extension_tests.py                |  21 +-
 tests/unit_tests/extensions/test_types.py          |  34 +-
 tests/unit_tests/tags/commands/update_test.py      |  60 ++
 tests/unit_tests/utils/oauth2_tests.py             |  56 ++
 55 files changed, 2766 insertions(+), 1085 deletions(-)
 delete mode 100644 docs/babel.config.js
 delete mode 100644 docs/scripts/generate-extension-components.mjs
 create mode 100644 docs/scripts/generate-if-changed.mjs
 create mode 100644 docs/src/components/ui-components/ComponentIndex.tsx
 copy superset-frontend/packages/superset-ui-core/src/ui-overrides/index.tsx => 
docs/src/components/ui-components/index.ts (92%)
 copy {superset-frontend/src/explore/components/controls/VizTypeControl => 
docs/src/components/ui-components}/types.ts (57%)
 create mode 100644 docs/src/shims/superset-ui-core.ts
 delete mode 100644 superset/static/service-worker.js

Reply via email to