devx-1498 / openshift-quickstart-demo

used the NRM open shift quickstart repo template to create this rep
Apache License 2.0
0 stars 0 forks source link

chore(deps): update all non-major dependencies #10

Open renovate[bot] opened 1 month ago

renovate[bot] commented 1 month ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
caddy final minor 2.7.6-alpine -> 2.8.4-alpine
node stage minor 20.13.1-bullseye-slim -> 20.15.0-bullseye-slim
postgresql (source) minor 15.4.0 -> 15.5.13

Release Notes

nodejs/node (node) ### [`v20.15.0`](https://togithub.com/nodejs/node/releases/tag/v20.15.0): 2024-06-20, Version 20.15.0 'Iron' (LTS), @​marco-ippolito [Compare Source](https://togithub.com/nodejs/node/compare/v20.14.0...v20.15.0) ##### test_runner: support test plans It is now possible to count the number of assertions and subtests that are expected to run within a test. If the number of assertions and subtests that run does not match the expected count, the test will fail. ```js test('top level test', (t) => { t.plan(2); t.assert.ok('some relevant assertion here'); t.subtest('subtest', () => {}); }); ``` Contributed by Colin Ihrig in [#​52860](https://togithub.com/nodejs/node/pull/52860) ##### inspector: introduce the `--inspect-wait` flag This release introduces the `--inspect-wait` flag, which allows debugger to wait for attachement. This flag is useful when you want to debug the code from the beginning. Unlike `--inspect-brk`, which breaks on the first line, this flag waits for debugger to be connected and then runs the code as soon as a session is established. Contributed by Kohei Ueno in [#​52734](https://togithub.com/nodejs/node/pull/52734) ##### zlib: expose zlib.crc32() This release exposes the crc32() function from zlib to user-land. It computes a 32-bit Cyclic Redundancy Check checksum of data. If value is specified, it is used as the starting value of the checksum, otherwise, 0 is used as the starting value. The CRC algorithm is designed to compute checksums and to detect error in data transmission. It's not suitable for cryptographic authentication. ```js const zlib = require('node:zlib'); const { Buffer } = require('node:buffer'); let crc = zlib.crc32('hello'); // 907060870 crc = zlib.crc32('world', crc); // 4192936109 crc = zlib.crc32(Buffer.from('hello', 'utf16le')); // 1427272415 crc = zlib.crc32(Buffer.from('world', 'utf16le'), crc); // 4150509955 ``` Contributed by Joyee Cheung in [#​52692](https://togithub.com/nodejs/node/pull/52692) ##### cli: allow running wasm in limited vmem with --disable-wasm-trap-handler By default, Node.js enables trap-handler-based WebAssembly bound checks. As a result, V8 does not need to insert inline bound checks int the code compiled from WebAssembly which may speedup WebAssembly execution significantly, but this optimization requires allocating a big virtual memory cage (currently 10GB). If the Node.js process does not have access to a large enough virtual memory address space due to system configurations or hardware limitations, users won't be able to run any WebAssembly that involves allocation in this virtual memory cage and will see an out-of-memory error. ```console $ ulimit -v 5000000 $ node -p "new WebAssembly.Memory({ initial: 10, maximum: 100 });" [eval]:1 new WebAssembly.Memory({ initial: 10, maximum: 100 }); ^ RangeError: WebAssembly.Memory(): could not allocate memory at [eval]:1:1 at runScriptInThisContext (node:internal/vm:209:10) at node:internal/process/execution:118:14 at [eval]-wrapper:6:24 at runScript (node:internal/process/execution:101:62) at evalScript (node:internal/process/execution:136:3) at node:internal/main/eval_string:49:3 ``` `--disable-wasm-trap-handler` disables this optimization so that users can at least run WebAssembly (with a less optimial performance) when the virtual memory address space available to their Node.js process is lower than what the V8 WebAssembly memory cage needs. Contributed by Joyee Cheung in [#​52766](https://togithub.com/nodejs/node/pull/52766) ##### Other Notable Changes - \[[`12512c3d0e`](https://togithub.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#​52874](https://togithub.com/nodejs/node/pull/52874) - \[[`9d485b40bb`](https://togithub.com/nodejs/node/commit/9d485b40bb)] - **(SEMVER-MINOR)** **tools**: fix get_asan_state() in tools/test.py (Joyee Cheung) [#​52766](https://togithub.com/nodejs/node/pull/52766) - \[[`e98c305f52`](https://togithub.com/nodejs/node/commit/e98c305f52)] - **(SEMVER-MINOR)** **tools**: support max_virtual_memory test configuration (Joyee Cheung) [#​52766](https://togithub.com/nodejs/node/pull/52766) - \[[`dce0300896`](https://togithub.com/nodejs/node/commit/dce0300896)] - **(SEMVER-MINOR)** **tools**: support != in test status files (Joyee Cheung) [#​52766](https://togithub.com/nodejs/node/pull/52766) ##### Commits - \[[`227093bfec`](https://togithub.com/nodejs/node/commit/227093bfec)] - **assert**: add deep equal check for more Error type (Zhenwei Jin) [#​51805](https://togithub.com/nodejs/node/pull/51805) - \[[`184cfe5a71`](https://togithub.com/nodejs/node/commit/184cfe5a71)] - **benchmark**: filter non-present deps from `start-cli-version` (Adam Majer) [#​51746](https://togithub.com/nodejs/node/pull/51746) - \[[`8b3e83bb53`](https://togithub.com/nodejs/node/commit/8b3e83bb53)] - **buffer**: even faster atob (Daniel Lemire) [#​52443](https://togithub.com/nodejs/node/pull/52443) - \[[`8d628c3255`](https://togithub.com/nodejs/node/commit/8d628c3255)] - **buffer**: use size_t instead of uint32\_t to avoid segmentation fault (Xavier Stouder) [#​48033](https://togithub.com/nodejs/node/pull/48033) - \[[`16ae2b2933`](https://togithub.com/nodejs/node/commit/16ae2b2933)] - **buffer**: remove lines setting indexes to integer value (Zhenwei Jin) [#​52588](https://togithub.com/nodejs/node/pull/52588) - \[[`48c15d0dcd`](https://togithub.com/nodejs/node/commit/48c15d0dcd)] - **build**: remove deprecated calls for argument groups (Mohammed Keyvanzadeh) [#​52913](https://togithub.com/nodejs/node/pull/52913) - \[[`1be8232d17`](https://togithub.com/nodejs/node/commit/1be8232d17)] - **build**: drop base64 dep in GN build (Cheng) [#​52856](https://togithub.com/nodejs/node/pull/52856) - \[[`918962d6e7`](https://togithub.com/nodejs/node/commit/918962d6e7)] - **build**: make simdjson a public dep in GN build (Cheng) [#​52755](https://togithub.com/nodejs/node/pull/52755) - \[[`5215b6fd8e`](https://togithub.com/nodejs/node/commit/5215b6fd8e)] - **build, tools**: copy release assets to staging R2 bucket once built (flakey5) [#​51394](https://togithub.com/nodejs/node/pull/51394) - \[[`473fa73857`](https://togithub.com/nodejs/node/commit/473fa73857)] - **(SEMVER-MINOR)** **cli**: allow running wasm in limited vmem with --disable-wasm-trap-handler (Joyee Cheung) [#​52766](https://togithub.com/nodejs/node/pull/52766) - \[[`954d2aded4`](https://togithub.com/nodejs/node/commit/954d2aded4)] - **cluster**: replace `forEach` with `for-of` loop (Jérôme Benoit) [#​50317](https://togithub.com/nodejs/node/pull/50317) - \[[`794e450ea7`](https://togithub.com/nodejs/node/commit/794e450ea7)] - **console**: colorize console error and warn (Jithil P Ponnan) [#​51629](https://togithub.com/nodejs/node/pull/51629) - \[[`0fb7c18f10`](https://togithub.com/nodejs/node/commit/0fb7c18f10)] - **crypto**: fix duplicated switch-case return values (Mustafa Ateş UZUN) [#​49030](https://togithub.com/nodejs/node/pull/49030) - \[[`cd1415c8b2`](https://togithub.com/nodejs/node/commit/cd1415c8b2)] - ***Revert*** "**crypto**: make timingSafeEqual faster for Uint8Array" (Tobias Nießen) [#​53390](https://togithub.com/nodejs/node/pull/53390) - \[[`b774544bb1`](https://togithub.com/nodejs/node/commit/b774544bb1)] - **deps**: enable unbundling of simdjson, simdutf, ada (Daniel Lemire) [#​52924](https://togithub.com/nodejs/node/pull/52924) - \[[`da4dbfc5fd`](https://togithub.com/nodejs/node/commit/da4dbfc5fd)] - **doc**: remove reference to AUTHORS file (Marco Ippolito) [#​52960](https://togithub.com/nodejs/node/pull/52960) - \[[`2f3f2ff8af`](https://togithub.com/nodejs/node/commit/2f3f2ff8af)] - **doc**: update hljs with the latest styles (Aviv Keller) [#​52911](https://togithub.com/nodejs/node/pull/52911) - \[[`3a1d17a9b1`](https://togithub.com/nodejs/node/commit/3a1d17a9b1)] - **doc**: mention quicker way to build docs (Alex Crawford) [#​52937](https://togithub.com/nodejs/node/pull/52937) - \[[`be309bd19d`](https://togithub.com/nodejs/node/commit/be309bd19d)] - **doc**: mention push.followTags config (Rafael Gonzaga) [#​52906](https://togithub.com/nodejs/node/pull/52906) - \[[`e62c6e2684`](https://togithub.com/nodejs/node/commit/e62c6e2684)] - **doc**: document pipeline with `end` option (Alois Klink) [#​48970](https://togithub.com/nodejs/node/pull/48970) - \[[`af27225cf6`](https://togithub.com/nodejs/node/commit/af27225cf6)] - **doc**: add example for `execFileSync` method and ref to stdio (Evan Shortiss) [#​39412](https://togithub.com/nodejs/node/pull/39412) - \[[`086626f9b1`](https://togithub.com/nodejs/node/commit/086626f9b1)] - **doc**: add examples and notes to http server.close et al (mary marchini) [#​49091](https://togithub.com/nodejs/node/pull/49091) - \[[`3aa3337a00`](https://togithub.com/nodejs/node/commit/3aa3337a00)] - **doc**: fix `dns.lookup` family `0` and `all` descriptions (Adam Jones) [#​51653](https://togithub.com/nodejs/node/pull/51653) - \[[`585f2a2e7f`](https://togithub.com/nodejs/node/commit/585f2a2e7f)] - **doc**: update `fs.realpath` documentation (sinkhaha) [#​48170](https://togithub.com/nodejs/node/pull/48170) - \[[`4bf3d44e1d`](https://togithub.com/nodejs/node/commit/4bf3d44e1d)] - **doc**: update fs read documentation for clarity (Mert Can Altin) [#​52453](https://togithub.com/nodejs/node/pull/52453) - \[[`ae5d47dde3`](https://togithub.com/nodejs/node/commit/ae5d47dde3)] - **doc**: watermark string behavior (Benjamin Gruenbaum) [#​52842](https://togithub.com/nodejs/node/pull/52842) - \[[`1e429d10d3`](https://togithub.com/nodejs/node/commit/1e429d10d3)] - **doc**: exclude commits with baking-for-lts (Marco Ippolito) [#​52896](https://togithub.com/nodejs/node/pull/52896) - \[[`3df3e37cdb`](https://togithub.com/nodejs/node/commit/3df3e37cdb)] - **doc**: add names next to release key bash commands (Aviv Keller) [#​52878](https://togithub.com/nodejs/node/pull/52878) - \[[`12512c3d0e`](https://togithub.com/nodejs/node/commit/12512c3d0e)] - **doc**: add pimterry to collaborators (Tim Perry) [#​52874](https://togithub.com/nodejs/node/pull/52874) - \[[`97e0fef019`](https://togithub.com/nodejs/node/commit/97e0fef019)] - **doc**: add more definitions to GLOSSARY.md (Aviv Keller) [#​52798](https://togithub.com/nodejs/node/pull/52798) - \[[`91fadac162`](https://togithub.com/nodejs/node/commit/91fadac162)] - **doc**: make docs more welcoming and descriptive for newcomers (Serkan Özel) [#​38056](https://togithub.com/nodejs/node/pull/38056) - \[[`a3b20126fd`](https://togithub.com/nodejs/node/commit/a3b20126fd)] - **doc**: add OpenSSL errors to API docs (John Lamp) [#​34213](https://togithub.com/nodejs/node/pull/34213) - \[[`9587ae9b5b`](https://togithub.com/nodejs/node/commit/9587ae9b5b)] - **doc**: simplify copy-pasting of `branch-diff` commands (Antoine du Hamel) [#​52757](https://togithub.com/nodejs/node/pull/52757) - \[[`6ea72a53c3`](https://togithub.com/nodejs/node/commit/6ea72a53c3)] - **doc**: add test_runner to subsystem (Raz Luvaton) [#​52774](https://togithub.com/nodejs/node/pull/52774) - \[[`972eafd983`](https://togithub.com/nodejs/node/commit/972eafd983)] - **events**: update MaxListenersExceededWarning message log (sinkhaha) [#​51921](https://togithub.com/nodejs/node/pull/51921) - \[[`74753ed1fe`](https://togithub.com/nodejs/node/commit/74753ed1fe)] - **events**: add stop propagation flag to `Event.stopImmediatePropagation` (Mickael Meausoone) [#​39463](https://togithub.com/nodejs/node/pull/39463) - \[[`75dd009649`](https://togithub.com/nodejs/node/commit/75dd009649)] - **events**: replace NodeCustomEvent with CustomEvent (Feng Yu) [#​43876](https://togithub.com/nodejs/node/pull/43876) - \[[`7d38c2e012`](https://togithub.com/nodejs/node/commit/7d38c2e012)] - **fs**: keep fs.promises.readFile read until EOF is reached (Zhenwei Jin) [#​52178](https://togithub.com/nodejs/node/pull/52178) - \[[`8cb13120d3`](https://togithub.com/nodejs/node/commit/8cb13120d3)] - **(SEMVER-MINOR)** **inspector**: introduce the `--inspect-wait` flag (Kohei Ueno) [#​52734](https://togithub.com/nodejs/node/pull/52734) - \[[`d5ab1de1fd`](https://togithub.com/nodejs/node/commit/d5ab1de1fd)] - **meta**: move `@anonrig` to TSC regular member (Yagiz Nizipli) [#​52932](https://togithub.com/nodejs/node/pull/52932) - \[[`f82d086e90`](https://togithub.com/nodejs/node/commit/f82d086e90)] - **path**: fix toNamespacedPath on Windows (Hüseyin Açacak) [#​52915](https://togithub.com/nodejs/node/pull/52915) - \[[`121ea13b50`](https://togithub.com/nodejs/node/commit/121ea13b50)] - **process**: improve event-loop (Aras Abbasi) [#​52108](https://togithub.com/nodejs/node/pull/52108) - \[[`eceac784aa`](https://togithub.com/nodejs/node/commit/eceac784aa)] - **repl**: fix disruptive autocomplete without inspector (Nitzan Uziely) [#​40661](https://togithub.com/nodejs/node/pull/40661) - \[[`89a910be82`](https://togithub.com/nodejs/node/commit/89a910be82)] - **src**: fix Worker termination in `inspector.waitForDebugger` (Daeyeon Jeong) [#​52527](https://togithub.com/nodejs/node/pull/52527) - \[[`033f985e8a`](https://togithub.com/nodejs/node/commit/033f985e8a)] - **src**: use `S_ISDIR` to check if the file is a directory (theanarkh) [#​52164](https://togithub.com/nodejs/node/pull/52164) - \[[`95128399f8`](https://togithub.com/nodejs/node/commit/95128399f8)] - **src**: allow preventing debug signal handler start (Shelley Vohr) [#​46681](https://togithub.com/nodejs/node/pull/46681) - \[[`b162aeae9e`](https://togithub.com/nodejs/node/commit/b162aeae9e)] - **src**: fix typo Unabled -> Unable (Simon Siefke) [#​52820](https://togithub.com/nodejs/node/pull/52820) - \[[`2dcbf1894a`](https://togithub.com/nodejs/node/commit/2dcbf1894a)] - **src**: avoid unused variable 'error' warning (Michaël Zasso) [#​52886](https://togithub.com/nodejs/node/pull/52886) - \[[`978ee0a635`](https://togithub.com/nodejs/node/commit/978ee0a635)] - **src**: only apply fix in main thread (Paolo Insogna) [#​52702](https://togithub.com/nodejs/node/pull/52702) - \[[`8fc52b38c6`](https://togithub.com/nodejs/node/commit/8fc52b38c6)] - **src**: fix test local edge case (Paolo Insogna) [#​52702](https://togithub.com/nodejs/node/pull/52702) - \[[`d02907ecc4`](https://togithub.com/nodejs/node/commit/d02907ecc4)] - **src**: remove misplaced windows code under posix guard in node.cc (Ali Hassan) [#​52545](https://togithub.com/nodejs/node/pull/52545) - \[[`af29120fa7`](https://togithub.com/nodejs/node/commit/af29120fa7)] - **stream**: use `ByteLengthQueuingStrategy` when not in `objectMode` (Jason) [#​48847](https://togithub.com/nodejs/node/pull/48847) - \[[`a5f3dd137c`](https://togithub.com/nodejs/node/commit/a5f3dd137c)] - **string_decoder**: throw an error when writing a too long buffer (zhenweijin) [#​52215](https://togithub.com/nodejs/node/pull/52215) - \[[`65fa95d57d`](https://togithub.com/nodejs/node/commit/65fa95d57d)] - **test**: add `Debugger.setInstrumentationBreakpoint` known issue (Konstantin Ulitin) [#​31137](https://togithub.com/nodejs/node/pull/31137) - \[[`0513e07805`](https://togithub.com/nodejs/node/commit/0513e07805)] - **test**: use `for-of` instead of `forEach` (Gibby Free) [#​49790](https://togithub.com/nodejs/node/pull/49790) - \[[`1d01325928`](https://togithub.com/nodejs/node/commit/1d01325928)] - **test**: verify request payload is uploaded consistently (Austin Wright) [#​34066](https://togithub.com/nodejs/node/pull/34066) - \[[`7dda156872`](https://togithub.com/nodejs/node/commit/7dda156872)] - **test**: add fuzzer for native/js string conversion (Adam Korczynski) [#​51120](https://togithub.com/nodejs/node/pull/51120) - \[[`5fb829b340`](https://togithub.com/nodejs/node/commit/5fb829b340)] - **test**: add fuzzer for `ClientHelloParser` (AdamKorcz) [#​51088](https://togithub.com/nodejs/node/pull/51088) - \[[`cc74bf789f`](https://togithub.com/nodejs/node/commit/cc74bf789f)] - **test**: fix broken env fuzzer by initializing process (AdamKorcz) [#​51080](https://togithub.com/nodejs/node/pull/51080) - \[[`800b6f65cf`](https://togithub.com/nodejs/node/commit/800b6f65cf)] - **test**: replace `forEach()` in `test-stream-pipe-unpipe-stream` (Dario) [#​50786](https://togithub.com/nodejs/node/pull/50786) - \[[`d08c9a6a31`](https://togithub.com/nodejs/node/commit/d08c9a6a31)] - **test**: test pipeline `end` on transform streams (Alois Klink) [#​48970](https://togithub.com/nodejs/node/pull/48970) - \[[`0be8123ede`](https://togithub.com/nodejs/node/commit/0be8123ede)] - **test**: improve coverage of lib/readline.js (Rongjian Zhang) [#​38646](https://togithub.com/nodejs/node/pull/38646) - \[[`410224415c`](https://togithub.com/nodejs/node/commit/410224415c)] - **test**: updated for each to for of in test file (lyannel) [#​50308](https://togithub.com/nodejs/node/pull/50308) - \[[`556e9a2127`](https://togithub.com/nodejs/node/commit/556e9a2127)] - **test**: move `test-http-server-request-timeouts-mixed` to sequential (Madhuri) [#​45722](https://togithub.com/nodejs/node/pull/45722) - \[[`0638274c07`](https://togithub.com/nodejs/node/commit/0638274c07)] - **test**: fix DNS cancel tests (Szymon Marczak) [#​44432](https://togithub.com/nodejs/node/pull/44432) - \[[`311bdc62bd`](https://togithub.com/nodejs/node/commit/311bdc62bd)] - **test**: add http agent to `executionAsyncResource` (psj-tar-gz) [#​34966](https://togithub.com/nodejs/node/pull/34966) - \[[`6001b164ab`](https://togithub.com/nodejs/node/commit/6001b164ab)] - **test**: reduce memory usage of test-worker-stdio (Adam Majer) [#​37769](https://togithub.com/nodejs/node/pull/37769) - \[[`986bfa26e9`](https://togithub.com/nodejs/node/commit/986bfa26e9)] - **test**: add common.expectRequiredModule() (Joyee Cheung) [#​52868](https://togithub.com/nodejs/node/pull/52868) - \[[`2246d4fd1e`](https://togithub.com/nodejs/node/commit/2246d4fd1e)] - **test**: crypto-rsa-dsa testing for dynamic openssl (Michael Dawson) [#​52781](https://togithub.com/nodejs/node/pull/52781) - \[[`1dce5dea0b`](https://togithub.com/nodejs/node/commit/1dce5dea0b)] - **test**: skip some console tests on dumb terminal (Adam Majer) [#​37770](https://togithub.com/nodejs/node/pull/37770) - \[[`0addeb240c`](https://togithub.com/nodejs/node/commit/0addeb240c)] - **test**: skip v8-updates/test-linux-perf-logger (Michaël Zasso) [#​52821](https://togithub.com/nodejs/node/pull/52821) - \[[`56e19e38f3`](https://togithub.com/nodejs/node/commit/56e19e38f3)] - **test**: drop test-crypto-timing-safe-equal-benchmarks (Rafael Gonzaga) [#​52751](https://togithub.com/nodejs/node/pull/52751) - \[[`0c5e58958c`](https://togithub.com/nodejs/node/commit/0c5e58958c)] - **test, crypto**: use correct object on assert (响马) [#​51820](https://togithub.com/nodejs/node/pull/51820) - \[[`d54aa47ec1`](https://togithub.com/nodejs/node/commit/d54aa47ec1)] - **(SEMVER-MINOR)** **test_runner**: support test plans (Colin Ihrig) [#​52860](https://togithub.com/nodejs/node/pull/52860) - \[[`0289a023a5`](https://togithub.com/nodejs/node/commit/0289a023a5)] - **test_runner**: fix watch mode race condition (Moshe Atlow) [#​52954](https://togithub.com/nodejs/node/pull/52954) - \[[`cf817e192e`](https://togithub.com/nodejs/node/commit/cf817e192e)] - **test_runner**: preserve hook promise when executed twice (Moshe Atlow) [#​52791](https://togithub.com/nodejs/node/pull/52791) - \[[`de541235fe`](https://togithub.com/nodejs/node/commit/de541235fe)] - **tools**: fix v8-update workflow (Michaël Zasso) [#​52957](https://togithub.com/nodejs/node/pull/52957) - \[[`f6290bc327`](https://togithub.com/nodejs/node/commit/f6290bc327)] - **tools**: add --certify-safe to nci-ci (Matteo Collina) [#​52940](https://togithub.com/nodejs/node/pull/52940) - \[[`0830b3115d`](https://togithub.com/nodejs/node/commit/0830b3115d)] - **tools**: fix doc update action (Marco Ippolito) [#​52890](https://togithub.com/nodejs/node/pull/52890) - \[[`9d485b40bb`](https://togithub.com/nodejs/node/commit/9d485b40bb)] - **(SEMVER-MINOR)** **tools**: fix get_asan_state() in tools/test.py (Joyee Cheung) [#​52766](https://togithub.com/nodejs/node/pull/52766) - \[[`e98c305f52`](https://togithub.com/nodejs/node/commit/e98c305f52)] - **(SEMVER-MINOR)** **tools**: support max_virtual_memory test configuration (Joyee Cheung) [#​52766](https://togithub.com/nodejs/node/pull/52766) - \[[`dce0300896`](https://togithub.com/nodejs/node/commit/dce0300896)] - **(SEMVER-MINOR)** **tools**: support != in test status files (Joyee Cheung) [#​52766](https://togithub.com/nodejs/node/pull/52766) - \[[`57006001ec`](https://togithub.com/nodejs/node/commit/57006001ec)] - **tools**: prepare custom rules for ESLint v9 (Michaël Zasso) [#​52889](https://togithub.com/nodejs/node/pull/52889) - \[[`403a4a7557`](https://togithub.com/nodejs/node/commit/403a4a7557)] - **tools**: update lint-md-dependencies to rollup@4.17.2 (Node.js GitHub Bot) [#​52836](https://togithub.com/nodejs/node/pull/52836) - \[[`01eff5860e`](https://togithub.com/nodejs/node/commit/01eff5860e)] - **tools**: update `gr2m/create-or-update-pull-request-action` (Antoine du Hamel) [#​52843](https://togithub.com/nodejs/node/pull/52843) - \[[`514f01ed59`](https://togithub.com/nodejs/node/commit/514f01ed59)] - **tools**: use sccache GitHub action (Michaël Zasso) [#​52839](https://togithub.com/nodejs/node/pull/52839) - \[[`8f8fb91927`](https://togithub.com/nodejs/node/commit/8f8fb91927)] - **tools**: specify a commit-message for V8 update workflow (Antoine du Hamel) [#​52844](https://togithub.com/nodejs/node/pull/52844) - \[[`b83fbf8709`](https://togithub.com/nodejs/node/commit/b83fbf8709)] - **tools**: fix V8 update workflow (Antoine du Hamel) [#​52822](https://togithub.com/nodejs/node/pull/52822) - \[[`be9d6f2176`](https://togithub.com/nodejs/node/commit/be9d6f2176)] - **url,tools,benchmark**: replace deprecated `substr()` (Jungku Lee) [#​51546](https://togithub.com/nodejs/node/pull/51546) - \[[`7603a51d45`](https://togithub.com/nodejs/node/commit/7603a51d45)] - **util**: fix `%s` format behavior with `Symbol.toPrimitive` (Chenyu Yang) [#​50992](https://togithub.com/nodejs/node/pull/50992) - \[[`d7eba50cf3`](https://togithub.com/nodejs/node/commit/d7eba50cf3)] - **util**: improve `isInsideNodeModules` (uzlopak) [#​52147](https://togithub.com/nodejs/node/pull/52147) - \[[`4ae4f7e517`](https://togithub.com/nodejs/node/commit/4ae4f7e517)] - **watch**: allow listening for grouped changes (Matthieu Sieben) [#​52722](https://togithub.com/nodejs/node/pull/52722) - \[[`1ff8f318c0`](https://togithub.com/nodejs/node/commit/1ff8f318c0)] - **watch**: enable passthrough ipc in watch mode (Zack) [#​50890](https://togithub.com/nodejs/node/pull/50890) - \[[`739adf90b1`](https://togithub.com/nodejs/node/commit/739adf90b1)] - **watch**: fix arguments parsing (Moshe Atlow) [#​52760](https://togithub.com/nodejs/node/pull/52760) - \[[`5161d95c30`](https://togithub.com/nodejs/node/commit/5161d95c30)] - **(SEMVER-MINOR)** **zlib**: expose zlib.crc32() (Joyee Cheung) [#​52692](https://togithub.com/nodejs/node/pull/52692) ### [`v20.14.0`](https://togithub.com/nodejs/node/releases/tag/v20.14.0): 2024-05-28, Version 20.14.0 'Iron' (LTS), @​marco-ippolito [Compare Source](https://togithub.com/nodejs/node/compare/v20.13.1...v20.14.0) ##### Notable Changes - \[[`28d2baa17c`](https://togithub.com/nodejs/node/commit/28d2baa17c)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#​52730](https://togithub.com/nodejs/node/pull/52730) - \[[`77e2bf029a`](https://togithub.com/nodejs/node/commit/77e2bf029a)] - **(SEMVER-MINOR)** **test_runner**: support forced exit (Colin Ihrig) [#​52038](https://togithub.com/nodejs/node/pull/52038) ##### Commits - \[[`e3ad05d8b0`](https://togithub.com/nodejs/node/commit/e3ad05d8b0)] - **deps**: V8: cherry-pick [`500de8b`](https://togithub.com/nodejs/node/commit/500de8bd371b) (Richard Lau) [#​52676](https://togithub.com/nodejs/node/pull/52676) - \[[`053282e661`](https://togithub.com/nodejs/node/commit/053282e661)] - **deps**: V8: backport [`c4be0a9`](https://togithub.com/nodejs/node/commit/c4be0a97f981) (Richard Lau) [#​52183](https://togithub.com/nodejs/node/pull/52183) - \[[`200dadb879`](https://togithub.com/nodejs/node/commit/200dadb879)] - **deps**: V8: cherry-pick [`f8d5e57`](https://togithub.com/nodejs/node/commit/f8d5e576b814) (Richard Lau) [#​52183](https://togithub.com/nodejs/node/pull/52183) - \[[`f5cd125e02`](https://togithub.com/nodejs/node/commit/f5cd125e02)] - **deps**: update googletest to [`fa6de7f`](https://togithub.com/nodejs/node/commit/fa6de7f) (Node.js GitHub Bot) [#​52949](https://togithub.com/nodejs/node/pull/52949) - \[[`bbbfd7f4e1`](https://togithub.com/nodejs/node/commit/bbbfd7f4e1)] - **deps**: update corepack to 0.28.1 (Node.js GitHub Bot) [#​52946](https://togithub.com/nodejs/node/pull/52946) - \[[`7ba30a57a6`](https://togithub.com/nodejs/node/commit/7ba30a57a6)] - **deps**: update simdutf to 5.2.8 (Node.js GitHub Bot) [#​52727](https://togithub.com/nodejs/node/pull/52727) - \[[`b21a480a28`](https://togithub.com/nodejs/node/commit/b21a480a28)] - **deps**: update simdutf to 5.2.6 (Node.js GitHub Bot) [#​52727](https://togithub.com/nodejs/node/pull/52727) - \[[`6cfad60d97`](https://togithub.com/nodejs/node/commit/6cfad60d97)] - **deps**: update googletest to [`2d16ed0`](https://togithub.com/nodejs/node/commit/2d16ed0) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`34708d1429`](https://togithub.com/nodejs/node/commit/34708d1429)] - **deps**: update googletest to [`d83fee1`](https://togithub.com/nodejs/node/commit/d83fee1) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`c1d3e558e8`](https://togithub.com/nodejs/node/commit/c1d3e558e8)] - **deps**: update googletest to [`5a37b51`](https://togithub.com/nodejs/node/commit/5a37b51) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`69959d0fca`](https://togithub.com/nodejs/node/commit/69959d0fca)] - **deps**: update googletest to [`5197b1a`](https://togithub.com/nodejs/node/commit/5197b1a) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`c8305f6057`](https://togithub.com/nodejs/node/commit/c8305f6057)] - **deps**: update googletest to [`eff443c`](https://togithub.com/nodejs/node/commit/eff443c) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`760b788704`](https://togithub.com/nodejs/node/commit/760b788704)] - **deps**: update googletest to [`c231e6f`](https://togithub.com/nodejs/node/commit/c231e6f) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`301541cc8f`](https://togithub.com/nodejs/node/commit/301541cc8f)] - **deps**: update googletest to [`e4fdb87`](https://togithub.com/nodejs/node/commit/e4fdb87) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`981d57e401`](https://togithub.com/nodejs/node/commit/981d57e401)] - **deps**: update googletest to [`5df0241`](https://togithub.com/nodejs/node/commit/5df0241) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`a1817f534d`](https://togithub.com/nodejs/node/commit/a1817f534d)] - **deps**: update googletest to [`b75ecf1`](https://togithub.com/nodejs/node/commit/b75ecf1) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`42070ca189`](https://togithub.com/nodejs/node/commit/42070ca189)] - **deps**: update googletest to [`4565741`](https://togithub.com/nodejs/node/commit/4565741) (Node.js GitHub Bot) [#​51657](https://togithub.com/nodejs/node/pull/51657) - \[[`edc3e5d056`](https://togithub.com/nodejs/node/commit/edc3e5d056)] - **deps**: update uvwasi to 0.0.21 (Node.js GitHub Bot) [#​52863](https://togithub.com/nodejs/node/pull/52863) - \[[`26b1231ffb`](https://togithub.com/nodejs/node/commit/26b1231ffb)] - **deps**: upgrade npm to 10.7.0 (npm team) [#​52767](https://togithub.com/nodejs/node/pull/52767) - \[[`e6d9fbece2`](https://togithub.com/nodejs/node/commit/e6d9fbece2)] - **doc**: update process.versions properties (ishabi) [#​52736](https://togithub.com/nodejs/node/pull/52736) - \[[`8c1f837c0a`](https://togithub.com/nodejs/node/commit/8c1f837c0a)] - **doc**: remove mold use on mac for speeding up build (Cong Zhang) [#​52252](https://togithub.com/nodejs/node/pull/52252) - \[[`d9c5114694`](https://togithub.com/nodejs/node/commit/d9c5114694)] - **doc**: fix grammatical mistake (codershiba) [#​52808](https://togithub.com/nodejs/node/pull/52808) - \[[`b350f435b7`](https://togithub.com/nodejs/node/commit/b350f435b7)] - **meta**: add mailmap entry for legendecas (Chengzhong Wu) [#​52795](https://togithub.com/nodejs/node/pull/52795) - \[[`61f9f12eff`](https://togithub.com/nodejs/node/commit/61f9f12eff)] - **meta**: bump actions/checkout from 4.1.1 to 4.1.4 (dependabot\[bot]) [#​52787](https://togithub.com/nodejs/node/pull/52787) - \[[`ac563667d6`](https://togithub.com/nodejs/node/commit/ac563667d6)] - **meta**: bump github/codeql-action from 3.24.9 to 3.25.3 (dependabot\[bot]) [#​52786](https://togithub.com/nodejs/node/pull/52786) - \[[`70611d7924`](https://togithub.com/nodejs/node/commit/70611d7924)] - **meta**: bump actions/upload-artifact from 4.3.1 to 4.3.3 (dependabot\[bot]) [#​52785](https://togithub.com/nodejs/node/pull/52785) - \[[`30482ea273`](https://togithub.com/nodejs/node/commit/30482ea273)] - **meta**: bump actions/download-artifact from 4.1.4 to 4.1.7 (dependabot\[bot]) [#​52784](https://togithub.com/nodejs/node/pull/52784) - \[[`d1607cdebb`](https://togithub.com/nodejs/node/commit/d1607cdebb)] - **meta**: bump codecov/codecov-action from 4.1.1 to 4.3.1 (dependabot\[bot]) [#​52783](https://togithub.com/nodejs/node/pull/52783) - \[[`21f1b6bfc3`](https://togithub.com/nodejs/node/commit/21f1b6bfc3)] - **meta**: bump step-security/harden-runner from 2.7.0 to 2.7.1 (dependabot\[bot]) [#​52782](https://togithub.com/nodejs/node/pull/52782) - \[[`0c6019a222`](https://togithub.com/nodejs/node/commit/0c6019a222)] - **meta**: standardize regex (Aviv Keller) [#​52693](https://togithub.com/nodejs/node/pull/52693) - \[[`28d2baa17c`](https://togithub.com/nodejs/node/commit/28d2baa17c)] - **src,permission**: throw async errors on async APIs (Rafael Gonzaga) [#​52730](https://togithub.com/nodejs/node/pull/52730) - \[[`cffd2cc0c9`](https://togithub.com/nodejs/node/commit/cffd2cc0c9)] - ***Revert*** "**stream**: revert fix cloned webstreams not being unref'd" (Marco Ippolito) [#​53144](https://togithub.com/nodejs/node/pull/53144) - \[[`3dd96f1fab`](https://togithub.com/nodejs/node/commit/3dd96f1fab)] - **stream**: implement TransformStream cleanup using "transformer.cancel" (Debadree Chatterjee) [#​50126](https://togithub.com/nodejs/node/pull/50126) - \[[`8e7e778e01`](https://togithub.com/nodejs/node/commit/8e7e778e01)] - **test**: skip v8-updates/test-linux-perf (Michaël Zasso) [#​49639](https://togithub.com/nodejs/node/pull/49639) - \[[`f8e18869e9`](https://togithub.com/nodejs/node/commit/f8e18869e9)] - **test**: replace always-opt flag with alway-turbofan (Michaël Zasso) [#​50115](https://togithub.com/nodejs/node/pull/50115) - \[[`a501860d63`](https://togithub.com/nodejs/node/commit/a501860d63)] - **test_runner**: don't await the same promise for each test (Colin Ihrig) [#​52185](https://togithub.com/nodejs/node/pull/52185) - \[[`e2ae4367f4`](https://togithub.com/nodejs/node/commit/e2ae4367f4)] - **test_runner**: run top level tests in a microtask (Colin Ihrig) [#​52092](https://togithub.com/nodejs/node/pull/52092) - \[[`77e2bf029a`](https://togithub.com/nodejs/node/commit/77e2bf029a)] - **(SEMVER-MINOR)** **test_runner**: support forced exit (Colin Ihrig) [#​52038](https://togithub.com/nodejs/node/pull/52038) - \[[`b7bc63565e`](https://togithub.com/nodejs/node/commit/b7bc63565e)] - **test_runner**: ignore todo flag when running suites (Colin Ihrig) [#​52117](https://togithub.com/nodejs/node/pull/52117) - \[[`be587e3ae3`](https://togithub.com/nodejs/node/commit/be587e3ae3)] - **test_runner**: use paths for test locations (Colin Ihrig) [#​52010](https://togithub.com/nodejs/node/pull/52010) - \[[`743281ab25`](https://togithub.com/nodejs/node/commit/743281ab25)] - **test_runner**: support source mapped test locations (Colin Ihrig) [#​52010](https://togithub.com/nodejs/node/pull/52010) - \[[`4051316d95`](https://togithub.com/nodejs/node/commit/4051316d95)] - **tools**: update lint-md-dependencies to rollup@4.17.0 (Node.js GitHub Bot) [#​52729](https://togithub.com/nodejs/node/pull/52729)
bitnami/charts (postgresql) ### [`v15.5.13`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#15513-2024-07-03) - \[bitnami/postgresql] Release 15.5.13 ([#​27733](https://togithub.com/bitnami/charts/pull/27733)) ### [`v15.5.12`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#15512-2024-07-02) - postgres exporter monitor all databases ([#​27586](https://togithub.com/bitnami/charts/pull/27586)) ### [`v15.5.11`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#15511-2024-06-26) - \[bitnami/postgresql] Release 15.5.11 ([#​27548](https://togithub.com/bitnami/charts/pull/27548)) ### [`v15.5.10`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small15510-2024-06-25-small) - \[bitnami/postgresql] Release 15.5.10 ([#​27521](https://togithub.com/bitnami/charts/issues/27521)) ([59f0aa2](https://togithub.com/bitnami/charts/commit/59f0aa2b948cdcd5a30f3f9111b2d422e0a8b81b)), closes [#​27521](https://togithub.com/bitnami/charts/issues/27521) ### [`v15.5.9`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1559-2024-06-20-small) - \[bitnami/postgresql] Remove deprecated (and removed) annotation ([#​27463](https://togithub.com/bitnami/charts/issues/27463)) ([2907ba0](https://togithub.com/bitnami/charts/commit/2907ba00566e8cc3675865fbf3e43b43702d4998)), closes [#​27463](https://togithub.com/bitnami/charts/issues/27463) ### [`v15.5.8`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1558-2024-06-20-small) - \[bitnami/postgresql] Add pre-init scripts ([#​26467](https://togithub.com/bitnami/charts/issues/26467)) ([0cdafb8](https://togithub.com/bitnami/charts/commit/0cdafb8a29c7bfe22c1781ef10154e11e3a7bd09)), closes [#​26467](https://togithub.com/bitnami/charts/issues/26467) ### [`v15.5.7`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1557-2024-06-18-small) - \[bitnami/postgresql] Release 15.5.7 ([#​27401](https://togithub.com/bitnami/charts/issues/27401)) ([2fff79d](https://togithub.com/bitnami/charts/commit/2fff79d0d54da3680cb8dac3652884c82c314e74)), closes [#​27401](https://togithub.com/bitnami/charts/issues/27401) ### [`v15.5.6`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1556-2024-06-17-small) - \[bitnami/postgresql] Release 15.5.6 ([#​27293](https://togithub.com/bitnami/charts/issues/27293)) ([d36be80](https://togithub.com/bitnami/charts/commit/d36be805cdc81aaa34d197072c112360a7ce99f5)), closes [#​27293](https://togithub.com/bitnami/charts/issues/27293) ### [`v15.5.5`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1555-2024-06-11-small) - \[bitnami/postgresql] Release 15.5.5 ([#​27096](https://togithub.com/bitnami/charts/issues/27096)) ([c84850a](https://togithub.com/bitnami/charts/commit/c84850a09c75ce557f87d33fe9c400f66d3a8d1e)), closes [#​27096](https://togithub.com/bitnami/charts/issues/27096) ### [`v15.5.4`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1554-2024-06-06-small) - \[bitnami/postgresql] Release 15.5.4 ([#​27006](https://togithub.com/bitnami/charts/issues/27006)) ([613a7a4](https://togithub.com/bitnami/charts/commit/613a7a431aa8752cb28ee634c4db0c83ef98e827)), closes [#​27006](https://togithub.com/bitnami/charts/issues/27006) ### [`v15.5.3`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1553-2024-06-06-small) - \[bitnami/postgresql] Release 15.5.3 ([#​26914](https://togithub.com/bitnami/charts/issues/26914)) ([f7df496](https://togithub.com/bitnami/charts/commit/f7df496fce1cb33658e68af08d382287487e5b0b)), closes [#​26914](https://togithub.com/bitnami/charts/issues/26914) ### [`v15.5.1`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1551-2024-05-29-small) - \[bitnami/postgresql] Release 15.5.1 ([#​26546](https://togithub.com/bitnami/charts/issues/26546)) ([99f0841](https://togithub.com/bitnami/charts/commit/99f08414ce828db081402ba37cf48c0ad2624fee)), closes [#​26546](https://togithub.com/bitnami/charts/issues/26546) ### [`v15.5.0`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#1550-2024-05-29) - \[bitnami/postgresql] Enable PodDisruptionBudgets ([#​26530](https://togithub.com/bitnami/charts/issues/26530)) ([c6b2f1c](https://togithub.com/bitnami/charts/commit/c6b2f1cc32e0b9a8d884b61e8dc17f1089366d06)), closes [#​26530](https://togithub.com/bitnami/charts/issues/26530) ### [`v15.4.2`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1542-2024-05-28-small) - \[bitnami/postgresql] Release 15.4.2 ([#​26475](https://togithub.com/bitnami/charts/issues/26475)) ([748b515](https://togithub.com/bitnami/charts/commit/748b51516a41ff8af151a530a0e5e0d9a62808e4)), closes [#​26475](https://togithub.com/bitnami/charts/issues/26475) ### [`v15.4.1`](https://togithub.com/bitnami/charts/blob/HEAD/bitnami/postgresql/CHANGELOG.md#small1541-2024-05-27-small) - \[bitnami/postgresql] Release 15.4.1 ([#​26451](https://togithub.com/bitnami/charts/issues/26451)) ([8852396](https://togithub.com/bitnami/charts/commit/8852396da928e9834a1e4d14c9d1aeb9f61b3b73)), closes [#​26451](https://togithub.com/bitnami/charts/issues/26451)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



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


Thanks for the PR!

Deployments, as required, will be available below:

Please create PRs in draft mode. Mark as ready to enable:

After merge, new images are deployed in: