Skip to content

Commit

Permalink
chore(deps): update node.js to v22.8.0 (#806)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [node](https://redirect.github.com/nodejs/node) | final | minor |
`22.7.0-alpine` -> `22.8.0-alpine` |
| [node](https://redirect.github.com/nodejs/node) | stage | minor |
`22.7.0-alpine` -> `22.8.0-alpine` |

---

### Release Notes

<details>
<summary>nodejs/node (node)</summary>

###
[`v22.8.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.8.0):
2024-09-03, Version 22.8.0 (Current), @&#8203;RafaelGSS

[Compare
Source](https://redirect.github.com/nodejs/node/compare/v22.7.0...v22.8.0)

##### New JS API for compile cache

This release adds a new API `module.enableCompileCache()` that can be
used to enable on-disk code caching of all modules loaded after this API
is called.
Previously this could only be enabled by the `NODE_COMPILE_CACHE`
environment variable, so it could only set by end-users.
This API allows tooling and library authors to enable caching of their
own code.
This is a built-in alternative to the
[v8-compile-cache](https://www.npmjs.com/package/v8-compile-cache)/[v8-compile-cache-lib
](https://www.npmjs.com/package/v8-compile-cache-lib) packages,
but have [better
performance](https://redirect.github.com/nodejs/node/issues/47472#issuecomment-1970331362)
and supports ESM.

Thanks to Joyee Cheung for working on this.

##### New option for vm.createContext() to create a context with a
freezable globalThis

Node.js implements a flavor of `vm.createContext()` and friends that
creates a context without contextifying its global
object when vm.constants.DONT_CONTEXTIFY is used. This is suitable when
users want to freeze the context
(impossible when the global is contextified i.e. has interceptors
installed) or speed up the global access if they
don't need the interceptor behavior.

Thanks to Joyee Cheung for working on this.

##### Support for coverage thresholds

Node.js now supports requiring code coverage to meet a specific
threshold before the process exits successfully.
To use this feature, you need to enable the
`--experimental-test-coverage` flag.

You can set thresholds for the following types of coverage:

-   **Branch coverage**: Use `--test-coverage-branches=<threshold>`
-   **Function coverage**: Use `--test-coverage-functions=<threshold>`
-   **Line coverage**: Use `--test-coverage-lines=<threshold>`

`<threshold>` should be an integer between 0 and 100. If an invalid
value is provided, a `TypeError` will be thrown.

If the code coverage fails to meet the specified thresholds for any
category, the process will exit with code `1`.

For instance, to enforce a minimum of 80% line coverage and 60% branch
coverage, you can run:

```console
$ node --experimental-test-coverage --test-coverage-lines=80 --test-coverage-branches=60 example.js
```

Thanks Aviv Keller for working on this.

##### Other Notable Changes

-
\[[`1f2cc2fa47`](https://redirect.github.com/nodejs/node/commit/1f2cc2fa47)]
- **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael
Gonzaga)
[#&#8203;54413](https://redirect.github.com/nodejs/node/pull/54413)
-
\[[`1e01bdc0d0`](https://redirect.github.com/nodejs/node/commit/1e01bdc0d0)]
- **(SEMVER-MINOR)** **net**: exclude ipv6 loopback addresses from
server.listen (Giovanni Bucci)
[#&#8203;54264](https://redirect.github.com/nodejs/node/pull/54264)
-
\[[`97fa075c2e`](https://redirect.github.com/nodejs/node/commit/97fa075c2e)]
- **(SEMVER-MINOR)** **test_runner**: support running tests in process
(Colin Ihrig)
[#&#8203;53927](https://redirect.github.com/nodejs/node/pull/53927)
-
\[[`858b583c88`](https://redirect.github.com/nodejs/node/commit/858b583c88)]
- **(SEMVER-MINOR)** **test_runner**: defer inheriting hooks until run()
(Colin Ihrig)
[#&#8203;53927](https://redirect.github.com/nodejs/node/pull/53927)

##### Commits

-
\[[`94985df9d6`](https://redirect.github.com/nodejs/node/commit/94985df9d6)]
- **benchmark**: fix benchmark for file path and URL conversion (Early
Riser)
[#&#8203;54190](https://redirect.github.com/nodejs/node/pull/54190)
-
\[[`ac178b094b`](https://redirect.github.com/nodejs/node/commit/ac178b094b)]
- **buffer**: truncate instead of throw when writing beyond buffer
(Robert Nagy)
[#&#8203;54524](https://redirect.github.com/nodejs/node/pull/54524)
-
\[[`afd8c1eb4f`](https://redirect.github.com/nodejs/node/commit/afd8c1eb4f)]
- **buffer**: allow invalid encoding in from (Robert Nagy)
[#&#8203;54533](https://redirect.github.com/nodejs/node/pull/54533)
-
\[[`6f0cf35cd3`](https://redirect.github.com/nodejs/node/commit/6f0cf35cd3)]
- **build**: reclaim disk space on macOS GHA runner (jakecastelli)
[#&#8203;54658](https://redirect.github.com/nodejs/node/pull/54658)
-
\[[`467ac3aec4`](https://redirect.github.com/nodejs/node/commit/467ac3aec4)]
- **build**: don't clean obj.target directory if it doesn't exist (Joyee
Cheung)
[#&#8203;54337](https://redirect.github.com/nodejs/node/pull/54337)
-
\[[`71fdf961df`](https://redirect.github.com/nodejs/node/commit/71fdf961df)]
- **build**: update required python version to 3.8 (Aviv Keller)
[#&#8203;54358](https://redirect.github.com/nodejs/node/pull/54358)
-
\[[`73604cf1c5`](https://redirect.github.com/nodejs/node/commit/73604cf1c5)]
- **deps**: update nghttp2 to 1.63.0 (Node.js GitHub Bot)
[#&#8203;54589](https://redirect.github.com/nodejs/node/pull/54589)
-
\[[`b00c087285`](https://redirect.github.com/nodejs/node/commit/b00c087285)]
- **deps**: V8: cherry-pick
[`e74d0f4`](https://redirect.github.com/nodejs/node/commit/e74d0f437fcd)
(Joyee Cheung)
[#&#8203;54279](https://redirect.github.com/nodejs/node/pull/54279)
-
\[[`33a6b3c7a9`](https://redirect.github.com/nodejs/node/commit/33a6b3c7a9)]
- **deps**: backport ICU-22787 to fix ClangCL on Windows (Stefan
Stojanovic)
[#&#8203;54502](https://redirect.github.com/nodejs/node/pull/54502)
-
\[[`fe56949cbb`](https://redirect.github.com/nodejs/node/commit/fe56949cbb)]
- **deps**: update c-ares to v1.33.1 (Node.js GitHub Bot)
[#&#8203;54549](https://redirect.github.com/nodejs/node/pull/54549)
-
\[[`290f6ce619`](https://redirect.github.com/nodejs/node/commit/290f6ce619)]
- **deps**: update amaro to 0.1.8 (Node.js GitHub Bot)
[#&#8203;54520](https://redirect.github.com/nodejs/node/pull/54520)
-
\[[`b5843568b4`](https://redirect.github.com/nodejs/node/commit/b5843568b4)]
- **deps**: update amaro to 0.1.7 (Node.js GitHub Bot)
[#&#8203;54473](https://redirect.github.com/nodejs/node/pull/54473)
-
\[[`9c709209b4`](https://redirect.github.com/nodejs/node/commit/9c709209b4)]
- **deps**: update undici to 6.19.8 (Node.js GitHub Bot)
[#&#8203;54456](https://redirect.github.com/nodejs/node/pull/54456)
-
\[[`a5ce24181b`](https://redirect.github.com/nodejs/node/commit/a5ce24181b)]
- **deps**: sqlite: fix Windows compilation (Colin Ihrig)
[#&#8203;54433](https://redirect.github.com/nodejs/node/pull/54433)
-
\[[`3caf29ea88`](https://redirect.github.com/nodejs/node/commit/3caf29ea88)]
- **deps**: update sqlite to 3.46.1 (Node.js GitHub Bot)
[#&#8203;54433](https://redirect.github.com/nodejs/node/pull/54433)
-
\[[`68758d4b08`](https://redirect.github.com/nodejs/node/commit/68758d4b08)]
- **doc**: add support me link for anonrig (Yagiz Nizipli)
[#&#8203;54611](https://redirect.github.com/nodejs/node/pull/54611)
-
\[[`f5c5529266`](https://redirect.github.com/nodejs/node/commit/f5c5529266)]
- **doc**: add alert on REPL from TCP socket (Rafael Gonzaga)
[#&#8203;54594](https://redirect.github.com/nodejs/node/pull/54594)
-
\[[`bf824483cd`](https://redirect.github.com/nodejs/node/commit/bf824483cd)]
- **doc**: fix typo in styleText description (Rafael Gonzaga)
[#&#8203;54616](https://redirect.github.com/nodejs/node/pull/54616)
-
\[[`825d933fd4`](https://redirect.github.com/nodejs/node/commit/825d933fd4)]
- **doc**: add getHeapStatistics() property descriptions (Benji
Marinacci)
[#&#8203;54584](https://redirect.github.com/nodejs/node/pull/54584)
-
\[[`80e5150160`](https://redirect.github.com/nodejs/node/commit/80e5150160)]
- **doc**: fix module compile cache description (沈鸿飞)
[#&#8203;54625](https://redirect.github.com/nodejs/node/pull/54625)
-
\[[`7fd033fe56`](https://redirect.github.com/nodejs/node/commit/7fd033fe56)]
- **doc**: run license-builder (github-actions\[bot])
[#&#8203;54562](https://redirect.github.com/nodejs/node/pull/54562)
-
\[[`c499913732`](https://redirect.github.com/nodejs/node/commit/c499913732)]
- **doc**: fix information about including coverage files (Aviv Keller)
[#&#8203;54527](https://redirect.github.com/nodejs/node/pull/54527)
-
\[[`c3dc83befc`](https://redirect.github.com/nodejs/node/commit/c3dc83befc)]
- **doc**: support collaborators - talk amplification (Michael Dawson)
[#&#8203;54508](https://redirect.github.com/nodejs/node/pull/54508)
-
\[[`fc57beaad3`](https://redirect.github.com/nodejs/node/commit/fc57beaad3)]
- **doc**: add note about shasum generation failure (Marco Ippolito)
[#&#8203;54487](https://redirect.github.com/nodejs/node/pull/54487)
-
\[[`1800a58f49`](https://redirect.github.com/nodejs/node/commit/1800a58f49)]
- **doc**: update websocket flag description to reflect stable API
status (Yelim Koo)
[#&#8203;54482](https://redirect.github.com/nodejs/node/pull/54482)
-
\[[`61affd77a7`](https://redirect.github.com/nodejs/node/commit/61affd77a7)]
- **doc**: fix capitalization in module.md (shallow-beach)
[#&#8203;54488](https://redirect.github.com/nodejs/node/pull/54488)
-
\[[`25419915c7`](https://redirect.github.com/nodejs/node/commit/25419915c7)]
- **doc**: add esm examples to node:https (Alfredo González)
[#&#8203;54399](https://redirect.github.com/nodejs/node/pull/54399)
-
\[[`83b5efeb54`](https://redirect.github.com/nodejs/node/commit/83b5efeb54)]
- **doc**: reserve ABI 130 for Electron 33 (Calvin)
[#&#8203;54383](https://redirect.github.com/nodejs/node/pull/54383)
-
\[[`6ccbd32ae8`](https://redirect.github.com/nodejs/node/commit/6ccbd32ae8)]
- **doc, meta**: add missing `,` to `BUILDING.md` (Aviv Keller)
[#&#8203;54409](https://redirect.github.com/nodejs/node/pull/54409)
-
\[[`fc08a9b0cd`](https://redirect.github.com/nodejs/node/commit/fc08a9b0cd)]
- **fs**: refactor handleTimestampsAndMode to remove redundant call
(HEESEUNG)
[#&#8203;54369](https://redirect.github.com/nodejs/node/pull/54369)
-
\[[`4a664b5fcb`](https://redirect.github.com/nodejs/node/commit/4a664b5fcb)]
- **lib**: respect terminal capabilities on styleText (Rafael Gonzaga)
[#&#8203;54389](https://redirect.github.com/nodejs/node/pull/54389)
-
\[[`a9ce2b6a28`](https://redirect.github.com/nodejs/node/commit/a9ce2b6a28)]
- **lib**: fix emit warning for debuglog.time when disabled (Vinicius
Lourenço)
[#&#8203;54275](https://redirect.github.com/nodejs/node/pull/54275)
-
\[[`b5a23c9783`](https://redirect.github.com/nodejs/node/commit/b5a23c9783)]
- **meta**: remind users to use a supported version in bug reports (Aviv
Keller)
[#&#8203;54481](https://redirect.github.com/nodejs/node/pull/54481)
-
\[[`0d7171d8e9`](https://redirect.github.com/nodejs/node/commit/0d7171d8e9)]
- **meta**: add more labels to dep-updaters (Aviv Keller)
[#&#8203;54454](https://redirect.github.com/nodejs/node/pull/54454)
-
\[[`c4996c189f`](https://redirect.github.com/nodejs/node/commit/c4996c189f)]
- **meta**: run coverage-windows when `vcbuild.bat` updated (Aviv
Keller)
[#&#8203;54412](https://redirect.github.com/nodejs/node/pull/54412)
-
\[[`3cf645768e`](https://redirect.github.com/nodejs/node/commit/3cf645768e)]
- **module**: use amaro default transform values (Marco Ippolito)
[#&#8203;54517](https://redirect.github.com/nodejs/node/pull/54517)
-
\[[`336496b90e`](https://redirect.github.com/nodejs/node/commit/336496b90e)]
- **module**: add sourceURL magic comment hinting generated source
(Chengzhong Wu)
[#&#8203;54402](https://redirect.github.com/nodejs/node/pull/54402)
-
\[[`04f83b50ad`](https://redirect.github.com/nodejs/node/commit/04f83b50ad)]
- ***Revert*** "**net**: validate host name for server listen"
(jakecastelli)
[#&#8203;54554](https://redirect.github.com/nodejs/node/pull/54554)
-
\[[`1e01bdc0d0`](https://redirect.github.com/nodejs/node/commit/1e01bdc0d0)]
- **(SEMVER-MINOR)** **net**: exclude ipv6 loopback addresses from
server.listen (Giovanni Bucci)
[#&#8203;54264](https://redirect.github.com/nodejs/node/pull/54264)
-
\[[`3cd10a3f40`](https://redirect.github.com/nodejs/node/commit/3cd10a3f40)]
- **node-api**: remove RefBase and CallbackWrapper (Vladimir Morozov)
[#&#8203;53590](https://redirect.github.com/nodejs/node/pull/53590)
-
\[[`72c554abab`](https://redirect.github.com/nodejs/node/commit/72c554abab)]
- **sqlite**: return results with null prototype (Michaël Zasso)
[#&#8203;54350](https://redirect.github.com/nodejs/node/pull/54350)
-
\[[`e071651bb2`](https://redirect.github.com/nodejs/node/commit/e071651bb2)]
- **src**: disable fast methods for `buffer.write` (Michaël Zasso)
[#&#8203;54565](https://redirect.github.com/nodejs/node/pull/54565)
-
\[[`f8cbbc685a`](https://redirect.github.com/nodejs/node/commit/f8cbbc685a)]
- **src**: use v8::Isolate::GetDefaultLocale() to compute
navigator.language (Joyee Cheung)
[#&#8203;54279](https://redirect.github.com/nodejs/node/pull/54279)
-
\[[`4baf4637eb`](https://redirect.github.com/nodejs/node/commit/4baf4637eb)]
- **(SEMVER-MINOR)** **src**: add JS APIs for compile cache and
NODE_DISABLE_COMPILE_CACHE (Joyee Cheung)
[#&#8203;54501](https://redirect.github.com/nodejs/node/pull/54501)
-
\[[`101e299656`](https://redirect.github.com/nodejs/node/commit/101e299656)]
- **src**: move more crypto_dh.cc code to ncrypto (James M Snell)
[#&#8203;54459](https://redirect.github.com/nodejs/node/pull/54459)
-
\[[`e6e1f4e8bd`](https://redirect.github.com/nodejs/node/commit/e6e1f4e8bd)]
- **src**: remove redundant AESCipherMode (Tobias Nießen)
[#&#8203;54438](https://redirect.github.com/nodejs/node/pull/54438)
-
\[[`1ff3f63f5e`](https://redirect.github.com/nodejs/node/commit/1ff3f63f5e)]
- **src**: handle errors correctly in `permission.cc` (Michaël Zasso)
[#&#8203;54541](https://redirect.github.com/nodejs/node/pull/54541)
-
\[[`4938188682`](https://redirect.github.com/nodejs/node/commit/4938188682)]
- **src**: return `v8::Object` from error constructors (Michaël Zasso)
[#&#8203;54541](https://redirect.github.com/nodejs/node/pull/54541)
-
\[[`4578e9485b`](https://redirect.github.com/nodejs/node/commit/4578e9485b)]
- **src**: use better return types in KVStore (Michaël Zasso)
[#&#8203;54539](https://redirect.github.com/nodejs/node/pull/54539)
-
\[[`7d9e994791`](https://redirect.github.com/nodejs/node/commit/7d9e994791)]
- **src**: change SetEncodedValue to return Maybe\<void> (Tobias Nießen)
[#&#8203;54443](https://redirect.github.com/nodejs/node/pull/54443)
-
\[[`eef303028f`](https://redirect.github.com/nodejs/node/commit/eef303028f)]
- **src**: remove cached data tag from snapshot metadata (Joyee Cheung)
[#&#8203;54122](https://redirect.github.com/nodejs/node/pull/54122)
-
\[[`3a74c400d5`](https://redirect.github.com/nodejs/node/commit/3a74c400d5)]
- **src**: improve `buffer.transcode` performance (Yagiz Nizipli)
[#&#8203;54153](https://redirect.github.com/nodejs/node/pull/54153)
-
\[[`909c5320fd`](https://redirect.github.com/nodejs/node/commit/909c5320fd)]
- **src**: move more crypto code to ncrypto (James M Snell)
[#&#8203;54320](https://redirect.github.com/nodejs/node/pull/54320)
-
\[[`9ba75faf5f`](https://redirect.github.com/nodejs/node/commit/9ba75faf5f)]
- **(SEMVER-MINOR)** **src,lib**: add performance.uvMetricsInfo (Rafael
Gonzaga)
[#&#8203;54413](https://redirect.github.com/nodejs/node/pull/54413)
-
\[[`fffc300c6d`](https://redirect.github.com/nodejs/node/commit/fffc300c6d)]
- **stream**: change stream to use index instead of `for...of` (Wiyeong
Seo) [#&#8203;54474](https://redirect.github.com/nodejs/node/pull/54474)
-
\[[`a4a6ef8d29`](https://redirect.github.com/nodejs/node/commit/a4a6ef8d29)]
- **test**: fix test-tls-client-auth test for OpenSSL32 (Michael Dawson)
[#&#8203;54610](https://redirect.github.com/nodejs/node/pull/54610)
-
\[[`76345a5d7c`](https://redirect.github.com/nodejs/node/commit/76345a5d7c)]
- **test**: update TLS test for OpenSSL 3.2 (Richard Lau)
[#&#8203;54612](https://redirect.github.com/nodejs/node/pull/54612)
-
\[[`522d5a359d`](https://redirect.github.com/nodejs/node/commit/522d5a359d)]
- **test**: run V8 Fast API tests in release mode too (Michaël Zasso)
[#&#8203;54570](https://redirect.github.com/nodejs/node/pull/54570)
-
\[[`edbecf5209`](https://redirect.github.com/nodejs/node/commit/edbecf5209)]
- **test**: increase key size for ca2-cert.pem (Michael Dawson)
[#&#8203;54599](https://redirect.github.com/nodejs/node/pull/54599)
-
\[[`bc976cfc93`](https://redirect.github.com/nodejs/node/commit/bc976cfc93)]
- **test**: update test-abortsignal-cloneable to use node:test (James M
Snell)
[#&#8203;54581](https://redirect.github.com/nodejs/node/pull/54581)
-
\[[`9f1ce732a8`](https://redirect.github.com/nodejs/node/commit/9f1ce732a8)]
- **test**: update test-assert-typedarray-deepequal to use node:test
(James M Snell)
[#&#8203;54585](https://redirect.github.com/nodejs/node/pull/54585)
-
\[[`c74f2aeb92`](https://redirect.github.com/nodejs/node/commit/c74f2aeb92)]
- **test**: update test-assert to use node:test (James M Snell)
[#&#8203;54585](https://redirect.github.com/nodejs/node/pull/54585)
-
\[[`a0be95e4cc`](https://redirect.github.com/nodejs/node/commit/a0be95e4cc)]
- **test**: merge ongc and gcutil into gc.js (tannal)
[#&#8203;54355](https://redirect.github.com/nodejs/node/pull/54355)
-
\[[`c10aff665e`](https://redirect.github.com/nodejs/node/commit/c10aff665e)]
- **test**: move a couple of tests over to using node:test (James M
Snell)
[#&#8203;54582](https://redirect.github.com/nodejs/node/pull/54582)
-
\[[`dbbc790949`](https://redirect.github.com/nodejs/node/commit/dbbc790949)]
- **test**: update test-aborted-util to use node:test (James M Snell)
[#&#8203;54578](https://redirect.github.com/nodejs/node/pull/54578)
-
\[[`64442fce6b`](https://redirect.github.com/nodejs/node/commit/64442fce6b)]
- **test**: refactor test-abortcontroller to use node:test (James M
Snell)
[#&#8203;54574](https://redirect.github.com/nodejs/node/pull/54574)
-
\[[`72345dee1c`](https://redirect.github.com/nodejs/node/commit/72345dee1c)]
- **test**: fix embedding test for Windows (Vladimir Morozov)
[#&#8203;53659](https://redirect.github.com/nodejs/node/pull/53659)
-
\[[`846e2b2896`](https://redirect.github.com/nodejs/node/commit/846e2b2896)]
- **test**: refactor test_runner tests to change default reporter (Colin
Ihrig)
[#&#8203;54547](https://redirect.github.com/nodejs/node/pull/54547)
-
\[[`b5eb24c86a`](https://redirect.github.com/nodejs/node/commit/b5eb24c86a)]
- **test**: force spec reporter in test-runner-watch-mode.mjs (Colin
Ihrig)
[#&#8203;54538](https://redirect.github.com/nodejs/node/pull/54538)
-
\[[`66ae9f4c0a`](https://redirect.github.com/nodejs/node/commit/66ae9f4c0a)]
- **test**: use valid hostnames (Luigi Pinca)
[#&#8203;54556](https://redirect.github.com/nodejs/node/pull/54556)
-
\[[`02d664b75f`](https://redirect.github.com/nodejs/node/commit/02d664b75f)]
- **test**: fix improper path to URL conversion (Antoine du Hamel)
[#&#8203;54509](https://redirect.github.com/nodejs/node/pull/54509)
-
\[[`8a4f8a9eff`](https://redirect.github.com/nodejs/node/commit/8a4f8a9eff)]
- **test**: add tests for runner coverage with different stdout column
widths (Pietro Marchini)
[#&#8203;54494](https://redirect.github.com/nodejs/node/pull/54494)
-
\[[`b0ed8dbb2f`](https://redirect.github.com/nodejs/node/commit/b0ed8dbb2f)]
- **test**: prevent V8 from writing into the system's tmpdir (Michaël
Zasso)
[#&#8203;54395](https://redirect.github.com/nodejs/node/pull/54395)
-
\[[`5ee234a5a6`](https://redirect.github.com/nodejs/node/commit/5ee234a5a6)]
- **test,crypto**: update WebCryptoAPI WPT (Filip Skokan)
[#&#8203;54593](https://redirect.github.com/nodejs/node/pull/54593)
-
\[[`a4bebf8559`](https://redirect.github.com/nodejs/node/commit/a4bebf8559)]
- **test_runner**: ensure test watcher picks up new test files (Pietro
Marchini)
[#&#8203;54225](https://redirect.github.com/nodejs/node/pull/54225)
-
\[[`d4310fe9c1`](https://redirect.github.com/nodejs/node/commit/d4310fe9c1)]
- **(SEMVER-MINOR)** **test_runner**: add support for coverage
thresholds (Aviv Keller)
[#&#8203;54429](https://redirect.github.com/nodejs/node/pull/54429)
-
\[[`0cf78aa24b`](https://redirect.github.com/nodejs/node/commit/0cf78aa24b)]
- **test_runner**: refactor `mock_loader` (Antoine du Hamel)
[#&#8203;54223](https://redirect.github.com/nodejs/node/pull/54223)
-
\[[`97fa075c2e`](https://redirect.github.com/nodejs/node/commit/97fa075c2e)]
- **(SEMVER-MINOR)** **test_runner**: support running tests in process
(Colin Ihrig)
[#&#8203;53927](https://redirect.github.com/nodejs/node/pull/53927)
-
\[[`858b583c88`](https://redirect.github.com/nodejs/node/commit/858b583c88)]
- **(SEMVER-MINOR)** **test_runner**: defer inheriting hooks until run()
(Colin Ihrig)
[#&#8203;53927](https://redirect.github.com/nodejs/node/pull/53927)
-
\[[`45b0250692`](https://redirect.github.com/nodejs/node/commit/45b0250692)]
- **test_runner**: account for newline in source maps (Colin Ihrig)
[#&#8203;54444](https://redirect.github.com/nodejs/node/pull/54444)
-
\[[`1c29e74d30`](https://redirect.github.com/nodejs/node/commit/1c29e74d30)]
- **test_runner**: make `mock.module`'s `specifier` consistent with
`import()` (Antoine du Hamel)
[#&#8203;54416](https://redirect.github.com/nodejs/node/pull/54416)
-
\[[`cbe30a02a3`](https://redirect.github.com/nodejs/node/commit/cbe30a02a3)]
- **test_runner**: finish build phase before running tests (Colin Ihrig)
[#&#8203;54423](https://redirect.github.com/nodejs/node/pull/54423)
-
\[[`8a4b26f00c`](https://redirect.github.com/nodejs/node/commit/8a4b26f00c)]
- **timers**: fix validation (Paolo Insogna)
[#&#8203;54404](https://redirect.github.com/nodejs/node/pull/54404)
-
\[[`38798140c4`](https://redirect.github.com/nodejs/node/commit/38798140c4)]
- **tools**: remove unused python files (Aviv Keller)
[#&#8203;53928](https://redirect.github.com/nodejs/node/pull/53928)
-
\[[`da6c61def8`](https://redirect.github.com/nodejs/node/commit/da6c61def8)]
- **tools**: add swc license (Marco Ippolito)
[#&#8203;54462](https://redirect.github.com/nodejs/node/pull/54462)
-
\[[`16d4c437e1`](https://redirect.github.com/nodejs/node/commit/16d4c437e1)]
- **typings**: provide internal types for wasi bindings (Andrew Moon)
[#&#8203;54119](https://redirect.github.com/nodejs/node/pull/54119)
-
\[[`fe5666f006`](https://redirect.github.com/nodejs/node/commit/fe5666f006)]
- **vm**: return all own names and symbols in property enumerator
interceptor (Chengzhong Wu)
[#&#8203;54522](https://redirect.github.com/nodejs/node/pull/54522)
-
\[[`db80eac496`](https://redirect.github.com/nodejs/node/commit/db80eac496)]
- **(SEMVER-MINOR)** **vm**: introduce vanilla contexts via
vm.constants.DONT_CONTEXTIFY (Joyee Cheung)
[#&#8203;54394](https://redirect.github.com/nodejs/node/pull/54394)
-
\[[`8ffdd1e2b2`](https://redirect.github.com/nodejs/node/commit/8ffdd1e2b2)]
- **zlib**: simplify validators (Yagiz Nizipli)
[#&#8203;54442](https://redirect.github.com/nodejs/node/pull/54442)

</details>

---

### 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 is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/antoinezanardi/werewolves-assistant-web-next).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41OS4yIiwidXBkYXRlZEluVmVyIjoiMzguNTkuMiIsInRhcmdldEJyYW5jaCI6ImRldmVsb3AiLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 4, 2024
1 parent 92bcd9d commit e74d83b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.7.0-alpine AS build
FROM node:22.8.0-alpine AS build

ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN npm run build

RUN pnpm prune --prod

FROM node:22.7.0-alpine AS production
FROM node:22.8.0-alpine AS production

ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
Expand Down

0 comments on commit e74d83b

Please sign in to comment.