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.13.0 #14134

Closed
wants to merge 1 commit into from
Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 8, 2023

Mend Renovate

This PR contains the following updates:

Package Update Change
node minor 18.12.1 -> 18.13.0

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 - "after 01:00 on sunday" (UTC), 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 this update 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 dependency Dependency Upgrade label Jan 8, 2023
@github-actions
Copy link

github-actions bot commented Jan 8, 2023

Size Change: 0 B

Total Size: 8.98 MB

ℹ️ View Unchanged
Filename Size
./dist/bin 4.1 kB
./dist/bin/prettier.cjs 2.14 kB
./dist/doc.js 61.2 kB
./dist/doc.mjs 57.4 kB
./dist/index.cjs 32.9 kB
./dist/index.mjs 1.19 MB
./dist/internal 4.1 kB
./dist/internal/cli.mjs 210 kB
./dist/internal/third-party.mjs 225 kB
./dist/LICENSE 249 kB
./dist/package.json 5.07 kB
./dist/plugins 4.1 kB
./dist/plugins/acorn-and-espree.js 149 kB
./dist/plugins/acorn-and-espree.mjs 148 kB
./dist/plugins/angular.js 43.7 kB
./dist/plugins/angular.mjs 43 kB
./dist/plugins/babel.js 310 kB
./dist/plugins/babel.mjs 310 kB
./dist/plugins/flow.js 713 kB
./dist/plugins/flow.mjs 713 kB
./dist/plugins/glimmer.js 119 kB
./dist/plugins/glimmer.mjs 119 kB
./dist/plugins/graphql.js 34.5 kB
./dist/plugins/graphql.mjs 33.7 kB
./dist/plugins/html.js 91.4 kB
./dist/plugins/html.mjs 90.7 kB
./dist/plugins/markdown.js 105 kB
./dist/plugins/markdown.mjs 104 kB
./dist/plugins/meriyah.js 157 kB
./dist/plugins/meriyah.mjs 157 kB
./dist/plugins/postcss.js 125 kB
./dist/plugins/postcss.mjs 124 kB
./dist/plugins/typescript.js 1.17 MB
./dist/plugins/typescript.mjs 1.17 MB
./dist/plugins/yaml.js 107 kB
./dist/plugins/yaml.mjs 106 kB
./dist/README.md 4.01 kB
./dist/standalone.js 343 kB
./dist/standalone.mjs 343 kB

compressed-size-action

@renovate renovate bot changed the title chore(deps): update node.js to v18.13.0 Update Node.js to v18.13.0 Jan 8, 2023
@renovate renovate bot changed the title Update Node.js to v18.13.0 chore(deps): update node.js to v18.13.0 Jan 9, 2023
@fisker
Copy link
Sponsor Member

fisker commented Jan 9, 2023

#14143

@fisker fisker closed this Jan 9, 2023
@fisker fisker deleted the renovate/node-18.x branch January 9, 2023 02:23
@renovate
Copy link
Contributor Author

renovate bot commented Jan 9, 2023

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will now ignore this update (18.13.0). You will still receive a PR once a newer version is released, so if you wish to permanently ignore this dependency, please add it to the ignoreDeps array of your renovate config.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency Dependency Upgrade
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant