fix(deps): update all non-major dependencies #87
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.
Note
Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to
mend[bot]
.This notice will be removed on 2025-10-07.
This PR contains the following updates:
^7.1.4
->^7.2.6
^0.5.10
->^0.5.11
^22.18.1
->^22.18.8
^0.25.9
->^0.25.10
^9.35.0
->^9.37.0
^0.30.18
->^0.30.19
10.15.1
->10.18.0
^4.50.1
->^4.52.4
^0.14.2
->^0.15.6
^4.20.5
->^4.20.6
^5.9.2
->^5.9.3
^0.5.1
->^0.5.2
^5.101.3
->^5.102.0
Release Notes
sxzz/eslint-config (@sxzz/eslint-config)
v7.2.6
Compare Source
🐞 Bug Fixes
return
in computed - by @sxzz (f724b)View changes on GitHub
v7.2.5
Compare Source
No significant changes
View changes on GitHub
v7.2.4
Compare Source
🐞 Bug Fixes
unicorn/prefer-ternary
- by @sxzz (b3b3d)View changes on GitHub
v7.2.3
Compare Source
🐞 Bug Fixes
undefined
in args - by @sxzz (2830d)View changes on GitHub
v7.2.2
Compare Source
🐞 Bug Fixes
no-anonymous-default-export
for vue/jsx files - by @sxzz (a1e6a)View changes on GitHub
v7.2.1
Compare Source
🚀 Features
🐞 Bug Fixes
🏎 Performance
require
for pure CJS deps - by @sxzz (5a61d)View changes on GitHub
v7.2.0
Compare Source
🚀 Features
View changes on GitHub
sxzz/test-utils (@sxzz/test-utils)
v0.5.11
Compare Source
🐞 Bug Fixes
View changes on GitHub
evanw/esbuild (esbuild)
v0.25.10
Compare Source
Fix a panic in a minification edge case (#4287)
This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value
undefined
in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):Fix
@supports
nested inside pseudo-element (#4265)When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as
::placeholder
for correctness. The CSS nesting specification says the following:However, it seems like this behavior is different for nested at-rules such as
@supports
, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:eslint/eslint (eslint)
v9.37.0
Compare Source
v9.36.0
Compare Source
rich-harris/magic-string (magic-string)
v0.30.19
Compare Source
Bug Fixes
Features
replace(All)
support replacement for functions when the first parameter is a string (#304) (fd1d887)pnpm/pnpm (pnpm)
v10.18.0
Compare 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:
fetchWarnTimeoutMs
andfetchMinSpeedKiBps
.Warning messages are displayed when requests exceed time thresholds or fall below speed minimums
Related PR: #10025.
Patch Changes
minimumReleaseAge
configuration #10030.cleanupUnusedCatalogs
configuration when removing dependent packages.scriptShell
is set tofalse
#8748.pnpm dlx
should not fail whenminimumReleaseAge
is set #10037.v10.17.1
Compare Source
Patch Changes
minimumReleaseAge
setting, print this information out in the error message #9974.state.json
creation path when executingpnpm patch
in a workspace project #9733.minimumReleaseAge
is set and thelatest
tag is not mature enough, prefer a non-deprecated version as the newlatest
#9987.v10.17.0
Compare Source
Minor Changes
The
minimumReleaseAgeExclude
setting now supports patterns. For instance:Related PR: #9984.
Patch Changes
minimumReleaseAge
check, when the package is requested by exact version and the packument is loaded from cache #9978.minimumReleaseAge
is 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.1
Compare Source
Patch Changes
v10.16.0
Compare 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: 1440
ensures that only packages released at least one day ago can be installed.If you set
minimumReleaseAge
but need to disable this restriction for certain dependencies, you can list them under theminimumReleaseAgeExclude
setting. 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 list
andpnpm why
could 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@17
in their peer dependencies?This is now possible with "finder functions". Finder functions can be declared in
.pnpmfile.cjs
and invoked with the--find-by=<function name>
flag when runningpnpm list
orpnpm 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
nodeVersion
is not set to an exact semver version #9934.pnpm publish
should be able to publish a.tar.gz
file #9927.pnpm run
return a non-zero exit code #9626.rollup/rollup (rollup)
v4.52.4
Compare Source
2025-10-03
Bug Fixes
Pull Requests
v4.52.3
Compare Source
2025-09-27
Bug Fixes
Pull Requests
fb197b7
(@renovate[bot])v4.52.2
Compare Source
2025-09-23
Bug Fixes
Pull Requests
v4.52.1
Compare Source
2025-09-23
Bug Fixes
Pull Requests
v4.52.0
Compare Source
2025-09-19
Features
output.onlyExplicitManualChunks
to turn off merging additional dependencies into manual chunks (#6087)Pull Requests
v4.51.0
Compare Source
2025-09-19
Features
Bug Fixes
Pull Requests
v4.50.2
Compare Source
2025-09-15
Bug Fixes
Pull Requests
rolldown/tsdown (tsdown)
v0.15.6
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.15.5
Compare Source
🚀 Features
inlineOnly
option - by @sxzz (e3bce)🐞 Bug Fixes
🏎 Performance
require
pure cjs deps - by @sxzz (091b8)View changes on GitHub
v0.15.4
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.15.3
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.15.2
Compare Source
🚀 Features
globImport
option - by @sxzz (cc30d)new URL(url, import.meta.url)
pattern by default - by @sxzz (f26e0)🐞 Bug Fixes
View changes on GitHub
v0.15.1
Compare Source
🚀 Features
config-loader
cli option - by @sxzz (f0ef7)🐞 Bug Fixes
View changes on GitHub
v0.15.0
Compare Source
🚨 Breaking Changes
🚀 Features
import.meta.glob
- by @sxzz (4223b)🐞 Bug Fixes
View changes on GitHub
privatenumber/tsx (tsx)
v4.20.6
Compare Source
Bug Fixes
This release is also available on:
microsoft/TypeScript (typescript)
v5.9.3
Compare Source
unplugin/unplugin-oxc (unplugin-oxc)
v0.5.2
Compare Source
No significant changes
View changes on GitHub
webpack/webpack (webpack)
v5.102.0
Compare Source
Features
import file from "./file.ext" with { type: "bytes" }
to get the content asUint8Array
(look at example)import file from "./file.ext" with { type: "text" }
to get the content as text (look at example)snapshot.contextModule
to configure snapshots options for context modulesextractSourceMap
option to implement the capabilities of loading source maps by comment, you don't needsource-map-loader
(look at example)topLevelAwait
experiment is now stable (you can removeexperiments.topLevelAwait
from yourwebpack.config.js
)layers
experiment is now stable (you can removeexperiments.layers
from yourwebpack.config.js
)Fixes
this
exportstimeout
attribute of script tages-lexer
formjs
files for build dependencies__non_webpack_require__
for ES moduleschunk.auxiliaryFiles
createRequire
only when output is ES module and target is nodePerformance Improvements
Configuration
📅 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: 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.