fix(ui): upgrade immutable.js to 3.8.3 to address CVE-2026-29063 - #103
Open
jotamartos wants to merge 2 commits into
Open
fix(ui): upgrade immutable.js to 3.8.3 to address CVE-2026-29063#103jotamartos wants to merge 2 commits into
jotamartos wants to merge 2 commits into
Conversation
Bumps `immutable` from `3.8.1` to `3.8.3` in the UI packages to fix a prototype pollution vulnerability (CVE-2026-29063). The vulnerable methods (`mergeDeep`, `toJS`, `toObject`, etc.) are actively used in the UI state management (reducers/selectors). Made-with: Cursor
…al registry Made-with: Cursor
jotamartos
force-pushed
the
fix/cve-2026-29063-immutable
branch
from
April 27, 2026 10:24
1faf43b to
72a4485
Compare
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
immutablefrom^3.8.1to^3.8.3indac/ui/package.jsonanddac/ui-common/package.json.immutable.jsversions prior to 3.8.3, 4.3.7, and 5.1.5.Context
Dremio's UI heavily utilizes
immutable.jsfor state management, specifically leveraging methods likemergeDeep,toJS, andtoObjectwithin Redux reducers (e.g.dac/ui/src/reducers/account.js,dac/ui/src/reducers/explore/join.js) and selectors. These methods are susceptible to prototype pollution in the currently installed version (3.8.1), which allows arbitrary properties to be injected into the application state via malicious inputs.Upgrading to version
3.8.3mitigates this issue without introducing breaking API changes.Made with Cursor