feat(package-vulnerability-scanner): query vulnerabilities in parallel chunks - #458
Draft
amylin1249 wants to merge 5 commits into
Draft
feat(package-vulnerability-scanner): query vulnerabilities in parallel chunks#458amylin1249 wants to merge 5 commits into
amylin1249 wants to merge 5 commits into
Conversation
This was referenced Jul 29, 2026
amylin1249
force-pushed
the
pvs-06-vulns-perf
branch
from
July 29, 2026 17:50
57134fe to
41323c8
Compare
Contributor
Extension release summary😴 Changed but won't releaseThe following extensions have code changes but the manifest version hasn't been incremented:
If you intended to release these changes, update the See the contributing guide for details. |
amylin1249
marked this pull request as draft
July 31, 2026 15:43
amylin1249
force-pushed
the
pvs-06-vulns-perf
branch
from
August 1, 2026 01:29
41323c8 to
d9e647b
Compare
amylin1249
force-pushed
the
pvs-06-vulns-perf
branch
from
August 1, 2026 01:49
d9e647b to
4a74c06
Compare
amylin1249
force-pushed
the
pvs-06-vulns-perf
branch
2 times, most recently
from
August 1, 2026 04:58
f7f7d2f to
46e77ff
Compare
amylin1249
force-pushed
the
pvs-06-vulns-perf
branch
from
August 1, 2026 05:46
46e77ff to
9406e46
Compare
…l chunks Query Package Manager for each repo's chunks concurrently (bounded to 5 at once) instead of one chunk after another, and retry a transient network or server failure with a short backoff before giving up. A persistent or 4xx failure still fails the whole request loudly rather than under-reporting vulnerabilities. Also fixes a real bug in getFixedVersion: an ECOSYSTEM range with no fix event returned null immediately instead of falling back to another range's fix, so a fixed version could be reported as unknown even when one range had it. collectInstalledPackages (gathering the installed-package query from the content and packages stores) isn't wired into a caller yet; that's the PR that rewrites ContentList.vue.
… cancel siblings on chunk failure
…tatus passthrough
…and name the PPM concurrency limit Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
…s multiple ranges Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
amylin1249
force-pushed
the
pvs-06-vulns-perf
branch
from
August 1, 2026 15:45
9406e46 to
0d8d8d0
Compare
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.
Split out of #428 into small, reviewable PRs (tracking issue #415). Stacked 6/10 — stacked on #457, merge bottom-up.
Queries Package Manager for each repo's chunks concurrently instead of one after another, retrying a transient failure with backoff before giving up. Also fixes a real bug in
getFixedVersion: an ECOSYSTEM range with no fix event returnednullimmediately instead of checking the rest of the ranges for a fix.That
getFixedVersionfix is now covered by tests — an advisory whose first range carries no fix, and one where a non-ECOSYSTEM range's fix must lose to the ECOSYSTEM one. The per-item packages read also reuses_gather_and_cancel_on_errorinstead of a bareasyncio.gather, so a missing-integration error cancels its siblings rather than leaving them running, and the Package Manager concurrency limit is a named constant.