Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 13, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
node final minor 20.11.1-alpine3.18 -> 20.13.1-alpine3.18 age adoption passing confidence
@types/node (source) dependencies minor 20.11.26 -> 20.17.6 age adoption passing confidence

Release Notes

nodejs/node (node)

v20.13.1: 2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito

Compare Source

2024-05-09, Version 20.13.1 'Iron' (LTS), @​marco-ippolito

Revert "tools: install npm PowerShell scripts on Windows"

Due to a regression in the npm installation on Windows, this commit reverts the change that installed npm PowerShell scripts on Windows.

Commits
  • [b7d80802cc] - Revert "tools: install npm PowerShell scripts on Windows" (marco-ippolito) #​52897

v20.13.0: 2024-05-07, Version 20.13.0 'Iron' (LTS), @​marco-ippolito

Compare Source

2024-05-07, Version 20.13.0 'Iron' (LTS), @​marco-ippolito

buffer: improve base64 and base64url performance

The performance of the base64 and base64url encoding and decoding functions has been improved significantly.

Contributed by Yagiz Nizipli in #​52428

crypto: deprecate implicitly shortened GCM tags

This release, introduces a doc-only deprecation of using GCM authentication tags that are shorter than the cipher's block size, unless the user specified the authTagLength option.

Contributed by Tobias Nießen in #​52345

events,doc: mark CustomEvent as stable

From this release CustomEvent has been marked stable.

Contributed by Daeyeon Jeong in #​52618

fs: add stacktrace to fs/promises

Sync functions in fs throwed an error with a stacktrace which is helpful for debugging. But functions in fs/promises throwed an error without a stacktrace. This commit adds stacktraces by calling Error.captureStacktrace and re-throwing the error.

Contributed by 翠 / green in #​49849

report: add --report-exclude-network option

New option --report-exclude-network, also available as report.excludeNetwork, enables the user to exclude networking interfaces in their diagnostic report. On some systems, this can cause the report to take minutes to generate so this option can be used to optimize that.

Contributed by Ethan Arrowood in #​51645

src: add uv_get_available_memory to report and process

From this release it is possible to get the available memory in the system by calling process.getAvailableMemory().

Contributed by theanarkh #​52023

stream: support typed arrays

This commit adds support for typed arrays in streams.

Contributed by IlyasShabi #​51866

util: support array of formats in util.styleText

It is now possible to pass an array of format strings to util.styleText to apply multiple formats to the same text.

console.log(util.styleText(['underline', 'italic'], 'My italic underlined message'));

Contributed by Marco Ippolito in #​52040

v8: implement v8.queryObjects() for memory leak regression testing

This is similar to the queryObjects() console API provided by the Chromium DevTools console. It can be used to search for objects that have the matching constructor on its prototype chain in the heap after a full garbage collection, which can be useful for memory leak regression tests.
To avoid surprising results, users should avoid using this API on constructors whose implementation they don't control, or on constructors that can be invoked by other parties in the application.

To avoid accidental leaks, this API does not return raw references to the objects found. By default, it returns the count of the objects found. If options.format is 'summary', it returns an array containing brief string representations for each object. The visibility provided in this API is similar to what the heap snapshot provides, while users can save the cost of serialization and parsing and directly filer the target objects during the search.

We have been using this API internally for the test suite, which has been more stable than any other leak regression testing strategies in the CI. With a public implementation we can now use the public API instead.

const { queryObjects } = require('node:v8');
class A { foo = 'bar'; }
console.log(queryObjects(A)); // 0
let a = new A();
console.log(queryObjects(A)); // 1
// [ "A { foo: 'bar' }" ]
console.log(queryObjects(A, { format: 'summary' }));

// Release the object.
a = null;
// Search again. queryObjects() includes a full garbage collection
// so a should disappear.
console.log(queryObjects(A)); // 0

class B extends A { bar = 'qux'; }
// The child class B's prototype has A's prototype on its prototype chain
// so the prototype object shows up too.
console.log(queryObjects(A, { format: 'summary' })); // [ A {}' ]

Contributed by Joyee Cheung in #​51927

watch: mark as stable

From this release Watch Mode is considered stable.
When in watch mode, changes in the watched files cause the Node.js process to restart.

Contributed by Moshe Atlow in #​52074

Other Notable Changes
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.

