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/redux-5.0.1
in repository https://gitbox.apache.org/repos/asf/superset.git
discard e6a233f075 chore(deps): bump redux from 4.2.1 to 5.0.1 in
/superset-frontend
add c9ec173647 fix(SearchFilter): prevent unintended autocomplete on
search input (#36209)
add 5ce4c52cfa feat(docs): In the Wild page with YAML data and AntD
components (#36386)
add 33a425bbbc fix(echarts): use scroll legend for horizontal layouts to
prevent overlap (#36306)
add 24a4f8510d docs: Add SQL Lab Export to Google Sheets to community
extensions registry (#36714)
add b800412eda fix(docs): add retry logic and concurrency handling for
badge downloads (#36715)
add 737a5162e4 fix: Use is_active for guest users (#36716)
add b1e004e122 build(dev-deps): remove stub type definition packages
(#36706)
add ae584c8886 chore: remove INTHEWILD.md after migration to YAML (#36718)
add 4a95f83f2f chore(deps): bump redux from 4.2.1 to 5.0.1 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 (e6a233f075)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/redux-5.0.1 (4a95f83f2f)
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:
.rat-excludes | 3 +
README.md | 4 +-
RESOURCES/INTHEWILD.md | 226 --------
RESOURCES/INTHEWILD.yaml | 644 +++++++++++++++++++++
docs/developer_portal/extensions/registry.md | 10 +-
docs/docusaurus.config.ts | 8 +
docs/package.json | 3 +
docs/plugins/remark-localize-badges.mjs | 162 ++++--
docs/src/pages/inTheWild.tsx | 165 ++++++
docs/src/pages/index.tsx | 104 +++-
.../svgType.d.ts => docs/src/types/yaml.d.ts | 10 +-
docs/src/webpack.extend.ts | 7 +
.../{api_explorer.png => api-explorer.png} | Bin
docs/static/img/extensions/gsheets-export.png | Bin 0 -> 387654 bytes
...flow_visualizer.png => sql-flow-visualizer.png} | Bin
docs/static/img/logos/preset.svg | Bin 0 -> 3622 bytes
docs/yarn.lock | 37 +-
superset-frontend/package-lock.json | 68 +--
superset-frontend/package.json | 3 -
.../packages/superset-ui-core/package.json | 1 -
.../plugin-chart-ag-grid-table/package.json | 1 -
.../plugin-chart-echarts/src/utils/series.ts | 12 +-
.../test/Gantt/transformProps.test.ts | 1 -
.../plugin-chart-echarts/test/utils/series.test.ts | 17 +-
.../plugins/plugin-chart-table/package.json | 1 -
.../components/ListView/Filters/Search.test.tsx | 230 ++++++++
.../src/components/ListView/Filters/Search.tsx | 3 +
.../src/components/ListView/Filters/index.test.tsx | 132 +++++
.../src/components/ListView/Filters/index.tsx | 5 +-
superset-frontend/src/components/ListView/types.ts | 2 +
.../src/pages/AlertReportList/index.tsx | 1 +
.../src/pages/AnnotationLayerList/index.tsx | 1 +
superset-frontend/src/pages/GroupsList/index.tsx | 1 +
superset-frontend/src/pages/RolesList/index.tsx | 1 +
.../src/pages/RowLevelSecurityList/index.tsx | 1 +
superset-frontend/src/pages/Tags/index.tsx | 1 +
superset/security/guest_token.py | 3 +-
37 files changed, 1509 insertions(+), 359 deletions(-)
delete mode 100644 RESOURCES/INTHEWILD.md
create mode 100644 RESOURCES/INTHEWILD.yaml
create mode 100644 docs/src/pages/inTheWild.tsx
copy
superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/type-icons/svgType.d.ts
=> docs/src/types/yaml.d.ts (86%)
rename docs/static/img/extensions/{api_explorer.png => api-explorer.png} (100%)
create mode 100644 docs/static/img/extensions/gsheets-export.png
rename docs/static/img/extensions/{sql_flow_visualizer.png =>
sql-flow-visualizer.png} (100%)
create mode 100644 docs/static/img/logos/preset.svg
create mode 100644
superset-frontend/src/components/ListView/Filters/Search.test.tsx
create mode 100644
superset-frontend/src/components/ListView/Filters/index.test.tsx