Skip to content

chore(deps): update all non-major dependencies #688

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
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 9, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@commitlint/cli (source) ^19.7.1 -> ^19.8.1 age adoption passing confidence devDependencies minor
@commitlint/config-conventional (source) ^19.7.1 -> ^19.8.1 age adoption passing confidence devDependencies minor
@napi-rs/canvas 0.1.67 -> 0.1.73 age adoption passing confidence devDependencies patch
@sapphire/eslint-config (source) ^5.0.5 -> ^5.0.6 age adoption passing confidence devDependencies patch
eslint-plugin-prettier ^5.2.3 -> ^5.5.1 age adoption passing confidence devDependencies minor
lint-staged ^15.4.3 -> ^15.5.2 age adoption passing confidence devDependencies minor
node (source) 22.14.0 -> 22.17.0 age adoption passing confidence volta minor
prettier (source) ^3.5.2 -> ^3.6.2 age adoption passing confidence devDependencies minor
terser (source) ^5.39.0 -> ^5.43.1 age adoption passing confidence devDependencies minor
tsup (source) ^8.4.0 -> ^8.5.0 age adoption passing confidence devDependencies minor
yarn (source) 4.7.0 -> 4.9.2 age adoption passing confidence packageManager minor

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.8.1

Compare Source

Bug Fixes

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/cli

19.6.1 (2024-12-15)

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.8.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/config-conventional

Brooooooklyn/canvas (@​napi-rs/canvas)

v0.1.73

Compare Source

Bug Fixes

v0.1.72

Compare Source

Bug Fixes

v0.1.71

Compare Source

Bug Fixes
Features

v0.1.70

Compare Source

Bug Fixes
Features

v0.1.69

Compare Source

Bug Fixes
Features

v0.1.68

Compare Source

Bug Fixes
sapphiredev/utilities (@​sapphire/eslint-config)

v5.0.6

Compare Source

🐛 Bug Fixes

📝 Documentation

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.1

Compare Source

Patch Changes

v5.5.0

Compare Source

Minor Changes

v5.4.1

Compare Source

Patch Changes
  • #​740 c21521f Thanks @​JounQin! - fix(deps): bump synckit to v0.11.7 to fix potential TypeError: Cannot read properties of undefined (reading 'message') error

v5.4.0

Compare Source

Minor Changes

v5.3.1

Compare Source

Patch Changes

v5.3.0

Compare Source

Minor Changes

v5.2.6

Compare Source

Patch Changes

v5.2.5

Compare Source

Patch Changes

v5.2.4

Compare Source

Patch Changes
lint-staged/lint-staged (lint-staged)

v15.5.2

Compare Source

Patch Changes

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    

v15.5.0

Compare Source

Minor Changes
  • #​1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
Example with Prettier

By default Prettier prefers double quotes.

Previously
  1. Stage file.js with only double quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
  5. Commit was not done, original state is restored and single quotes ' are staged
Now
  1. Stage file.js with only double-quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails and cancels the commit
  5. Commit was not done, and there are no staged changes
nodejs/node (node)

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 - "before 12pm on Sunday" (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.


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

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

Sorry, something went wrong.

@renovate renovate bot added the dependencies label Mar 9, 2025
@renovate renovate bot requested a review from kyranet as a code owner March 9, 2025 01:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 47edbad to 30ded1c Compare March 12, 2025 16:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 69bf7f2 to e914a6a Compare March 30, 2025 10:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 67c9100 to a8bb6dc Compare April 9, 2025 16:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from df0c543 to ae5af31 Compare April 14, 2025 11:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ae5af31 to 32375a3 Compare April 23, 2025 11:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 7f29b11 to ff52e4d Compare May 8, 2025 19:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 02ccb78 to 8fb2d5e Compare May 16, 2025 20:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2dc7c4a to b9d29e8 Compare May 27, 2025 16:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b54e065 to 7178bae Compare June 5, 2025 13:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c7bce7a to 4c6df0b Compare June 9, 2025 16:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 36f4f10 to da295d1 Compare June 23, 2025 02:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a64aad7 to 6f67062 Compare June 27, 2025 06:31

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6f67062 to 0df225b Compare June 29, 2025 16:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants