loophp / unaltered-psr-http-message-bridge-bundle

Provide a PSR HTTP message bridge without altering query parameters.
MIT License
5 stars 1 forks source link

chore(deps): update node.js to v19 #57

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
node final major 15.14.0-alpine -> 19.3.0-alpine

Release Notes

nodejs/node ### [`v19.3.0`](https://togithub.com/nodejs/node/releases/tag/v19.3.0): 2022-12-14, Version 19.3.0 (Current), @​targos [Compare Source](https://togithub.com/nodejs/node/compare/v19.2.0...v19.3.0) ##### Notable Changes ##### Updated npm to 9.2.0 Based on the [list of guidelines we've established on integrating `npm` and `node`](https://togithub.com/npm/cli/wiki/Integrating-with-node), here is a grouped list of the breaking changes with the reasoning as to why they fit within the guidelines linked above. Note that all the breaking changes were made in [9.0.0](https://togithub.com/npm/cli/releases/tag/v9.0.0). All subsequent minor and patch releases after `npm@9.0.0` do not contain any breaking changes. ##### Engines > Explanation: the node engines supported by `npm@9` make it safe to allow `npm@9` as the default in any LTS version of `14` or `16`, as well as anything later than or including `18.0.0` - `npm` is now compatible with the following semver range for node: `^14.17.0 || ^16.13.0 || >=18.0.0` ##### Filesystem > Explanation: when run as root previous versions of npm attempted to manage file ownership automatically on the user's behalf. this behavior was problematic in many cases and has been removed in favor of allowing users to manage their own filesystem permissions - `npm` will no longer attempt to modify ownership of files it creates. ##### Auth > Explanation: any errors thrown from users having unsupported auth configurations will show `npm config fix` in the remediation instructions, which will allow the user to automatically have their auth config fixed. - The presence of auth related settings that are not scoped to a specific registry found in a config file is no longer supported and will throw errors. ##### Login > Explanation: the default `auth-type` has changed and users can opt back into the old behavior with `npm config set auth-type=legacy`. `login` and `adduser` have also been seperated making each command more closely match it's name instead of being aliases for each other. - Legacy auth types `sso`, `saml` & `legacy` have been consolidated into `"legacy"`. - `auth-type` defaults to `"web"` - `login` and `adduser` are now separate commands that send different data to the registry. - `auth-type` config values `web` and `legacy` only try their respective methods, npm no longer tries them all and waits to see which one doesn't fail. ##### Tarball Packing > Explanation: previously using multiple ignore/allow lists when packing was an undefined behavior, and now the order of operations is strictly defined when packing a tarball making it easier to follow and should only affect users relying on the previously undefined behavior. - `npm pack` now follows a strict order of operations when applying ignore rules. If a `files` array is present in the `package.json`, then rules in `.gitignore` and `.npmignore` files from the root will be ignored. ##### Display/Debug/Timing Info > Explanation: these changes center around the display of information to the terminal including timing and debug log info. We do not anticipate these changes breaking any existing workflows. - Links generated from git urls will now use `HEAD` instead of `master` as the default ref. - `timing` has been removed as a value for `--loglevel`. - `--timing` will show timing information regardless of `--loglevel`, except when `--silent`. - When run with the `--timing` flag, `npm` now writes timing data to a file alongside the debug log data, respecting the `logs-dir` option and falling back to `/_logs/` dir, instead of directly inside the cache directory. - The timing file data is no longer newline delimited JSON, and instead each run will create a uniquely named `-timing.json` file, with the `` portion being the same as the debug log. - `npm` now outputs some json errors on stdout. Previously `npm` would output all json formatted errors on stderr, making it difficult to parse as the stderr stream usually has logs already written to it. ##### Config/Command Deprecations or Removals > Explanation: `install-links` is the only config or command in the list that has an effect on package installs. We fixed a number of issues that came up during prereleases with this change. It will also only be applied to new package trees created without a package-lock.json file. Any install with an existing lock file will not be changed. - Deprecate boolean install flags in favor of `--install-strategy`. - `npm config set` will no longer accept deprecated or invalid config options. - `install-links` config defaults to `"true"`. - `node-version` config has been removed. - `npm-version` config has been removed. - `npm access` subcommands have been renamed. - `npm birthday` has been removed. - `npm set-script` has been removed. - `npm bin` has been removed (use `npx` or `npm exec` to execute binaries). ##### Other notable changes - \[[`03db415540`](https://togithub.com/nodejs/node/commit/03db415540)] - **build**: disable v8 snapshot compression by default (Joyee Cheung) [#​45716](https://togithub.com/nodejs/node/pull/45716) - \[[`9f51b9e50d`](https://togithub.com/nodejs/node/commit/9f51b9e50d)] - **doc**: add doc-only deprecation for headers/trailers setters (Rich Trott) [#​45697](https://togithub.com/nodejs/node/pull/45697) - \[[`b010820c4e`](https://togithub.com/nodejs/node/commit/b010820c4e)] - **doc**: add Rafael Gonzaga to the TSC (Michael Dawson) [#​45691](https://togithub.com/nodejs/node/pull/45691) - \[[`b8b13dccd9`](https://togithub.com/nodejs/node/commit/b8b13dccd9)] - **(SEMVER-MINOR)** **net**: add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) [#​44731](https://togithub.com/nodejs/node/pull/44731) - \[[`5d7cd363ab`](https://togithub.com/nodejs/node/commit/5d7cd363ab)] - **(SEMVER-MINOR)** **src**: add uvwasi version (Jithil P Ponnan) [#​45639](https://togithub.com/nodejs/node/pull/45639) - \[[`4165dcddf0`](https://togithub.com/nodejs/node/commit/95af851a25)] - **(SEMVER-MINOR)** **test_runner**: add t.after() hook (Colin Ihrig) [#​45792](https://togithub.com/nodejs/node/pull/45792) - \[[`d1bd7796ad`](https://togithub.com/nodejs/node/commit/d1bd7796ad)] - **(SEMVER-MINOR)** **test_runner**: don't use a symbol for runHook() (Colin Ihrig) [#​45792](https://togithub.com/nodejs/node/pull/45792) - \[[`691f58e76c`](https://togithub.com/nodejs/node/commit/691f58e76c)] - **tls**: remove trustcor root ca certificates (Ben Noordhuis) [#​45776](https://togithub.com/nodejs/node/pull/45776) ##### Commits - \[[`382efdf460`](https://togithub.com/nodejs/node/commit/382efdf460)] - **benchmark**: add variety of inputs to text-encoder (Yagiz Nizipli) [#​45787](https://togithub.com/nodejs/node/pull/45787) - \[[`102c2dc071`](https://togithub.com/nodejs/node/commit/102c2dc071)] - **benchmark**: make benchmarks runnable in older versions of Node.js (Joyee Cheung) [#​45746](https://togithub.com/nodejs/node/pull/45746) - \[[`e2caf7ced9`](https://togithub.com/nodejs/node/commit/e2caf7ced9)] - **bootstrap**: lazy load non-essential modules (Joyee Cheung) [#​45659](https://togithub.com/nodejs/node/pull/45659) - \[[`49840d443c`](https://togithub.com/nodejs/node/commit/49840d443c)] - **buffer**: remove unnecessary lazy loading (Antoine du Hamel) [#​45807](https://togithub.com/nodejs/node/pull/45807) - \[[`17847683dc`](https://togithub.com/nodejs/node/commit/17847683dc)] - **buffer**: make decodeUTF8 params loose (Yagiz Nizipli) [#​45610](https://togithub.com/nodejs/node/pull/45610) - \[[`03db415540`](https://togithub.com/nodejs/node/commit/03db415540)] - **build**: disable v8 snapshot compression by default (Joyee Cheung) [#​45716](https://togithub.com/nodejs/node/pull/45716) - \[[`95a23e24f3`](https://togithub.com/nodejs/node/commit/95a23e24f3)] - **build**: add python 3.11 support for android (Mohammed Keyvanzadeh) [#​45765](https://togithub.com/nodejs/node/pull/45765) - \[[`09bc89daba`](https://togithub.com/nodejs/node/commit/09bc89daba)] - **build**: rework gyp files for zlib (Richard Lau) [#​45589](https://togithub.com/nodejs/node/pull/45589) - \[[`b5b56b6b45`](https://togithub.com/nodejs/node/commit/b5b56b6b45)] - **crypto**: simplify lazy loading of internal modules (Antoine du Hamel) [#​45809](https://togithub.com/nodejs/node/pull/45809) - \[[`2e4d37e3f0`](https://togithub.com/nodejs/node/commit/2e4d37e3f0)] - **crypto**: fix CipherBase Update int32 overflow (Marco Ippolito) [#​45769](https://togithub.com/nodejs/node/pull/45769) - \[[`573eab9235`](https://togithub.com/nodejs/node/commit/573eab9235)] - **crypto**: refactor ArrayBuffer to bigint conversion utils (Antoine du Hamel) [#​45567](https://togithub.com/nodejs/node/pull/45567) - \[[`845f805490`](https://togithub.com/nodejs/node/commit/845f805490)] - **crypto**: refactor verify acceptable key usage functions (Filip Skokan) [#​45569](https://togithub.com/nodejs/node/pull/45569) - \[[`7cc9998737`](https://togithub.com/nodejs/node/commit/7cc9998737)] - **crypto**: fix ECDH webcrypto public CryptoKey usages (Filip Skokan) [#​45569](https://togithub.com/nodejs/node/pull/45569) - \[[`d030963f37`](https://togithub.com/nodejs/node/commit/d030963f37)] - **crypto**: validate CFRG webcrypto JWK import "d" and "x" are a pair (Filip Skokan) [#​45569](https://togithub.com/nodejs/node/pull/45569) - \[[`9cd106efdc`](https://togithub.com/nodejs/node/commit/9cd106efdc)] - **crypto**: use DataError for CFRG webcrypto raw and jwk import key checks (Filip Skokan) [#​45569](https://togithub.com/nodejs/node/pull/45569) - \[[`9e2e3de6ce`](https://togithub.com/nodejs/node/commit/9e2e3de6ce)] - **crypto**: use DataError for webcrypto keyData import failures (Filip Skokan) [#​45569](https://togithub.com/nodejs/node/pull/45569) - \[[`40037b4e79`](https://togithub.com/nodejs/node/commit/40037b4e79)] - **crypto**: fix X25519 and X448 webcrypto public CryptoKey usages (Filip Skokan) [#​45569](https://togithub.com/nodejs/node/pull/45569) - \[[`de2b6b97b9`](https://togithub.com/nodejs/node/commit/de2b6b97b9)] - **crypto**: ensure "x" is present when importing private CFRG webcrypto keys (Filip Skokan) [#​45569](https://togithub.com/nodejs/node/pull/45569) - \[[`75dbce9a07`](https://togithub.com/nodejs/node/commit/75dbce9a07)] - **deps**: upgrade npm to 9.2.0 (npm team) [#​45780](https://togithub.com/nodejs/node/pull/45780) - \[[`677eb62bf2`](https://togithub.com/nodejs/node/commit/677eb62bf2)] - **deps**: upgrade npm to 9.1.3 (npm team) [#​45693](https://togithub.com/nodejs/node/pull/45693) - \[[`1d823a6d30`](https://togithub.com/nodejs/node/commit/1d823a6d30)] - ***Revert*** "**deps**: fix zlib compilation for CPUs without SIMD features" (Luigi Pinca) [#​45589](https://togithub.com/nodejs/node/pull/45589) - \[[`6b15994597`](https://togithub.com/nodejs/node/commit/6b15994597)] - **deps**: update undici to 5.13.0 (Node.js GitHub Bot) [#​45634](https://togithub.com/nodejs/node/pull/45634) - \[[`fbd2d27789`](https://togithub.com/nodejs/node/commit/fbd2d27789)] - **deps**: update corepack to 0.15.2 (Node.js GitHub Bot) [#​45635](https://togithub.com/nodejs/node/pull/45635) - \[[`60c9ac5178`](https://togithub.com/nodejs/node/commit/60c9ac5178)] - **deps**: update nghttp2 to 1.51.0 (Yagiz Nizipli) [#​45537](https://togithub.com/nodejs/node/pull/45537) - \[[`c8421204b0`](https://togithub.com/nodejs/node/commit/c8421204b0)] - **deps**: patch V8 to 10.8.168.21 (Michaël Zasso) [#​45749](https://togithub.com/nodejs/node/pull/45749) - \[[`c5277417c9`](https://togithub.com/nodejs/node/commit/c5277417c9)] - **diagnostics_channel**: fix diagnostics channel memory leak (theanarkh) [#​45633](https://togithub.com/nodejs/node/pull/45633) - \[[`8a90f5c784`](https://togithub.com/nodejs/node/commit/8a90f5c784)] - **doc**: buffer.fill empty value (Marco Ippolito) [#​45794](https://togithub.com/nodejs/node/pull/45794) - \[[`9d6af617ea`](https://togithub.com/nodejs/node/commit/9d6af617ea)] - **doc**: add args of filter option of fs.cp (MURAKAMI Masahiko) [#​45739](https://togithub.com/nodejs/node/pull/45739) - \[[`8c728d2f02`](https://togithub.com/nodejs/node/commit/8c728d2f02)] - **doc**: disambiguate `native module` to `addon` (Daeyeon Jeong) [#​45673](https://togithub.com/nodejs/node/pull/45673) - \[[`7718ff82a4`](https://togithub.com/nodejs/node/commit/7718ff82a4)] - **doc**: using console.error for error cases in crypto and events (emirgoren) [#​45640](https://togithub.com/nodejs/node/pull/45640) - \[[`029060e6e4`](https://togithub.com/nodejs/node/commit/029060e6e4)] - **doc**: fix actual result of example is different in events (Deokjin Kim) [#​45656](https://togithub.com/nodejs/node/pull/45656) - \[[`9f51b9e50d`](https://togithub.com/nodejs/node/commit/9f51b9e50d)] - **doc**: add doc-only deprecation for headers/trailers setters (Rich Trott) [#​45697](https://togithub.com/nodejs/node/pull/45697) - \[[`801fe30488`](https://togithub.com/nodejs/node/commit/801fe30488)] - **doc**: add detail on how api docs are published (Michael Dawson) [#​45626](https://togithub.com/nodejs/node/pull/45626) - \[[`e124e2a6ee`](https://togithub.com/nodejs/node/commit/e124e2a6ee)] - **doc**: use console.error for error case in child_process and dgram (Deokjin Kim) [#​45690](https://togithub.com/nodejs/node/pull/45690) - \[[`1b920287b6`](https://togithub.com/nodejs/node/commit/1b920287b6)] - **doc**: move streaming instruc to doc/contributing (Michael Dawson) [#​45582](https://togithub.com/nodejs/node/pull/45582) - \[[`b010820c4e`](https://togithub.com/nodejs/node/commit/b010820c4e)] - **doc**: add Rafael to the tsc (Michael Dawson) [#​45691](https://togithub.com/nodejs/node/pull/45691) - \[[`4fb7cf88e2`](https://togithub.com/nodejs/node/commit/4fb7cf88e2)] - **doc**: add missing line in debugger (Deokjin Kim) [#​45632](https://togithub.com/nodejs/node/pull/45632) - \[[`c0df265fea`](https://togithub.com/nodejs/node/commit/c0df265fea)] - **doc**: fix actual result of example is different in stream (Deokjin Kim) [#​45619](https://togithub.com/nodejs/node/pull/45619) - \[[`027e738064`](https://togithub.com/nodejs/node/commit/027e738064)] - **doc**: add `options` parameter to eventTarget.removeEventListener (Deokjin Kim) [#​45667](https://togithub.com/nodejs/node/pull/45667) - \[[`23ff5057b2`](https://togithub.com/nodejs/node/commit/23ff5057b2)] - **doc**: define "react-native" community condition (Alex Hunt) [#​45367](https://togithub.com/nodejs/node/pull/45367) - \[[`2e767bf18b`](https://togithub.com/nodejs/node/commit/2e767bf18b)] - **doc**: move os.machine() docs to sorted position (Colin Ihrig) [#​45647](https://togithub.com/nodejs/node/pull/45647) - \[[`aabfdef861`](https://togithub.com/nodejs/node/commit/aabfdef861)] - **doc**: use console.error for error case in fs, https, net and process (Deokjin Kim) [#​45606](https://togithub.com/nodejs/node/pull/45606) - \[[`3a02d50d35`](https://togithub.com/nodejs/node/commit/3a02d50d35)] - **doc**: add link to doc with social processes (Michael Dawson) [#​45584](https://togithub.com/nodejs/node/pull/45584) - \[[`e4316124fa`](https://togithub.com/nodejs/node/commit/e4316124fa)] - **fs**: fix `nonNativeWatcher` watching folder with existing files (Moshe Atlow) [#​45500](https://togithub.com/nodejs/node/pull/45500) - \[[`d272faa54d`](https://togithub.com/nodejs/node/commit/d272faa54d)] - **fs**: fix `nonNativeWatcher` leak of `StatWatchers` (Moshe Atlow) [#​45501](https://togithub.com/nodejs/node/pull/45501) - \[[`d64e773168`](https://togithub.com/nodejs/node/commit/d64e773168)] - **http**: make `OutgoingMessage` more streamlike (Robert Nagy) [#​45672](https://togithub.com/nodejs/node/pull/45672) - \[[`ed8ae88f30`](https://togithub.com/nodejs/node/commit/ed8ae88f30)] - **lib**: remove unnecessary lazy loading in `internal/encoding` (Antoine du Hamel) [#​45810](https://togithub.com/nodejs/node/pull/45810) - \[[`302c5240c5`](https://togithub.com/nodejs/node/commit/302c5240c5)] - **lib**: allow Writeable.toWeb() to work on http.Outgoing message (Debadree Chatterjee) [#​45642](https://togithub.com/nodejs/node/pull/45642) - \[[`e8745083b9`](https://togithub.com/nodejs/node/commit/e8745083b9)] - **lib**: check number of arguments in `EventTarget`'s function (Deokjin Kim) [#​45668](https://togithub.com/nodejs/node/pull/45668) - \[[`9f7bb5ce0e`](https://togithub.com/nodejs/node/commit/9f7bb5ce0e)] - **lib**: disambiguate `native module` to `binding` (Daeyeon Jeong) [#​45673](https://togithub.com/nodejs/node/pull/45673) - \[[`353339a552`](https://togithub.com/nodejs/node/commit/353339a552)] - **lib**: disambiguate `native module` to `builtin module` (Daeyeon Jeong) [#​45673](https://togithub.com/nodejs/node/pull/45673) - \[[`99410efd19`](https://togithub.com/nodejs/node/commit/99410efd19)] - **lib**: added SuiteContext class (Debadree Chatterjee) [#​45687](https://togithub.com/nodejs/node/pull/45687) - \[[`a79f37a0a7`](https://togithub.com/nodejs/node/commit/a79f37a0a7)] - **lib**: add missing type of removeEventListener in question (Deokjin Kim) [#​45676](https://togithub.com/nodejs/node/pull/45676) - \[[`e0750467e8`](https://togithub.com/nodejs/node/commit/e0750467e8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​45814](https://togithub.com/nodejs/node/pull/45814) - \[[`376f3468b9`](https://togithub.com/nodejs/node/commit/376f3468b9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​45732](https://togithub.com/nodejs/node/pull/45732) - \[[`a6e2cf2d6f`](https://togithub.com/nodejs/node/commit/a6e2cf2d6f)] - **meta**: add .mailmap entry for Stefan Stojanovic (Rich Trott) [#​45703](https://togithub.com/nodejs/node/pull/45703) - \[[`eb9a383d2a`](https://togithub.com/nodejs/node/commit/eb9a383d2a)] - **meta**: update AUTHORS info for nstepien (Nicolas Stepien) [#​45692](https://togithub.com/nodejs/node/pull/45692) - \[[`049ef342c6`](https://togithub.com/nodejs/node/commit/049ef342c6)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​45637](https://togithub.com/nodejs/node/pull/45637) - \[[`b9c2fc7623`](https://togithub.com/nodejs/node/commit/b9c2fc7623)] - **net**: check `autoSelectFamilyAttemptTimeout` is positive (Deokjin Kim) [#​45740](https://togithub.com/nodejs/node/pull/45740) - \[[`b8b13dccd9`](https://togithub.com/nodejs/node/commit/b8b13dccd9)] - **(SEMVER-MINOR)** **net**: add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) [#​44731](https://togithub.com/nodejs/node/pull/44731) - \[[`6962ef0df1`](https://togithub.com/nodejs/node/commit/6962ef0df1)] - **readline**: improve robustness against prototype mutation (Antoine du Hamel) [#​45614](https://togithub.com/nodejs/node/pull/45614) - \[[`7892e23e68`](https://togithub.com/nodejs/node/commit/7892e23e68)] - **repl**: do not define `wasi` on global with no flag (Kohei Ueno) [#​45595](https://togithub.com/nodejs/node/pull/45595) - \[[`349b4f8817`](https://togithub.com/nodejs/node/commit/349b4f8817)] - **src**: add internal isArrayBufferDetached (Yagiz Nizipli) [#​45568](https://togithub.com/nodejs/node/pull/45568) - \[[`5d7cd363ab`](https://togithub.com/nodejs/node/commit/5d7cd363ab)] - **(SEMVER-MINOR)** **src**: add uvwasi version (Jithil P Ponnan) [#​45639](https://togithub.com/nodejs/node/pull/45639) - \[[`8a03684018`](https://togithub.com/nodejs/node/commit/8a03684018)] - **src**: simplify NodeBIO::GetMethod initialization (Anna Henningsen) [#​45799](https://togithub.com/nodejs/node/pull/45799) - \[[`b35ebebc0e`](https://togithub.com/nodejs/node/commit/b35ebebc0e)] - **src**: make structuredClone work for process.env (Ben Noordhuis) [#​45698](https://togithub.com/nodejs/node/pull/45698) - \[[`81ab54035f`](https://togithub.com/nodejs/node/commit/81ab54035f)] - **src**: mark generated `snapshot_data` as `const` (Anna Henningsen) [#​45786](https://togithub.com/nodejs/node/pull/45786) - \[[`79edf257bb`](https://togithub.com/nodejs/node/commit/79edf257bb)] - **src**: cleanup on disambiguating native modules (Michael Dawson) [#​45665](https://togithub.com/nodejs/node/pull/45665) - \[[`c9cba2e873`](https://togithub.com/nodejs/node/commit/c9cba2e873)] - **src**: use `enum class` instead of `enum` in node_i18n (Deokjin Kim) [#​45646](https://togithub.com/nodejs/node/pull/45646) - \[[`818028caba`](https://togithub.com/nodejs/node/commit/818028caba)] - **src**: rename internal module declaration as internal bindings (Chengzhong Wu) [#​45551](https://togithub.com/nodejs/node/pull/45551) - \[[`2fbe2f9f0a`](https://togithub.com/nodejs/node/commit/2fbe2f9f0a)] - **src,lib**: group properties used as constants from `util` binding (Daeyeon Jeong) [#​45539](https://togithub.com/nodejs/node/pull/45539) - \[[`56eee72abb`](https://togithub.com/nodejs/node/commit/56eee72abb)] - **stream**: use structuredClone instead of v8 (Yagiz Nizipli) [#​45611](https://togithub.com/nodejs/node/pull/45611) - \[[`b297dd5393`](https://togithub.com/nodejs/node/commit/b297dd5393)] - **test**: remove flaky parallel/test-process-wrap test (Ben Noordhuis) [#​45806](https://togithub.com/nodejs/node/pull/45806) - \[[`924f6ab3a1`](https://togithub.com/nodejs/node/commit/924f6ab3a1)] - **test**: order list alphabetically in `test-bootstrap-modules` (Antoine du Hamel) [#​45808](https://togithub.com/nodejs/node/pull/45808) - \[[`5c4475dab9`](https://togithub.com/nodejs/node/commit/5c4475dab9)] - **test**: fix invalid output TAP if there newline in test name (Pulkit Gupta) [#​45742](https://togithub.com/nodejs/node/pull/45742) - \[[`4c51c5c97a`](https://togithub.com/nodejs/node/commit/4c51c5c97a)] - **test**: fix -Wunused-variable on report-fatalerror (Santiago Gimeno) [#​45747](https://togithub.com/nodejs/node/pull/45747) - \[[`764725040c`](https://togithub.com/nodejs/node/commit/764725040c)] - **test**: fix test-watch-mode (Stefan Stojanovic) [#​45585](https://togithub.com/nodejs/node/pull/45585) - \[[`cd36250fcb`](https://togithub.com/nodejs/node/commit/cd36250fcb)] - **test**: fix test-watch-mode-inspect (Stefan Stojanovic) [#​45586](https://togithub.com/nodejs/node/pull/45586) - \[[`b55bd6e8c1`](https://togithub.com/nodejs/node/commit/b55bd6e8c1)] - **test**: fix typos in test/parallel (Deokjin Kim) [#​45583](https://togithub.com/nodejs/node/pull/45583) - \[[`358e2fe217`](https://togithub.com/nodejs/node/commit/358e2fe217)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#​45569](https://togithub.com/nodejs/node/pull/45569) - \[[`424419c2b4`](https://togithub.com/nodejs/node/commit/424419c2b4)] - **test_runner**: refactor `tap_lexer` to use more primordials (Antoine du Hamel) [#​45744](https://togithub.com/nodejs/node/pull/45744) - \[[`ffc0f3d7be`](https://togithub.com/nodejs/node/commit/ffc0f3d7be)] - **test_runner**: refactor `tap_parser` to use more primordials (Antoine du Hamel) [#​45745](https://togithub.com/nodejs/node/pull/45745) - \[[`4165dcddf0`](https://togithub.com/nodejs/node/commit/4165dcddf0)] - **(SEMVER-MINOR)** **test_runner**: add t.after() hook (Colin Ihrig) [#​45792](https://togithub.com/nodejs/node/pull/45792) - \[[`d1bd7796ad`](https://togithub.com/nodejs/node/commit/d1bd7796ad)] - **(SEMVER-MINOR)** **test_runner**: don't use a symbol for runHook() (Colin Ihrig) [#​45792](https://togithub.com/nodejs/node/pull/45792) - \[[`6bc7b7e6f4`](https://togithub.com/nodejs/node/commit/6bc7b7e6f4)] - **test_runner**: add resetCalls to MockFunctionContext (MURAKAMI Masahiko) [#​45710](https://togithub.com/nodejs/node/pull/45710) - \[[`3e485365ec`](https://togithub.com/nodejs/node/commit/3e485365ec)] - **test_runner**: don't parse TAP from stderr (Colin Ihrig) [#​45618](https://togithub.com/nodejs/node/pull/45618) - \[[`efc44567c9`](https://togithub.com/nodejs/node/commit/efc44567c9)] - **test_runner**: add getter and setter to MockTracker (MURAKAMI Masahiko) [#​45506](https://togithub.com/nodejs/node/pull/45506) - \[[`c9cbd1d396`](https://togithub.com/nodejs/node/commit/c9cbd1d396)] - **test_runner**: remove stdout and stderr from error (Colin Ihrig) [#​45592](https://togithub.com/nodejs/node/pull/45592) - \[[`691f58e76c`](https://togithub.com/nodejs/node/commit/691f58e76c)] - **tls**: remove trustcor root ca certificates (Ben Noordhuis) [#​45776](https://togithub.com/nodejs/node/pull/45776) - \[[`d384b73f76`](https://togithub.com/nodejs/node/commit/d384b73f76)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#​45730](https://togithub.com/nodejs/node/pull/45730) - \[[`324ae3d5dd`](https://togithub.com/nodejs/node/commit/324ae3d5dd)] - **tools**: add GitHub token permissions to label flaky-test issues (Gabriela Gutierrez) [#​45308](https://togithub.com/nodejs/node/pull/45308) - \[[`418ae9be56`](https://togithub.com/nodejs/node/commit/418ae9be56)] - **tools**: remove dependency vulnerability checker (Facundo Tuesca) [#​45675](https://togithub.com/nodejs/node/pull/45675) - \[[`238fc64c38`](https://togithub.com/nodejs/node/commit/238fc64c38)] - **tools**: update lint-md-dependencies to rollup@3.4.0 (Node.js GitHub Bot) [#​45638](https://togithub.com/nodejs/node/pull/45638) - \[[`1b98f17876`](https://togithub.com/nodejs/node/commit/1b98f17876)] - **tools**: update doc to highlight.js@11.7.0 (Node.js GitHub Bot) [#​45636](https://togithub.com/nodejs/node/pull/45636) - \[[`470384e7be`](https://togithub.com/nodejs/node/commit/470384e7be)] - **util**: use private symbols in JS land directly (Joyee Cheung) [#​45379](https://togithub.com/nodejs/node/pull/45379) - \[[`cee6f382d8`](https://togithub.com/nodejs/node/commit/cee6f382d8)] - **watch**: add CLI flag to preserve output (Debadree Chatterjee) [#​45717](https://togithub.com/nodejs/node/pull/45717) ### [`v19.2.0`](https://togithub.com/nodejs/node/releases/tag/v19.2.0): 2022-11-29, Version 19.2.0 (Current), @​ruyadorno [Compare Source](https://togithub.com/nodejs/node/compare/v19.1.0...v19.2.0) ##### Notable changes ##### Time zone update Time zone data has been updated to 2022f. This includes changes to Daylight Savings Time (DST) for Fiji and Mexico. For more information, see . ##### Other notable changes - **buffer** - (SEMVER-MINOR) introduce `File` class (Khafra) [#​45139](https://togithub.com/nodejs/node/pull/45139) - **deps** - update V8 to 10.8.168.20 (Michaël Zasso) [#​45230](https://togithub.com/nodejs/node/pull/45230) - **doc** - deprecate use of invalid ports in `url.parse` (Antoine du Hamel) [#​45576](https://togithub.com/nodejs/node/pull/45576) - **util** - add fast path for utf8 encoding (Yagiz Nizipli) [#​45412](https://togithub.com/nodejs/node/pull/45412) ##### Commits - \[[`7cff1e14ba`](https://togithub.com/nodejs/node/commit/7cff1e14ba)] - **(SEMVER-MINOR)** **async_hooks**: add hook to stop propagation (Gerhard Stöbich) [#​45386](https://togithub.com/nodejs/node/pull/45386) - \[[`f08f6a64a3`](https://togithub.com/nodejs/node/commit/f08f6a64a3)] - **benchmark**: add v8 serialize benchmark (Yagiz Nizipli) [#​45476](https://togithub.com/nodejs/node/pull/45476) - \[[`26ad54c1a2`](https://togithub.com/nodejs/node/commit/26ad54c1a2)] - **benchmark**: add text-encoder benchmark (Yagiz Nizipli) [#​45450](https://togithub.com/nodejs/node/pull/45450) - \[[`6c56c9722b`](https://togithub.com/nodejs/node/commit/6c56c9722b)] - **(SEMVER-MINOR)** **buffer**: introduce File (Khafra) [#​45139](https://togithub.com/nodejs/node/pull/45139) - \[[`6e1e25d6dd`](https://togithub.com/nodejs/node/commit/6e1e25d6dd)] - **build**: avoid redefined macro (Michaël Zasso) [#​45544](https://togithub.com/nodejs/node/pull/45544) - \[[`5c9b2a7c82`](https://togithub.com/nodejs/node/commit/5c9b2a7c82)] - **build**: fix env.h for cpp20 (Jiawen Geng) [#​45516](https://togithub.com/nodejs/node/pull/45516) - \[[`54fd8a1966`](https://togithub.com/nodejs/node/commit/54fd8a1966)] - **build**: reset embedder string to "-node.0" (Michaël Zasso) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`0f3cf7e5ce`](https://togithub.com/nodejs/node/commit/0f3cf7e5ce)] - ***Revert*** "**build**: remove precompiled header and debug information for host builds" (Stefan Stojanovic) [#​45432](https://togithub.com/nodejs/node/pull/45432) - \[[`62ef1eb4ff`](https://togithub.com/nodejs/node/commit/62ef1eb4ff)] - **build**: add --v8-disable-object-print flag (MURAKAMI Masahiko) [#​45458](https://togithub.com/nodejs/node/pull/45458) - \[[`1ce2f56cf6`](https://togithub.com/nodejs/node/commit/1ce2f56cf6)] - **build**: make scripts in gyp run with right python (Jiawen Geng) [#​45435](https://togithub.com/nodejs/node/pull/45435) - \[[`9ffe3c051a`](https://togithub.com/nodejs/node/commit/9ffe3c051a)] - **build,deps,src**: fix Intel VTune profiling support (Shi Lei) [#​45248](https://togithub.com/nodejs/node/pull/45248) - \[[`bd3accc7b2`](https://togithub.com/nodejs/node/commit/bd3accc7b2)] - **crypto**: clear OpenSSL error queue after calling X509\_check_private_key() (Filip Skokan) [#​45495](https://togithub.com/nodejs/node/pull/45495) - \[[`724addb293`](https://togithub.com/nodejs/node/commit/724addb293)] - **crypto**: update root certificates (Luigi Pinca) [#​45490](https://togithub.com/nodejs/node/pull/45490) - \[[`efe19eb7f5`](https://togithub.com/nodejs/node/commit/efe19eb7f5)] - **crypto**: clear OpenSSL error queue after calling X509\_verify() (Takuro Sato) [#​45377](https://togithub.com/nodejs/node/pull/45377) - \[[`f63ae525fa`](https://togithub.com/nodejs/node/commit/f63ae525fa)] - **deps**: V8: cherry-pick [`2ada52c`](https://togithub.com/nodejs/node/commit/2ada52cffbff) (Michaël Zasso) [#​45573](https://togithub.com/nodejs/node/pull/45573) - \[[`43e002e3d4`](https://togithub.com/nodejs/node/commit/43e002e3d4)] - **deps**: update base64 to 0.5.0 (Facundo Tuesca) [#​45509](https://togithub.com/nodejs/node/pull/45509) - \[[`aaa4ac7735`](https://togithub.com/nodejs/node/commit/aaa4ac7735)] - **deps**: V8: cherry-pick [`9df5ef7`](https://togithub.com/nodejs/node/commit/9df5ef70ff18) (Yagiz Nizipli) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`e70c3090ff`](https://togithub.com/nodejs/node/commit/e70c3090ff)] - **deps**: V8: cherry-pick [`f1c888e`](https://togithub.com/nodejs/node/commit/f1c888e7093e) (Michaël Zasso) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`51eb323c50`](https://togithub.com/nodejs/node/commit/51eb323c50)] - **deps**: V8: cherry-pick [`92a7385`](https://togithub.com/nodejs/node/commit/92a7385171bb) (Michaël Zasso) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`1370b1a769`](https://togithub.com/nodejs/node/commit/1370b1a769)] - **deps**: fix V8 build on Windows with MSVC (Michaël Zasso) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`3cd6367e6a`](https://togithub.com/nodejs/node/commit/3cd6367e6a)] - **deps**: silence irrelevant V8 warning (Michaël Zasso) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`9348bdd28d`](https://togithub.com/nodejs/node/commit/9348bdd28d)] - **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`e9292544b0`](https://togithub.com/nodejs/node/commit/e9292544b0)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`a3b9967553`](https://togithub.com/nodejs/node/commit/a3b9967553)] - **deps**: update V8 to 10.8.168.20 (Michaël Zasso) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`117efe98b0`](https://togithub.com/nodejs/node/commit/117efe98b0)] - **deps**: V8: cherry-pick [`9df5ef7`](https://togithub.com/nodejs/node/commit/9df5ef70ff18) (Yagiz Nizipli) [#​45474](https://togithub.com/nodejs/node/pull/45474) - \[[`628891d4dd`](https://togithub.com/nodejs/node/commit/628891d4dd)] - **deps**: update timezone to 2022f (Node.js GitHub Bot) [#​45289](https://togithub.com/nodejs/node/pull/45289) - \[[`45ba14b3be`](https://togithub.com/nodejs/node/commit/45ba14b3be)] - **deps**: fix zlib compilation for CPUs without SIMD features (Anna Henningsen) [#​45387](https://togithub.com/nodejs/node/pull/45387) - \[[`c41e67fe1d`](https://togithub.com/nodejs/node/commit/c41e67fe1d)] - **deps**: update zlib to upstream [`8bbd6c3`](https://togithub.com/nodejs/node/commit/8bbd6c31) (Luigi Pinca) [#​45387](https://togithub.com/nodejs/node/pull/45387) - \[[`413bf9ad39`](https://togithub.com/nodejs/node/commit/413bf9ad39)] - **deps**: patch V8 to 10.7.193.22 (Michaël Zasso) [#​45460](https://togithub.com/nodejs/node/pull/45460) - \[[`ad8da86b3f`](https://togithub.com/nodejs/node/commit/ad8da86b3f)] - **deps**: update acorn to 8.8.1 (Node.js GitHub Bot) [#​45441](https://togithub.com/nodejs/node/pull/45441) - \[[`17e6031bf0`](https://togithub.com/nodejs/node/commit/17e6031bf0)] - **deps**: V8: cherry-pick [`031b98b`](https://togithub.com/nodejs/node/commit/031b98b25cba) (Michaël Zasso) [#​45375](https://togithub.com/nodejs/node/pull/45375) - \[[`9e0e97c121`](https://togithub.com/nodejs/node/commit/9e0e97c121)] - **diagnostics_channel**: built-in channels should remain experimental (Stephen Belanger) [#​45423](https://togithub.com/nodejs/node/pull/45423) - \[[`44886e55e1`](https://togithub.com/nodejs/node/commit/44886e55e1)] - **diagnostics_channel**: mark as stable (Stephen Belanger) [#​45290](https://togithub.com/nodejs/node/pull/45290) - \[[`b6b5b51687`](https://togithub.com/nodejs/node/commit/b6b5b51687)] - **doc**: deprecate use of invalid ports in `url.parse` (Antoine du Hamel) [#​45576](https://togithub.com/nodejs/node/pull/45576) - \[[`d805d5a894`](https://togithub.com/nodejs/node/commit/d805d5a894)] - **doc**: clarify changes in readableFlowing (Kohei Ueno) [#​45554](https://togithub.com/nodejs/node/pull/45554) - \[[`015842f3d2`](https://togithub.com/nodejs/node/commit/015842f3d2)] - **doc**: use console.error for error case in http2 (Deokjin Kim) [#​45577](https://togithub.com/nodejs/node/pull/45577) - \[[`4345732900`](https://togithub.com/nodejs/node/commit/4345732900)] - **doc**: add version description about fsPromise.constants (chlorine) [#​45556](https://togithub.com/nodejs/node/pull/45556) - \[[`16643dbb19`](https://togithub.com/nodejs/node/commit/16643dbb19)] - **doc**: add missing documentation for paramEncoding (Tobias Nießen) [#​45523](https://togithub.com/nodejs/node/pull/45523) - \[[`246cd358b5`](https://togithub.com/nodejs/node/commit/246cd358b5)] - **doc**: fix typo in threat model (Tobias Nießen) [#​45558](https://togithub.com/nodejs/node/pull/45558) - \[[`5b1df22db0`](https://togithub.com/nodejs/node/commit/5b1df22db0)] - **doc**: add Node.js Threat Model (Rafael Gonzaga) [#​45223](https://togithub.com/nodejs/node/pull/45223) - \[[`19d8493c92`](https://togithub.com/nodejs/node/commit/19d8493c92)] - **doc**: run license-builder (github-actions\[bot]) [#​45553](https://togithub.com/nodejs/node/pull/45553) - \[[`6f0bc097ea`](https://togithub.com/nodejs/node/commit/6f0bc097ea)] - **doc**: add async_hooks migration note (Geoffrey Booth) [#​45335](https://togithub.com/nodejs/node/pull/45335) - \[[`118de4b44c`](https://togithub.com/nodejs/node/commit/118de4b44c)] - **doc**: fix RESOLVE_ESM_MATCH in modules.md (翠 / green) [#​45280](https://togithub.com/nodejs/node/pull/45280) - \[[`4de67d1ef4`](https://togithub.com/nodejs/node/commit/4de67d1ef4)] - **doc**: add arm64 to os.machine() (Carter Snook) [#​45374](https://togithub.com/nodejs/node/pull/45374) - \[[`1812a89c00`](https://togithub.com/nodejs/node/commit/1812a89c00)] - **doc**: add lint rule to enforce trailing commas (Antoine du Hamel) [#​45471](https://togithub.com/nodejs/node/pull/45471) - \[[`4128c27f66`](https://togithub.com/nodejs/node/commit/4128c27f66)] - **doc**: include v19.1.0 in `CHANGELOG.md` (Rafael Gonzaga) [#​45462](https://togithub.com/nodejs/node/pull/45462) - \[[`94a6a97ec6`](https://togithub.com/nodejs/node/commit/94a6a97ec6)] - **doc**: adjust wording to eliminate awkward typography (Konv) [#​45398](https://togithub.com/nodejs/node/pull/45398) - \[[`a6fe707b62`](https://togithub.com/nodejs/node/commit/a6fe707b62)] - **doc**: fix typo in maintaining-dependencies.md (Tobias Nießen) [#​45428](https://togithub.com/nodejs/node/pull/45428) - \[[`8906a4e58e`](https://togithub.com/nodejs/node/commit/8906a4e58e)] - **esm**: add JSDoc property descriptions for loader (Rich Trott) [#​45370](https://togithub.com/nodejs/node/pull/45370) - \[[`4e5ad9df50`](https://togithub.com/nodejs/node/commit/4e5ad9df50)] - **esm**: add JSDoc property descriptions for fetch (Rich Trott) [#​45370](https://togithub.com/nodejs/node/pull/45370) - \[[`2b760c339e`](https://togithub.com/nodejs/node/commit/2b760c339e)] - **fs**: fix fs.rm support for loop symlinks (Nathanael Ruf) [#​45439](https://togithub.com/nodejs/node/pull/45439) - \[[`e0a271e41b`](https://togithub.com/nodejs/node/commit/e0a271e41b)] - **gyp**: fix v8 canary build on aix (Vasili Skurydzin) [#​45496](https://togithub.com/nodejs/node/pull/45496) - \[[`eac26c0793`](https://togithub.com/nodejs/node/commit/eac26c0793)] - ***Revert*** "**http**: headers(Distinct), trailers(Distinct) setters to be no-op" (Rich Trott) [#​45527](https://togithub.com/nodejs/node/pull/45527) - \[[`f208db70a0`](https://togithub.com/nodejs/node/commit/f208db70a0)] - **http**: add debug log for ERR_UNESCAPED_CHARACTERS (Aidan Temple) [#​45420](https://togithub.com/nodejs/node/pull/45420) - \[[`b72b2bab72`](https://togithub.com/nodejs/node/commit/b72b2bab72)] - **http**: add JSDoc property descriptions (Rich Trott) [#​45370](https://togithub.com/nodejs/node/pull/45370) - \[[`4c9159a830`](https://togithub.com/nodejs/node/commit/4c9159a830)] - **lib**: improve transferable abort controller exec (Yagiz Nizipli) [#​45525](https://togithub.com/nodejs/node/pull/45525) - \[[`5745bcbb41`](https://togithub.com/nodejs/node/commit/5745bcbb41)] - **lib**: improve AbortController creation duration (Yagiz Nizipli) [#​45525](https://togithub.com/nodejs/node/pull/45525) - \[[`38767b42fb`](https://togithub.com/nodejs/node/commit/38767b42fb)] - **lib**: do not throw if global property is no longer configurable (Antoine du Hamel) [#​45344](https://togithub.com/nodejs/node/pull/45344) - \[[`0d1b1c5df0`](https://togithub.com/nodejs/node/commit/0d1b1c5df0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​45531](https://togithub.com/nodejs/node/pull/45531) - \[[`208ea1a58c`](https://togithub.com/nodejs/node/commit/208ea1a58c)] - **meta**: update VoltrexMaster's username (Mohammed Keyvanzadeh) [#​45503](https://togithub.com/nodejs/node/pull/45503) - \[[`d13ea68ef6`](https://togithub.com/nodejs/node/commit/d13ea68ef6)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#​45443](https://togithub.com/nodejs/node/pull/45443) - \[[`6704e7814f`](https://togithub.com/nodejs/node/commit/6704e7814f)] - **meta**: be more proactive about removing from teams (Rich Trott) [#​45352](https://togithub.com/nodejs/node/pull/45352) - \[[`6fdd202c57`](https://togithub.com/nodejs/node/commit/6fdd202c57)] - **module**: require.resolve.paths returns null with node schema (MURAKAMI Masahiko) [#​45147](https://togithub.com/nodejs/node/pull/45147) - \[[`38f1ede379`](https://togithub.com/nodejs/node/commit/38f1ede379)] - **node-api**: address coverity warning (Michael Dawson) [#​45563](https://togithub.com/nodejs/node/pull/45563) - \[[`4a4f2802ec`](https://togithub.com/nodejs/node/commit/4a4f2802ec)] - **node-api**: declare type napi_cleanup_hook (Chengzhong Wu) [#​45391](https://togithub.com/nodejs/node/pull/45391) - \[[`8ff16fd8c0`](https://togithub.com/nodejs/node/commit/8ff16fd8c0)] - **node-api**: fix immediate napi_remove_wrap test (Chengzhong Wu) [#​45406](https://togithub.com/nodejs/node/pull/45406) - \[[`e7a5b3347b`](https://togithub.com/nodejs/node/commit/e7a5b3347b)] - **src**: address coverity warning in node_file.cc (Michael Dawson) [#​45565](https://togithub.com/nodejs/node/pull/45565) - \[[`128c9f6fac`](https://togithub.com/nodejs/node/commit/128c9f6fac)] - **src**: use qualified `std::move` call in node_http2 (Michaël Zasso) [#​45555](https://togithub.com/nodejs/node/pull/45555) - \[[`57bca94cb1`](https://togithub.com/nodejs/node/commit/57bca94cb1)] - **src**: avoid unused variables and functions (Michaël Zasso) [#​45542](https://togithub.com/nodejs/node/pull/45542) - \[[`649b31f5e5`](https://togithub.com/nodejs/node/commit/649b31f5e5)] - **src**: add missing include for `std::all_of` (Michaël Zasso) [#​45541](https://togithub.com/nodejs/node/pull/45541) - \[[`56f22ea47c`](https://togithub.com/nodejs/node/commit/56f22ea47c)] - **src**: set an appropriate thread pool size if given `--v8-pool-size=0` (Daeyeon Jeong) [#​45513](https://togithub.com/nodejs/node/pull/45513) - \[[`cce9e11d2d`](https://togithub.com/nodejs/node/commit/cce9e11d2d)] - **src**: move FsStatsOffset and kFsStatsBufferLength to node_file.h (Joyee Cheung) [#​45498](https://togithub.com/nodejs/node/pull/45498) - \[[`5e5bf0c236`](https://togithub.com/nodejs/node/commit/5e5bf0c236)] - **src**: don't run tasks on isolate termination (Santiago Gimeno) [#​45444](https://togithub.com/nodejs/node/pull/45444) - \[[`10e7c2a62c`](https://togithub.com/nodejs/node/commit/10e7c2a62c)] - **src**: remove the unused PackageConfig class (Joyee Cheung) [#​45478](https://togithub.com/nodejs/node/pull/45478) - \[[`459d4481d4`](https://togithub.com/nodejs/node/commit/459d4481d4)] - **src**: add --max-semi-space-size to the options allowed in NODE_OPTIONS (Emanuel Hoogeveen) [#​44436](https://togithub.com/nodejs/node/pull/44436) - \[[`a483d1291e`](https://togithub.com/nodejs/node/commit/a483d1291e)] - **src**: condense experimental warning message (Rich Trott) [#​45424](https://togithub.com/nodejs/node/pull/45424) - \[[`42507e68ab`](https://togithub.com/nodejs/node/commit/42507e68ab)] - **src,node-api**: update `napi_is_detached_arraybuffer` (Daeyeon Jeong) [#​45538](https://togithub.com/nodejs/node/pull/45538) - \[[`f720c5880e`](https://togithub.com/nodejs/node/commit/f720c5880e)] - **stream**: use ArrayBufferPrototypeGetByteLength (Yagiz Nizipli) [#​45528](https://togithub.com/nodejs/node/pull/45528) - \[[`c00258e24b`](https://togithub.com/nodejs/node/commit/c00258e24b)] - **stream**: add primordials to adapters (Yagiz Nizipli) [#​45511](https://togithub.com/nodejs/node/pull/45511) - \[[`5274a8f7db`](https://togithub.com/nodejs/node/commit/5274a8f7db)] - **stream**: avoid premature close when will not emit close (Robert Nagy) [#​45301](https://togithub.com/nodejs/node/pull/45301) - \[[`496912d722`](https://togithub.com/nodejs/node/commit/496912d722)] - **stream**: fix typo in `adapters.js` ([#​45515](https://togithub.com/nodejs/node/issues/45515)) (Kohei Ueno) [#​45515](https://togithub.com/nodejs/node/pull/45515) - \[[`8d96e2c723`](https://togithub.com/nodejs/node/commit/8d96e2c723)] - **stream**: add fast path for utf8 (Yagiz Nizipli) [#​45483](https://togithub.com/nodejs/node/pull/45483) - \[[`c3fe9072c6`](https://togithub.com/nodejs/node/commit/c3fe9072c6)] - **test**: add trailing commas in event tests (Rich Trott) [#​45466](https://togithub.com/nodejs/node/pull/45466) - \[[`bb4c293873`](https://togithub.com/nodejs/node/commit/bb4c293873)] - **test**: add trailing commas in async-hooks tests ([#​45549](https://togithub.com/nodejs/node/issues/45549)) (Antoine du Hamel) [#​45549](https://togithub.com/nodejs/node/pull/45549) - \[[`731e8741b2`](https://togithub.com/nodejs/node/commit/731e8741b2)] - **test**: add trailing commas in addons test ([#​45548](https://togithub.com/nodejs/node/issues/45548)) (Antoine du Hamel) [#​45548](https://togithub.com/nodejs/node/pull/45548) - \[[`d6c68ce346`](https://togithub.com/nodejs/node/commit/d6c68ce346)] - **test**: add trailing commas in `test/common` ([#​45550](https://togithub.com/nodejs/node/issues/45550)) (Antoine du Hamel) [#​45550](https://togithub.com/nodejs/node/pull/45550) - \[[`c9ba0b738d`](https://togithub.com/nodejs/node/commit/c9ba0b738d)] - **test**: revise pull request guide text about code (Rich Trott) [#​45519](https://togithub.com/nodejs/node/pull/45519) - \[[`076e9eeaeb`](https://togithub.com/nodejs/node/commit/076e9eeaeb)] - **test**: fix test-trace-gc-flag (Tony Gorez) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`72f2df2802`](https://togithub.com/nodejs/node/commit/72f2df2802)] - **test**: adapt test-v8-stats for V8 update (Michaël Zasso) [#​45230](https://togithub.com/nodejs/node/pull/45230) - \[[`b491504d77`](https://togithub.com/nodejs/node/commit/b491504d77)] - **test**: enable the WPT for `structuredClone` (Daeyeon Jeong) [#​45482](https://togithub.com/nodejs/node/pull/45482) - \[[`1277ffcb55`](https://togithub.com/nodejs/node/commit/1277ffcb55)] - **test**: add lint rule to enforce trailing commas (Antoine du Hamel) [#​45468](https://togithub.com/nodejs/node/pull/45468) - \[[`45b54eec55`](https://togithub.com/nodejs/node/commit/45b54eec55)] - **test**: update uses of \_jabber.\_tcp.google.com (Colin Ihrig) [#​45451](https://togithub.com/nodejs/node/pull/45451) - \[[`51213c24bd`](https://togithub.com/nodejs/node/commit/51213c24bd)] - **test**: add test to validate changelogs for releases (Richard Lau) [#​45325](https://togithub.com/nodejs/node/pull/45325) - \[[`00a3b5f7d5`](https://togithub.com/nodejs/node/commit/00a3b5f7d5)] - **test**: remove flaky designation for test-worker-http2-stream-terminate (Rich Trott) [#​45438](https://togithub.com/nodejs/node/pull/45438) - \[[`4fe5c4e167`](https://togithub.com/nodejs/node/commit/4fe5c4e167)] - **test**: fix flaky test-repl-sigint-nested-eval (Rich Trott) [#​45354](https://togithub.com/nodejs/node/pull/45354) - \[[`f79dd65333`](https://togithub.com/nodejs/node/commit/f79dd65333)] - **test**: add a test to ensure the correctness of timezone upgrades (Darshan Sen) [#​45299](https://togithub.com/nodejs/node/pull/45299) - \[[`016749ba5d`](https://togithub.com/nodejs/node/commit/016749ba5d)] - **test_runner**: add initial TAP parser (Wassim Chegham) [#​43525](https://togithub.com/nodejs/node/pull/43525) - \[[`e9760b4ae8`](https://togithub.com/nodejs/node/commit/e9760b4ae8)] - **test_runner**: support watch mode (Moshe Atlow) [#​45214](https://togithub.com/nodejs/node/pull/45214) - \[[`160c88ec77`](https://togithub.com/nodejs/node/commit/160c88ec77)] - **tools**: have test-asan use ubuntu-20.04 (Filip Skokan) [#​45581](https://togithub.com/nodejs/node/pull/45581) - \[[`81f63c2b28`](https://togithub.com/nodejs/node/commit/81f63c2b28)] - **tools**: update eslint to 8.28.0 (Node.js GitHub Bot) [#​45532](https://togithub.com/nodejs/node/pull/45532) - \[[`f3f1aed01a`](https://togithub.com/nodejs/node/commit/f3f1aed01a)] - **tools**: add automation for updating libuv dependency (Facundo Tuesca) [#​45362](https://togithub.com/nodejs/node/pull/45362) - \[[`d4f30f07b3`](https://togithub.com/nodejs/node/commit/d4f30f07b3)] - **tools**: add missing step in update-base64.sh script (Facundo Tuesca) [#​45509](https://togithub.com/nodejs/node/pull/45509) - \[[`cca20330cf`](https://togithub.com/nodejs/node/commit/cca20330cf)] - **tools**: update certdata.txt (Luigi Pinca) [#​45490](https://togithub.com/nodejs/node/pull/45490) - \[[`39e873139b`](https://togithub.com/nodejs/node/commit/39e873139b)] - **tools**: include current release in the list of released versions (Antoine du Hamel) [#​45463](https://togithub.com/nodejs/node/pull/45463) - \[[`8a34ef4897`](https://togithub.com/nodejs/node/commit/8a34ef4897)] - **tools**: update lint-md-dependencies to rollup@3.3.0 (Node.js GitHub Bot) [#​45442](https://togithub.com/nodejs/node/pull/45442) - \[[`bb36acff42`](https://togithub.com/nodejs/node/commit/bb36acff42)] - **tools**: do not run CQ on non-fast-tracked PRs open for less than 2 days (Moshe Atlow) [#​45407](https://togithub.com/nodejs/node/pull/45407) - \[[`93bc2ba509`](https://togithub.com/nodejs/node/commit/93bc2ba509)] - **tools**: simplify .eslintrc.js (Rich Trott) [#​45397](https://togithub.com/nodejs/node/pull/45397) - \[[`b7f8a44c64`](https://togithub.com/nodejs/node/commit/b7f8a44c64)] - **tools**: simplify regex in ESLint config (Rich Trott) [#​45399](https://togithub.com/nodejs/node/pull/45399) - \[[`36bf87fabf`](https://togithub.com/nodejs/node/commit/36bf87fabf)] - **tools**: enable jsdoc/require-property-description rule (Rich Trott) [#​45370](https://togithub.com/nodejs/node/pull/45370) - \[[`7c6281a7d2`](https://togithub.com/nodejs/node/commit/7c6281a7d2)] - **tools**: dynamically determine parallelism on GitHub Actions macOS (Rich Trott) [#​45350](https://togithub.com/nodejs/node/pull/45350) - \[[`f441b04c11`](https://togithub.com/nodejs/node/commit/f441b04c11)] - **trace_events**: add new categories (theanarkh) [#​45266](https://togithub.com/nodejs/node/pull/45266) - \[[`6bdd2c3884`](https://togithub.com/nodejs/node/commit/6bdd2c3884)] - ***Revert*** "**url**: improve port validation" (Rich Trott) [#​45517](https://togithub.com/nodejs/node/pull/45517) - \[[`bbba42fcb2`](https://togithub.com/nodejs/node/commit/bbba42fcb2)] - **url**: remove unnecessary object call to kFormat (Yagiz Nizipli) [#​45492](https://togithub.com/nodejs/node/pull/45492) - \[[`7c79ba7b27`](https://togithub.com/nodejs/node/commit/7c79ba7b27)] - **util**: add fast path for utf8 encoding (Yagiz Nizipli) [#​45412](https://togithub.com/nodejs/node/pull/45412) - \[[`f86f90f839`](https://togithub.com/nodejs/node/commit/f86f90f839)] - **util**: improve text decoder performance (Yagiz Nizipli) [#​45388](https://togithub.com/nodejs/node/pull/45388) - \[[`3263ceb21a`](https://togithub.com/nodejs/node/commit/3263ceb21a)] - **watch**: watch for missing dependencies (Moshe Atlow) [#​45348](https://togithub.com/nodejs/node/pull/45348) ### [`v19.1.0`](https://togithub.com/nodejs/node/releases/tag/v19.1.0): 2022-11-14, Version 19.1.0 (Current), @​RafaelGSS [Compare Source](https://togithub.com/nodejs/node/compare/v19.0.1...v19.1.0) ##### Notable changes ##### Support function mocking on Node.js test runner The `node:test` module supports mocking during testing via a top-level `mock` object. ```js 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](https://togithub.com/nodejs/node/pull/45326) ##### fs.watch recursive support on Linux `fs.watch` supports recursive watch using the `recursive: true` option. ```js const watcher = fs.watch(testDirectory, { recursive: true }); watcher.on('change', function(event, filename) { }); ``` Contributed by Yagiz Nizipli in [#​45098](https://togithub.com/nodejs/node/pull/45098) ##### Other notable changes - **deps** - update ICU to 72.1 (Michaël Zasso) [#​45068](https://togithub.com/nodejs/node/pull/45068) - **doc** - add lukekarrys to collaborators (Luke Karrys) [#​45180](https://togithub.com/nodejs/node/pull/45180) - add anonrig to collaborators (Yagiz Nizipli) [#​45002](https://togithub.com/nodejs/node/pull/45002) - **lib** - drop fetch experimental warning (Matteo Collina) [#​45287](https://togithub.com/nodejs/node/pull/45287) - **util** - (SEMVER-MINOR) add MIME utilities (Bradley Farias) [#​21128](https://togithub.com/nodejs/node/pull/21128) - improve textdecoder decode performance (Yagiz Nizipli) [#​45294](https://togithub.com/nodejs/node/pull/45294) ##### Commits - \[[`c9cf399ec7`](https://togithub.com/nodejs/node/commit/c9cf399ec7)] - **benchmark**: add parameters to text-decoder benchmark (Yagiz Nizipli) [#​45363](https://togithub.com/nodejs/node/pull/45363) - \[[`79f6bb061d`](https://togithub.com/nodejs/node/commit/79f6bb061d)] - **benchmark**: fix text-decoder benchmark (Yagiz Nizipli) [#​45363](https://togithub.com/nodejs/node/pull/45363) - \[[`a27c994ced`](https://togithub.com/nodejs/node/commit/a27c994ced)] - **benchmark**: add blob benchmark (Yagiz Nizipli) [#​44990](https://togithub.com/nodejs/node/pull/44990) - \[[`c45b6aee78`](https://togithub.com/nodejs/node/commit/c45b6aee78)] - **bootstrap**: merge main thread and worker thread initializations (Joyee Cheung) [#​44869](https://togithub.com/nodejs/node/pull/44869) - \[[`33691208df`](https://togithub.com/nodejs/node/commit/33691208df)] - **buffer**: fix validation of options in `Blob` constructor (Antoine du Hamel) [#​45156](https://togithub.com/nodejs/node/pull/45156) - \[[`7b938df296`](https://togithub.com/nodejs/node/commit/7b938df296)] - **build**: support Python 3.11 (Luigi Pinca) [#​45191](https://togithub.com/nodejs/node/pull/45191) - \[[`75e0a2d109`](https://togithub.com/nodejs/node/commit/75e0a2d109)] - **build**: workaround for node-core-utils (Jiawen Geng) [#​45199](https://togithub.com/nodejs/node/pull/45199) - \[[`f598edbdf4`](https://togithub.com/nodejs/node/commit/f598edbdf4)] - **build**: fix icu-small build with ICU 72.1 (Steven R. Loomis) [#​45195](https://togithub.com/nodejs/node/pull/45195) - \[[`29b9f4f90c`](https://togithub.com/nodejs/node/commit/29b9f4f90c)] - **build**: remove unused language files (Ben Noordhuis) [#​45138](https://togithub.com/nodejs/node/pull/45138) - \[[`3a1ee940d1`](https://togithub.com/nodejs/node/commit/3a1ee940d1)] - **build**: add GitHub token to auto-start-ci workflow (Richard Lau) [#​45185](https://togithub.com/nodejs/node/pull/45185) - \[[`17349a2f42`](https://togithub.com/nodejs/node/commit/17349a2f42)] - **build**: restore Windows resource file (Richard Lau) [#​45042](https://togithub.com/nodejs/node/pull/45042) - \[[`24e24bd063`](https://togithub.com/nodejs/node/commit/24e24bd063)] - **build**: add version info to timezone update PR (Darshan Sen) [#​45021](https://togithub.com/nodejs/node/pull/45021) - \[[`8d7aa53e6b`](https://togithub.com/nodejs/node/commit/8d7aa53e6b)] - **build,win**: pass --debug-nghttp2 to configure (Santiago Gimeno) [#​45209](https://togithub.com/nodejs/node/pull/45209) - \[[`b2e60480f3`](https://togithub.com/nodejs/node/commit/b2e60480f3)] - **child_process**: validate arguments for null bytes (Darshan Sen) [#​44782](https://togithub.com/nodejs/node/pull/44782) - \[[`1f0edde412`](https://togithub.com/nodejs/node/commit/1f0edde412)] - **crypto**: handle more webcrypto errors with OperationError (Filip Skokan) [#​45320](https://togithub.com/nodejs/node/pull/45320) - \[[`13fb05e12b`](https://togithub.com/nodejs/node/commit/13fb05e12b)] - **crypto**: handle unsupported AES ciphers in webcrypto (Filip Skokan) [#​45321](https://togithub.com/nodejs/node/pull/45321) - \[[`c168cbfbb3`](https://togithub.com/nodejs/node/commit/c168cbfbb3)] - **deps**: V8: cherry-pick [`56816d7`](https://togithub.com/nodejs/node/commit/56816d76c121) (Shi Pujin) [#​45353](https://togithub.com/nodejs/node/pull/45353) - \[[`1432474abf`](https://togithub.com/nodejs/node/commit/1432474abf)] - **deps**: upgrade npm to 8.19.3 (npm team) [#​45322](https://togithub.com/nodejs/node/pull/45322) - \[[`f35d56200d`](https://togithub.com/nodejs/node/commit/f35d56200d)] - **deps**: update corepack to 0.15.1 (Node.js GitHub Bot) [#​45331](https://togithub.com/nodejs/node/pull/45331) - \[[`44de2321aa`](https://togithub.com/nodejs/node/commit/44de2321aa)] - **deps**: patch V8 to 10.7.193.20 (Michaël Zasso) [#​45228](https://togithub.com/nodejs/node/pull/45228) - \[[`bfe3819f08`](https://togithub.com/nodejs/node/commit/bfe3819f08)] - **deps**: upgrade to libuv 1.44.2 (Luigi Pinca) [#​42340](https://togithub.com/nodejs/node/pull/42340) - \[[`0d41df96b3`](https://togithub.com/nodejs/node/commit/0d41df96b3)] - **deps**: update corepack to 0.15.0 (Node.js GitHub Bot) [#​45235](https://togithub.com/nodejs/node/pull/45235) - \[[`0d241638ca`](https://togithub.com/nodejs/node/commit/0d241638ca)] - **deps**: update undici to 5.12.0 (Node.js GitHub Bot) [#​45236](https://togithub.com/nodejs/node/pull/45236) - \[[`f58996188a`](https://togithub.com/nodejs/node/commit/f58996188a)] - ***Revert*** "**deps**: make V8 compilable with older glibc" (Michaël Zasso) [#​45162](https://togithub.com/nodejs/node/pull/45162) - \[[`8cda730e58`](https://togithub.com/nodejs/node/commit/8cda730e58)] - **deps**: update ICU to 72.1 (Michaël Zasso) [#​45068](https://togithub.com/nodejs/node/pull/45068) - \[[`0a6ed6f710`](https://togithub.com/nodejs/node/commit/0a6ed6f710)] - ***Revert*** "**deps**: V8: forward declaration of `Rtl*FunctionTable`" (Michaël Zasso) [#​45119](https://togithub.com/nodejs/node/pull/45119) - \[[`2f7518ada2`](https://togithub.com/nodejs/node/commit/2f7518ada2)] - **deps**: update timezone (Node.js GitHub Bot) [#​44950](https://togithub.com/nodejs/node/pull/44950) - \[[`3bfba6df79`](https://togithub.com/nodejs/node/commit/3bfba6df79)] - **deps**: patch V8 to 10.7.193.1

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 this update again.



This PR has been generated by Mend Renovate. View repository job log here.

what-the-diff[bot] commented 1 year ago
github-actions[bot] commented 1 year ago

Since this pull request has not had any activity within the last 5 days, I have marked it as stale. I will close it if no further activity occurs within the next 5 days.

renovate[bot] commented 1 year ago

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will ignore this upgrade and you will not receive PRs for any future 19.x releases. However, if you upgrade to 19.x manually then Renovate will reenable minor and patch updates automatically.

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.