Commit dc98eab
pydeck: bump frontend to ~9.3.*, fix widget JSON registration, add widget gallery examples (#10242)
* Prepare pydeck 0.9.3 release
Bump pydeck version 0.9.2 → 0.9.3 and lock frontend to deck.gl ~9.3.*.
Update bump_version.py to generate tilde-range semver (~X.Y.*) from lerna.json.
https://claude.ai/code/session_012C1gkGaLFxk6HMvN4VMrST
* Fix quote style to double quotes per Black formatter
https://claude.ai/code/session_012C1gkGaLFxk6HMvN4VMrST
* Add PopupWidget and InfoWidget to pydeck widget gallery example
Demonstrates the two new 9.3 widgets:
- PopupWidget: static HTML popup anchored at Heathrow Airport coordinates
- InfoWidget: hover-mode widget (getTooltip callback must be set on the JS side)
https://claude.ai/code/session_012C1gkGaLFxk6HMvN4VMrST
* Fix InfoWidget JSON registration and use @@= for getTooltip in example
create-deck.js was overwriting InfoWidget, ThemeWidget, and LoadingWidget
with undefined by referencing non-existent _-prefixed exports; those widgets
are already captured by extractElements. Removed the incorrect entries.
Update the widgets example to use @@= expression syntax for InfoWidget's
getTooltip, and drop "new in 9.3" labels.
https://claude.ai/code/session_012C1gkGaLFxk6HMvN4VMrST
* Register TimelineWidget in JSON converter configuration
https://claude.ai/code/session_012C1gkGaLFxk6HMvN4VMrST
* Revert pydeck version bump to 0.9.2
Not ready for release yet; keep frontend locked to ~9.3.* but hold
the Python package version at 0.9.2.
https://claude.ai/code/session_012C1gkGaLFxk6HMvN4VMrST
* fix(widgets): handle negative DMS degrees and guard InfoWidget tooltip expression
The dmsToDecimal function miscalculated when degrees were negative with
non-zero minutes/seconds (e.g. -37°48'00" → -36.2 instead of -37.8).
Also guard the InfoWidget example's @@= expression against undefined
object when hovering empty space.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs(pydeck): add 0.9.3 changelog, whats-new section, and playground link
Add pydeck 0.9.3 entry to CHANGELOG.rst, a pydeck subsection under
deck.gl v9.3 whats-new, and link to the new pydeck playground from the
pydeck docs index page.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs: remove pydeck section from deck.gl whats-new
pydeck has its own docs site with CHANGELOG.rst as the canonical
release notes location.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs: move DMS fix to deck.gl whats-new patch notes
The negative DMS parsing fix is a deck.gl core change, not a pydeck
change. Move it to the v9.3 patch releases section in whats-new.md.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs: remove patch release note from whats-new
Patch fixes aren't historically documented in this file on master.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* chore(deps): bump bleach to 6.4.0 and jupyter-server to 2.20.0
Security updates for pydeck lockfile:
- bleach 6.4.0: XSS fixes in URI/formaction sanitization (GHSA-8rfp-98v4-mmr6)
- jupyter-server 2.20.0: CVE-2026-44727 (GHSA-fcw5-x6j4-ccmp)
Supersedes #10390 and #10391.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude <noreply@anthropic.com>1 parent 10c4c0c commit dc98eab
9 files changed
Lines changed: 122 additions & 43 deletions
File tree
- bindings/pydeck
- docs
- examples
- pydeck
- modules
- jupyter-widget/src/playground
- widgets/src/lib/geocode
- test/modules/widgets
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| 61 | + | |
| 62 | + | |
61 | 63 | | |
62 | | - | |
63 | | - | |
| 64 | + | |
| 65 | + | |
64 | 66 | | |
65 | | - | |
| 67 | + | |
66 | 68 | | |
67 | 69 | | |
68 | 70 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
9 | 15 | | |
10 | 16 | | |
11 | 17 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
19 | 24 | | |
20 | 25 | | |
21 | 26 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
| 13 | + | |
12 | 14 | | |
13 | 15 | | |
14 | 16 | | |
| |||
54 | 56 | | |
55 | 57 | | |
56 | 58 | | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
57 | 70 | | |
58 | 71 | | |
59 | 72 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
46 | | - | |
| 45 | + | |
47 | 46 | | |
48 | 47 | | |
49 | 48 | | |
50 | 49 | | |
51 | | - | |
52 | | - | |
53 | | - | |
| 50 | + | |
54 | 51 | | |
55 | 52 | | |
56 | 53 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
195 | 195 | | |
196 | 196 | | |
197 | 197 | | |
198 | | - | |
| 198 | + | |
| 199 | + | |
199 | 200 | | |
200 | 201 | | |
| 202 | + | |
| 203 | + | |
201 | 204 | | |
202 | 205 | | |
203 | 206 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
54 | 73 | | |
55 | 74 | | |
56 | 75 | | |
| |||
0 commit comments