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 node.js to v18 #82

Merged
merged 1 commit into from
Jan 14, 2023
Merged

chore(deps): update node.js to v18 #82

merged 1 commit into from
Jan 14, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 25, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
node engines major >=14.19 <=16.x -> >=14.19 <=18.13 age adoption passing confidence
@types/node (source) devDependencies major 17.0.35 -> 18.11.18 age adoption passing confidence

Release Notes

nodejs/node

v18.13.0: 2023-01-05, Version 18.13.0 'Hydrogen' (LTS), @​danielleadams

Compare Source

Notable changes
Add support for externally shared js builtins

By default Node.js is built so that all dependencies are bundled into the Node.js binary itself. Some Node.js distributions prefer to manage dependencies externally. There are existing build options that allow dependencies with native code to be externalized. This commit adds additional options so that dependencies with JavaScript code (including WASM) can also be externalized. This addition does not affect binaries shipped by the Node.js project but will allow other distributions to externalize additional dependencies when needed.

Contributed by Michael Dawson in #​44376

Introduce File

The File class is part of the FileAPI. It can be used anywhere a Blob can, for example in URL.createObjectURL and FormData. It contains two properties that Blobs do not have: lastModified, the last time the file was modified in ms, and name, the name of the file.

Contributed by Khafra in #​45139

Support function mocking on Node.js test runner

The node:test module supports mocking during testing via a top-level mock
object.

test('spies on an object method', (t) => {
  const number = {
    value: 5,
    add(a) {
      return this.value + a;
    },
  };
  t.mock.method(number, 'add');

  assert.strictEqual(number.add(3), 8);
  assert.strictEqual(number.add.mock.calls.length, 1);
});

Contributed by Colin Ihrig in #​45326

Other notable changes
  • build:
    • disable v8 snapshot compression by default (Joyee Cheung) #​45716
  • crypto:
    • update root certificates (Luigi Pinca) #​45490
  • deps:
    • update ICU to 72.1 (Michaël Zasso) #​45068
  • doc:
    • add doc-only deprecation for headers/trailers setters (Rich Trott) #​45697
    • add Rafael to the tsc (Michael Dawson) #​45691
    • deprecate use of invalid ports in url.parse (Antoine du Hamel) #​45576
    • add lukekarrys to collaborators (Luke Karrys) #​45180
    • add anonrig to collaborators (Yagiz Nizipli) #​45002
    • deprecate url.parse() (Rich Trott) #​44919
  • lib:
    • drop fetch experimental warning (Matteo Collina) #​45287
  • net:
    • (SEMVER-MINOR) add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) #​44731
  • src:
    • (SEMVER-MINOR) add uvwasi version (Jithil P Ponnan) #​45639
    • (SEMVER-MINOR) add initial shadow realm support (Chengzhong Wu) #​42869
  • test_runner:
    • (SEMVER-MINOR) add t.after() hook (Colin Ihrig) #​45792
    • (SEMVER-MINOR) don't use a symbol for runHook() (Colin Ihrig) #​45792
  • tls:
    • (SEMVER-MINOR) add "ca" property to certificate object (Ben Noordhuis) #​44935
    • remove trustcor root ca certificates (Ben Noordhuis) #​45776
  • tools:
    • update certdata.txt (Luigi Pinca) #​45490
  • util:
    • add fast path for utf8 encoding (Yagiz Nizipli) #​45412
    • improve textdecoder decode performance (Yagiz Nizipli) #​45294
    • (SEMVER-MINOR) add MIME utilities (#​21128) (Bradley Farias) #​21128
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "after 1am and before 4am" (UTC).

🚦 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the deps label Oct 25, 2022
@renovate renovate bot force-pushed the renovate/node-18.x branch 8 times, most recently from f5ad37d to 5666b83 Compare November 1, 2022 11:46
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from cbe3279 to a9cf672 Compare November 8, 2022 02:02
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from 09d8c29 to 3062a79 Compare November 15, 2022 01:44
@renovate renovate bot force-pushed the renovate/node-18.x branch 4 times, most recently from 0ebbaa1 to 9395fdf Compare November 29, 2022 02:28
@renovate renovate bot force-pushed the renovate/node-18.x branch 4 times, most recently from b881a18 to b5abe74 Compare December 6, 2022 02:25
@renovate renovate bot force-pushed the renovate/node-18.x branch 8 times, most recently from 15075fc to dad49e3 Compare December 15, 2022 02:25
@renovate renovate bot force-pushed the renovate/node-18.x branch from dad49e3 to 0f9dc53 Compare December 16, 2022 02:49
@renovate renovate bot force-pushed the renovate/node-18.x branch from 0f9dc53 to d8111b5 Compare December 16, 2022 23:31
@renovate renovate bot changed the title chore(deps): update node.js to v18 Update Node.js to v18 Dec 17, 2022
@renovate renovate bot changed the title Update Node.js to v18 chore(deps): update node.js to v18 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/node-18.x branch 2 times, most recently from 792a394 to d5cf9d0 Compare December 20, 2022 02:06
@renovate renovate bot force-pushed the renovate/node-18.x branch 3 times, most recently from 5f6cb1a to 4f2a3cb Compare December 27, 2022 01:36
@renovate renovate bot force-pushed the renovate/node-18.x branch 3 times, most recently from a535654 to ca74bea Compare January 8, 2023 01:04
@renovate renovate bot force-pushed the renovate/node-18.x branch from ca74bea to 11f99ec Compare January 10, 2023 03:13
@renovate renovate bot force-pushed the renovate/node-18.x branch from 11f99ec to 1e12d40 Compare January 10, 2023 03:17
@jeliasson jeliasson merged commit 92e3e6f into dev Jan 14, 2023
@renovate renovate bot deleted the renovate/node-18.x branch January 14, 2023 13:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant