Skip to content

Conversation

@ggrossetie
Copy link
Member

@ggrossetie ggrossetie commented Dec 6, 2024

This PR contains the following updates:

Package Type Update Change
canvas dependencies major 2.11.2 -> 3.2.0
node (source) volta major 22.15.1 -> 24.11.0
pino (source) dependencies major 9.6.0 -> 10.1.0
pino-debug dependencies major 2.0.0 -> 4.0.1
pino-debug dependencies major ^2.0.0 -> ^4.0.0
react (source) dependencies major 18.3.1 -> 19.2.0
react-dom (source) dependencies major 18.3.1 -> 19.2.0
sinon (source) devDependencies major 19.0.5 -> 21.0.0
vega dependencies major 5.33.0 -> 6.2.0
vega-lite (source) dependencies major 5.23.0 -> 6.4.1
yargs (source) dependencies major 17.7.2 -> 18.0.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

Automattic/node-canvas (canvas)

v3.2.0

Compare Source

==================

Added
  • Added ctx.lang to set the ISO language code for text

v3.1.2

Compare Source

==================

Fixed
  • Fix crash when setting width/height on PDF, SVG canvas (#​2520)

v3.1.1

Compare Source

==================

Fixed
  • Fix a crash when SVGs without width or height are loaded (#​2486)
  • Fix fetching prebuilds during installation on certain newer versions of Node (#​2497)
  • Fixed issue with fillText that was breaking subsequent fillText calls (#​2171)
  • Fix svg rendering when the image is resized (#​2498)
  • Fix measureText with direction rtl textAlign start/end
  • Fix a crash in Node 24, due to external memory API change (#​2514)

v3.1.0

Compare Source

==================

Changed
  • Replaced simple-get with Node.js builtin fetch (#​2309)
  • ctx.font has a new C++ parser and is 2x-400x faster. Please file an issue if you experience different results, as caching has been removed.
  • The restriction of registering fonts before a canvas is created has been removed. You can now register a font as late as right before the fillText call (#​1921)
Added
  • Support for accessibility and links in PDFs
  • ctx.direction is implemented: 'rtl' or 'ltr' set the base direction of text
  • ctx.textAlign 'start' and 'end' are now 'right' and 'left' when ctx.direction === 'rtl'
Fixed
  • Fix a crash in getImageData when the rectangle is entirely outside the canvas. (#​2024)
  • Fix getImageData cropping the resulting ImageData when the given rectangle is partly outside the canvas. (#​1849)

v3.0.1

Compare Source

==================

Fixed
  • Fixed accidental depenency on ambient DOM types

v3.0.0

Compare Source

==================

This release notably changes to using N-API. 🎉

Breaking
  • Dropped support for Node.js 16.x and below.
Changed
  • Migrated to N-API (by way of node-addon-api) and removed libuv and v8 dependencies
  • Change from node-pre-gyp to prebuild-install
  • Defer the initialization of the op variable to the default switch case to avoid a compiler warning. (#​2229)
  • Use a default switch case with a null statement if some enum values aren't suppsed to be handled, this avoids a compiler warning. (#​2229)
  • Migrate from librsvg's deprecated rsvg_handle_get_dimensions() and rsvg_handle_render_cairo() functions to the new rsvg_handle_get_intrinsic_size_in_pixels() and rsvg_handle_render_document() respectively. (#​2229)
  • Avoid calling virtual methods in constructors/destructors to avoid bypassing virtual dispatch. (#​2229)
  • Remove unused private field backend in the Backend class. (#​2229)
  • Add Node.js v20 to CI. (#​2237)
  • Replaced dtslint with tsd (#​2313)
  • Changed PNG consts to static properties of Canvas class
  • Reverted improved font matching on Linux (#​1572) because it doesn't work if fonts are installed. If you experience degraded font selection, please file an issue and use v3.0.0-rc3 in the meantime.
Added
  • Added string tags to support class detection
  • Throw Cairo errors in canvas.toBuffer()
Fixed
  • Fix a case of use-after-free. (#​2229)
  • Fix usage of garbage value by filling the allocated memory entirely with zeros if it's not modified. (#​2229)
  • Fix a potential memory leak. (#​2229)
  • Fix the wrong type of setTransform
  • Fix the improper parsing of rgb functions issue. (#​2300)
  • Fix issue related to improper parsing of leading and trailing whitespaces in CSS color. (#​2301)
  • RGB functions should support real numbers now instead of just integers. (#​2339)
  • Allow alternate or properly escaped quotes within font-family names
  • Fix TextMetrics type to include alphabeticBaseline, emHeightAscent, and emHeightDescent properties
  • Fix class properties should have defaults as standard js classes (#​2390)
  • Fixed Exif orientation in JPEG files being ignored (#​1670)
  • Align DOMMatrix/DOMPoint to spec by adding missing methods
nodejs/node (node)

v24.11.0: 2025-10-28, Version 24.11.0 'Krypton' (LTS), @​richardlau

Compare Source

Notable Changes

This release marks the transition of Node.js 24.x into Long Term Support (LTS)
with the codename 'Krypton'. It will continue to receive updates through to
the end of April 2028.

Other than updating metadata, such as the process.release object, to reflect
that the release is LTS, no further changes from Node.js 24.10.0 are included.

Known issue

An issue has been identified in the Node.js 24.x line with Buffer.allocUnsafe
unintentionally returning zero-filled buffers. This API is
documented to return uninitialized memory.
The documented behavior will be restored in the next Node.js 24.x LTS release to bring
it back in line with previous releases. For more information, see
#​60423.

v24.10.0: 2025-10-08, Version 24.10.0 (Current), @​RafaelGSS

Compare Source

Notable Changes
  • [31bb476895] - (SEMVER-MINOR) console: allow per-stream inspectOptions option (Anna Henningsen) #​60082
  • [3b92be2fb8] - (SEMVER-MINOR) lib: remove util.getCallSite (Rafael Gonzaga) #​59980
  • [18c79d9e1c] - (SEMVER-MINOR) sqlite: create authorization api (Guilherme Araújo) #​59928
Commits

v24.9.0: 2025-09-25, Version 24.9.0 (Current), @​targos

Compare Source

Notable Changes
  • [9b043a9096] - (SEMVER-MINOR) http: add shouldUpgradeCallback to let servers control HTTP upgrades (Tim Perry) #​59824
  • [a6456ab90a] - (SEMVER-MINOR) sqlite: cleanup ERM support and export Session class (James M Snell) #​58378
  • [5563361d22] - (SEMVER-MINOR) sqlite: add tagged template (0hm���️) #​58748
  • [04013ee933] - (SEMVER-MINOR) worker: add heap profile API (theanarkh) #​59846
Commits

v24.8.0: 2025-09-10, Version 24.8.0 (Current), @​targos

Compare Source

Notable Changes
HTTP/2 Network Inspection Support in Node.js

Node.js now supports inspection of HTTP/2 network calls in Chrome DevTools for Node.js.

Usage

Write a test.js script that makes HTTP/2 requests.

const http2 = require('node:http2');

const client = http2.connect('https://nghttp2.org');

const req = client.request([
  ':path', '/',
  ':method', 'GET',
]);

Run it with these options:

node --inspect-wait --experimental-network-inspection test.js

Open about:inspect on Google Chrome and click on Open dedicated DevTools for Node.
The Network tab will let you track your HTTP/2 calls.

Contributed by Darshan Sen in #​59611.

Other Notable Changes
  • [7a8e2c251d] - (SEMVER-MINOR) crypto: support Ed448 and ML-DSA context parameter in node:crypto (Filip Skokan) #​59570
  • [4b631be0b0] - (SEMVER-MINOR) crypto: support Ed448 and ML-DSA context parameter in Web Cryptography (Filip Skokan) #​59570
  • [3e4b1e732c] - (SEMVER-MINOR) crypto: add KMAC Web Cryptography algorithms (Filip Skokan) #​59647
  • [b1d28785b2] - (SEMVER-MINOR) crypto: add Argon2 Web Cryptography algorithms (Filip Skokan) #​59544
  • [430691d1af] - (SEMVER-MINOR) crypto: support SLH-DSA KeyObject, sign, and verify (Filip Skokan) #​59537
  • [d6d05ba397] - (SEMVER-MINOR) worker: add cpu profile APIs for worker (theanarkh) #​59428
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 has been generated by Renovate Bot.

@ggrossetie ggrossetie added the 🔗 dependencies Pull requests that update a dependency file label Dec 6, 2024
@ggrossetie
Copy link
Member Author

ggrossetie commented Dec 6, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: excalidraw/package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: @excalidraw/excalidraw@0.17.6
npm ERR! Found: react@19.0.0
npm ERR! node_modules/react
npm ERR!   react@"19.0.0" from the root project
npm ERR!   peer react@"^19.0.0" from react-dom@19.0.0
npm ERR!   node_modules/react-dom
npm ERR!     react-dom@"19.0.0" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^17.0.2 || ^18.2.0" from @excalidraw/excalidraw@0.17.6
npm ERR! node_modules/@excalidraw/excalidraw
npm ERR!   @excalidraw/excalidraw@"0.17.6" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: react@18.3.1
npm ERR! node_modules/react
npm ERR!   peer react@"^17.0.2 || ^18.2.0" from @excalidraw/excalidraw@0.17.6
npm ERR!   node_modules/@excalidraw/excalidraw
npm ERR!     @excalidraw/excalidraw@"0.17.6" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2025-01-26T17_31_09_769Z-debug-0.log

@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch from 8891406 to 4702d77 Compare January 26, 2025 02:29
@ggrossetie ggrossetie changed the title chore(deps): update node dependencies to v19 (major) Jan 26, 2025
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch 5 times, most recently from 11ed8a6 to 5eec01c Compare January 27, 2025 21:11
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch 2 times, most recently from 481c84f to b778f0e Compare February 16, 2025 02:32
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch 3 times, most recently from 4a87a67 to 6a8e51e Compare February 24, 2025 20:12
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch from 6a8e51e to 86c640d Compare March 13, 2025 02:33
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch 3 times, most recently from b9a8183 to 84b7f64 Compare March 29, 2025 02:34
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch 2 times, most recently from 92a5faa to e1746ec Compare April 13, 2025 09:25
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch from e1746ec to a0c9fd3 Compare April 27, 2025 15:13
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch from a0c9fd3 to e8976e5 Compare May 16, 2025 02:36
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch from e8976e5 to 86b3c18 Compare May 27, 2025 17:10
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch 2 times, most recently from b72ee94 to 290f9f8 Compare June 20, 2025 02:37
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch 2 times, most recently from ab76c4d to 8891c5c Compare June 28, 2025 02:36
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch from 8891c5c to 34f05da Compare October 21, 2025 13:06
@ggrossetie ggrossetie force-pushed the renovate/major-node-dependencies branch from 34f05da to 3f8e482 Compare October 29, 2025 02:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🔗 dependencies Pull requests that update a dependency file

2 participants