fix(deps): sync deck.gl/luma.gl overrides with plugin dependency versions #37619
+64
−100
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
SUMMARY
The deck.gl plugin dependencies were bumped to
~9.2.5/~9.2.6by Dependabot across several PRs, but the rootpackage.jsonoverrides section was never updated to match — it still pinned all@deck.gl/*and@luma.gl/*packages to~9.2.2.This caused WebGL shader compilation errors at runtime on the deck.gl Demo dashboard:
DECKGL_FILTER_COLOR: no matching overloaded function foundin ScreenGrid, Grid, and Hexagon layersgeometry: undeclared identifierin the screen-grid fragment shaderRoot cause: The overrides forced older
@luma.gl/shadertools(9.2.2) to be used alongside newer@deck.gl/aggregation-layers(9.2.5). The aggregation layers' GPU shaders emitDECKGL_FILTER_COLORcalls with a signature that changed between 9.2.2 and 9.2.5, causing the shader compilation mismatch.Fix: Update all deck.gl/luma.gl overrides in root
package.jsonto match the versions required by the plugin:@deck.gl/*packages:~9.2.2→~9.2.5@luma.gl/engine,@luma.gl/shadertools:~9.2.2→~9.2.6@luma.gl/core,@luma.gl/constants,@luma.gl/webgl:~9.2.2→~9.2.6(ensures single version deduplication to avoid TypeScriptDevicetype conflicts)BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before: Deck.gl Screen Grid, Grid, and Hexagon charts show WebGL shader compilation errors
After: Charts render correctly
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION
🤖 Generated with Claude Code