Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 9, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@types/node (source) 22.15.30 -> 22.18.1 age confidence dependencies minor 22.18.5 (+3)
core-js (source) 3.42.0 -> 3.45.1 age confidence dependencies minor
globals 16.2.0 -> 16.4.0 age confidence dependencies minor
node (source) 22.16.0 -> 22.19.0 age confidence minor
pnpm (source) 10.12.1 -> 10.15.1 age confidence packageManager minor 10.17.0 (+2)
prettier-plugin-packagejson 2.5.15 -> 2.5.19 age confidence dependencies patch
typescript (source) 5.8.3 -> 5.9.2 age confidence dependencies minor

Release Notes

zloirock/core-js (core-js)

v3.45.1

Compare Source

  • Changes v3.45.0...v3.45.1 (30 commits)
  • Fixed a conflict of native methods from Map upsert proposal with polyfilled methods in the pure version
  • Added bugs fields to package.json of all packages
  • Compat data improvements:
    • Map upsert proposal features marked as shipped from Bun 1.2.20
    • Added Samsung Internet 29 compat data mapping
    • Added Electron 39 compat data mapping

v3.45.0

Compare Source

v3.44.0

Compare Source

v3.43.0

Compare Source

  • Changes v3.42.0...v3.43.0 (139 commits)
  • Explicit Resource Management proposals:
    • Built-ins:
      • Symbol.dispose
      • Symbol.asyncDispose
      • SuppressedError
      • DisposableStack
        • DisposableStack.prototype.dispose
        • DisposableStack.prototype.use
        • DisposableStack.prototype.adopt
        • DisposableStack.prototype.defer
        • DisposableStack.prototype.move
        • DisposableStack.prototype[@​@​dispose]
      • AsyncDisposableStack
        • AsyncDisposableStack.prototype.disposeAsync
        • AsyncDisposableStack.prototype.use
        • AsyncDisposableStack.prototype.adopt
        • AsyncDisposableStack.prototype.defer
        • AsyncDisposableStack.prototype.move
        • AsyncDisposableStack.prototype[@​@​asyncDispose]
      • Iterator.prototype[@​@​dispose]
      • AsyncIterator.prototype[@​@​asyncDispose]
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Array.fromAsync proposal:
    • Built-ins:
      • Array.fromAsync
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Error.isError proposal:
    • Built-ins:
      • Error.isError
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Added Joint iteration stage 2.7 proposal:
    • Added built-ins:
      • Iterator.zip
      • Iterator.zipKeyed
  • Added Iterator chunking stage 2 proposal:
    • Added built-ins:
      • Iterator.prototype.chunks
      • Iterator.prototype.windows
  • Number.prototype.clamp proposal:
  • Always check regular expression flags by flags getter PR. Native methods are not fixed, only own implementation updated for:
    • RegExp.prototype[@​@​match]
    • RegExp.prototype[@​@​replace]
  • Improved handling of RegExp flags in polyfills of some methods in engines without proper support of RegExp.prototype.flags and without polyfill of this getter
  • Added feature detection for a WebKit bug that occurs when this is updated while Set.prototype.difference is being executed
  • Added feature detection for a WebKit bug that occurs when iterator record of a set-like object isn't called before cloning this in the following methods:
    • Set.prototype.symmetricDifference
    • Set.prototype.union
  • Added feature detection for a bug in V8 ~ Chromium < 126. Following methods should throw an error on invalid iterator:
    • Iterator.prototype.drop
    • Iterator.prototype.filter
    • Iterator.prototype.flatMap
    • Iterator.prototype.map
  • Added feature detection for a WebKit bug: incorrect exception thrown by Iterator.from when underlying iterator's return method is null
  • Added feature detection for a FF bug: incorrect exception thrown by Array.prototype.with when index coercion fails
  • Added feature detection for a WebKit bug: TypedArray.prototype.with should truncate negative fractional index to zero, but instead throws an error
  • Worked around a bug of many different tools (example) with incorrect transforming and breaking JS syntax on getting a method from a number literal
  • Fixed deoptimization of the Promise polyfill in the pure version
  • Added some missed dependencies to /iterator/flat-map entries
  • Some other minor fixes and improvements
  • Compat data improvements:
    • Added Deno 2.3 and Deno 2.3.2 compat data mapping
    • Updated Electron 37 compat data mapping
    • Added Opera Android 90 compat data mapping
    • Error.isError marked not supported in Node because of a bug
    • Set.prototype.difference marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Set.prototype.{ symmetricDifference, union } marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterator.from marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterators closing on early errors in Iterator helpers marked as implemented from FF141
    • Array.prototype.with marked as supported only from FF140 because it throws an incorrect exception when index coercion fails
    • TypedArray.prototype.with marked as unsupported in Bun and Safari because it should truncate negative fractional index to zero, but instead throws an error
    • DisposableStack and AsyncDisposableStack marked as shipped in FF141 (SuppressedError has a bug)
    • AsyncDisposableStack bugs marked as fixed in Deno 2.3.2
    • SuppressedError bugs (extra arguments support and arity) marked as fixed in Bun 1.2.15
sindresorhus/globals (globals)

v16.4.0

Compare Source


v16.3.0

Compare Source


nodejs/node (node)

v22.19.0

Compare Source

v22.18.0

Compare Source

v22.17.1

Compare Source

v22.17.0: 2025-06-24, Version 22.17.0 'Jod' (LTS), @​aduh95

Compare Source

Notable Changes
⚠️ Deprecations
Instantiating node:http classes without new

Constructing classes like IncomingMessage or ServerResponse without the new
keyword is now discouraged. This clarifies API expectations and aligns with standard
JavaScript behavior. It may warn or error in future versions.

Contributed by Yagiz Nizipli in #​58518.

options.shell = "" in node:child_process

Using an empty string for shell previously had undefined behavior. This change
encourages explicit choices (e.g., shell: true or a shell path) and avoids
relying on implementation quirks.

Contributed by Antoine du Hamel and Renegade334 #​58564.

HTTP/2 priority signaling

The HTTP/2 prioritization API (e.g., stream.priority) is now deprecated due to
poor real-world support. Applications should avoid using priority hints and expect future removal.

Contributed by Matteo Collina and Antoine du Hamel #​58313.

✅ Features graduated to stable
assert.partialDeepStrictEqual()

This method compares only a subset of properties in deep object comparisons,
useful for flexible test assertions. Its stabilization means it's now safe for
general use and won't change unexpectedly in future releases.

Contributed by Ruben Bridgewater in #​57370.

Miscellaneous
  • dirent.parentPath
  • filehandle.readableWebStream()
  • fs.glob()
  • fs.openAsBlob()
  • node:readline/promises
  • port.hasRef()
  • readable.compose()
  • readable.iterator()
  • readable.readableAborted
  • readable.readableDidRead
  • Duplex.fromWeb()
  • Duplex.toWeb()
  • Readable.fromWeb()
  • Readable.isDisturbed()
  • Readable.toWeb()
  • stream.isErrored()
  • stream.isReadable()
  • URL.createObjectURL()
  • URL.revokeObjectURL()
  • v8.setHeapSnapshotNearHeapLimit()
  • Writable.fromWeb()
  • Writable.toWeb()
  • writable.writableAborted
  • Startup Snapshot API
  • ERR_INPUT_TYPE_NOT_ALLOWED
  • ERR_UNKNOWN_FILE_EXTENSION
  • ERR_UNKNOWN_MODULE_FORMAT
  • ERR_USE_AFTER_CLOSE

Contributed by James M Snell in
#​57513 and
#​58541.

Semver-minor features
🔧 fs.FileHandle.readableWebStream gets autoClose option

This gives developers explicit control over whether the file descriptor should
be closed when the stream ends. Helps avoid subtle resource leaks.

Contributed by James M Snell in #​58548.

🔧 fs.Dir now supports explicit resource management

This improves ergonomics around async iteration of directories. Developers can
now manually control when a directory is closed using .close() or with Symbol.asyncDispose.

Contributed by Antoine du Hamel in #​58206.

📊 http2 gains diagnostics channel: http2.server.stream.finish

Adds observability support for when a stream finishes. Useful for logging,
monitoring, and debugging HTTP/2 behavior without patching internals.

Contributed by Darshan Sen in #​58560.

🔐 Permissions: implicit allow-fs-read to entrypoint

Node.js permissions model now allows read access to the entry file by default.
It makes running permission-restricted apps smoother while preserving security.

Contributed by Rafael Gonzaga in #​58579.

🎨 util.styleText() adds 'none' style

This lets developers remove styling cleanly without hacks. Useful for overriding
inherited terminal styles when composing styled strings.

Contributed by James M Snell in #​58437.

🧑‍💻 Community updates
Commits

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 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Jun 9, 2025
@renovate renovate bot requested a review from frantic1048 June 9, 2025 07:39
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from d6e8fde to a69e530 Compare June 9, 2025 07:40
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.43.0 fix(deps): update dependencies (non-major) Jun 10, 2025
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from a69e530 to 5cd8a1e Compare June 10, 2025 06:45
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 5cd8a1e to ed29262 Compare June 10, 2025 06:46
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from ed29262 to 33619e5 Compare June 16, 2025 12:33
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 33619e5 to 7fd52f7 Compare June 16, 2025 12:34
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 7fd52f7 to 61fc3c5 Compare June 18, 2025 06:52
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 61fc3c5 to de6209c Compare June 18, 2025 06:53
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from de6209c to 9d5b00c Compare June 23, 2025 03:34
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 9d5b00c to 8f0bf26 Compare June 23, 2025 03:35
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 8f0bf26 to bf4ac0a Compare June 24, 2025 11:53
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from bf4ac0a to bee3909 Compare June 24, 2025 11:54
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from bee3909 to 98c9b05 Compare June 24, 2025 19:35
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 98c9b05 to ba4b292 Compare June 24, 2025 19:36
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from ba4b292 to bc3befe Compare June 25, 2025 04:00
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from bc3befe to e4d689e Compare June 25, 2025 04:00
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from e4d689e to 75c4bc9 Compare June 26, 2025 08:53
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 75c4bc9 to 0912f86 Compare June 26, 2025 08:54
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 0912f86 to b92021b Compare June 26, 2025 17:40
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from b92021b to 92220ca Compare June 26, 2025 17:41
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 92220ca to 939a34c Compare June 27, 2025 20:30
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 939a34c to 96e7e69 Compare June 27, 2025 20:31
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 96e7e69 to ac7b73a Compare June 28, 2025 08:34
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from ac7b73a to c958acf Compare June 28, 2025 08:35
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from c958acf to 8f8ddfb Compare July 1, 2025 16:51
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 8f8ddfb to 7dbc6d3 Compare July 1, 2025 16:52
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 7dbc6d3 to d33a829 Compare July 1, 2025 23:51
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from dc58e54 to 596d3e3 Compare August 10, 2025 12:39
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 596d3e3 to 94311ab Compare August 13, 2025 16:45
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 94311ab to b6ee696 Compare August 13, 2025 16:46
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from b6ee696 to 023e58f Compare August 15, 2025 09:11
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 023e58f to 2e956ec Compare August 15, 2025 09:11
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 2e956ec to f563d91 Compare August 19, 2025 14:34
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from f563d91 to c665a1c Compare August 19, 2025 14:35
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from c665a1c to 60976d3 Compare August 19, 2025 22:50
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 60976d3 to 661ae9c Compare August 19, 2025 22:51
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 661ae9c to 3f75294 Compare August 20, 2025 22:26
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 3f75294 to 0674f00 Compare August 20, 2025 22:27
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 0674f00 to ebfa88b Compare August 25, 2025 10:14
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from ebfa88b to 8b9117b Compare August 25, 2025 10:15
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 8b9117b to d1c44b4 Compare August 31, 2025 09:11
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from d1c44b4 to c9e434c Compare August 31, 2025 09:12
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from c9e434c to 77782e1 Compare August 31, 2025 12:43
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 77782e1 to fef0279 Compare August 31, 2025 12:44
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from fef0279 to 270ae58 Compare September 1, 2025 20:13
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 270ae58 to f5ca4d0 Compare September 1, 2025 20:13
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from f5ca4d0 to 82a8103 Compare September 4, 2025 12:56
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 82a8103 to b3610a2 Compare September 4, 2025 12:56
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from b3610a2 to 8439f13 Compare September 9, 2025 21:33
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 8439f13 to 132208f Compare September 9, 2025 21:34
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 132208f to 5ad3045 Compare September 11, 2025 05:34
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 5ad3045 to 4d14e01 Compare September 11, 2025 05:35
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 4d14e01 to 475d121 Compare September 11, 2025 10:42
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 475d121 to 72c9e98 Compare September 11, 2025 10:43
@renovate renovate bot force-pushed the renovate/auto-merge-non-major-updates branch from 72c9e98 to 3d0fcc5 Compare September 16, 2025 20:29
@rainx rainx force-pushed the renovate/auto-merge-non-major-updates branch from 3d0fcc5 to 2c54df9 Compare September 16, 2025 20:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

Successfully merging this pull request may close these issues.

1 participant