This repository was archived by the owner on Dec 3, 2025. It is now read-only.
HERO-12095: resolve @babel/helpers to 7.26.10#66
Merged
KeesTucker merged 1 commit intomainfrom Nov 9, 2025
Merged
Conversation
There was a problem hiding this comment.
Greptile Overview
Greptile Summary
Added Yarn resolution for @babel/helpers to version 7.26.10 to mitigate CVE vulnerabilities (HERO-12095).
Key Changes:
- Added
@babel/helpers: 7.26.10to the resolutions section inpackage.json - Consolidated multiple
@babel/helpersversions (7.25.9 and 7.28.4) into a single version (7.26.10) inyarn.lock - Updated transitive dependencies (
@babel/typesto 7.28.5,@babel/helper-validator-identifierto 7.28.5) to satisfy the new version's requirements - Follows the same security remediation pattern as previous PRs (#64, #62, #61) for addressing package vulnerabilities
Confidence Score: 5/5
- This PR is safe to merge with minimal risk
- The changes are narrowly scoped to dependency resolution for security purposes. The resolution pins
@babel/helpersto a specific version (7.26.10) to address CVE vulnerabilities, which is a standard and safe security practice. The yarn.lock updates correctly consolidate multiple versions into the specified version, and all dependency integrity hashes are properly maintained. This follows the established pattern from previous security PRs in this repository. - No files require special attention
Important Files Changed
File Analysis
| Filename | Score | Overview |
|---|---|---|
| package.json | 5/5 | Added @babel/helpers resolution to 7.26.10 for CVE mitigation |
| yarn.lock | 5/5 | Consolidated @babel/helpers versions to 7.26.10, updated dependencies to newer versions |
Sequence Diagram
sequenceDiagram
participant Dev as Developer
participant PKG as package.json
participant Yarn as Yarn Package Manager
participant NPM as NPM Registry
participant Lock as yarn.lock
Dev->>PKG: Add @babel/helpers: 7.26.10 to resolutions
Dev->>Yarn: Run yarn install
Yarn->>PKG: Read resolutions configuration
Yarn->>NPM: Fetch @babel/helpers@7.26.10
NPM-->>Yarn: Return package + dependencies
Yarn->>NPM: Fetch @babel/template@^7.26.9
NPM-->>Yarn: Return @babel/template@7.27.2
Yarn->>NPM: Fetch @babel/types@^7.26.10
NPM-->>Yarn: Return @babel/types@7.28.5
Yarn->>NPM: Fetch @babel/helper-validator-identifier@^7.28.5
NPM-->>Yarn: Return validator@7.28.5
Yarn->>Lock: Consolidate duplicate entries
Yarn->>Lock: Remove @babel/helpers@7.25.9 and @7.28.4
Yarn->>Lock: Add single entry @babel/helpers@7.26.10
Yarn->>Lock: Update dependency references
Lock-->>Dev: Updated lockfile with consolidated versions
1 file reviewed, no comments
hero-brendon
approved these changes
Nov 9, 2025
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
No description provided.