Version Packages - #2
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
10 times, most recently
from
July 3, 2026 23:12
24c26bb to
76996b7
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 4, 2026 04:36
76996b7 to
54ecd6a
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
veripatch@0.2.0
Minor Changes
140144cThanks @amarjaleelbanbhan! - Newveripatch baseline list|add|remove|prunesubcommands manage accepted debt one finding ata time:
addrecords a reason and an optional expiry (--expires-days), after which the vulncounts as new again in
scan --ci;prunedrops entries whose vulns no longer appear in thelast scan.
baseline.jsongains optional per-entry metadata, additively — existing files keepworking unchanged.
281d079Thanks @amarjaleelbanbhan! - npm workspaces are now scanned correctly from the monorepo root: workspace members'dependencies (including cross-workspace references through link entries) appear in the graph
with provenance chains that name the owning workspace, e.g.
root > @ws/lib > vulnerable-dep.Workspace members themselves are never reported as vulnerabilities — they are first-party code.
6f297e4Thanks @amarjaleelbanbhan! - Transitive-dependency fixes are now applied the way a human would commit them: both the verifysandbox and
veripatch updatewrite an npmoverridesentry and regenerate the lockfile,instead of running
npm install pkg@to— which would have added the package as a new rootdependency. Direct dependencies keep the plain versioned install.
10feb88Thanks @amarjaleelbanbhan! -verify --allcan run sandbox verifications in parallel: newverifyConcurrencyconfig key(default 1, max 8) and
--concurrencyflag. Each verification keeps its own container,network, and staging copy; per-candidate output is buffered and printed in input order, so the
transcript stays deterministic regardless of which sandbox finishes first.
6872cbfThanks @amarjaleelbanbhan! -scannow supports pnpm projects:pnpm-lock.yamlv6 (pnpm 8) and v9 (pnpm 9+) are parsedinto the same dependency graph as npm and yarn lockfiles, with peer-resolution suffixes merged
into one node per package version. Lockfile auto-detection covers all three managers (npm →
yarn → pnpm precedence, with a warning naming any ignored lockfile).
verifyandupdaterefuse pnpm projects explicitly for now, matching the yarn behavior.
c78b9cbThanks @amarjaleelbanbhan! -scannow supports yarn projects: both classic (v1) and berry (v2+)yarn.lockfiles areparsed into the same dependency graph as npm lockfiles, with auto-detection when multiple
lockfiles coexist (
package-lock.jsonwins, with a warning). Reports gain apackageManagerfield.
verifyandupdaterefuse yarn projects explicitly for now — they replay fixes withnpm, and silently writing a
package-lock.jsoninto a yarn project would corrupt it.