fix(agentex-ui): bump tar 7.5.11 -> 7.5.16 (CVE-2026-53655) - #361
Merged
Conversation
broc-bozeman
approved these changes
Jul 14, 2026
broc-bozeman
approved these changes
Jul 14, 2026
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
Remediates CVE-2026-53655 (MEDIUM) — node-tar file smuggling due to inconsistent tar archive parsing (GHSA-vmf3-w455-68vh).
taris a transitive dependency ofagentex-ui/, present in the built image (golden/agentex-ui) atapp/node_modules/tarversion7.5.11(< the fixed7.5.16). It is pulled in by@tailwindcss/oxide@4.1.11(declarestar: ^7.4.3) and already force-pinned via the repo'soverridesblock.Change
agentex-ui/package.json: raise the existingoverridespintar: "^7.5.11"→"^7.5.16"(same mechanism already used forcross-spawnandtar).agentex-ui/package-lock.json: regenerated withnpm install --package-lock-only. npm resolves the single hoistednode_modules/tarto 7.5.20 (latest 7.5.x satisfying^7.5.16, ≥ fixed 7.5.16). The old7.5.11is gone. Net lockfile change is the onetarentry only (4 insertions / 4 deletions); tar's own dependency set is unchanged between 7.5.11 and 7.5.20, so there is zero transitive churn.Safety
Patch bump within major 7 (7.5.11 → 7.5.20) and within the consumer's declared
^7.4.3range — no major boundary crossed, so@tailwindcss/oxideremains fully compatible.taris only used by the tailwind build tool (transitive), not imported by application source.Verification
npm ci --dry-runresolves cleanly (718 packages, no lockfile-sync error) — matches the Dockerfile build gate (npm ci).tar 7.5.11(or anytar < 7.5.16) anywhere in the lockfile.Resolves GFDVR-17704 (child GFDVR-17708 — tar@7.5.11 / CVE-2026-53655).
Greptile Summary
Bumps the
tartransitive dependency from 7.5.11 to 7.5.20 (resolved by npm from the new^7.5.16override) inagentex-ui/to close CVE-2026-53655 (CWE-436 tar-parser interpretation differential / file smuggling). Thetarpackage is used only by@tailwindcss/oxideat build time, not by application code.package.json: raises the existingoverrides.tarpin from\"^7.5.11\"→\"^7.5.16\", using the same override mechanism already in place forcross-spawn.package-lock.json: single hoistedtarentry updated from7.5.11to7.5.20; no transitive dependency changes because tar's own dependency set is identical between these two patch versions.Confidence Score: 5/5
Safe to merge — this is a targeted patch-version bump of a build-time-only transitive dependency with no application code changes.
The change is confined to two files: the overrides pin in package.json and the regenerated lockfile entry. The resolved version (7.5.20) is within the range required by the consuming package (@tailwindcss/oxide declares ^7.4.3), the fix lands well above the minimum required by the new pin (^7.5.16), and tar is never imported by application source — it is used exclusively by the Tailwind build toolchain. No transitive dependency churn was introduced.
No files require special attention.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A["@tailwindcss/oxide@4.1.11\n(declares tar: ^7.4.3)"] -->|"resolved by npm overrides"| B["tar@7.5.20\n(was 7.5.11)"] B --> C["✅ >= 7.5.16\n(CVE-2026-53655 fixed)"] D["package.json overrides\ntar: ^7.5.16"] -->|"forces npm resolution"| B E["Application source\nagentex-ui/**"] -.->|"does NOT import tar"| F["(build-time only)"]%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%% flowchart TD A["@tailwindcss/oxide@4.1.11\n(declares tar: ^7.4.3)"] -->|"resolved by npm overrides"| B["tar@7.5.20\n(was 7.5.11)"] B --> C["✅ >= 7.5.16\n(CVE-2026-53655 fixed)"] D["package.json overrides\ntar: ^7.5.16"] -->|"forces npm resolution"| B E["Application source\nagentex-ui/**"] -.->|"does NOT import tar"| F["(build-time only)"]Reviews (1): Last reviewed commit: "fix(agentex-ui): bump tar 7.5.11 -> 7.5...." | Re-trigger Greptile