fix: remove jsonpath from npm overrides to resolve EOVERRIDE conflict#1203
Closed
fix: remove jsonpath from npm overrides to resolve EOVERRIDE conflict#1203
Conversation
…npm-cve # Conflicts: # component-starter-server/src/main/frontend/package-lock.json # component-starter-server/src/main/frontend/package-template.json # component-starter-server/src/main/frontend/package.json # component-tools-webapp/src/main/frontend/package-lock.json # component-tools-webapp/src/main/frontend/package-template.json # component-tools-webapp/src/main/frontend/package.json
…VEs_202604 + conflict resolution.
…_202604 + conflict resolution.
…000_QA_CVEs_202604
Agent-Logs-Url: https://github.com/Talend/component-runtime/sessions/a7d387af-632d-4883-977c-703714a672d8 Co-authored-by: ypiel-talend <29707101+ypiel-talend@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
ypiel-talend
April 14, 2026 12:55
View session
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.
npm installfails withEOVERRIDEbecausejsonpath@1.3.0was added as a direct dependency in bothdependencies/devDependenciesand inoverrides. npm disallows overriding a direct dependency.Changes
component-tools-webappandcomponent-starter-server(package.json+package-template.json): removedjsonpathfromoverridesin all four files"overrides": { - "jsonpath": "^1.3.0", "minimatch": "^9.0.7", ... }The CVE fix (pinning
jsonpathto1.3.0) is preserved via the direct dependency declarations; the override entry was redundant and conflicting.