chore(deps): lock file maintenance npm packages #98
+13,097
−11,821
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 contains the following updates:
10.12.1->10.19.01.0.0-beta.27->1.0.0-beta.45🔧 This Pull Request updates lock files to use the latest dependency versions.
Release Notes
pnpm/pnpm (pnpm)
v10.19.0Compare Source
Minor Changes
You can now allow specific versions of dependencies to run postinstall scripts.
onlyBuiltDependenciesnow accepts package names with lists of trusted versions. For example:Related PR: #10104.
Added support for exact versions in
minimumReleaseAgeExclude#9985.You can now list one or more specific versions that pnpm should allow to install, even if those versions don’t satisfy the maturity requirement set by
minimumReleaseAge. For example:v10.18.3Compare Source
Patch Changes
verifyDepsBeforeInstall: installand pre/post install scripts that called other pnpm scripts #10060.@scope:registry) being parsed as property paths inpnpm config getwhen--location=projectis used #9362.pnpm config set --location=projectincorrectly handling keys with slashes (auth tokens, registry settings) #9884.pnpm-workspace.yamland.npmrcexist,pnpm config set --location=projectnow writes topnpm-workspace.yaml(matching read priority) #10072.pnpm outdated --long#10040.v10.18.2Compare Source
Patch Changes
pnpm outdated --longshould work #10040.pnpm dlxshould request the full metadata of packages, whenminimumReleaseAgeis set #9963.EPIPEerrors when piping output to other commands #10027.v10.18.1Compare Source
Patch Changes
--lockfile-onlyis used #8320.pnpm setupcreates a command shim to the pnpm executable. This is needed to be able to runpnpm self-updateon Windows #5700.pnpm install, pnpm produced false positive warnings for "skip adding to the default catalog because it already exists". This warning now only prints when usingpnpm add --save-catalogas originally intended.v10.18.0Compare Source
Minor Changes
Added network performance monitoring to pnpm by implementing warnings for slow network requests, including both metadata fetches and tarball downloads.
Added configuration options for warning thresholds:
fetchWarnTimeoutMsandfetchMinSpeedKiBps.Warning messages are displayed when requests exceed time thresholds or fall below speed minimums
Related PR: #10025.
Patch Changes
minimumReleaseAgeconfiguration #10030.cleanupUnusedCatalogsconfiguration when removing dependent packages.scriptShellis set tofalse#8748.pnpm dlxshould not fail whenminimumReleaseAgeis set #10037.v10.17.1Compare Source
Patch Changes
minimumReleaseAgesetting, print this information out in the error message #9974.state.jsoncreation path when executingpnpm patchin a workspace project #9733.minimumReleaseAgeis set and thelatesttag is not mature enough, prefer a non-deprecated version as the newlatest#9987.v10.17.0Compare Source
Minor Changes
The
minimumReleaseAgeExcludesetting now supports patterns. For instance:Related PR: #9984.
Patch Changes
minimumReleaseAgecheck, when the package is requested by exact version and the packument is loaded from cache #9978.minimumReleaseAgeis set and the active version under a dist-tag is not mature enough, do not downgrade to a prerelease version in case the original version wasn't a prerelease one #9979.v10.16.1Compare Source
Patch Changes
v10.16.0Compare Source
Minor Changes
There have been several incidents recently where popular packages were successfully attacked. To reduce the risk of installing a compromised version, we are introducing a new setting that delays the installation of newly released dependencies. In most cases, such attacks are discovered quickly and the malicious versions are removed from the registry within an hour.
The new setting is called
minimumReleaseAge. It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, settingminimumReleaseAge: 1440ensures that only packages released at least one day ago can be installed.If you set
minimumReleaseAgebut need to disable this restriction for certain dependencies, you can list them under theminimumReleaseAgeExcludesetting. For instance, with the following configuration pnpm will always install the latest version of webpack, regardless of its release time:Related issue: #9921.
Added support for
finders#9946.In the past,
pnpm listandpnpm whycould only search for dependencies by name (and optionally version). For example:prints the chain of dependencies to any installed instance of
minimist:What if we want to search by other properties of a dependency, not just its name? For instance, find all packages that have
react@17in their peer dependencies?This is now possible with "finder functions". Finder functions can be declared in
.pnpmfile.cjsand invoked with the--find-by=<function name>flag when runningpnpm listorpnpm why.Let's say we want to find any dependencies that have React 17 in peer dependencies. We can add this finder to our
.pnpmfile.cjs:Now we can use this finder function by running:
pnpm will find all dependencies that have this React in peer dependencies and print their exact locations in the dependency graph.
It is also possible to print out some additional information in the output by returning a string from the finder. For example, with the following finder:
Every matched package will also print out the license from its
package.json:Patch Changes
nodeVersionis not set to an exact semver version #9934.pnpm publishshould be able to publish a.tar.gzfile #9927.pnpm runreturn a non-zero exit code #9626.v10.15.1Compare Source
Patch Changes
.pnp.cjscrash when importing subpath #9904.v10.15.0Compare Source
Minor Changes
cleanupUnusedCatalogsconfiguration. When set totrue, pnpm will remove unused catalog entries during installation #9793.@*/pnpm-plugin-*#9780.pnpm config getnow prints an INI string for an object value #9797.pnpm config getnow accepts property paths (e.g.pnpm config get catalog.react,pnpm config get .catalog.react,pnpm config get 'packageExtensions["@​babel/parser"].peerDependencies["@​babel/types"]'), andpnpm config setnow accepts dot-leading or subscripted keys (e.g.pnpm config set .ignoreScripts true).pnpm config get --jsonnow prints a JSON serialization of config value, andpnpm config set --jsonnow parses the input value as JSON.Patch Changes
pnpm createcommand, must verify whether the node version is supported even if a cache already exists #9775.*/*to theAcceptheader to avoid getting a 406 error on AWS CodeArtifact #9862.pnpm dlx pkg --helpdoesn't pass--helptopkg#9823.v10.14.0Compare Source
Minor Changes
Added support for JavaScript runtime resolution
Declare Node.js, Deno, or Bun in
devEngines.runtime(insidepackage.json) and let pnpm download and pin it automatically.Usage example:
{ "devEngines": { "runtime": { "name": "node", "version": "^24.4.0", "onFail": "download" (we only support the "download" value for now) } } }How it works:
pnpm installresolves your specified range to the latest matching runtime version.Why this is better:
useNodeVersionandexecutionEnv.nodeVersion)executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes.devEngines.runtimesetting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.Related PR: #9755.
Add
--cpu,--libc, and--ostopnpm install,pnpm add, andpnpm dlxto customizesupportedArchitecturesvia the CLI #7510.Patch Changes
pnpm adddownloads packages whoselibcdiffer frompnpm.supportedArchitectures.libc.dlxto parse CLI flags and options between thedlxcommand and the command to run or between thedlxcommand and--#9719.pnpm install --prodshould removing hoisted dev dependencies #9782.pnpm installto incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.v10.13.1Compare Source
Patch Changes
v10.13.0Compare Source
Minor Changes
Added the possibility to load multiple pnpmfiles. The
pnpmfilesetting can now accept a list of pnpmfile locations #9702.pnpm will now automatically load the
pnpmfile.cjsfile from any config dependency named@pnpm/plugin-*orpnpm-plugin-*#9729.The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the
pnpmfile.cjsfiles in the config dependencies can be explicitly listed using thepnpmfilesetting inpnpm-workspace.yaml.Patch Changes
pkg.pr.new, treat them as Git tarball URLs #9694.dangerouslyAllowAllBuilds,onlyBuiltDependencies,onlyBuiltDependenciesFile, andneverBuiltDependencies#9628.pnpm-workspace.yamlwith deep #9701.pnpm rebuildcommand should not add pkgs included inignoredBuiltDependenciestoignoredBuildsinnode_modules/.modules.yaml#9338.shell-quotewithshlexfor quoting command arguments #9381.v10.12.4Compare Source
Patch Changes
Fix
pnpm licensescommand for local dependencies #9583.Fix a bug in which
pnpm ls --filter=not-exist --jsonprints nothing instead of an empty array #9672.Fix a deadlock that sometimes happens during peer dependency resolution #9673.
Running
pnpm installafterpnpm fetchshould hoist all dependencies that need to be hoisted.Fixes a regression introduced in [v10.12.2] by [#9648]; resolves [#9689].
[v10.12.2]: https://github.com/pnpm/pnpm/releases/tag/v10.12.2Add commentMore actions
[#9648]: #9648
[#9689]: #9689
v10.12.3Compare Source
Patch Changes
Regression introduced in v10.12.2 by #9648; resolves #9685.
v10.12.2Compare Source
Patch Changes
enableGlobalVirtualStoreset totrue#9648.--helpand-hflags not working as expected for thepnpm createcommand.pnpm licenses list --jsoncommand is incorrect.pnpm deployfails due to overridden dependencies having peer dependencies causingERR_PNPM_OUTDATED_LOCKFILE#9595.rolldown/rolldown (rolldown)
v1.0.0-beta.45Compare Source
🚀 Features
legacyInconsistentCjsInteropoption (#6687) by @sapphi-redCSSStyles(#6691) by @shulaodavitejs/vite#20585(#6684) by @shulaoda🐛 Bug Fixes
transform.jsxcorrectly (#6698) by @ocavuegenerateBundleoutputs (#6647) by @aprosaildefinedeprecation warning when loading a config file (#6641) by @sapphi-red💼 Other
🚜 Refactor
transformToRollupOutputwhen needed (#6695) by @hyf0transformToRollupOutputinto mutable and immutable versions (#6693) by @hyf0BindingOutputs(#6692) by @hyf0CSSEntriesCache(#6685) by @shulaodaBindingRenderBuiltUrl(#6653) by @shulaoda📚 Documentation
experimental.nativeMagicString(#6713) by @IWANABETHATGUYoptimization(#6719) by @IWANABETHATGUYoutput.cleanDirtiming behavior for plugin compatibility (#6682) by @CopilotpreserveEntrySignaturedoc (#6661) by @IWANABETHATGUYtreeshake(#6650) by @IWANABETHATGUY⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
typedocdependency and cleanup unused documentation generation (#6686) by @Copilotoxlint --type-aware(#5660) by @BoshenDevTestMeta#dev(#6672) by @hyf0DevTestMetaunderTestMeta#devto control dev related behaviors (#6666) by @hyf0❤️ New Contributors
v1.0.0-beta.44Compare Source
💥 BREAKING CHANGES
output.minifyInternalExportsforformat: 'es'orminify: true(#6594) by @sapphi-redInputOptions.jsx, prefertransform.jsxalways (#6548) by @hyf0🚀 Features
transform.jsx(#6630) by @shulaodainject_to_bodyfunction (#6622) by @shulaodais_legacyfield (#6620) by @shulaodaviteHtmlPlugin(#6609) by @shulaodaviteCSSPostPlugin(#6606) by @shulaodaviteCSSPlugin(#6605) by @shulaodaoutput.clearDirto clean updirbefore build (#6486) by @aprosailRolldownOutputinstead ofBindingOutputsfromonOutput(#6563) by @sapphi-reddropLabelsand addtransform.dropLabels(#6557) by @hyf0keepNamesand addoutput.keepNames(#6556) by @hyf0profilerNamesand addoutput.generatedCode.profilerNames(#6555) by @hyf0injectanddefineand addtransform.define,transform.inject(#6544) by @hyf0experimental.nativeMagicString(#6514) by @IWANABETHATGUY🐛 Bug Fixes
package_json_pathfrom resolveId hook (#6434) by @sapphi-redshould have idxerror happens withdeferSyncScanData+ incremental rebuild (#6568) by @sapphi-redbundler.scandoesn't get handled (#6547) by @Copilotsourcemapis disabled (#6510) by @IWANABETHATGUY🚜 Refactor
BindingAssetInlineLimit(#6625) by @shulaodaBindingAssetPluginConfig(#6624) by @shulaodaviteCSSPluginconfig (#6610) by @shulaodaTaskInputinto enum to reduce invalid states (#6575) by @hyf0ScanStageCache#merge(#6564) by @IWANABETHATGUYclient_idto check if module is executed for test environment (#6566) by @hyf0&strorJsStringto avoid unnecessary clone (#6523) by @hyf0&strto avoid unnecessary clone (#6520) by @hyf0📚 Documentation
/guide/in-depth/to/in-depth/(#6554) by @CopilotAdditional Thanksinacknowledgementspage (#6507) by @hyf0experimental.nativeMagicString(#6504) by @IWANABETHATGUY⚡ Performance
createTokioRuntime(#6618) by @hyf0ClientInput(#6565) by @hyf0cross_module_optimizationstage parallel (#6552) by @IWANABETHATGUY🧪 Testing
⚙️ Miscellaneous Tasks
replacePluginto compatible with rollup (#6639) by @IWANABETHATGUYbuild.ts(#6621) by @IWANABETHATGUYcargo publish --workspacework (#6287) by @Boshenopposite_minify_internal_exportsand removeminify_internal_exportsextend test (#6596) by @hyf0BindingBuiltinPluginName(#6574) by @shulaodanotifycrate (#6573) by @Boshen.len()and.is_empty()toHybridIndexVec(#6570) by @sapphi-redAGENT.mdwith verified prompts (#6533) by @hyf0too-many-lines-thresholdto 200 (#6530) by @shulaoda❤️ New Contributors
v1.0.0-beta.43Compare Source
🚀 Features
processedHtmllogic (#6494) by @shulaodanativeMagicStringoptions (#6469) by @IWANABETHATGUYclose(#6483) by @hyf0Configuration
📅 Schedule: Branch creation - "before 10am" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.