This is an automated email from the ASF dual-hosted git repository.
jli pushed a change to branch showtime-master
in repository https://gitbox.apache.org/repos/asf/superset.git
discard aa0eda5fe4 chore: fix spacing in AGENTS.md
add d54e227e25 chore: update old MotherDuck duckdb version to follow the
official duckdb one (#36834)
add e4f649e49c fix(superset-frontend): Fixes for broken functionality when
an application root is defined (#36058)
add b99fc582e4 fix(chart): implement geohash decoding (#37027)
add 3580dc6cad chore(ts): Migrate Divider.jsx to Divider.tsx [SIP-36]
(#36335)
add a60f8d761d chore(deps-dev): bump npm from 11.5.2 to 11.8.0 in
/superset-frontend (#37352)
add 3a811d680d chore(deps): bump lodash from 4.17.21 to 4.17.23 in
/superset-frontend (#37348)
add 3f37cdbf9c fix(database): include `configuration_method` in the DB
export/import flow (#36958)
add 319a131ec9 fix(charts): missing globalOpacity prop with mapbox (#37168)
add 6cbfd6cf21 chore: fix spacing in AGENTS.md
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 (aa0eda5fe4)
\
N -- N -- N refs/heads/showtime-master (6cbfd6cf21)
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:
pyproject.toml | 3 +-
superset-frontend/package-lock.json | 33 +++--
superset-frontend/package.json | 2 +-
.../packages/superset-core/package.json | 2 +-
.../superset-ui-chart-controls/package.json | 2 +-
.../packages/superset-ui-core/package.json | 2 +-
.../src/ScatterPlotGlowOverlay.jsx | 6 +-
.../legacy-preset-chart-deckgl/package.json | 2 +-
.../src/layers/Polygon/transformProps.test.ts | 50 +++++++
.../src/layers/Polygon/transformProps.ts | 11 ++
.../plugins/legacy-preset-chart-nvd3/package.json | 2 +-
.../plugin-chart-ag-grid-table/package.json | 2 +-
.../plugins/plugin-chart-cartodiagram/package.json | 2 +-
.../plugins/plugin-chart-echarts/package.json | 2 +-
.../plugins/plugin-chart-table/package.json | 2 +-
.../src/SqlLab/components/ResultSet/index.tsx | 13 +-
.../Divider/{Divider.test.jsx => Divider.test.tsx} | 17 +--
.../Divider/{Divider.jsx => Divider.tsx} | 37 +++--
.../src/explore/exploreUtils/index.js | 25 ++--
superset-frontend/src/features/home/Menu.test.tsx | 45 ++++---
superset-frontend/src/features/home/Menu.tsx | 20 ++-
superset-frontend/src/features/home/RightMenu.tsx | 2 +-
superset-frontend/src/utils/assetUrl.test.ts | 48 +++++++
superset-frontend/src/utils/assetUrl.ts | 13 +-
superset/databases/api.py | 1 +
superset/databases/schemas.py | 7 +
superset/models/core.py | 1 +
superset/security/manager.py | 25 ----
superset/views/base.py | 6 -
tests/integration_tests/databases/api_tests.py | 1 +
.../integration_tests/databases/commands_tests.py | 1 +
tests/unit_tests/databases/api_test.py | 149 +++++++++++++++++++++
tests/unit_tests/datasets/commands/export_test.py | 1 +
33 files changed, 411 insertions(+), 124 deletions(-)
rename
superset-frontend/src/dashboard/components/gridComponents/Divider/{Divider.test.jsx
=> Divider.test.tsx} (83%)
rename
superset-frontend/src/dashboard/components/gridComponents/Divider/{Divider.jsx
=> Divider.tsx} (77%)
create mode 100644 superset-frontend/src/utils/assetUrl.test.ts