fix(deps): update all non-major dependencies #65
+1,531
−897
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.27.0
->^7.27.1
^0.5.4
->^0.5.6
^22.13.14
->^22.15.14
^1.4.2
->^1.4.3
^0.25.2
->^0.25.4
^9.23.0
->^9.26.0
10.7.0
->10.10.0
^4.38.0
->^4.40.2
^0.6.10
->^0.11.0
^4.19.3
->^4.19.4
^5.8.2
->^5.8.3
^2.2.2
->^2.3.2
^0.3.2
->^0.3.6
^0.5.1
->^0.5.2
^6.2.4
->^6.3.5
^3.1.1
->^3.1.3
^5.98.0
->^5.99.8
Release Notes
babel/babel (@babel/types)
v7.27.1
Compare Source
👓 Spec Compliance
babel-parser
using of
as lexical declaration within for (@JLHwung)babel-parser
,babel-types
🐛 Bug Fix
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
,babel-traverse
babel-helper-wrap-function
,babel-plugin-transform-async-to-generator
babel-helper-remap-async-to-generator
,babel-plugin-transform-async-to-generator
babel-helper-fixtures
,babel-parser
babel-generator
,babel-parser
babel-parser
babel-compat-data
,babel-preset-env
babel-traverse
babel-generator
💅 Polish
babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining
,babel-plugin-proposal-decorators
,babel-plugin-transform-arrow-functions
,babel-plugin-transform-class-properties
,babel-plugin-transform-destructuring
,babel-plugin-transform-object-rest-spread
,babel-plugin-transform-optional-chaining
,babel-plugin-transform-parameters
,babel-traverse
🏠 Internal
babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
regenerator-runtime
dep in@babel/runtime
(@nicolo-ribaudo)babel-compat-data
,babel-preset-env
babel-compat-data
,babel-standalone
babel-register
@babel/register
to cts (@liuxingbaoyu)babel-cli
,babel-compat-data
,babel-core
,babel-generator
,babel-helper-compilation-targets
,babel-helper-fixtures
,babel-helper-module-imports
,babel-helper-module-transforms
,babel-helper-plugin-test-runner
,babel-helper-transform-fixture-test-runner
,babel-helpers
,babel-node
,babel-parser
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-systemjs
,babel-plugin-transform-modules-umd
,babel-plugin-transform-react-display-name
,babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
,babel-plugin-transform-typeof-symbol
,babel-plugin-transform-typescript
,babel-preset-env
,babel-register
,babel-standalone
,babel-types
babel-plugin-transform-regenerator
babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
babel-helpers
,babel-plugin-transform-regenerator
babel-helpers
🔬 Output optimization
babel-helpers
,babel-plugin-transform-modules-commonjs
,babel-runtime-corejs3
interopRequireWildcard
size (@liuxingbaoyu)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
regeneratorRuntime
size (@liuxingbaoyu)sxzz/test-utils (@sxzz/test-utils)
v0.5.6
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.5.5
Compare Source
🚀 Features
View changes on GitHub
sxzz/ast-kit (ast-kit)
v1.4.3
Compare Source
🐞 Bug Fixes
View changes on GitHub
evanw/esbuild (esbuild)
v0.25.4
Compare Source
Add simple support for CORS to esbuild's development server (#4125)
Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from
localhost
where the esbuild development server is running.To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new
cors
option will now set theAccess-Control-Allow-Origin
response header when the request has a matchingOrigin
header. Note that this currently only works for requests that don't send a preflightOPTIONS
request, as esbuild's development server doesn't currently supportOPTIONS
requests.Some examples:
CLI:
JS:
Go:
The special origin
*
can be used to allow any origin to access esbuild's development server. Note that this means any website you visit will be able to read everything served by esbuild.Pass through invalid URLs in source maps unmodified (#4169)
This fixes a regression in version 0.25.0 where
sources
in source maps that form invalid URLs were not being passed through to the output. Version 0.25.0 changed the interpretation ofsources
from file paths to URLs, which means that URL parsing can now fail. Previously URLs that couldn't be parsed were replaced with the empty string. With this release, invalid URLs insources
should now be passed through unmodified.Handle exports named
__proto__
in ES modules (#4162, #4163)In JavaScript, the special property name
__proto__
sets the prototype when used inside an object literal. Previously esbuild's ESM-to-CommonJS conversion didn't special-case the property name of exports named__proto__
so the exported getter accidentally became the prototype of the object literal. It's unclear what this affects, if anything, but it's better practice to avoid this by using a computed property name in this case.This fix was contributed by @magic-akari.
eslint/eslint (eslint)
v9.26.0
Compare Source
v9.25.1
Compare Source
v9.25.0
Compare Source
v9.24.0
Compare Source
pnpm/pnpm (pnpm)
v10.10.0
Compare Source
Minor Changes
preResolution
,importPackage
, andfetchers
hooks from local pnpmfile.Patch Changes
cd
command, whenshellEmulator
istrue
#7838.pnpm-workspace.yaml
#9453.npm_package_json
environment variable to the executed scripts #9452.--reporter=silent
option.v10.9.0
Compare Source
Minor Changes
Added support for installing JSR packages. You can now install JSR packages using the following syntax:
or with a version range:
For example, running:
will add the following entry to your
package.json
:When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:
Related issue: #8941.
Note: The
@jsr
scope defaults to https://npm.jsr.io/ if the@jsr:registry
setting is not defined.Added a new setting,
dangerouslyAllowAllBuilds
, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this topnpm-workspace.yaml
:dangerouslyAllowAllBuilds
has the same effect but also allows to be set globally via:It can also be set when running a command:
Patch Changes
verifyDepsBeforeRun
whennodeLinker
ishoisted
and there is a workspace package without dependencies andnode_modules
directory #9424.verifyDepsBeforeRun
support fornodeLinker: pnp
. CombiningverifyDepsBeforeRun
andnodeLinker: pnp
will now print a warning.v10.8.1
Compare Source
Patch Changes
package.json
,onlyBuiltDependencies
will be written topnpm-workspace.yaml
file #9404.v10.8.0
Compare Source
Minor Changes
Experimental. A new hook is supported for updating configuration settings. The hook can be provided via
.pnpmfile.cjs
. For example:Now you can use the
pnpm add
command with the--config
flag to install new configurational dependencies #9377.Patch Changes
!/
inpnpm-workspace.yaml
. This fixes a regression introduced by #9169.pnpm audit --fix
should update the overrides inpnpm-workspace.yaml
.pnpm link
should update overrides inpnpm-workspace.yaml
, not inpackage.json
#9365.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
rollup/rollup (rollup)
v4.40.2
Compare Source
2025-05-06
Bug Fixes
Pull Requests
ReferenceError
(@dasa)v4.40.1
Compare Source
2025-04-28
Bug Fixes
Pull Requests
./package.json
entry (@JounQin, @lukastaegert)v4.40.0
Compare Source
2025-04-12
Features
eval
warnings on first render and only when the call is not tree-shaken (#5892)Bug Fixes
Pull Requests
treeshake: false
breaking destructured namespace imports (@Skn0tt)v4.39.0
Compare Source
2025-04-02
Features
Bug Fixes
id
property as optional in the filter for theresolveId
hook (#5896)Pull Requests
rolldown/tsdown (tsdown)
v0.11.0
Compare Source
🚨 Breaking Changes
unplugin-lightningcss
as peer dependency - by @sxzz (32be4)🚀 Features
removeNodeProtocol
option - by @wChenonly and @sxzz in https://github.com/rolldown/tsdown/issues/179 (06ec6)copy
&publicDir
options - by @sxzz in https://github.com/rolldown/tsdown/issues/188 (512ea)engines.node
as default fortarget
option - by @sxzz (8a553)🐞 Bug Fixes
semver/ranges/min-version
module not found - by @kingsword09 in https://github.com/rolldown/tsdown/issues/191 (dd926)UserConfigFn
type - by @sxzz (6fb72)🏎 Performance
View changes on GitHub
v0.10.2
Compare Source
🚀 Features
on-success
option - by @sxzz (186b0)🐞 Bug Fixes
View changes on GitHub
v0.10.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.10.0
Compare Source
🚨 Breaking Changes
dts
based ontypings
field inpackage.json
- by @sxzz (c7109)🚀 Features
View changes on GitHub
v0.9.9
Compare Source
🚀 Features
🏎 Performance
View changes on GitHub
v0.9.8
Compare Source
🚀 Features
View changes on GitHub
v0.9.7
Compare Source
🚀 Features
--debug
option - by @btea and @sxzz in https://github.com/rolldown/tsdown/issues/147 (1e6f2)env
option - by @fu050409 in https://github.com/rolldown/tsdown/issues/152 (e7edf)🐞 Bug Fixes
🏎 Performance
module.enableCompileCache()
- by @btea in https://github.com/rolldown/tsdown/issues/153 (a60d9)View changes on GitHub
v0.9.6
Compare Source
🐞 Bug Fixes
format
&target
- by @sxzz (06700)brotli
by default for performance - by @sxzz (4b95e)View changes on GitHub
v0.9.5
Compare Source
🚀 Features
View changes on GitHub
v0.9.4
Compare Source
🚀 Features
external
cli option - by @sxzz (87cf4)View changes on GitHub
v0.9.3
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.9.2
[Compare Source](https://redirect.github.com/rolldown/tsdown/compare/v0
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.