chore(deps): update all non-major dependencies #3439
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.2.8
->^1.3.0
^0.25.1
->^0.25.2
^5.46.1
->^5.46.4
^2.11.7
->^2.11.8
10.6.5
->10.7.0
4.37.0
->4.38.0
^1.0.0
->^1.0.1
^5.6.2
->^5.8.2
^7.14.0
->^7.18.0
^7.5.0
->^7.6.0
4.1.2
->4.1.3
^3.0.9
->^3.1.1
Release Notes
web-infra-dev/rspack (@rspack/core)
v1.3.0
Compare Source
What's Changed
See Announcing Rspack 1.3 for more details.
Breaking Changes 🛠
Performance Improvements ⚡
Exciting New Features 🎉
module.generator.json.JSONParse
by @colinaaa in https://github.com/web-infra-dev/rspack/pull/9666NormalModule.loaders
by @ahabhgk in https://github.com/web-infra-dev/rspack/pull/9664BuilderError
by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/9627Bug Fixes 🐞
getModuleId
should return number for deterministic moduleIds by @ahabhgk in https://github.com/web-infra-dev/rspack/pull/9785watching.invalidateWithChangesAndRemovals()
by @ahabhgk in https://github.com/web-infra-dev/rspack/pull/9789Document Updates 📖
entrypoint.getEntrypointChunk
to documentation by @ahabhgk in https://github.com/web-infra-dev/rspack/pull/9641experiments.outputModule
default value by @chenjiahan in https://github.com/web-infra-dev/rspack/pull/9694extends
configuration and blog titles by @chenjiahan in https://github.com/web-infra-dev/rspack/pull/9719modern-module
docs by @Timeless0911 in https://github.com/web-infra-dev/rspack/pull/9806Other Changes
use
statements for better clarity and consistency by @reddevilmidzy in https://github.com/web-infra-dev/rspack/pull/9578module.code_generation
to async fn by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9626block_on
in rspack_storage by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9700runtime_module.generate
by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9701block_on
in runtime modules by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9708block_on
in devtool by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9717block_on
in split chunk name and test by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9722block_on
in split chunk filter by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9732block_on
related test cases by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9735block_on
in asset generator by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9733use
statements for better readability by @reddevilmidzy in https://github.com/web-infra-dev/rspack/pull/9751Filename
uniformly by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9813New Contributors
Full Changelog: web-infra-dev/rspack@v1.2.8...v1.3.0
evanw/esbuild (esbuild)
v0.25.2
Compare Source
Support flags in regular expressions for the API (#4121)
The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the
filter
option. Internally these are translated into Go regular expressions. However, this translation previously ignored theflags
property of the regular expression. With this release, esbuild will now translate JavaScript regular expression flags into Go regular expression flags. Specifically the JavaScript regular expression/\.[jt]sx?$/i
is turned into the Go regular expression`(?i)\.[jt]sx?$`
internally inside of esbuild's API. This should make it possible to use JavaScript regular expressions with thei
flag. Note that JavaScript and Go don't support all of the same regular expression features, so this mapping is only approximate.Fix node-specific annotations for string literal export names (#4100)
When node instantiates a CommonJS module, it scans the AST to look for names to expose via ESM named exports. This is a heuristic that looks for certain patterns such as
exports.NAME = ...
ormodule.exports = { ... }
. This behavior is used by esbuild to "annotate" CommonJS code that was converted from ESM with the original ESM export names. For example, when converting the fileexport let foo, bar
from ESM to CommonJS, esbuild appends this to the end of the file:However, this feature previously didn't work correctly for export names that are not valid identifiers, which can be constructed using string literal export names. The generated code contained a syntax error. That problem is fixed in this release:
Basic support for index source maps (#3439, #4109)
The source map specification has an optional mode called index source maps that makes it easier for tools to create an aggregate JavaScript file by concatenating many smaller JavaScript files with source maps, and then generate an aggregate source map by simply providing the original source maps along with some offset information. My understanding is that this is rarely used in practice. I'm only aware of two uses of it in the wild: ClojureScript and Turbopack.
This release provides basic support for indexed source maps. However, the implementation has not been tested on a real app (just on very simple test input). If you are using index source maps in a real app, please try this out and report back if anything isn't working for you.
Note that this is also not a complete implementation. For example, index source maps technically allows nesting source maps to an arbitrary depth, while esbuild's implementation in this release only supports a single level of nesting. It's unclear whether supporting more than one level of nesting is important or not given the lack of available test cases.
This feature was contributed by @clyfish.
webpro-nl/knip (knip)
v5.46.4
Compare Source
v5.46.3
Compare Source
webpack.ProvidePlugin
(resolves #840) (6a69543
)cache
to pnpm commands (resolves #1010) (5f2efd4
)rootDir
set (resolves #1007) (7ba16e1
)v5.46.2
Compare Source
nitrojs/nitro (nitropack)
v2.11.8
Compare Source
compare changes
🩹 Fixes
srcDir
relative torootDir
(#3250)📦 Build
39MB
(#3252)❤️ Contributors
pnpm/pnpm (pnpm)
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
to[email protected]
,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
rollup/rollup (rollup)
v4.38.0
Compare Source
2025-03-29
Features
.filter
option inresolveId
,load
andtransform
hooks (#5882)Pull Requests
tinylibs/tinyexec (tinyexec)
v1.0.1
Compare Source
What's Changed
exports
map inpackage.json
by @SukkaW in https://github.com/tinylibs/tinyexec/pull/48New Contributors
Full Changelog: tinylibs/tinyexec@1.0.0...1.0.1
microsoft/TypeScript (typescript)
v5.8.2
Compare Source
v5.7.3
: TypeScript 5.7.3Compare Source
For release notes, check out the release announcement.
Downloads are available on npm
v5.7.2
: TypeScript 5.7Compare Source
For release notes, check out the release announcement.
Downloads are available on:
v5.6.3
: TypeScript 5.6.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
typescript-eslint/typescript-eslint (typescript-eslint)
v7.18.0
Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v7.17.0
Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.16.1
Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v7.16.0
Compare Source
🚀 Features
🩹 Fixes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.