chore(deps): lock file maintenance npm packages #89
+7,879
−8,134
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:
1.9.0
->1.10.0
10.4.1
->10.7.1
1.0.0-beta.3
->1.0.0-beta.7
🔧 This Pull Request updates lock files to use the latest dependency versions.
Release Notes
wooorm/npm-high-impact (npm-high-impact)
v1.10.0
Compare Source
2c81223
RegenerateFull Changelog: wooorm/npm-high-impact@1.9.0...1.10.0
pnpm/pnpm (pnpm)
v10.7.1
: pnpm 10.7.1Compare Source
Patch Changes
pnpm config set
should convert the settings to their correct type before adding them topnpm-workspace.yaml
#9355.pnpm config get
should read auth related settings via npm CLI #9345.~/
in a path in.npmrc
with the home directory #9217.Platinum Sponsors
Gold Sponsors
v10.7.0
Compare Source
Minor Changes
pnpm config get
andlist
also show settings set inpnpm-workspace.yaml
files #9316.It should be possible to use env variables in
pnpm-workspace.yaml
setting names and value.Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range
*
is the same as name-only, except that patch application failure will not be ignored.For example:
The above configuration would apply
patches/foo-3.patch
tofoo@2.1.0
,patches/foo-2.patch
to allfoo
versions which satisfy^2.0.0
except2.1.0
, andpatches/foo-1.patch
to the remainingfoo
versions.pnpm config set --location=project
saves the setting to apnpm-workspace.yaml
file if no.npmrc
file is present in the directory #9316.Rename
pnpm.allowNonAppliedPatches
topnpm.allowUnusedPatches
. The old name is still supported but it would print a deprecation warning message.Add
pnpm.ignorePatchFailures
to manage whether pnpm would ignore patch application failures.If
ignorePatchFailures
is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches.If
ignorePatchFailures
is explicitly set tofalse
, pnpm would throw an error when any type of patch fails to apply.If
ignorePatchFailures
is explicitly set totrue
, pnpm would print a warning when any type of patch fails to apply.Patch Changes
v10.6.5
Compare Source
v10.6.4
: pnpm 10.6.4Compare Source
Patch Changes
pnpm dlx
with--allow-build
flag #9263.use-node-version
should not cause pnpm itself to break #9276.Platinum Sponsors
Gold Sponsors
v10.6.3
Compare Source
Patch Changes
pnpm install --prod=false
should not crash, when executed in a project with apnpm-workspace.yaml
file #9233. This fixes regression introduced via #9211.Add the missing
node-options
config torecursive run
#9180.Removed a branching code path that only executed when
dedupe-peer-dependents=false
. We believe this internal refactor will not result in behavior changes, but we expect it to make future pnpm versions behave more consistently for projects that overridededupe-peer-dependents
to false. There should be less unique bugs from turning offdedupe-peer-dependents
.See details in #9259.
v10.6.2
Compare Source
Patch Changes
pnpm self-update
should always update the version in thepackageManager
field ofpackage.json
.pnpm patch-commit
will now use the same filesystem as the store directory to compare and create patch files.--loglevel=error
is used.peerDependencyRules
should be set inpnpm-workspace.yaml
to take effect.v10.6.1
Compare Source
Patch Changes
--silent
reporting is used.--loglevel
is set toerror
, don't show installation summary, execution time, and big tarball download progress.package.json
#9226.approve-builds
command, if package.json containsonlyBuiltDependencies
orignoredBuiltDependencies
, the selected dependency package will continue to be written intopackage.json
.v10.6.0
Compare Source
Minor Changes
pnpm-workspace.yaml
can now hold all the settings that.npmrc
accepts. The settings should use camelCase #9211.pnpm-workspace.yaml
example:Projects using a
file:
dependency on a local tarball file (i.e..tgz
,.tar.gz
,.tar
) will see a performance improvement during installation. Previously, using afile:
dependency on a tarball caused the lockfile resolution step to always run. The lockfile will now be considered up-to-date if the tarball is unchanged.Patch Changes
pnpm self-update
should not leave a directory with a broken pnpm installation if the installation fails.fast-glob
replace withtinyglobby
to reduce the size of the pnpm CLI dependencies #9169.pnpm deploy
should not remove fields from the deployed package'spackage.json
file #9215.pnpm self-update
should not read the pnpm settings from thepackage.json
file in the current working directory.pnpm deploy
creating apackage.json
without theimports
andlicense
field #9193.pnpm update -i
should list only packages that have newer versions #9206.catalogs
section of thepnpm-lock.yaml
file to be removed whendedupe-peer-dependents=false
on a filtered install. #9112v10.5.2
Compare Source
Patch Changes
pnpm config set
command should change the global.npmrc
file by default.This was a regression introduced by #9151 and shipped in pnpm v10.5.0.
v10.5.1
Compare Source
Patch Changes
pnpm-workspaces.yaml
orpnpm-workspaces.yml
file is found instead of apnpm-workspace.yaml
#9170.pnpm-workspace.yaml
by thepnpm approve-builds
command #9168.package.json
#9163overrides
inpnpm-workspace.yaml
should work.pnpm dlx
should ignore settings from thepackage.json
file in the current working directory #9178.v10.5.0
Compare Source
Minor Changes
Allow to set the "pnpm" settings from
package.json
via thepnpm-workspace.yaml
file #9121.Added support for automatically syncing files of injected workspace packages after
pnpm run
#9081. Use thesync-injected-deps-after-scripts
setting to specify which scripts build the workspace package. This tells pnpm when syncing is needed. The setting should be defined in a.npmrc
file at the root of the workspace. Example:The
packages
field inpnpm-workspace.yaml
became optional.Patch Changes
pnpm link
with no parameters should work as if--global
is specified #9151.--config.
prefix such as--@​scope:registry=https://scope.example.com/npm
#9089.pnpm link <path>
should calculate relative path from the root of the workspace directory #9132.pnpm-lock.yaml
file when using--fix-lockfile
and--filter
. #8639rolldown/rolldown (rolldown)
v1.0.0-beta.7
Compare Source
Bug Fixes
require
a module that can't analyze statically (#3928) (3909fcb), closes #3926JSON.parse
wrapper fromoxc-parser
(#3904) (1726b6a)just update-generated-code
runs correctly onWindows
(#3900) (ca73e82)Windows
(#3901) (df042b0)Features
VisitState
enum for better state management (#3908) (1fd3698)stripInternal
option (#3902) (8f5f8f1)@rolldown/wasi
to prepare to distribute wasm binary in a friendly way (#3925) (53faf0c)Performance Improvements
Vec::with_capacity
(#3938) (113eb98)v1.0.0-beta.6
Compare Source
v1.0.0-beta.4
Compare Source
Bug Fixes
keepNames
with function declaration panic (#3687) (6016b3c)sequential?: boolean
type for rollup compat (#3442) (e9daf93)maxSize
(#3641) (8b59091)init_esm
call (#3707) (6eafc2f)ExpressionIdentfier
as a import record (#3428) (2410ee7), closes #3395ROLLUP_FILE_URL
for emitted chunks (#3507) (63b4e88)output.minify: 'dce-only'
(#3805) (e170e6e)in
for additional properties in OutputChunk work (#3635) (cec60e3)require
to__require
when necessary (#3469) (cfcc101)JSON
withoutput.advancedChunks.groups
(#3584) (a7e403e), closes #3437 #3343hash
type (#3736) (f4abf32)void expr
as side effects free ifexpr
is side effects free (#3479) (857a285), closes #3478strict_execution_order
option (#3512) (558ea78)Features
RollupLog
compat ofUNRESOLVED_IMPORT
warning (#3711) (94f05d4)react
,react-jsx
andpreserve
jsx option preset (#3770) (248c024)chunk.isEntry
(#3446) (afa3746)LogOrStringHandler
type (#3513) (3583675), closes #3505moduleRunnerTransform
fromrolldown/experimental
(#3801) (72c6607)transform
options (#3780) (3302be0)?
(#3699) (4c71eed)experimental#development_mode
(#3424) (71eabea)generate_hmr_patch
method (#3591) (89ca806)HmrFinalizer
(#3773) (4666fd5)HmrManager
(#3662) (6e30664)generate_hmr_patch
(#3661) (6dc69ce)HmrInfo
(#3593) (4aa9f3f)import.meta.hot
(#3795) (4a3ffed)HmrModuleLoader
(#3671) (8f3be45)export default
(#3814) (3e70979)experimental#development_mode
(#3425) (7b70903)import.meta.hot.accept
(#3592) (c55dcd3)Configuration
📅 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.