Gate validation on severe tooling advisories - #29
Open
georgeatparallel wants to merge 1 commit into
Open
georgeatparallel wants to merge 1 commit into
georgeatparallel wants to merge 1 commit into
Conversation
georgeatparallel
marked this pull request as ready for review
September 15, 2026 02:05
sergei1152
approved these changes
Sep 15, 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.
This package adds Parallel search, research Tasks and web monitoring to n8n workflows. CI and the npm release script share
npm run validate, which checks the code and the installable package. Its security check usednpm audit --omit=dev, so severe vulnerabilities in the tools used to build and validate the package could still pass. CI saved a full audit report, but that report did not block validation.This adds
npm audit --audit-level=highto the same command. It checks development dependencies too and exits with an error for high or critical findings. That fails CI and stops the release script beforenpm publish. The existing production audit stays in place, and moderate tooling findings remain visible in the output and saved JSON report. No dependency versions or runtime code change.The contributor guide also records the remaining findings and the consumer checks behind them. The reviewed audit has zero production findings, zero high/critical findings, and ten affected development packages from four moderate advisories in
uuid,qsandstream-json. Those tooling libraries are not bundled in this package’s tarball; the n8n host has its own dependency tree. The release owner still needs to accept the remaining exposure or wait for compatible fixes. Load tracing covered validation and release rehearsal, leaving ESM loads, interactive development and scaffolding unverified.Both Node 22.22 and 24 CI jobs pass. Independent review confirmed the new audit command rejects a vulnerable baseline even when its production audit passes. The release rehearsal also passed all 21 tests, temporary package installation/loading and publish hooks on Node 24.18/npm 11.6.0. Only the final registry operation was a dry run; nothing was published.