🔕 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 added the dependencies Pull requests that update a dependency file label Mar 13, 2024
@renovate renovate bot temporarily deployed to data-manager-ui/test March 13, 2024 15:39 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test March 13, 2024 15:39 Inactive
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.11.27 chore(deps): update dependency @types/node to v20.11.28 Mar 15, 2024
@renovate renovate bot force-pushed the renovate/node-20.x branch from ebf4ac3 to 8eb17af Compare March 15, 2024 09:56
@renovate renovate bot temporarily deployed to data-manager-ui/test March 15, 2024 09:56 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test March 15, 2024 09:56 Inactive
@renovate renovate bot force-pushed the renovate/node-20.x branch from 8eb17af to 89c4527 Compare March 18, 2024 22:48
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.11.28 chore(deps): update dependency @types/node to v20.11.29 Mar 18, 2024
@renovate renovate bot temporarily deployed to data-manager-ui/test March 18, 2024 22:49 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test March 18, 2024 22:49 Inactive
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.11.29 chore(deps): update dependency @types/node to v20.11.30 Mar 19, 2024
@renovate renovate bot force-pushed the renovate/node-20.x branch from 89c4527 to 0e38020 Compare March 19, 2024 14:35
@renovate renovate bot temporarily deployed to data-manager-ui/test March 19, 2024 14:36 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test March 19, 2024 14:36 Inactive
@renovate renovate bot force-pushed the renovate/node-20.x branch from 0e38020 to 3351b3e Compare March 27, 2024 17:37
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.11.30 chore(deps): update node.js to v20.12.0 Mar 27, 2024
@renovate renovate bot temporarily deployed to data-manager-ui/test March 27, 2024 17:37 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test March 27, 2024 17:37 Inactive
@renovate renovate bot force-pushed the renovate/node-20.x branch from 3351b3e to 6c602fc Compare March 30, 2024 07:54
@renovate renovate bot temporarily deployed to data-manager-ui/test March 30, 2024 07:54 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test March 30, 2024 07:54 Inactive
@renovate renovate bot force-pushed the renovate/node-20.x branch from 6c602fc to 87718b3 Compare April 2, 2024 22:13
@renovate renovate bot temporarily deployed to data-manager-ui/test April 2, 2024 22:13 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test April 2, 2024 22:13 Inactive
@renovate renovate bot force-pushed the renovate/node-20.x branch from 87718b3 to 3a63df1 Compare April 3, 2024 22:24
@renovate renovate bot temporarily deployed to data-manager-ui/test April 3, 2024 22:31 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test April 3, 2024 22:31 Inactive
@renovate renovate bot force-pushed the renovate/node-20.x branch from 3a63df1 to 31ff61a Compare April 4, 2024 17:32
@renovate renovate bot changed the title chore(deps): update node.js to v20.12.0 chore(deps): update node.js to v20.12.1 Apr 4, 2024
@renovate renovate bot had a problem deploying to data-manager-ui/test October 23, 2024 06:14 Failure
@renovate renovate bot force-pushed the renovate/node-20.x branch from c4ddb48 to 5aa470a Compare October 23, 2024 16:43
@renovate renovate bot had a problem deploying to data-manager-ui/test October 23, 2024 16:43 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 23, 2024 16:43 Failure
@renovate renovate bot force-pushed the renovate/node-20.x branch 2 times, most recently from f7e06b1 to 3697698 Compare October 28, 2024 22:57
@renovate renovate bot had a problem deploying to data-manager-ui/test October 28, 2024 22:57 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 28, 2024 22:57 Failure
@renovate renovate bot force-pushed the renovate/node-20.x branch from 3697698 to d4ae547 Compare October 29, 2024 18:30
@renovate renovate bot had a problem deploying to data-manager-ui/test October 29, 2024 18:30 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 29, 2024 18:30 Failure
@renovate renovate bot force-pushed the renovate/node-20.x branch from d4ae547 to ee73901 Compare October 31, 2024 06:50
@renovate renovate bot had a problem deploying to data-manager-ui/test October 31, 2024 06:50 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 31, 2024 06:50 Failure
@renovate renovate bot force-pushed the renovate/node-20.x branch from ee73901 to d672066 Compare October 31, 2024 20:02
@renovate renovate bot had a problem deploying to data-manager-ui/test October 31, 2024 20:03 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test October 31, 2024 20:03 Failure
@renovate renovate bot force-pushed the renovate/node-20.x branch from d672066 to 04e3c69 Compare November 3, 2024 07:14
@renovate renovate bot had a problem deploying to data-manager-ui/test November 3, 2024 07:14 Failure
@renovate renovate bot had a problem deploying to data-manager-ui/test November 3, 2024 07:14 Failure
@renovate renovate bot force-pushed the renovate/node-20.x branch from 04e3c69 to 2d4acd2 Compare November 7, 2024 10:38
@renovate renovate bot temporarily deployed to data-manager-ui/test November 7, 2024 10:44 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test November 7, 2024 10:44 Inactive
@renovate renovate bot force-pushed the renovate/node-20.x branch from 2d4acd2 to ab7cf79 Compare November 7, 2024 15:52
@renovate renovate bot temporarily deployed to data-manager-ui/test November 7, 2024 15:53 Inactive
@renovate renovate bot temporarily deployed to data-manager-ui/test November 7, 2024 15:53 Inactive
@renovate renovate bot changed the title chore(deps): update node.js to v20.13.1 chore(deps): update node.js to v20.13.1 - autoclosed Nov 7, 2024
@renovate renovate bot closed this Nov 7, 2024
@renovate renovate bot deleted the renovate/node-20.x branch November 7, 2024 21:44
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants