This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.7.5
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 05d4269f30 build(deps-dev): bump @typescript-eslint/eslint-plugin
add 512fb9a0bd feat: Add Deck.gl Contour Layer (#24154)
add 549abb542b fix: REST API CSRF exempt list (#25590)
add 593daac614 build(deps-dev): bump @types/node from 20.8.2 to 20.8.4 in
/superset-websocket (#25584)
add 9bc0156058 build(deps-dev): bump @typescript-eslint/eslint-plugin
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 (05d4269f30)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-websocket/typescript-eslint/eslint-plugin-6.7.5
(9bc0156058)
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:
.../{Heatmap/Heatmap.tsx => Contour/Contour.tsx} | 69 ++--
.../layers/{Heatmap => Contour}/controlPanel.ts | 89 +++---
.../src/layers/Contour/images/thumbnail.png | Bin 0 -> 64889 bytes
.../src/layers/Contour/images/thumbnailLarge.png | Bin 0 -> 207560 bytes
.../src/layers/{Heatmap => Contour}/index.ts | 6 +-
.../legacy-preset-chart-deckgl/src/preset.ts | 2 +
.../legacy-preset-chart-deckgl/src/types.ts | 6 +
.../legacy-preset-chart-deckgl/types/external.d.ts | 53 +++-
.../controls/ContourControl/ContourOption.tsx | 107 +++++++
.../ContourControl/ContourPopoverControl.tsx | 351 +++++++++++++++++++++
.../ContourControl/ContourPopoverTrigger.tsx | 60 ++++
.../components/controls/ContourControl/index.tsx | 143 +++++++++
.../components/controls/ContourControl/types.ts | 55 ++++
.../DndColumnSelectControl/OptionWrapper.tsx | 11 +-
.../controls/DndColumnSelectControl/types.ts | 1 +
.../components/controls/TextControl/index.tsx | 2 +-
.../src/explore/components/controls/index.js | 2 +
superset-websocket/package-lock.json | 36 ++-
superset-websocket/package.json | 2 +-
superset/views/base_api.py | 2 +-
superset/viz.py | 21 ++
tests/unit_tests/conftest.py | 9 +
.../client.py => unit_tests/security/api_test.py} | 17 +-
23 files changed, 943 insertions(+), 101 deletions(-)
copy
superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/{Heatmap/Heatmap.tsx
=> Contour/Contour.tsx} (58%)
copy superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/{Heatmap
=> Contour}/controlPanel.ts (69%)
create mode 100644
superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/images/thumbnail.png
create mode 100644
superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/images/thumbnailLarge.png
copy superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/{Heatmap
=> Contour}/index.ts (91%)
create mode 100644
superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx
create mode 100644
superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx
create mode 100644
superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverTrigger.tsx
create mode 100644
superset-frontend/src/explore/components/controls/ContourControl/index.tsx
create mode 100644
superset-frontend/src/explore/components/controls/ContourControl/types.ts
copy tests/{integration_tests/fixtures/client.py =>
unit_tests/security/api_test.py} (71%)