chore(deps): bump electron to 41.10.5, dompurify to 3.4.13, ws to 8.21.3 - #2274
Open
arpe1618 wants to merge 5 commits into
Open
chore(deps): bump electron to 41.10.5, dompurify to 3.4.13, ws to 8.21.3#2274arpe1618 wants to merge 5 commits into
arpe1618 wants to merge 5 commits into
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ec9b82ec1f
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
Contributor
⏳ Approval required for deploying to Cloudflare Workers (Preview) for stage-web.
Hey, maintainers, kindly take some time to review and approve this deployment when you are available. Thank you! 🙏 |
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.
Description
Bumps three dependencies to their latest patch releases within the existing
caret ranges in
pnpm-workspace.yaml. No API changes — drop-in replacements.electrondompurifywsWhy these three:
electron 41.2.1has a known contextIsolation bypass (CVE-2026-70601)and two related contextBridge/sandbox issues. All three are patched in
41.10.x.
dompurify 3.4.0has two known XSS filter bypass issues patched in3.4.13.
ws 8.20.0has a micro-fragment memory exhaustion DoS patched in 8.21.x.Compatibility: All three are patch-only bumps. DOMPurify's
sanitize()call sites, Electron API usages, and
wsWebSocketServer constructor wereverified to be unaffected.
Linked Issues
N/A
Additional Context
These packages are declared with
^caret ranges in the catalog, so theonly change is updating the floor version in
pnpm-workspace.yamlandrunning
pnpm update. No code changes are needed.Note:
hono(pinned at4.11.3) and@better-auth/oauth-provider(pinned at
1.6.25) also have known CVEs but are left out intentionally —both are exact pins that likely exist for a reason and warrant separate
discussion.