fix(deps): update all non-major dependencies #30
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:
^7.0.1
->^7.1.2
^2.2.1
->^2.2.3
^0.5.6
->^0.5.9
^22.15.21
->^22.17.1
^10.1.1
->^10.2.2
^9.27.0
->^9.33.0
10.11.0
->10.14.0
^3.5.3
->^3.6.2
^4.41.0
->^4.46.2
^0.12.1
->^0.14.0
^4.19.4
->^4.20.3
^5.8.3
->^5.9.2
^2.3.4
->^2.3.5
^7.0.0
->^7.1.1
^3.1.4
->^3.2.4
^3.5.14
->^3.5.18
Release Notes
sxzz/eslint-config (@sxzz/eslint-config)
v7.1.2
Compare Source
🚀 Features
erasableSyntaxOnly
- by @sxzz (59bb1)View changes on GitHub
v7.1.1
Compare Source
🐞 Bug Fixes
unicorn/require-module-specifiers
- by @sxzz (1e14f)View changes on GitHub
v7.1.0
Compare Source
🚀 Features
View changes on GitHub
v7.0.6
Compare Source
No significant changes
View changes on GitHub
v7.0.5
Compare Source
🐞 Bug Fixes
vue/no-ref-as-operand
- by @sxzz (70d6c)View changes on GitHub
v7.0.4
Compare Source
No significant changes
View changes on GitHub
v7.0.3
Compare Source
No significant changes
View changes on GitHub
v7.0.2
Compare Source
No significant changes
View changes on GitHub
sxzz/prettier-config (@sxzz/prettier-config)
v2.2.3
Compare Source
v2.2.2
Compare Source
sxzz/test-utils (@sxzz/test-utils)
v0.5.9
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.5.8
Compare Source
🚀 Features
View changes on GitHub
v0.5.7
Compare Source
🐞 Bug Fixes
fileMap
type - by @sxzz (fe43b)View changes on GitHub
antfu-collective/bumpp (bumpp)
v10.2.2
Compare Source
🐞 Bug Fixes
View changes on GitHub
v10.2.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v10.2.0
Compare Source
🚀 Features
View changes on GitHub
eslint/eslint (eslint)
v9.33.0
Compare Source
v9.32.0
Compare Source
v9.31.0
Compare Source
v9.30.1
Compare Source
v9.30.0
Compare Source
v9.29.0
Compare Source
v9.28.0
Compare Source
pnpm/pnpm (pnpm)
v10.14.0
Compare 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:
How it works:
pnpm install
resolves your specified range to the latest matching runtime version.Why this is better:
useNodeVersion
andexecutionEnv.nodeVersion
)executionEnv.nodeVersion
). So, different projects in a workspace can use different runtimes.devEngines.runtime
setting 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--os
topnpm install
,pnpm add
, andpnpm dlx
to customizesupportedArchitectures
via the CLI #7510.Patch Changes
pnpm add
downloads packages whoselibc
differ frompnpm.supportedArchitectures.libc
.dlx
to parse CLI flags and options between thedlx
command and the command to run or between thedlx
command and--
#9719.pnpm install --prod
should removing hoisted dev dependencies #9782.pnpm install
to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.v10.13.1
Compare Source
Patch Changes
v10.13.0
Compare Source
Minor Changes
Added the possibility to load multiple pnpmfiles. The
pnpmfile
setting can now accept a list of pnpmfile locations #9702.pnpm will now automatically load the
pnpmfile.cjs
file 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.cjs
files in the config dependencies can be explicitly listed using thepnpmfile
setting inpnpm-workspace.yaml
.Patch Changes
pkg.pr.new
, treat them as Git tarball URLs #9694.dangerouslyAllowAllBuilds
,onlyBuiltDependencies
,onlyBuiltDependenciesFile
, andneverBuiltDependencies
#9628.pnpm-workspace.yaml
with deep #9701.pnpm rebuild
command should not add pkgs included inignoredBuiltDependencies
toignoredBuilds
innode_modules/.modules.yaml
#9338.shell-quote
withshlex
for quoting command arguments #9381.v10.12.4
Compare Source
Patch Changes
Fix
pnpm licenses
command for local dependencies #9583.Fix a bug in which
pnpm ls --filter=not-exist --json
prints nothing instead of an empty array #9672.Fix a deadlock that sometimes happens during peer dependency resolution #9673.
Running
pnpm install
afterpnpm fetch
should hoist all dependencies that need to be hoisted.Fixes a regression introduced in [v10.12.2] by [#9648]; resolves [#9689].
[v10.12.2]: https://redirect.github.com/pnpm/pnpm/releases/tag/v10.12.2Add commentMore actions
[#9648]: https://github.com/pnpm/pnpm/pull/9648
[#9689]: https://github.com/pnpm/pnpm/issues/9689
v10.12.3
Compare Source
Patch Changes
Regression introduced in v10.12.2 by #9648; resolves #9685.
v10.12.2
Compare Source
Patch Changes
enableGlobalVirtualStore
set totrue
#9648.--help
and-h
flags not working as expected for thepnpm create
command.pnpm licenses list --json
command is incorrect.pnpm deploy
fails due to overridden dependencies having peer dependencies causingERR_PNPM_OUTDATED_LOCKFILE
#9595.v10.12.1
Minor Changes
Experimental. Added support for global virtual stores. When enabled,
node_modules
contains only symlinks to a central virtual store, rather tonode_modules/.pnpm
. By default, this central store is located at<store-path>/links
(you can find the store path by runningpnpm store path
).In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.
To enable the global virtual store, set
enableGlobalVirtualStore: true
in your rootpnpm-workspace.yaml
, or globally via:NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.
Related PR: #8190
pnpm update
command now supports updatingcatalog:
protocol dependencies and writes new specifiers topnpm-workspace.yaml
.--save-catalog
and--save-catalog-name=<name>
) topnpm add
to save new dependencies as catalog entries.catalog:
orcatalog:<name>
will be added topackage.json
and the package specifier will be added to thecatalogs
orcatalog[<name>]
object inpnpm-workspace.yaml
#9425.ci
for explicitly telling pnpm if the current environment is a CI or not.Patch Changes
pnpm patch
using semantic versioning rules.v10.11.1
Compare Source
Patch Changes
pnpm deploy --legacy
creates unexpected directories when the rootpackage.json
has a workspace package as a peer dependency #9550.strictPeerDependencies
istrue
but all issues are ignored bypeerDependencyRules
#9505.pnpm_config_
env variables instead ofnpm_config_
#9571.--lockfile-only
flag onpnpm update
to produce a differentpnpm-lock.yaml
than an update without the flag.pnpm deploy
work in repos withoverrides
wheninject-workspace-packages=true
#9283.pnpm -r --silent run
should not print out section #9563.prettier/prettier (prettier)
v3.6.2
Compare Source
diff
Markdown: Add missing blank line around code block (#17675 by @fisker)
v3.6.1
Compare Source
diff
TypeScript: Allow const without initializer (#17650, #17654 by @fisker)
Miscellaneous: Avoid closing files multiple times (#17665 by @43081j)
When reading a file to infer the interpreter from a shebang, we use the
n-readlines
library to read the first line in order to get the shebang.This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if
n-readlines
did not already closethem.
v3.6.0
Compare Source
diff
🔗 Release Notes
rollup/rollup (rollup)
v4.46.2
Compare Source
2025-07-29
Bug Fixes
Pull Requests
v4.46.1
Compare Source
2025-07-28
Bug Fixes
in
operator on external namespaces (#6036)Pull Requests
v4.46.0
Compare Source
2025-07-27
Features
in
checks on namespaces to keep them treeshake-able (#6029)Pull Requests
in
checks on namespaces to keep them treeshake-able (@cyyynthia, @lukastaegert)v4.45.3
Compare Source
2025-07-26
Bug Fixes
Pull Requests
v4.45.1
Compare Source
2025-07-15
Bug Fixes
Pull Requests
v4.45.0
Compare Source
2025-07-12
Features
Bug Fixes
this
(#6001)Pull Requests
v4.44.2
Compare Source
2025-07-04
Bug Fixes
@__PURE__
annotations afternew
keyword (#5998)Pull Requests
@__PURE__
when nested after new in constructor invocations (@TrickyPi)v4.44.1
Compare Source
2025-06-26
Bug Fixes
Pull Requests
v4.44.0
Compare Source
2025-06-19
Features
maxParallelFileOps
as this could break watch mode with the commonjs plugin (#5986)Bug Fixes
Pull Requests
v4.43.0
Compare Source
2025-06-11
Features
fs
option andthis.fs
API to replace file system (#5944)Pull Requests
v4.42.0
Compare Source
2025-06-06
Features
Pull Requests
allowInputInsideOutputPath
option (@btea, @lukastaegert)v4.41.2
Compare Source
2025-06-06
Bug Fixes
then
and non-arrow function expressions (#5977)Pull Requests
v4.41.1
Compare Source
2025-05-24
Bug Fixes
this.resolve
withskipSelf: true
, subsequent calls when handling this by the same plugin with same parameters will returnnull
to avoid infinite recursions (#5945)Pull Requests
rolldown/tsdown (tsdown)
v0.14.0
Compare Source
🚨 Breaking Changes
expandDirectories
for matchingfast-glob
's behavior - by @sxzz (8171b)View changes on GitHub
v0.13.5
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.13.4
Compare Source
🚀 Features
cjsDefault
option - by @sxzz (f503f)🐞 Bug Fixes
cjsDefault
is enabled - by @sxzz (3ffa9)View changes on GitHub
v0.13.3
Compare Source
🚨 Minor Breaking Changes
dts.build
option should be enable manually fortsc -b
- by @sxzz (13146)🚀 Features
logLevel
&customLogger
option - by @sxzz (724d1)warnOnce
to logger - by @sxzz (eb4fb)ignoreWatch
- by @sxzz (91f9f)🐞 Bug Fixes
ignoreWatch
- by @sxzz (d0e31)View changes on GitHub
v0.13.2
Compare Source
🚨 Upstream Breaking Changes
dts.isolatedDeclarations
todts.oxc
- by @sxzz (5bdb9)🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.13.1
Compare Source
🚀 Features
🐞 Bug Fixes
defineConfig
- by @sxzz (7c32a)View changes on GitHub
v0.13.0
Compare Source
🚨 Breaking Changes
🚀 Features
banner
&footer
options - by @gwansikk and @sxzz in https://github.com/rolldown/tsdown/issues/338 (54e21)cjsDts
to input/output options context - by @sxzz (3c4b3)🐞 Bug Fixes
View changes on GitHub
v0.12.9
Compare Source
🚀 Features
nodeProtocol
option - by @ryoppippi and @sxzz in https://github.com/rolldown/tsdown/issues/336 (b3f67)View changes on GitHub
v0.12.8
Compare Source
🚀 Features
bundle
option - by @sxzz (d6faa)ResolvedOptions
- by @sxzz (13d9c)🐞 Bug Fixes
lastIndex
for regex - by [@bConfiguration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.