fix(deps): bump html-to-text to 10.0.1 to resolve deepmerge-ts CVE - #433
Open
defeldman wants to merge 1 commit into
Open
fix(deps): bump html-to-text to 10.0.1 to resolve deepmerge-ts CVE#433defeldman wants to merge 1 commit into
defeldman wants to merge 1 commit into
Conversation
defeldman
commented
Aug 19, 2026
| "encoding-japanese": "2.2.0", | ||
| "he": "1.2.0", | ||
| "html-to-text": "10.0.0", | ||
| "html-to-text": "10.0.1", |
Author
There was a problem hiding this comment.
Probably should ^10.0.1 here instead? Seems like convention in this repo is to pin dependencies though.
html-to-text 10.0.1 is a dependency-only security release that bumps its deepmerge-ts dependency from ^7.1.5 to ^8.0.1, fixing a stack exhaustion vulnerability (GHSA-ggr8-5vv4-36mx) when merging recursive object graphs. No other code changes between 10.0.0 and 10.0.1. Full test suite passes unchanged (253/253 assertions) before and after the bump. Fixes nodemailer#432
defeldman
force-pushed
the
bump-html-to-text-10.0.1
branch
from
August 19, 2026 22:46
81fc5ba to
de2cac5
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.
Hello - while resolving some security issues, I noticed this would be easy to fix.
Summary
html-to-textfrom10.0.0to10.0.1.10.0.1is a dependency-only security release: it bumpshtml-to-text's owndeepmerge-tsdependency from^7.1.5to^8.0.1, fixing a stack exhaustion vulnerability when merging recursive object graphs (GHSA-ggr8-5vv4-36mx).html-to-text10.0.0 and 10.0.1."10.0.1"rather than"^10.0.1") to match how every other dependency in thispackage.jsonis pinned, rather than switching to a range.Fixes #432
Test plan
npm installresolvesdeepmerge-tsto8.0.1.npm auditno longer flagsdeepmerge-ts.npm test— eslint + nodeunit) passes: 253/253 assertions, identical to the pre-change baseline.🤖 Generated with Claude Code