chore(deps): upgrade deck.gl and luma.gl packages to ~9.2.6#37718
Merged
Conversation
Coordinated upgrade of all deck.gl and luma.gl packages to version ~9.2.6 to ensure type compatibility. Individual Dependabot PRs were failing due to TypeScript type mismatches (Device type from different luma.gl versions). Updated packages: - @deck.gl/aggregation-layers: ~9.2.5 → ~9.2.6 - @deck.gl/core: ~9.2.5 → ~9.2.6 - @deck.gl/extensions: ~9.2.5 → ~9.2.6 - @deck.gl/geo-layers: ~9.2.5 → ~9.2.6 - @deck.gl/layers: ~9.2.5 → ~9.2.6 - @deck.gl/mesh-layers: ~9.2.2 → ~9.2.6 - @deck.gl/react: ~9.2.5 → ~9.2.6 - @luma.gl/constants: ~9.2.4 → ~9.2.6 - @luma.gl/core: ~9.2.2 → ~9.2.6 Supersedes: #37472, #37438, #37240, #37239 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
|
Bito Automatic Review Skipped - Files Excluded |
This was referenced Feb 6, 2026
The npm overrides in the root package.json were still at v9.2.2 while the plugin package.json was updated to v9.2.6. This caused multiple versions of luma.gl to be installed, triggering the "luma.gl - multiple versions detected" runtime error in tests. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
✅ Deploy Preview for superset-docs-preview ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
The npm workspaces setup was causing multiple versions of luma.gl packages to be installed - one set in the root node_modules and another in the plugin's nested node_modules. This triggered the "luma.gl - multiple versions detected" runtime error in tests. The fix adds deck.gl and luma.gl packages as direct dependencies at the root level, which forces npm to hoist them properly and ensures only a single version is installed. Changes: - Add deck.gl packages (~9.2.5) to root dependencies - Add luma.gl packages (~9.2.5) to root dependencies - Update plugin's package.json to use consistent ~9.2.5 versions - Update root overrides to use ~9.2.5 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This was referenced Feb 6, 2026
sadpandajoe
approved these changes
Feb 6, 2026
aminghadersohi
pushed a commit
to aminghadersohi/superset
that referenced
this pull request
Mar 5, 2026
…7718) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
alex-poor
pushed a commit
to alex-poor/superset
that referenced
this pull request
Mar 15, 2026
…7718) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
qfcwell
pushed a commit
to qfcwell/superset
that referenced
this pull request
May 12, 2026
…7718) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
Coordinated upgrade of all deck.gl and luma.gl packages to version ~9.2.6 to ensure type compatibility.
Individual Dependabot PRs were failing due to TypeScript type mismatches - the
Devicetype from different luma.gl versions was causing build failures inDeckGLContainer.tsx.Updated packages:
@deck.gl/aggregation-layers: ~9.2.5 → ~9.2.6@deck.gl/core: ~9.2.5 → ~9.2.6@deck.gl/extensions: ~9.2.5 → ~9.2.6@deck.gl/geo-layers: ~9.2.5 → ~9.2.6@deck.gl/layers: ~9.2.5 → ~9.2.6@deck.gl/mesh-layers: ~9.2.2 → ~9.2.6@deck.gl/react: ~9.2.5 → ~9.2.6@luma.gl/constants: ~9.2.4 → ~9.2.6@luma.gl/core: ~9.2.2 → ~9.2.6Supersedes:
Test plan
🤖 Generated with Claude Code