fix(deps): update all dependencies #1057
Open
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.26.10
->7.27.1
7.26.9
->7.27.2
7.27.0
->7.27.1
2.29.2
->2.29.4
19.8.0
->19.8.1
19.8.0
->19.8.1
0.23.0
->0.24.0
^0.58.0
->^0.59.0
^0.200.0
->^0.201.0
^0.200.0
->^0.201.0
22.15.3
->22.15.21
22.15.0
->22.16.0
20.19.1
->20.19.2
0.25.3
->0.25.4
5.0.1
->5.0.3
15.5.1
->15.5.2
22.15.0
->22.16.0
29.3.2
->29.3.4
0.28.3
->0.28.4
5.99.7
->5.99.9
Release Notes
babel/babel (@babel/core)
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)changesets/changesets (@changesets/cli)
v2.29.4
Compare Source
Patch Changes
#1668
65d6632
Thanks @Andarist! - Fixed a crash in pre mode when trying to version private packages when tagging for private package is disabledUpdated dependencies [
65d6632
]:v2.29.3
Compare Source
Patch Changes
#1589
de8bebc
Thanks @remorses, @vzt7! - Fixed a crash in prerelease mode when a package misses the version field in itspackage.json
#1619
c1e8a78
Thanks @manucorporat! - Support../
inpublishConfig.directory
when publishing packagesUpdated dependencies [
de8bebc
]:conventional-changelog/commitlint (@commitlint/cli)
v19.8.1
Compare Source
Bug Fixes
conventional-changelog/commitlint (@commitlint/config-conventional)
v19.8.1
Compare Source
Note: Version bump only for package @commitlint/config-conventional
Thinkmill/manypkg (@manypkg/cli)
v0.24.0
Compare Source
Minor Changes
#248
456ca21
Thanks @bluwy! - Change the default value of thedefaultBranch
config from"master"
to"main"
#242
1763058
Thanks @spanishpear! - This package is now published as a pure ESM package.#245
a00f5f7
Thanks @Andarist! - Drop support for Bolt#244
f29df03
Thanks @Andarist! - Add"engines"
field for explicit node version support. The supported node versions are>=20.0.0
.Patch Changes
3cf8c4e
,1763058
,a00f5f7
,f29df03
]:open-telemetry/opentelemetry-js-contrib (@opentelemetry/auto-instrumentations-node)
v0.59.0
Compare Source
v0.58.1
Compare Source
open-telemetry/opentelemetry-js (@opentelemetry/exporter-metrics-otlp-http)
v0.201.1
Compare Source
v0.201.0
Compare Source
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.
jest-community/jest-extended (jest-extended)
v5.0.3
Compare Source
Patch Changes
3a031b6
: Fix some types bugsv5.0.2
Compare Source
Patch Changes
846fac2
: toIncludeSameMembers should fail when passed non-arrays89c99c4
: toBeWithin fails with bigintslint-staged/lint-staged (lint-staged)
v15.5.2
Compare Source
Patch Changes
5561321
Thanks @YimingIsCOLD! - Correctly handle colon (:
) characters in staged filenames.nodejs/node (node)
v22.16.0
: 2025-05-21, Version 22.16.0 'Jod' (LTS), @aduh95Compare Source
Notable Changes
c3ceaebb7a
] - deps: update timezone to 2025b (Node.js GitHub Bot) #578575059a746ec
] - doc: add dario-piotrowicz to collaborators (Dario Piotrowicz) #58102c8ceaaf397
] - (SEMVER-MINOR) doc: graduate multiple experimental apis (James M Snell) #57765e21b37d9df
] - (SEMVER-MINOR) esm: graduate import.meta properties (James M Snell) #58011832640c35e
] - (SEMVER-MINOR) esm: support top-level Wasm without package type (Guy Bedford) #57610c510391d2f
] - (SEMVER-MINOR) sqlite: add StatementSync.prototype.columns() (Colin Ihrig) #574905d1230bec0
] - (SEMVER-MINOR) src: set default config asnode.config.json
(Marco Ippolito) #5717130bb1ccbb0
] - (SEMVER-MINOR) src: createTHROW_ERR_OPTIONS_BEFORE_BOOTSTRAPPING
(Marco Ippolito) #570160350c6f478
] - (SEMVER-MINOR) src: add config file support (Marco Ippolito) #57016e1d3a9e192
] - (SEMVER-MINOR) src: add ExecutionAsyncId getter for any Context (Attila Szegedi) #578200ec912f452
] - (SEMVER-MINOR) stream: preserve AsyncLocalStorage context in finished() (Gürgün Dayıoğlu) #5786543490c8797
] - (SEMVER-MINOR) util: addtypes.isFloat16Array()
(Livia Medeiros) #57879dda6ca9172
] - (SEMVER-MINOR) worker: add worker.getHeapStatistics() (Matteo Collina) #57888Commits
4252dc798c
] - assert: supportFloat16Array
in loose deep equality checks (Livia Medeiros) #578811c7396b078
] - assert,util: fix constructor lookup in deep equal comparison (Ruben Bridgewater) #578761ded5f25c8
] - assert,util: improve deep object comparison performance (Ruben Bridgewater) #57648696b5f85ca
] - assert,util: improve unequal number comparison performance (Ruben Bridgewater) #57619775ee4d40f
] - assert,util: improve array comparison (Ruben Bridgewater) #576193766992ba4
] - benchmark: add sqlite prepare select get (Vinícius Lourenço) #580408390276be3
] - benchmark: add sqlite prepare select all (Vinícius Lourenço) #580406a9b79e5c1
] - benchmark: add sqlite is transaction (Vinícius Lourenço) #58040f689f98344
] - benchmark: add sqlite prepare insert (Vinícius Lourenço) #5804014a82804d7
] - benchmark: disambiguatefilename
anddirname
read perf (Antoine du Hamel) #58056e7e8256d35
] - buffer: avoid creating unnecessary environment (Yagiz Nizipli) #58053d7d8e8e994
] - buffer: define global v8::CFunction objects as const (Mert Can Altin) #57676f37633e85a
] - build: use$(BUILDTYPE)
when cleaning coverage files (Aviv Keller) #57995e5bf67fe77
] - build: define python when generatingout/Makefile
(Aviv Keller) #57970718f874ae0
] - build: fix zstd libname (Antoine du Hamel) #5799953c5fdcae1
] - crypto: fix cross-realmSharedArrayBuffer
validation (Antoine du Hamel) #5797478f4ffee5d
] - crypto: fix cross-realm check ofArrayBuffer
(Felipe Forbeck) #57828f606352b63
] - crypto: forbid passingFloat16Array
togetRandomValues()
(Livia Medeiros) #5788023c4e941c2
] - crypto: remove BoringSSL dh-primes addition (Shelley Vohr) #570238339d9bc14
] - deps: V8: cherry-pickf915fa4
(Chengzhong Wu) #55484c2111dd126
] - deps: V8: backporte5dbbba
(Darshan Sen) #581204cc49be951
] - deps: update zstd to 1.5.7 (Node.js GitHub Bot) #57940c956d37c84
] - deps: update zlib to 1.3.0.1-motley-780819f (Node.js GitHub Bot) #57768c3ceaebb7a
] - deps: update timezone to 2025b (Node.js GitHub Bot) #57857b5cd0eb590
] - deps: update simdutf to 6.4.2 (Node.js GitHub Bot) #578553eb6b814e9
] - deps: update simdutf to 6.4.0 (Node.js GitHub Bot) #567640be9fa3218
] - deps: update icu to 77.1 (Node.js GitHub Bot) #57455d5cf4254fb
] - doc: add HBSPS as triager (Wiyeong Seo) #57980ad0861dba0
] - doc: add ambassaor message (Brian Muenzenmeyer) #576000d3ec1aafe
] - doc: fix misaligned options in vm.compileFunction() (Jimmy Leung) #581451f70baf3b0
] - doc: add missing options.signal to readlinePromises.createInterface() (Jimmy Leung) #55456ec6a48621f
] - doc: fix typo of filezlib.md
(yusheng chen) #5809337e360e386
] - doc: make stability labels more consistent (Antoine du Hamel) #575162b5d63d36e
] - doc: allow the $schema property in node.config.json (Remco Haszing) #57560a2063638e2
] - doc: fixAsyncLocalStorage
example response changes after node v18 (Naor Tedgi (Abu Emma)) #57969474c2b14c3
] - doc: mark Node.js 18 as End-of-Life (Richard Lau) #580845059a746ec
] - doc: add dario-piotrowicz to collaborators (Dario Piotrowicz) #581021eec170fc3
] - doc: fix formatting ofimport.meta.filename
section (Antoine du Hamel) #580797f108de525
] - doc: fix env variable name inutil.styleText
(Antoine du Hamel) #5807254b3f7fffc
] - doc: add returns for https.get (Eng Zer Jun) #5802566f2c605a8
] - doc: fix typo inbuffer.md
(chocolateboy) #58052b0256dd42b
] - doc: correct deprecation type ofassert.CallTracker
(René) #57997581439c9e6
] - doc: mark devtools integration section as active development (Chengzhong Wu) #57886a2a2a2f027
] - doc: fix typo inmodule.md
(Alex Schwartz) #57889c0ec4e2935
] - doc: increase z-index of header element (Dario Piotrowicz) #5785193d19ec6cd
] - doc: add missing TS formats forload
hooks (Antoine du Hamel) #57837f5ea06c61f
] - doc: clarify the multi REPL example (Dario Piotrowicz) #5775980c4fe1b70
] - doc: fix deprecation type forDEP0148
(Livia Medeiros) #5778501cad99da0
] - doc: list DOMException as a potential error raised by Node.js (Chengzhong Wu) #57783a08b714a46
] - doc: add missing v0.x changelog entries (Antoine du Hamel) #57779d0b48350fd
] - doc: fix typo in writing-docs (Sebastian Beltran) #57776bde3725f8b
] - doc: clarify examples section in REPL doc (Dario Piotrowicz) #57762c8ceaaf397
] - (SEMVER-MINOR) doc: graduate multiple experimental apis (James M Snell) #5776592428c2609
] - doc: explicitly state that corepack will be removed in v25+ (Trivikram Kamat) #57747298969e1dd
] - doc: update position type to integer | null in fs (Yukihiro Hasegawa) #57745a9d28e27c9
] - doc: update CI instructions (Antoine du Hamel) #57743133d2878a1
] - doc: update example of usingawait
in REPL (Dario Piotrowicz) #57653fc5f126629
] - doc: add back mention of visa fees to onboarding doc (Darshan Sen) #57730945f4ac538
] - doc: process.execve is only unavailable for Windows (Yaksh Bariya) #57726f3b885bb5e
] - doc: clarifyunhandledRejection
events behaviors in process doc (Dario Piotrowicz) #576547326dda5b0
] - doc: improved fetch docs (Alessandro Miliucci) #572966906c5eb1f
] - doc: document REPL custom eval arguments (Dario Piotrowicz) #5769047a7564e8f
] - doc: classify Chrome DevTools Protocol as tier 2 (Chengzhong Wu) #57634e274cc1310
] - doc: replace NOTE that does not render properly (Colin Ihrig) #57484bef06b11df
] - esm: avoidimport.meta
setup costs for unused properties (Antoine du Hamel) #57286e21b37d9df
] - (SEMVER-MINOR) esm: graduate import.meta properties (James M Snell) #58011832640c35e
] - (SEMVER-MINOR) esm: support top-level Wasm without package type (Guy Bedford) #576108f643471ef
] - fs: improve globSync performance (Rich Trott) #57725bf9e17ecc6
] - http2: use args.This() instead of args.Holder() (Joyee Cheung) #58004137717354f
] - http2: fix graceful session close (Kushagra Pandey) #578089baf580269
] - http2: fix check forframe->hd.type
(hanguanqiang) #57644b8189242b2
] - http2: skip writeHead if stream is closed (Shima Ryuhei) #576864e02a1650a
] - lib: remove unused filefetch_module
(Michaël Zasso) #55880d9700fef26
] - lib: avoid StackOverflow onserializeError
(Chengzhong Wu) #58075f3a16b6d9c
] - lib: resolve the issue of not adhering to the specified buffer size (0hm☘️🏳️⚧️) #55896d4fc282f73
] - lib: fix AbortSignal.any() with timeout signals (Gürgün Dayıoğlu) #57867f7e2902861
] - lib: use Map primordial for ActiveAsyncContextFrame (Gürgün Dayıoğlu) #576708652b0e168
] - meta: set nodejs/config as codeowner (Marco Ippolito) #57237Configuration
📅 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 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.