Skip to content
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

chore(deps): update group node to v22.9.0 - abandoned #42

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 6, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence OpenSSF
docker.io/library/node final minor 22.8.0 -> 22.9.0 age adoption passing confidence
node (source) minor 22.8.0 -> 22.9.0 age adoption passing confidence OpenSSF Scorecard
node (source) minor v22.8.0 -> 22.9.0 age adoption passing confidence OpenSSF Scorecard

Warning

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


Release Notes

nodejs/node (node)

v22.9.0: 2024-09-17, Version 22.9.0 (Current), @​RafaelGSS

Compare Source

New API to retrieve execution Stack Trace

A new API getCallSite has been introduced to the util module. This API allows users
to retrieve the stacktrace of the current execution. Example:

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

function exampleFunction() {
  const callSites = util.getCallSite();

  console.log('Call Sites:');
  callSites.forEach((callSite, index) => {
    console.log(`CallSite ${index + 1}:`);
    console.log(`Function Name: ${callSite.functionName}`);
    console.log(`Script Name: ${callSite.scriptName}`);
    console.log(`Line Number: ${callSite.lineNumber}`);
    console.log(`Column Number: ${callSite.column}`);
  });
  // CallSite 1:
  // Function Name: exampleFunction
  // Script Name: /home/example.js
  // Line Number: 5
  // Column Number: 26

  // CallSite 2:
  // Function Name: anotherFunction
  // Script Name: /home/example.js
  // Line Number: 22
  // Column Number: 3

  // ...
}

// A function to simulate another stack layer
function anotherFunction() {
  exampleFunction();
}

anotherFunction();

Thanks to Rafael Gonzaga for making this work on #​54380.

Disable V8 Maglev

We have seen several crashes/unexpected JS behaviors with maglev on v22
(which ships V8 v12.4). The bugs lie in the codegen so it would be difficult for
users to work around them or even figure out where the bugs are coming from.
Some bugs are fixed in the upstream while some others probably remain.

As v22 will get stuck with V8 v12.4 as LTS, it will be increasingly difficult to
backport patches for them even if the bugs are fixed. So disable it by default
on v22 to reduce the churn and troubles for users.

Thanks to Joyee Cheung for making this work on #​54384

Exposes X509_V_FLAG_PARTIAL_CHAIN to tls.createSecureContext

This releases introduces a new option to the API tls.createSecureContext. For
now on users can use tls.createSecureContext({ allowPartialTrustChain: true })
to treat intermediate (non-self-signed) certificates in the trust CA certificate
list as trusted.

Thanks to Anna Henningsen for making this work on #​54790

Other Notable Changes
  • [5c9599af5a] - src: create handle scope in FastInternalModuleStat (Joyee Cheung) #​54384
  • [e2307d87e8] - (SEMVER-MINOR) stream: relocate the status checking code in the onwritecomplete (YoonSoo_Shin) #​54032
Deprecations
  • [8433032948] - repl: doc-deprecate instantiating node:repl classes without new (Aviv Keller) #​54842
  • [8c4c85cf31] - zlib: deprecate instantiating classes without new (Yagiz Nizipli) #​54708
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 force-pushed the renovate/group-node branch from 26712aa to 515167f Compare October 6, 2024 16:44
@renovate renovate bot force-pushed the renovate/group-node branch from 515167f to bde5e7d Compare October 6, 2024 16:51
@renovate renovate bot changed the title chore(deps): update group node to v21.7.3 chore(deps): update group node to v22.9.0 Oct 6, 2024
@renovate renovate bot force-pushed the renovate/group-node branch from bde5e7d to 80a3b9d Compare October 6, 2024 16:53
@renovate renovate bot changed the title chore(deps): update group node to v22.9.0 chore(deps): update group node Oct 6, 2024
@renovate renovate bot force-pushed the renovate/group-node branch 2 times, most recently from 7611da7 to b5e575a Compare October 6, 2024 17:00
@renovate renovate bot force-pushed the renovate/group-node branch 2 times, most recently from 5613d4e to 492c8c2 Compare October 6, 2024 17:02
@renovate renovate bot changed the title chore(deps): update group node chore(deps): update group node to v22.9.0 Oct 6, 2024
@ggjulio ggjulio force-pushed the dev branch 2 times, most recently from 84f94b5 to 28bc88c Compare October 6, 2024 17:09
@renovate renovate bot force-pushed the renovate/group-node branch from 492c8c2 to 6c11edc Compare October 6, 2024 17:09
@renovate renovate bot changed the title chore(deps): update group node to v22.9.0 chore(deps): update group node Oct 6, 2024
@renovate renovate bot force-pushed the renovate/group-node branch from 6c11edc to a50ce6b Compare October 6, 2024 17:10
@renovate renovate bot changed the title chore(deps): update group node chore(deps): update group node to v22.9.0 Oct 6, 2024
@renovate renovate bot force-pushed the renovate/group-node branch from a50ce6b to 3de607b Compare October 6, 2024 17:12
@renovate renovate bot changed the title chore(deps): update group node to v22.9.0 chore(deps): update group node to v22.9.0 - autoclosed Oct 6, 2024
@renovate renovate bot closed this Oct 6, 2024
@renovate renovate bot deleted the renovate/group-node branch October 6, 2024 19:51
@renovate renovate bot changed the title chore(deps): update group node to v22.9.0 - autoclosed chore(deps): update group node to v22.9.0 Oct 6, 2024
@renovate renovate bot restored the renovate/group-node branch October 6, 2024 19:55
@renovate renovate bot reopened this Oct 6, 2024
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/group-node branch from fbc58c6 to 2bb3394 Compare October 6, 2024 20:17
@ggjulio ggjulio force-pushed the dev branch 2 times, most recently from 7817a48 to 5543900 Compare October 8, 2024 21:58
@renovate renovate bot changed the title chore(deps): update group node to v22.9.0 chore(deps): update group node to v22.9.0 - abandoned Oct 8, 2024
Copy link
Author

renovate bot commented Oct 8, 2024

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

@ggjulio ggjulio force-pushed the dev branch 3 times, most recently from 1992434 to 0905fa0 Compare October 8, 2024 23:44
Copy link
Author

renovate bot commented Oct 17, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

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.

1 participant