Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore(deps): update dependency node to v22 #1217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
renovate wants to merge 1 commit into main
base: main
Choose a base branch
Loading
from renovate/node-22.x

Conversation

Copy link
Contributor

@renovate renovate bot commented Oct 29, 2024
edited
Loading

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:

Package Type Update Change Age Confidence
node uses-with major 20 -> 22 age confidence
node (source) major 18.20.8 -> 22.20.0 age confidence
@types/node (source) devDependencies major 18.19.121 -> 22.18.7 age confidence

Release Notes

actions/node-versions (node)

v22.20.0: 22.20.0

Compare Source

Node.js 22.20.0

v22.19.0: 22.19.0

Compare Source

Node.js 22.19.0

v22.18.0: 22.18.0

Compare Source

Node.js 22.18.0

v22.17.1: 22.17.1

Compare Source

Node.js 22.17.1

v22.17.0: 22.17.0

Compare Source

Node.js 22.17.0

v22.16.0: 22.16.0

Compare Source

Node.js 22.16.0

v22.15.1: 22.15.1

Compare Source

Node.js 22.15.1

v22.15.0: 22.15.0

Compare Source

Node.js 22.15.0

v22.14.0: 22.14.0

Compare Source

Node.js 22.14.0

v22.13.1: 22.13.1

Compare Source

Node.js 22.13.1

v22.13.0: 22.13.0

Compare Source

Node.js 22.13.0

v22.12.0: 22.12.0

Compare Source

Node.js 22.12.0

v22.11.0: 22.11.0

Compare Source

Node.js 22.11.0

v22.10.0: 22.10.0

Compare Source

Node.js 22.10.0

v22.9.0: 22.9.0

Compare Source

Node.js 22.9.0

v22.8.0: 22.8.0

Compare Source

Node.js 22.8.0

v22.7.0: 22.7.0

Compare Source

Node.js 22.7.0

v22.6.0: 22.6.0

Compare Source

Node.js 22.6.0

v22.5.1: 22.5.1

Compare Source

Node.js 22.5.1

v22.5.0: 22.5.0

Compare Source

Node.js 22.5.0

v22.4.1: 22.4.1

Compare Source

Node.js 22.4.1

v22.4.0: 22.4.0

Compare Source

Node.js 22.4.0

v22.3.0: 22.3.0

Compare Source

Node.js 22.3.0

v22.2.0: 22.2.0

Compare Source

Node.js 22.2.0

v22.1.0: 22.1.0

Compare Source

Node.js 22.1.0

v22.0.0: 22.0.0

Compare Source

Node.js 22.0.0

nodejs/node (node)

v22.20.0

Compare Source

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

v22.16.0: 2025年05月21日, Version 22.16.0 'Jod' (LTS), @​aduh95

Compare Source

Notable Changes

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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • 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 changed the title (削除) Update dependency @types/node to v22 (削除ここまで) (追記) Update dependency node to v22 (追記ここまで) Oct 29, 2024
Copy link

codecov bot commented Oct 29, 2024
edited
Loading

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 80.63%. Comparing base (29d81c7) to head (395f913).
⚠️ Report is 4 commits behind head on main.

Additional details and impacted files
@@ Coverage Diff @@
## main #1217 +/- ##
=======================================
 Coverage 80.63% 80.63% 
=======================================
 Files 29 29 
 Lines 1503 1503 
 Branches 371 371 
=======================================
 Hits 1212 1212 
 Misses 233 233 
 Partials 58 58 

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/node-22.x branch 6 times, most recently from 83e4a5f to 2763fb8 Compare November 5, 2024 02:08
@renovate renovate bot force-pushed the renovate/node-22.x branch 4 times, most recently from dfac9c6 to 91f59cc Compare November 13, 2024 00:37
@renovate renovate bot changed the title (削除) Update dependency node to v22 (削除ここまで) (追記) Update Node.js to v22 (追記ここまで) Nov 13, 2024
@renovate renovate bot force-pushed the renovate/node-22.x branch 7 times, most recently from 3988917 to 30a80f3 Compare November 26, 2024 03:36
@renovate renovate bot force-pushed the renovate/node-22.x branch 3 times, most recently from fecce4c to e22ed92 Compare December 3, 2024 23:07
@renovate renovate bot force-pushed the renovate/node-22.x branch 6 times, most recently from 0d7fc7b to d0e3b9e Compare December 12, 2024 04:13
@renovate renovate bot force-pushed the renovate/node-22.x branch 2 times, most recently from cbf87cc to 1d05e67 Compare June 14, 2025 15:49
@renovate renovate bot force-pushed the renovate/node-22.x branch 6 times, most recently from 2f86bb5 to c53773e Compare June 25, 2025 02:51
@renovate renovate bot force-pushed the renovate/node-22.x branch 3 times, most recently from c16ae82 to 1bfeb4e Compare July 8, 2025 23:00
@renovate renovate bot force-pushed the renovate/node-22.x branch 2 times, most recently from 89f9775 to 234da0e Compare July 20, 2025 10:39
@renovate renovate bot force-pushed the renovate/node-22.x branch 5 times, most recently from de16f08 to 9445f2f Compare August 10, 2025 13:10
@renovate renovate bot changed the title (削除) chore(deps): update node.js to v22 (削除ここまで) (追記) chore(deps): update dependency node to v22 (追記ここまで) Aug 11, 2025
@renovate renovate bot force-pushed the renovate/node-22.x branch 2 times, most recently from 7c7afd1 to 04922e5 Compare August 31, 2025 09:13
@renovate renovate bot force-pushed the renovate/node-22.x branch 4 times, most recently from 5d16add to 12e28d6 Compare September 18, 2025 02:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

0 participants

AltStyle によって変換されたページ (->オリジナル) /