chore: upgrade glob and patch brace-expansion CVE#69
Merged
Conversation
## Changed - Bump `glob` from `^11.1.0` to `^13.0.6` to remove deprecation warning at install - Override transitive `brace-expansion` in vulnerable range `>=5.0.0 <5.0.6` to `^5.0.6` (CVE-2026-45149, GHSA-jxxr-4gwj-5jf2)
There was a problem hiding this comment.
Pull request overview
This PR updates dependency management to remove upstream deprecation warnings and address a Dependabot-reported vulnerability in a transitive dependency.
Changes:
- Bump direct dependency
globfrom^11.1.0to^13.0.6. - Add
pnpm.overridesto forcebrace-expansionversions in the vulnerable range (>=5.0.0 <5.0.6) to resolve to^5.0.6. - Regenerate
pnpm-lock.yamlaccordingly (glob/brace-expansion resolution updates and related dependency graph changes).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Upgrades glob and adds pnpm.overrides for brace-expansion to remediate the CVE range. |
| pnpm-lock.yaml | Reflects the new glob@13.0.6 resolution and the brace-expansion@5.0.6 override in the lockfile. |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Starllordz
added a commit
that referenced
this pull request
May 26, 2026
* fix: prevent unknown character corruption in translations (#68) * fix: prevent unknown character corruption in translations ## Changed - Set contentType explicitly per parser so Lara no longer auto-detects TextBlock[] as HTML and replaces non-ASCII chars with literal `?` - Engine splits each batch by detected content type so values containing inline HTML are sent as text/html and plain values as text/plain - Retry U+FFFD-corrupted translations up to 3 times as solo calls before failing with a neutral "please retry" message - Bump version to 1.3.4 ## New - contentType utility (hasHtmlMarkup / resolveContentType) and per-parser getContentType() exposed through ParserFactory - Parameterized integration tests covering content-type routing for all 10 supported file formats - Deterministic test reproducing the upstream UTF-8 streaming bug in @translated/lara, plus integration coverage for the retry guard * chore: use #utils path alias in contentType test imports ## Changed - Replace relative `../../utils/contentType.js` import with `#utils/contentType.js` to match the convention used by sibling utility tests (e.g. entities.test.ts). * chore: upgrade glob and patch brace-expansion CVE (#69) ## Changed - Bump `glob` from `^11.1.0` to `^13.0.6` to remove deprecation warning at install - Override transitive `brace-expansion` in vulnerable range `>=5.0.0 <5.0.6` to `^5.0.6` (CVE-2026-45149, GHSA-jxxr-4gwj-5jf2)
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
globfrom^11.1.0to^13.0.6— the previous version was marked deprecated upstream (pnpm installnow installs cleanly with no deprecation warning).pnpm.overridesto force transitivebrace-expansionin the vulnerable range>=5.0.0 <5.0.6to^5.0.6, resolving Dependabot alert #8 (CVE-2026-45149 / GHSA-jxxr-4gwj-5jf2, medium severity DoS).