Commit Graph

373 Commits

Author SHA1 Message Date
TrueCharts Bot 99709c438a fix(website): update prettier 3.6.0 → 3.6.1 (#36650) 2025-06-25 14:17:51 +02:00
TrueCharts Bot c48129299d chore(deps): update node.js v22.16.0 → v22.17.0 (#36641)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [node](https://nodejs.org)
([source](https://redirect.github.com/nodejs/node)) | minor | `22.16.0`
-> `22.17.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

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

###
[`v22.17.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.17.0):
2025-06-24, Version 22.17.0 &#x27;Jod&#x27; (LTS), @&#8203;aduh95

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

##### Notable Changes

##### ⚠️ Deprecations

##### Instantiating `node:http` classes **without `new`**

Constructing classes like `IncomingMessage` or `ServerResponse` without
the `new`
keyword is now discouraged. This clarifies API expectations and aligns
with standard
JavaScript behavior. It may warn or error in future versions.

Contributed by Yagiz Nizipli in
[#&#8203;58518](https://redirect.github.com/nodejs/node/pull/58518).

##### `options.shell = ""` in `node:child_process`

Using an empty string for `shell` previously had undefined behavior.
This change
encourages explicit choices (e.g., `shell: true` or a shell path) and
avoids
relying on implementation quirks.

Contributed by Antoine du Hamel and Renegade334
[#&#8203;58564](https://redirect.github.com/nodejs/node/pull/58564).

##### HTTP/2 priority signaling

The HTTP/2 prioritization API (e.g., `stream.priority`) is now
deprecated due to
poor real-world support. Applications should avoid using priority hints
and expect future removal.

Contributed by Matteo Collina and Antoine du Hamel
[#&#8203;58313](https://redirect.github.com/nodejs/node/pull/58313).

#####  Features graduated to stable

##### `assert.partialDeepStrictEqual()`

This method compares only a subset of properties in deep object
comparisons,
useful for flexible test assertions. Its stabilization means it's now
safe for
general use and won't change unexpectedly in future releases.

Contributed by Ruben Bridgewater in
[#&#8203;57370](https://redirect.github.com/nodejs/node/pull/57370).

##### Miscellaneous

-   `dirent.parentPath`
-   `filehandle.readableWebStream()`
-   `fs.glob()`
-   `fs.openAsBlob()`
-   `node:readline/promises`
-   `port.hasRef()`
-   `readable.compose()`
-   `readable.iterator()`
-   `readable.readableAborted`
-   `readable.readableDidRead`
-   `Duplex.fromWeb()`
-   `Duplex.toWeb()`
-   `Readable.fromWeb()`
-   `Readable.isDisturbed()`
-   `Readable.toWeb()`
-   `stream.isErrored()`
-   `stream.isReadable()`
-   `URL.createObjectURL()`
-   `URL.revokeObjectURL()`
-   `v8.setHeapSnapshotNearHeapLimit()`
-   `Writable.fromWeb()`
-   `Writable.toWeb()`
-   `writable.writableAborted`
-   Startup Snapshot API
-   `ERR_INPUT_TYPE_NOT_ALLOWED`
-   `ERR_UNKNOWN_FILE_EXTENSION`
-   `ERR_UNKNOWN_MODULE_FORMAT`
-   `ERR_USE_AFTER_CLOSE`

Contributed by James M Snell in
[#&#8203;57513](https://redirect.github.com/nodejs/node/pull/57513) and
[#&#8203;58541](https://redirect.github.com/nodejs/node/pull/58541).

##### Semver-minor features

##### 🔧 `fs.FileHandle.readableWebStream` gets `autoClose` option

This gives developers explicit control over whether the file descriptor
should
be closed when the stream ends. Helps avoid subtle resource leaks.

Contributed by James M Snell in
[#&#8203;58548](https://redirect.github.com/nodejs/node/pull/58548).

##### 🔧 `fs.Dir` now supports **explicit resource management**

This improves ergonomics around async iteration of directories.
Developers can
now manually control when a directory is closed using `.close()` or with
`Symbol.asyncDispose`.

Contributed by Antoine du Hamel in
[#&#8203;58206](https://redirect.github.com/nodejs/node/pull/58206).

##### 📊 `http2` gains diagnostics channel: `http2.server.stream.finish`

Adds observability support for when a stream finishes. Useful for
logging,
monitoring, and debugging HTTP/2 behavior without patching internals.

Contributed by Darshan Sen in
[#&#8203;58560](https://redirect.github.com/nodejs/node/pull/58560).

##### 🔐 Permissions: implicit allow-fs-read to entrypoint

Node.js permissions model now allows read access to the entry file by
default.
It makes running permission-restricted apps smoother while preserving
security.

Contributed by Rafael Gonzaga in
[#&#8203;58579](https://redirect.github.com/nodejs/node/pull/58579).

##### 🎨 `util.styleText()` adds `'none'` style

This lets developers remove styling cleanly without hacks. Useful for
overriding
inherited terminal styles when composing styled strings.

Contributed by James M Snell in
[#&#8203;58437](https://redirect.github.com/nodejs/node/pull/58437).

##### 🧑‍💻 Community updates

-
\[[`0105c13556`](https://redirect.github.com/nodejs/node/commit/0105c13556)]
- **doc**: add Filip Skokan to TSC (Rafael Gonzaga)
[#&#8203;58499](https://redirect.github.com/nodejs/node/pull/58499)
-
\[[`3b857735ef`](https://redirect.github.com/nodejs/node/commit/3b857735ef)]
- **doc**: add JonasBa to collaborators (Jonas Badalic)
[#&#8203;58355](https://redirect.github.com/nodejs/node/pull/58355)
-
\[[`fdf7612735`](https://redirect.github.com/nodejs/node/commit/fdf7612735)]
- **doc**: add puskin to collaborators (Giovanni Bucci)
[#&#8203;58308](https://redirect.github.com/nodejs/node/pull/58308)

##### Commits

-
\[[`ffe7e1ace0`](https://redirect.github.com/nodejs/node/commit/ffe7e1ace0)]
- **(SEMVER-MINOR)** **assert**: mark partialDeepStrictEqual() as stable
(Ruben Bridgewater)
[#&#8203;57370](https://redirect.github.com/nodejs/node/pull/57370)
-
\[[`269931f289`](https://redirect.github.com/nodejs/node/commit/269931f289)]
- **async_hooks**: ensure AsyncLocalStore instances work isolated
(Gerhard Stöbich)
[#&#8203;58149](https://redirect.github.com/nodejs/node/pull/58149)
-
\[[`9e0746a4ff`](https://redirect.github.com/nodejs/node/commit/9e0746a4ff)]
- **benchmark**: fix broken fs.cpSync benchmark (Dario Piotrowicz)
[#&#8203;58472](https://redirect.github.com/nodejs/node/pull/58472)
-
\[[`dee8cb5bcb`](https://redirect.github.com/nodejs/node/commit/dee8cb5bcb)]
- **benchmark**: add more options to cp-sync (Sonny)
[#&#8203;58278](https://redirect.github.com/nodejs/node/pull/58278)
-
\[[`e840fd5b85`](https://redirect.github.com/nodejs/node/commit/e840fd5b85)]
- **benchmark**: fix typo in method name for error-stack (Miguel
Marcondes Filho)
[#&#8203;58128](https://redirect.github.com/nodejs/node/pull/58128)
-
\[[`b9a16e97e0`](https://redirect.github.com/nodejs/node/commit/b9a16e97e0)]
- **buffer**: give names to `Buffer.prototype.*Write()` functions (Livia
Medeiros)
[#&#8203;58258](https://redirect.github.com/nodejs/node/pull/58258)
-
\[[`d56a5e40af`](https://redirect.github.com/nodejs/node/commit/d56a5e40af)]
- **buffer**: use constexpr where possible (Yagiz Nizipli)
[#&#8203;58141](https://redirect.github.com/nodejs/node/pull/58141)
-
\[[`215587feca`](https://redirect.github.com/nodejs/node/commit/215587feca)]
- **build**: add support for OpenHarmony operating system (hqzing)
[#&#8203;58350](https://redirect.github.com/nodejs/node/pull/58350)
-
\[[`9bcef6821c`](https://redirect.github.com/nodejs/node/commit/9bcef6821c)]
- **build**: fix uvwasi pkgname (Antoine du Hamel)
[#&#8203;58270](https://redirect.github.com/nodejs/node/pull/58270)
-
\[[`7c3883c2ae`](https://redirect.github.com/nodejs/node/commit/7c3883c2ae)]
- **build**: search for libnode.so in multiple places (Jan Staněk)
[#&#8203;58213](https://redirect.github.com/nodejs/node/pull/58213)
-
\[[`3f954accb3`](https://redirect.github.com/nodejs/node/commit/3f954accb3)]
- **build**: fix pointer compression builds (Joyee Cheung)
[#&#8203;58171](https://redirect.github.com/nodejs/node/pull/58171)
-
\[[`04c8f59f84`](https://redirect.github.com/nodejs/node/commit/04c8f59f84)]
- **build**: use FILE_OFFSET_BITS=64 esp. on 32-bit arch (RafaelGSS)
[#&#8203;58090](https://redirect.github.com/nodejs/node/pull/58090)
-
\[[`8c2cf3a372`](https://redirect.github.com/nodejs/node/commit/8c2cf3a372)]
- **build**: use //third_party/simdutf by default in GN (Shelley Vohr)
[#&#8203;58115](https://redirect.github.com/nodejs/node/pull/58115)
-
\[[`cff8006792`](https://redirect.github.com/nodejs/node/commit/cff8006792)]
- **child_process**: give names to `ChildProcess` functions (Livia
Medeiros)
[#&#8203;58370](https://redirect.github.com/nodejs/node/pull/58370)
-
\[[`6816d779b6`](https://redirect.github.com/nodejs/node/commit/6816d779b6)]
- **child_process**: give names to promisified `exec()` and `execFile()`
(LiviaMedeiros)
[#&#8203;57916](https://redirect.github.com/nodejs/node/pull/57916)
-
\[[`5572cecca4`](https://redirect.github.com/nodejs/node/commit/5572cecca4)]
- **crypto**: expose crypto.constants.OPENSSL_IS_BORINGSSL (Shelley
Vohr)
[#&#8203;58387](https://redirect.github.com/nodejs/node/pull/58387)
-
\[[`d6aa02889c`](https://redirect.github.com/nodejs/node/commit/d6aa02889c)]
- **deps**: use proper C standard when building libuv (Yaksh Bariya)
[#&#8203;58587](https://redirect.github.com/nodejs/node/pull/58587)
-
\[[`375a6413d5`](https://redirect.github.com/nodejs/node/commit/375a6413d5)]
- **deps**: update simdjson to 3.12.3 (Node.js GitHub Bot)
[#&#8203;57682](https://redirect.github.com/nodejs/node/pull/57682)
-
\[[`e0cd138e52`](https://redirect.github.com/nodejs/node/commit/e0cd138e52)]
- **deps**: update googletest to
[`e9092b1`](https://redirect.github.com/nodejs/node/commit/e9092b1)
(Node.js GitHub Bot)
[#&#8203;58565](https://redirect.github.com/nodejs/node/pull/58565)
-
\[[`31e592631f`](https://redirect.github.com/nodejs/node/commit/31e592631f)]
- **deps**: update corepack to 0.33.0 (Node.js GitHub Bot)
[#&#8203;58566](https://redirect.github.com/nodejs/node/pull/58566)
-
\[[`386c24260b`](https://redirect.github.com/nodejs/node/commit/386c24260b)]
- **deps**: update sqlite to 3.50.0 (Node.js GitHub Bot)
[#&#8203;58272](https://redirect.github.com/nodejs/node/pull/58272)
-
\[[`f84998d40b`](https://redirect.github.com/nodejs/node/commit/f84998d40b)]
- **deps**: update OpenSSL gen container to Ubuntu 22.04 (Michaël Zasso)
[#&#8203;58432](https://redirect.github.com/nodejs/node/pull/58432)
-
\[[`d49fd29859`](https://redirect.github.com/nodejs/node/commit/d49fd29859)]
- **deps**: update llhttp to 9.3.0 (Fedor Indutny)
[#&#8203;58144](https://redirect.github.com/nodejs/node/pull/58144)
-
\[[`e397980a1a`](https://redirect.github.com/nodejs/node/commit/e397980a1a)]
- **deps**: update libuv to 1.51.0 (Node.js GitHub Bot)
[#&#8203;58124](https://redirect.github.com/nodejs/node/pull/58124)
-
\[[`a28c33645c`](https://redirect.github.com/nodejs/node/commit/a28c33645c)]
- **dns**: fix dns query cache implementation (Ethan Arrowood)
[#&#8203;58404](https://redirect.github.com/nodejs/node/pull/58404)
-
\[[`6939b0c624`](https://redirect.github.com/nodejs/node/commit/6939b0c624)]
- **doc**: fix the order of `process.md` sections (Allon Murienik)
[#&#8203;58403](https://redirect.github.com/nodejs/node/pull/58403)
-
\[[`1ca253c363`](https://redirect.github.com/nodejs/node/commit/1ca253c363)]
- **doc**: add support link for panva (Filip Skokan)
[#&#8203;58591](https://redirect.github.com/nodejs/node/pull/58591)
-
\[[`8319edbcf6`](https://redirect.github.com/nodejs/node/commit/8319edbcf6)]
- **doc**: update metadata for \_transformState deprecation (James M
Snell)
[#&#8203;58530](https://redirect.github.com/nodejs/node/pull/58530)
-
\[[`697d258136`](https://redirect.github.com/nodejs/node/commit/697d258136)]
- **doc**: deprecate passing an empty string to `options.shell` (Antoine
du Hamel)
[#&#8203;58564](https://redirect.github.com/nodejs/node/pull/58564)
-
\[[`132fc804e8`](https://redirect.github.com/nodejs/node/commit/132fc804e8)]
- **doc**: correct formatting of example definitions for `--test-shard`
(Jacob Smith)
[#&#8203;58571](https://redirect.github.com/nodejs/node/pull/58571)
-
\[[`7d0df646f6`](https://redirect.github.com/nodejs/node/commit/7d0df646f6)]
- **doc**: clarify DEP0194 scope (Antoine du Hamel)
[#&#8203;58504](https://redirect.github.com/nodejs/node/pull/58504)
-
\[[`1e6d7da0ce`](https://redirect.github.com/nodejs/node/commit/1e6d7da0ce)]
- **doc**: deprecate HTTP/2 priority signaling (Matteo Collina)
[#&#8203;58313](https://redirect.github.com/nodejs/node/pull/58313)
-
\[[`5a917bc1d0`](https://redirect.github.com/nodejs/node/commit/5a917bc1d0)]
- **doc**: explain child_process code and signal null values everywhere
(Darshan Sen)
[#&#8203;58479](https://redirect.github.com/nodejs/node/pull/58479)
-
\[[`0105c13556`](https://redirect.github.com/nodejs/node/commit/0105c13556)]
- **doc**: add Filip Skokan to TSC (Rafael Gonzaga)
[#&#8203;58499](https://redirect.github.com/nodejs/node/pull/58499)
-
\[[`2bdc87cd64`](https://redirect.github.com/nodejs/node/commit/2bdc87cd64)]
- **doc**: update `git node release` example (Antoine du Hamel)
[#&#8203;58475](https://redirect.github.com/nodejs/node/pull/58475)
-
\[[`28f9b43186`](https://redirect.github.com/nodejs/node/commit/28f9b43186)]
- **doc**: add missing options.info for ZstdOptions (Jimmy Leung)
[#&#8203;58360](https://redirect.github.com/nodejs/node/pull/58360)
-
\[[`e19496dfc1`](https://redirect.github.com/nodejs/node/commit/e19496dfc1)]
- **doc**: add missing options.info for BrotliOptions (Jimmy Leung)
[#&#8203;58359](https://redirect.github.com/nodejs/node/pull/58359)
-
\[[`7f905863db`](https://redirect.github.com/nodejs/node/commit/7f905863db)]
- **doc**: clarify x509.checkIssued only checks metadata (Filip Skokan)
[#&#8203;58457](https://redirect.github.com/nodejs/node/pull/58457)
-
\[[`5cc97df637`](https://redirect.github.com/nodejs/node/commit/5cc97df637)]
- **doc**: add links to parent class for `node:zlib` classes (Antoine du
Hamel)
[#&#8203;58433](https://redirect.github.com/nodejs/node/pull/58433)
-
\[[`36e0d5539b`](https://redirect.github.com/nodejs/node/commit/36e0d5539b)]
- **doc**: remove remaining uses of `@@&#8203;wellknown` syntax (René)
[#&#8203;58413](https://redirect.github.com/nodejs/node/pull/58413)
-
\[[`2f36f8e863`](https://redirect.github.com/nodejs/node/commit/2f36f8e863)]
- **doc**: clarify behavior of --watch-path and --watch flags (Juan
Ignacio Benito)
[#&#8203;58136](https://redirect.github.com/nodejs/node/pull/58136)
-
\[[`3b857735ef`](https://redirect.github.com/nodejs/node/commit/3b857735ef)]
- **doc**: add JonasBa to collaborators (Jonas Badalic)
[#&#8203;58355](https://redirect.github.com/nodejs/node/pull/58355)
-
\[[`9d5e969bb6`](https://redirect.github.com/nodejs/node/commit/9d5e969bb6)]
- **doc**: add latest security release steward (Rafael Gonzaga)
[#&#8203;58339](https://redirect.github.com/nodejs/node/pull/58339)
-
\[[`b22bb03167`](https://redirect.github.com/nodejs/node/commit/b22bb03167)]
- **doc**: fix CryptoKey.algorithm type and other interfaces in
webcrypto.md (Filip Skokan)
[#&#8203;58294](https://redirect.github.com/nodejs/node/pull/58294)
-
\[[`670f31060b`](https://redirect.github.com/nodejs/node/commit/670f31060b)]
- **doc**: mark the callback argument of crypto.generatePrime as
mandatory (Allon Murienik)
[#&#8203;58299](https://redirect.github.com/nodejs/node/pull/58299)
-
\[[`39d9a61239`](https://redirect.github.com/nodejs/node/commit/39d9a61239)]
- **doc**: remove comma delimiter mention on permissions doc (Rafael
Gonzaga)
[#&#8203;58297](https://redirect.github.com/nodejs/node/pull/58297)
-
\[[`573b0b7bfe`](https://redirect.github.com/nodejs/node/commit/573b0b7bfe)]
- **doc**: make Stability labels not sticky in Stability index (Livia
Medeiros)
[#&#8203;58291](https://redirect.github.com/nodejs/node/pull/58291)
-
\[[`a5a686a3ae`](https://redirect.github.com/nodejs/node/commit/a5a686a3ae)]
- **doc**: update commit-queue documentation (Dario Piotrowicz)
[#&#8203;58275](https://redirect.github.com/nodejs/node/pull/58275)
-
\[[`fdf7612735`](https://redirect.github.com/nodejs/node/commit/fdf7612735)]
- **doc**: add puskin to collaborators (Giovanni Bucci)
[#&#8203;58308](https://redirect.github.com/nodejs/node/pull/58308)
-
\[[`be492a1708`](https://redirect.github.com/nodejs/node/commit/be492a1708)]
- **doc**: update stability status for diagnostics_channel to
experimental (Idan Goshen)
[#&#8203;58261](https://redirect.github.com/nodejs/node/pull/58261)
-
\[[`7d00fc2206`](https://redirect.github.com/nodejs/node/commit/7d00fc2206)]
- **doc**: clarify napi_get_value_string_\* for bufsize 0 (Tobias
Nießen)
[#&#8203;58158](https://redirect.github.com/nodejs/node/pull/58158)
-
\[[`c8500a2c4a`](https://redirect.github.com/nodejs/node/commit/c8500a2c4a)]
- **doc**: fix typo of file `http.md`, `outgoingMessage.setTimeout`
section (yusheng chen)
[#&#8203;58188](https://redirect.github.com/nodejs/node/pull/58188)
-
\[[`34a9b856c3`](https://redirect.github.com/nodejs/node/commit/34a9b856c3)]
- **doc**: update return types for eventNames method in EventEmitter
(Yukihiro Hasegawa)
[#&#8203;58083](https://redirect.github.com/nodejs/node/pull/58083)
-
\[[`faedee59d2`](https://redirect.github.com/nodejs/node/commit/faedee59d2)]
- **doc**: fix typo in benchmark script path (Miguel Marcondes Filho)
[#&#8203;58129](https://redirect.github.com/nodejs/node/pull/58129)
-
\[[`570d8d3f10`](https://redirect.github.com/nodejs/node/commit/570d8d3f10)]
- **doc**: clarify future Corepack removal in v25+ (Trivikram Kamat)
[#&#8203;57825](https://redirect.github.com/nodejs/node/pull/57825)
-
\[[`a71b9fc2ff`](https://redirect.github.com/nodejs/node/commit/a71b9fc2ff)]
- **doc**: mark multiple APIs stable (James M Snell)
[#&#8203;57513](https://redirect.github.com/nodejs/node/pull/57513)
-
\[[`73a97d47f3`](https://redirect.github.com/nodejs/node/commit/73a97d47f3)]
- **doc,lib**: update source map links to ECMA426 (Chengzhong Wu)
[#&#8203;58597](https://redirect.github.com/nodejs/node/pull/58597)
-
\[[`8b41429499`](https://redirect.github.com/nodejs/node/commit/8b41429499)]
- **doc,src,test**: fix typos (Noritaka Kobayashi)
[#&#8203;58477](https://redirect.github.com/nodejs/node/pull/58477)
-
\[[`0cea14ec7f`](https://redirect.github.com/nodejs/node/commit/0cea14ec7f)]
- **errors**: show url of unsupported attributes in the error message
(Aditi)
[#&#8203;58303](https://redirect.github.com/nodejs/node/pull/58303)
-
\[[`b9586bf898`](https://redirect.github.com/nodejs/node/commit/b9586bf898)]
- **(SEMVER-MINOR)** **fs**: add autoClose option to FileHandle
readableWebStream (James M Snell)
[#&#8203;58548](https://redirect.github.com/nodejs/node/pull/58548)
-
\[[`72a1b061f3`](https://redirect.github.com/nodejs/node/commit/72a1b061f3)]
- **fs**: unexpose internal constants (Chengzhong Wu)
[#&#8203;58327](https://redirect.github.com/nodejs/node/pull/58327)
-
\[[`5c36510dec`](https://redirect.github.com/nodejs/node/commit/5c36510dec)]
- **fs**: add support for `URL` for `fs.glob`'s `cwd` option (Antoine du
Hamel)
[#&#8203;58182](https://redirect.github.com/nodejs/node/pull/58182)
-
\[[`3642b0d944`](https://redirect.github.com/nodejs/node/commit/3642b0d944)]
- **fs**: improve cpSync no-filter copyDir performance (Dario
Piotrowicz)
[#&#8203;58461](https://redirect.github.com/nodejs/node/pull/58461)
-
\[[`24865bc7e8`](https://redirect.github.com/nodejs/node/commit/24865bc7e8)]
- **fs**: improve `cpSync` dest overriding performance (Dario
Piotrowicz)
[#&#8203;58160](https://redirect.github.com/nodejs/node/pull/58160)
-
\[[`1b3847694d`](https://redirect.github.com/nodejs/node/commit/1b3847694d)]
- **(SEMVER-MINOR)** **fs**: add to `Dir` support for explicit resource
management (Antoine du Hamel)
[#&#8203;58206](https://redirect.github.com/nodejs/node/pull/58206)
-
\[[`cff62e3265`](https://redirect.github.com/nodejs/node/commit/cff62e3265)]
- **fs**: ensure `dir.read()` does not throw synchronously (Antoine du
Hamel)
[#&#8203;58228](https://redirect.github.com/nodejs/node/pull/58228)
-
\[[`cb39e4ca1f`](https://redirect.github.com/nodejs/node/commit/cb39e4ca1f)]
- **fs**: glob is stable, so should not emit experimental warnings (Théo
LUDWIG)
[#&#8203;58236](https://redirect.github.com/nodejs/node/pull/58236)
-
\[[`597bfefbe1`](https://redirect.github.com/nodejs/node/commit/597bfefbe1)]
- **http**: deprecate instantiating classes without new (Yagiz Nizipli)
[#&#8203;58518](https://redirect.github.com/nodejs/node/pull/58518)
-
\[[`5298da0102`](https://redirect.github.com/nodejs/node/commit/5298da0102)]
- **http**: remove unused functions and add todos (Yagiz Nizipli)
[#&#8203;58143](https://redirect.github.com/nodejs/node/pull/58143)
-
\[[`cff440e0fa`](https://redirect.github.com/nodejs/node/commit/cff440e0fa)]
- **http,https**: give names to anonymous or misnamed functions (Livia
Medeiros)
[#&#8203;58180](https://redirect.github.com/nodejs/node/pull/58180)
-
\[[`43bf1f619a`](https://redirect.github.com/nodejs/node/commit/43bf1f619a)]
- **http2**: add raw header array support to h2Session.request() (Tim
Perry)
[#&#8203;57917](https://redirect.github.com/nodejs/node/pull/57917)
-
\[[`e8a0f5b063`](https://redirect.github.com/nodejs/node/commit/e8a0f5b063)]
- **http2**: add lenient flag for RFC-9113 (Carlos Fuentes)
[#&#8203;58116](https://redirect.github.com/nodejs/node/pull/58116)
-
\[[`49cb90d4a5`](https://redirect.github.com/nodejs/node/commit/49cb90d4a5)]
- **(SEMVER-MINOR)** **http2**: add diagnostics channel
'http2.server.stream.finish' (Darshan Sen)
[#&#8203;58560](https://redirect.github.com/nodejs/node/pull/58560)
-
\[[`6a56c68728`](https://redirect.github.com/nodejs/node/commit/6a56c68728)]
- **http2**: add diagnostics channel 'http2.server.stream.error'
(Darshan Sen)
[#&#8203;58512](https://redirect.github.com/nodejs/node/pull/58512)
-
\[[`59806b41d3`](https://redirect.github.com/nodejs/node/commit/59806b41d3)]
- **http2**: add diagnostics channel 'http2.server.stream.start'
(Darshan Sen)
[#&#8203;58449](https://redirect.github.com/nodejs/node/pull/58449)
-
\[[`d3d662ae47`](https://redirect.github.com/nodejs/node/commit/d3d662ae47)]
- **http2**: remove no longer userful options.selectPadding (Jimmy
Leung)
[#&#8203;58373](https://redirect.github.com/nodejs/node/pull/58373)
-
\[[`dec6c9af8c`](https://redirect.github.com/nodejs/node/commit/dec6c9af8c)]
- **http2**: add diagnostics channel 'http2.server.stream.created'
(Darshan Sen)
[#&#8203;58390](https://redirect.github.com/nodejs/node/pull/58390)
-
\[[`9e98899986`](https://redirect.github.com/nodejs/node/commit/9e98899986)]
- **http2**: add diagnostics channel 'http2.client.stream.close'
(Darshan Sen)
[#&#8203;58329](https://redirect.github.com/nodejs/node/pull/58329)
-
\[[`86610389d8`](https://redirect.github.com/nodejs/node/commit/86610389d8)]
- **http2**: add diagnostics channel 'http2.client.stream.finish'
(Darshan Sen)
[#&#8203;58317](https://redirect.github.com/nodejs/node/pull/58317)
-
\[[`2d3071671e`](https://redirect.github.com/nodejs/node/commit/2d3071671e)]
- **http2**: add diagnostics channel 'http2.client.stream.error'
(Darshan Sen)
[#&#8203;58306](https://redirect.github.com/nodejs/node/pull/58306)
-
\[[`6c3e426d6f`](https://redirect.github.com/nodejs/node/commit/6c3e426d6f)]
- **http2**: add diagnostics channel 'http2.client.stream.start'
(Darshan Sen)
[#&#8203;58292](https://redirect.github.com/nodejs/node/pull/58292)
-
\[[`b99d131a61`](https://redirect.github.com/nodejs/node/commit/b99d131a61)]
- **http2**: add diagnostics channel 'http2.client.stream.created'
(Darshan Sen)
[#&#8203;58246](https://redirect.github.com/nodejs/node/pull/58246)
-
\[[`b0644330f5`](https://redirect.github.com/nodejs/node/commit/b0644330f5)]
- **http2**: give name to promisified `connect()` (LiviaMedeiros)
[#&#8203;57916](https://redirect.github.com/nodejs/node/pull/57916)
-
\[[`4092d3611a`](https://redirect.github.com/nodejs/node/commit/4092d3611a)]
- **inspector**: add mimeType and charset support to Network.Response
(Shima Ryuhei)
[#&#8203;58192](https://redirect.github.com/nodejs/node/pull/58192)
-
\[[`d7d8599f7c`](https://redirect.github.com/nodejs/node/commit/d7d8599f7c)]
- **inspector**: add protocol method Network.dataReceived (Chengzhong
Wu) [#&#8203;58001](https://redirect.github.com/nodejs/node/pull/58001)
-
\[[`aabafbc28f`](https://redirect.github.com/nodejs/node/commit/aabafbc28f)]
- **inspector**: support for worker inspection in chrome devtools (Shima
Ryuhei)
[#&#8203;56759](https://redirect.github.com/nodejs/node/pull/56759)
-
\[[`20d978de9a`](https://redirect.github.com/nodejs/node/commit/20d978de9a)]
- **lib**: make ERM functions into wrappers returning undefined (Livia
Medeiros)
[#&#8203;58400](https://redirect.github.com/nodejs/node/pull/58400)
-
\[[`13567eac5f`](https://redirect.github.com/nodejs/node/commit/13567eac5f)]
- **(SEMVER-MINOR)** **lib**: graduate error codes that have been around
for years (James M Snell)
[#&#8203;58541](https://redirect.github.com/nodejs/node/pull/58541)
-
\[[`342b5a0d7a`](https://redirect.github.com/nodejs/node/commit/342b5a0d7a)]
- **lib**: remove no-mixed-operators eslint rule (Ruben Bridgewater)
[#&#8203;58375](https://redirect.github.com/nodejs/node/pull/58375)
-
\[[`af7baef75a`](https://redirect.github.com/nodejs/node/commit/af7baef75a)]
- **lib**: fix sourcemaps with ts module mocking (Marco Ippolito)
[#&#8203;58193](https://redirect.github.com/nodejs/node/pull/58193)
-
\[[`8f73f42d4e`](https://redirect.github.com/nodejs/node/commit/8f73f42d4e)]
- **meta**: bump github/codeql-action from 3.28.16 to 3.28.18
(dependabot\[bot])
[#&#8203;58552](https://redirect.github.com/nodejs/node/pull/58552)
-
\[[`5dfedbeb86`](https://redirect.github.com/nodejs/node/commit/5dfedbeb86)]
- **meta**: bump codecov/codecov-action from 5.4.2 to 5.4.3
(dependabot\[bot])
[#&#8203;58551](https://redirect.github.com/nodejs/node/pull/58551)
-
\[[`53c50f66f5`](https://redirect.github.com/nodejs/node/commit/53c50f66f5)]
- **meta**: bump step-security/harden-runner from 2.11.0 to 2.12.0
(dependabot\[bot])
[#&#8203;58109](https://redirect.github.com/nodejs/node/pull/58109)
-
\[[`a1a7024831`](https://redirect.github.com/nodejs/node/commit/a1a7024831)]
- **meta**: bump ossf/scorecard-action from 2.4.1 to 2.4.2
(dependabot\[bot])
[#&#8203;58550](https://redirect.github.com/nodejs/node/pull/58550)
-
\[[`a379988ef6`](https://redirect.github.com/nodejs/node/commit/a379988ef6)]
- **meta**: bump rtCamp/action-slack-notify from 2.3.2 to 2.3.3
(dependabot\[bot])
[#&#8203;58108](https://redirect.github.com/nodejs/node/pull/58108)
-
\[[`f6a46c87f2`](https://redirect.github.com/nodejs/node/commit/f6a46c87f2)]
- **meta**: move one or more collaborators to emeritus (Node.js GitHub
Bot) [#&#8203;58456](https://redirect.github.com/nodejs/node/pull/58456)
-
\[[`98b6aa0dcd`](https://redirect.github.com/nodejs/node/commit/98b6aa0dcd)]
- **meta**: bump github/codeql-action from 3.28.11 to 3.28.16
(dependabot\[bot])
[#&#8203;58112](https://redirect.github.com/nodejs/node/pull/58112)
-
\[[`5202b262e3`](https://redirect.github.com/nodejs/node/commit/5202b262e3)]
- **meta**: bump codecov/codecov-action from 5.4.0 to 5.4.2
(dependabot\[bot])
[#&#8203;58110](https://redirect.github.com/nodejs/node/pull/58110)
-
\[[`d97616ac6e`](https://redirect.github.com/nodejs/node/commit/d97616ac6e)]
- **meta**: bump actions/download-artifact from 4.2.1 to 4.3.0
(dependabot\[bot])
[#&#8203;58106](https://redirect.github.com/nodejs/node/pull/58106)
-
\[[`f4065074cf`](https://redirect.github.com/nodejs/node/commit/f4065074cf)]
- **meta**: ignore mailmap changes in linux ci (Jonas Badalic)
[#&#8203;58356](https://redirect.github.com/nodejs/node/pull/58356)
-
\[[`e6d1224e54`](https://redirect.github.com/nodejs/node/commit/e6d1224e54)]
- **meta**: bump actions/setup-node from 4.3.0 to 4.4.0
(dependabot\[bot])
[#&#8203;58111](https://redirect.github.com/nodejs/node/pull/58111)
-
\[[`26da160ab2`](https://redirect.github.com/nodejs/node/commit/26da160ab2)]
- **meta**: bump actions/setup-python from 5.5.0 to 5.6.0
(dependabot\[bot])
[#&#8203;58107](https://redirect.github.com/nodejs/node/pull/58107)
-
\[[`4cc4195493`](https://redirect.github.com/nodejs/node/commit/4cc4195493)]
- **module**: handle instantiated async module jobs in require(esm)
(Joyee Cheung)
[#&#8203;58067](https://redirect.github.com/nodejs/node/pull/58067)
-
\[[`72fac71b92`](https://redirect.github.com/nodejs/node/commit/72fac71b92)]
- **module**: clarify cjs global-like error on ModuleJobSync (Carlos
Espa)
[#&#8203;56491](https://redirect.github.com/nodejs/node/pull/56491)
-
\[[`fecd841c93`](https://redirect.github.com/nodejs/node/commit/fecd841c93)]
- **net**: always publish to 'net.client.socket' diagnostics channel
(Darshan Sen)
[#&#8203;58349](https://redirect.github.com/nodejs/node/pull/58349)
-
\[[`25ee328d2b`](https://redirect.github.com/nodejs/node/commit/25ee328d2b)]
- **path**: improve path.resolve() performance when used as
process.cwd() (Ruben Bridgewater)
[#&#8203;58362](https://redirect.github.com/nodejs/node/pull/58362)
-
\[[`6fd1b23260`](https://redirect.github.com/nodejs/node/commit/6fd1b23260)]
- **permission**: remove useless conditional (Juan José)
[#&#8203;58514](https://redirect.github.com/nodejs/node/pull/58514)
-
\[[`5b2cca51a3`](https://redirect.github.com/nodejs/node/commit/5b2cca51a3)]
- **report**: use uv_getrusage_thread in report (theanarkh)
[#&#8203;58405](https://redirect.github.com/nodejs/node/pull/58405)
-
\[[`63ec23e84b`](https://redirect.github.com/nodejs/node/commit/63ec23e84b)]
- **sqlite**: add build option to build without sqlite (Michael Dawson)
[#&#8203;58122](https://redirect.github.com/nodejs/node/pull/58122)
-
\[[`9d8677bff5`](https://redirect.github.com/nodejs/node/commit/9d8677bff5)]
- **sqlite**: handle thrown errors in result callback (Colin Ihrig)
[#&#8203;58426](https://redirect.github.com/nodejs/node/pull/58426)
-
\[[`3490c75760`](https://redirect.github.com/nodejs/node/commit/3490c75760)]
- **sqlite**: set `name` and `length` on `sqlite.backup()` (Livia
Medeiros)
[#&#8203;58251](https://redirect.github.com/nodejs/node/pull/58251)
-
\[[`50bdd94e0b`](https://redirect.github.com/nodejs/node/commit/50bdd94e0b)]
- **src**: update std::vector\<v8::Local\<T>> to use v8::LocalVector\<T>
(Aditi)
[#&#8203;58500](https://redirect.github.com/nodejs/node/pull/58500)
-
\[[`7de58417cc`](https://redirect.github.com/nodejs/node/commit/7de58417cc)]
- **src**: env_vars caching and local variable scope optimization (Mert
Can Altin)
[#&#8203;57624](https://redirect.github.com/nodejs/node/pull/57624)
-
\[[`6d99ec33a4`](https://redirect.github.com/nodejs/node/commit/6d99ec33a4)]
- **src**: fix FIPS init error handling (Tobias Nießen)
[#&#8203;58379](https://redirect.github.com/nodejs/node/pull/58379)
-
\[[`4c23a9575e`](https://redirect.github.com/nodejs/node/commit/4c23a9575e)]
- **src**: fix possible dereference of null pointer (Eusgor)
[#&#8203;58459](https://redirect.github.com/nodejs/node/pull/58459)
-
\[[`eb143e902b`](https://redirect.github.com/nodejs/node/commit/eb143e902b)]
- **src**: fix -Wreturn-stack-address error (Shelley Vohr)
[#&#8203;58439](https://redirect.github.com/nodejs/node/pull/58439)
-
\[[`31058b8785`](https://redirect.github.com/nodejs/node/commit/31058b8785)]
- **src**: reorganize ContextifyFunction methods (Chengzhong Wu)
[#&#8203;58434](https://redirect.github.com/nodejs/node/pull/58434)
-
\[[`7521077299`](https://redirect.github.com/nodejs/node/commit/7521077299)]
- **src**: improve CompileFunctionAndCacheResult error handling
(Chengzhong Wu)
[#&#8203;58434](https://redirect.github.com/nodejs/node/pull/58434)
-
\[[`0c9efccb12`](https://redirect.github.com/nodejs/node/commit/0c9efccb12)]
- **src**: fix build when using shared simdutf (Antoine du Hamel)
[#&#8203;58407](https://redirect.github.com/nodejs/node/pull/58407)
-
\[[`aa00f5946f`](https://redirect.github.com/nodejs/node/commit/aa00f5946f)]
- **src**: add a variant of ToV8Value() for primitive arrays (Aditi)
[#&#8203;57576](https://redirect.github.com/nodejs/node/pull/57576)
-
\[[`29a11506fc`](https://redirect.github.com/nodejs/node/commit/29a11506fc)]
- **src**: remove unused `checkMessagePort` internal binding (Dario
Piotrowicz)
[#&#8203;58267](https://redirect.github.com/nodejs/node/pull/58267)
-
\[[`0ce3feed5b`](https://redirect.github.com/nodejs/node/commit/0ce3feed5b)]
- **src**: remove unused `shouldRetryAsESM` internal binding (Dario
Piotrowicz)
[#&#8203;58265](https://redirect.github.com/nodejs/node/pull/58265)
-
\[[`517219613d`](https://redirect.github.com/nodejs/node/commit/517219613d)]
- **src**: add a couple fast apis in node_os (James M Snell)
[#&#8203;58210](https://redirect.github.com/nodejs/node/pull/58210)
-
\[[`3f834da09e`](https://redirect.github.com/nodejs/node/commit/3f834da09e)]
- **src**: fix module buffer allocation (X-BW)
[#&#8203;57738](https://redirect.github.com/nodejs/node/pull/57738)
-
\[[`a793706db0`](https://redirect.github.com/nodejs/node/commit/a793706db0)]
- **src**: remove overzealous tcsetattr error check (Ben Noordhuis)
[#&#8203;58200](https://redirect.github.com/nodejs/node/pull/58200)
-
\[[`5656c74517`](https://redirect.github.com/nodejs/node/commit/5656c74517)]
- **src**: remove NonCopyableMaybe (Tobias Nießen)
[#&#8203;58168](https://redirect.github.com/nodejs/node/pull/58168)
-
\[[`cab242334b`](https://redirect.github.com/nodejs/node/commit/cab242334b)]
- **src**: improve parsing of boolean options (Edy Silva)
[#&#8203;58039](https://redirect.github.com/nodejs/node/pull/58039)
-
\[[`a5df778150`](https://redirect.github.com/nodejs/node/commit/a5df778150)]
- **src,lib**: obtain sourceURL in magic comments from V8 (Chengzhong
Wu) [#&#8203;58389](https://redirect.github.com/nodejs/node/pull/58389)
-
\[[`bd6743b434`](https://redirect.github.com/nodejs/node/commit/bd6743b434)]
- **src,permission**: implicit allow-fs-read to app entrypoint (Rafael
Gonzaga)
[#&#8203;58579](https://redirect.github.com/nodejs/node/pull/58579)
-
\[[`5bd99e4a4d`](https://redirect.github.com/nodejs/node/commit/5bd99e4a4d)]
- **stream**: making DecompressionStream spec compilent for trailing
junk (0hm☘️)
[#&#8203;58316](https://redirect.github.com/nodejs/node/pull/58316)
-
\[[`6582b19488`](https://redirect.github.com/nodejs/node/commit/6582b19488)]
- **test**: reduce flakiness in test-heapdump-http2 (Joyee Cheung)
[#&#8203;58148](https://redirect.github.com/nodejs/node/pull/58148)
-
\[[`0f6a262744`](https://redirect.github.com/nodejs/node/commit/0f6a262744)]
- **test**: improve flakiness detection on stack corruption tests
(Darshan Sen)
[#&#8203;58601](https://redirect.github.com/nodejs/node/pull/58601)
-
\[[`983affaea2`](https://redirect.github.com/nodejs/node/commit/983affaea2)]
- **test**: mark timeouts & flaky test as flaky on IBM i (Abdirahim
Musse)
[#&#8203;58583](https://redirect.github.com/nodejs/node/pull/58583)
-
\[[`3603362b6f`](https://redirect.github.com/nodejs/node/commit/3603362b6f)]
- **test**: rewrite test-child-process-spawn-args (Michaël Zasso)
[#&#8203;58546](https://redirect.github.com/nodejs/node/pull/58546)
-
\[[`93900b0c17`](https://redirect.github.com/nodejs/node/commit/93900b0c17)]
- **test**: make sqlite-database-sync tests work with system sqlite
(Jelle Licht)
[#&#8203;58507](https://redirect.github.com/nodejs/node/pull/58507)
-
\[[`7d505f4185`](https://redirect.github.com/nodejs/node/commit/7d505f4185)]
- **test**: force slow JSON.stringify path for overflow (Shelley Vohr)
[#&#8203;58181](https://redirect.github.com/nodejs/node/pull/58181)
-
\[[`2e8570b8f9`](https://redirect.github.com/nodejs/node/commit/2e8570b8f9)]
- **test**: account for truthy signal in flaky async_hooks tests
(Darshan Sen)
[#&#8203;58478](https://redirect.github.com/nodejs/node/pull/58478)
-
\[[`1f1e194c0f`](https://redirect.github.com/nodejs/node/commit/1f1e194c0f)]
- **test**: update WPT for WebCryptoAPI to
[`591c95c`](https://redirect.github.com/nodejs/node/commit/591c95ce61)
(Node.js GitHub Bot)
[#&#8203;58176](https://redirect.github.com/nodejs/node/pull/58176)
-
\[[`d822632d91`](https://redirect.github.com/nodejs/node/commit/d822632d91)]
- **test**: remove --no-warnings flag (Tobias Nießen)
[#&#8203;58424](https://redirect.github.com/nodejs/node/pull/58424)
-
\[[`01377713d7`](https://redirect.github.com/nodejs/node/commit/01377713d7)]
- **test**: add tests ensuring worker threads cannot access internals
(Joe)
[#&#8203;58332](https://redirect.github.com/nodejs/node/pull/58332)
-
\[[`99a20902fc`](https://redirect.github.com/nodejs/node/commit/99a20902fc)]
- **test**: leverage process.features.openssl_is_boringssl in test
(Shelley Vohr)
[#&#8203;58421](https://redirect.github.com/nodejs/node/pull/58421)
-
\[[`b3e0cf1b15`](https://redirect.github.com/nodejs/node/commit/b3e0cf1b15)]
- **test**: fix test-buffer-tostring-range on allocation failure (Joyee
Cheung)
[#&#8203;58416](https://redirect.github.com/nodejs/node/pull/58416)
-
\[[`1d4b3451c5`](https://redirect.github.com/nodejs/node/commit/1d4b3451c5)]
- **test**: skip in test-buffer-tostring-rangeerror on allocation
failure (Joyee Cheung)
[#&#8203;58415](https://redirect.github.com/nodejs/node/pull/58415)
-
\[[`612c393c71`](https://redirect.github.com/nodejs/node/commit/612c393c71)]
- **test**: fix missing edge case in test-blob-slice-with-large-size
(Joyee Cheung)
[#&#8203;58414](https://redirect.github.com/nodejs/node/pull/58414)
-
\[[`b11b9cdad8`](https://redirect.github.com/nodejs/node/commit/b11b9cdad8)]
- **test**: make crypto tests work with BoringSSL (Shelley Vohr)
[#&#8203;58117](https://redirect.github.com/nodejs/node/pull/58117)
-
\[[`99711ee548`](https://redirect.github.com/nodejs/node/commit/99711ee548)]
- **test**: test reordering of setAAD and setAuthTag (Tobias Nießen)
[#&#8203;58396](https://redirect.github.com/nodejs/node/pull/58396)
-
\[[`828aaaa3f7`](https://redirect.github.com/nodejs/node/commit/828aaaa3f7)]
- **test**: switch from deprecated `optparse` to `argparse` (Aviv
Keller)
[#&#8203;58224](https://redirect.github.com/nodejs/node/pull/58224)
-
\[[`9af305408e`](https://redirect.github.com/nodejs/node/commit/9af305408e)]
- **test**: do not skip OCB decryption in FIPS mode (Tobias Nießen)
[#&#8203;58382](https://redirect.github.com/nodejs/node/pull/58382)
-
\[[`9527c876bf`](https://redirect.github.com/nodejs/node/commit/9527c876bf)]
- **test**: show more information in test-http2-debug upon failure
(Joyee Cheung)
[#&#8203;58391](https://redirect.github.com/nodejs/node/pull/58391)
-
\[[`9be0601112`](https://redirect.github.com/nodejs/node/commit/9be0601112)]
- **test**: remove loop over single element (Tobias Nießen)
[#&#8203;58368](https://redirect.github.com/nodejs/node/pull/58368)
-
\[[`40a03d3d14`](https://redirect.github.com/nodejs/node/commit/40a03d3d14)]
- **test**: add chacha20-poly1305 to auth tag order test (Tobias Nießen)
[#&#8203;58367](https://redirect.github.com/nodejs/node/pull/58367)
-
\[[`cccb15df7e`](https://redirect.github.com/nodejs/node/commit/cccb15df7e)]
- **test**: skip wasm-allocation tests for pointer compression builds
(Joyee Cheung)
[#&#8203;58171](https://redirect.github.com/nodejs/node/pull/58171)
-
\[[`f18041ae8e`](https://redirect.github.com/nodejs/node/commit/f18041ae8e)]
- **test**: remove references to create(De|C)ipher (Tobias Nießen)
[#&#8203;58363](https://redirect.github.com/nodejs/node/pull/58363)
-
\[[`ca8d66c1fc`](https://redirect.github.com/nodejs/node/commit/ca8d66c1fc)]
- **test**: remove unnecessary `console.log` from test-repl-null-thrown
(Dario Piotrowicz)
[#&#8203;58281](https://redirect.github.com/nodejs/node/pull/58281)
-
\[[`455372023d`](https://redirect.github.com/nodejs/node/commit/455372023d)]
- **test**: allow `tmpDir.path` to be modified (Aviv Keller)
[#&#8203;58173](https://redirect.github.com/nodejs/node/pull/58173)
-
\[[`1f1fab60c7`](https://redirect.github.com/nodejs/node/commit/1f1fab60c7)]
- **test**: fix executable flags (Livia Medeiros)
[#&#8203;58250](https://redirect.github.com/nodejs/node/pull/58250)
-
\[[`8bafc0f061`](https://redirect.github.com/nodejs/node/commit/8bafc0f061)]
- **test**: deflake test-http2-client-socket-destroy (Luigi Pinca)
[#&#8203;58212](https://redirect.github.com/nodejs/node/pull/58212)
-
\[[`97aac9f17a`](https://redirect.github.com/nodejs/node/commit/97aac9f17a)]
- **test**: skip test-buffer-tostring-rangeerror when low on memory
(Ruben Bridgewater)
[#&#8203;58142](https://redirect.github.com/nodejs/node/pull/58142)
-
\[[`2896760da1`](https://redirect.github.com/nodejs/node/commit/2896760da1)]
- **test**: mark `test-http2-debug` as flaky on LinuxONE (Richard Lau)
[#&#8203;58494](https://redirect.github.com/nodejs/node/pull/58494)
-
\[[`7327d14780`](https://redirect.github.com/nodejs/node/commit/7327d14780)]
- **test**: reduce iteration count in
test-child-process-stdout-flush-exit (Antoine du Hamel)
[#&#8203;58273](https://redirect.github.com/nodejs/node/pull/58273)
-
\[[`1bd7a2edf9`](https://redirect.github.com/nodejs/node/commit/1bd7a2edf9)]
- **test_runner**: support mocking json modules (Jacob Smith)
[#&#8203;58007](https://redirect.github.com/nodejs/node/pull/58007)
-
\[[`a3877c53b1`](https://redirect.github.com/nodejs/node/commit/a3877c53b1)]
- **test_runner**: add level parameter to reporter.diagnostic (Jacopo
Martinelli)
[#&#8203;57923](https://redirect.github.com/nodejs/node/pull/57923)
-
\[[`253772c2d9`](https://redirect.github.com/nodejs/node/commit/253772c2d9)]
- **tools**: bump the eslint group in `/tools/eslint` with 6 updates
(dependabot\[bot])
[#&#8203;58549](https://redirect.github.com/nodejs/node/pull/58549)
-
\[[`b7feda97b0`](https://redirect.github.com/nodejs/node/commit/b7feda97b0)]
- **tools**: disable failing coverage jobs (Antoine du Hamel)
[#&#8203;58770](https://redirect.github.com/nodejs/node/pull/58770)
-
\[[`8a47096093`](https://redirect.github.com/nodejs/node/commit/8a47096093)]
- **tools**: ignore `deps/` and `benchmark/` for CodeQL (Rafael Gonzaga)
[#&#8203;58254](https://redirect.github.com/nodejs/node/pull/58254)
-
\[[`70be158126`](https://redirect.github.com/nodejs/node/commit/70be158126)]
- **tools**: add read permission to workflows that read contents
(Antoine du Hamel)
[#&#8203;58255](https://redirect.github.com/nodejs/node/pull/58255)
-
\[[`e4373be766`](https://redirect.github.com/nodejs/node/commit/e4373be766)]
- **tools**: exclude deps/v8/tools from CodeQL scans (Rich Trott)
[#&#8203;58132](https://redirect.github.com/nodejs/node/pull/58132)
-
\[[`23ceb364d4`](https://redirect.github.com/nodejs/node/commit/23ceb364d4)]
- **tools**: bump the eslint group in /tools/eslint with 6 updates
(dependabot\[bot])
[#&#8203;58105](https://redirect.github.com/nodejs/node/pull/58105)
-
\[[`5b6ced3255`](https://redirect.github.com/nodejs/node/commit/5b6ced3255)]
- **tty**: improve color terminal color detection (Ruben Bridgewater)
[#&#8203;58146](https://redirect.github.com/nodejs/node/pull/58146)
-
\[[`7be70979c6`](https://redirect.github.com/nodejs/node/commit/7be70979c6)]
- **tty**: use terminal VT mode on Windows (Anna Henningsen)
[#&#8203;58358](https://redirect.github.com/nodejs/node/pull/58358)
-
\[[`b7d7ffe793`](https://redirect.github.com/nodejs/node/commit/b7d7ffe793)]
- **typings**: add inspector internalBinding typing (Shima Ryuhei)
[#&#8203;58492](https://redirect.github.com/nodejs/node/pull/58492)
-
\[[`0056d1a2e2`](https://redirect.github.com/nodejs/node/commit/0056d1a2e2)]
- **typings**: remove no longer valid `FixedSizeBlobCopyJob` type (Dario
Piotrowicz)
[#&#8203;58305](https://redirect.github.com/nodejs/node/pull/58305)
-
\[[`581c0738f9`](https://redirect.github.com/nodejs/node/commit/581c0738f9)]
- **typings**: remove no longer valid `revokeDataObject` type (Dario
Piotrowicz)
[#&#8203;58305](https://redirect.github.com/nodejs/node/pull/58305)
-
\[[`1db1c870f0`](https://redirect.github.com/nodejs/node/commit/1db1c870f0)]
- **typings**: add missing typings for `TypedArray` (Jason Zhang)
[#&#8203;58248](https://redirect.github.com/nodejs/node/pull/58248)
-
\[[`6d3f43c9a6`](https://redirect.github.com/nodejs/node/commit/6d3f43c9a6)]
- **url**: improve performance of the format function (Giovanni Bucci)
[#&#8203;57099](https://redirect.github.com/nodejs/node/pull/57099)
-
\[[`54288bdb42`](https://redirect.github.com/nodejs/node/commit/54288bdb42)]
- **(SEMVER-MINOR)** **util**: add 'none' style to styleText (James M
Snell)
[#&#8203;58437](https://redirect.github.com/nodejs/node/pull/58437)
-
\[[`6af5358f9c`](https://redirect.github.com/nodejs/node/commit/6af5358f9c)]
- **util**: add internal `assignFunctionName()` function (LiviaMedeiros)
[#&#8203;57916](https://redirect.github.com/nodejs/node/pull/57916)
-
\[[`9f2e5aad38`](https://redirect.github.com/nodejs/node/commit/9f2e5aad38)]
- **vm**: import call should return a promise in the current context
(Chengzhong Wu)
[#&#8203;58309](https://redirect.github.com/nodejs/node/pull/58309)
-
\[[`92304a5e62`](https://redirect.github.com/nodejs/node/commit/92304a5e62)]
- **watch**: fix watch args not being properly filtered (Dario
Piotrowicz)
[#&#8203;58279](https://redirect.github.com/nodejs/node/pull/58279)
-
\[[`539df8e98d`](https://redirect.github.com/nodejs/node/commit/539df8e98d)]
- **win,tools**: use Azure Trusted Signing (Stefan Stojanovic)
[#&#8203;58502](https://redirect.github.com/nodejs/node/pull/58502)
-
\[[`ef66357637`](https://redirect.github.com/nodejs/node/commit/ef66357637)]
- **worker**: give names to `MessagePort` functions (Livia Medeiros)
[#&#8203;58307](https://redirect.github.com/nodejs/node/pull/58307)
-
\[[`b3cd847528`](https://redirect.github.com/nodejs/node/commit/b3cd847528)]
- **zlib**: remove mentions of unexposed Z_TREES constant (Jimmy Leung)
[#&#8203;58371](https://redirect.github.com/nodejs/node/pull/58371)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-25 08:14:12 +02:00
TrueCharts Bot dc1bd07ec2 chore(website): lock file maintenance (#36625)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-24 21:00:16 +02:00
TrueCharts Bot 9a6b7539ab fix(website): update astro 5.10.0 → 5.10.1 (#36564)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.10.0` ->
`5.10.1`](https://renovatebot.com/diffs/npm/astro/5.10.0/5.10.1) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.10.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5101)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.10.0...astro@5.10.1)

##### Patch Changes

-
[#&#8203;13988](https://redirect.github.com/withastro/astro/pull/13988)
[`609044c`](https://redirect.github.com/withastro/astro/commit/609044ca6a6254b1db11bb3fc8e0bb54213eab8e)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug in live collections that caused it to incorrectly complain about
the collection being defined in the wrong file

-
[#&#8203;13909](https://redirect.github.com/withastro/astro/pull/13909)
[`b258d86`](https://redirect.github.com/withastro/astro/commit/b258d86d47086d3a17d6d9e6b79ac21f9770f765)
Thanks [@&#8203;isVivek99](https://redirect.github.com/isVivek99)! -
Fixes rendering of special boolean attributes for custom elements

-
[#&#8203;13983](https://redirect.github.com/withastro/astro/pull/13983)
[`e718375`](https://redirect.github.com/withastro/astro/commit/e718375c1714a631eba75f70118653cf93a4326d)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a case where the toolbar audit would incorrectly flag images
processed by Astro in content collections documents

-
[#&#8203;13999](https://redirect.github.com/withastro/astro/pull/13999)
[`f077b68`](https://redirect.github.com/withastro/astro/commit/f077b68f4debe8d716a8610e561b4fe17b1245b3)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
`lastModified` field to experimental live collection cache hints

Live loaders can now set a `lastModified` field in the cache hints for
entries and collections to indicate when the data was last modified.
This is then available in the `cacheHint` field returned by
`getCollection` and `getEntry`.

-
[#&#8203;13987](https://redirect.github.com/withastro/astro/pull/13987)
[`08f34b1`](https://redirect.github.com/withastro/astro/commit/08f34b19c8953426ce35093414a27ecd8d405309)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds an informative message in dev mode when the CSP feature is enabled.

-
[#&#8203;14005](https://redirect.github.com/withastro/astro/pull/14005)
[`82aad62`](https://redirect.github.com/withastro/astro/commit/82aad62efd2b817cc9cff46b606fedaa64e0c922)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where inline styles and scripts didn't work when CSP was
enabled. Now when adding `<styles>` elements inside an Astro component,
their hashes care correctly computed.

-
[#&#8203;13985](https://redirect.github.com/withastro/astro/pull/13985)
[`0b4c641`](https://redirect.github.com/withastro/astro/commit/0b4c641b22b31d0dea15911c0daba995a48261a9)
Thanks [@&#8203;jsparkdev](https://redirect.github.com/jsparkdev)! -
Updates wrong link

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-23 14:09:41 +02:00
TrueCharts Bot 80eec3bf43 chore(website): lock file maintenance (#36558)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-23 09:02:37 +02:00
TrueCharts Bot 655d2e4cf8 fix(website): update prettier 3.5.3 → 3.6.0 (#36561)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [prettier](https://prettier.io)
([source](https://redirect.github.com/prettier/prettier)) | dependencies
| minor | [`3.5.3` ->
`3.6.0`](https://renovatebot.com/diffs/npm/prettier/3.5.3/3.6.0) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>prettier/prettier (prettier)</summary>

###
[`v3.6.0`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#360)

[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.5.3...3.6.0)


[diff](https://redirect.github.com/prettier/prettier/compare/3.5.3...3.6.0)

🔗 [Release Notes](https://prettier.io/blog/2025/06/23/3.6.0)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-23 08:08:10 +02:00
TrueCharts Bot 524c85e11c fix(website): update astro-better-image-service 2.1.6 → 2.1.7 (#36522)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[astro-better-image-service](https://redirect.github.com/risu729/astro-better-image-service)
| dependencies | patch | [`2.1.6` ->
`2.1.7`](https://renovatebot.com/diffs/npm/astro-better-image-service/2.1.6/2.1.7)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>risu729/astro-better-image-service
(astro-better-image-service)</summary>

###
[`v2.1.7`](https://redirect.github.com/risu729/astro-better-image-service/releases/tag/v2.1.7)

[Compare
Source](https://redirect.github.com/risu729/astro-better-image-service/compare/v2.1.6...v2.1.7)

##### Bug Fixes

- **deps:** update dependency svgo to v4
([#&#8203;1478](https://redirect.github.com/risu729/astro-better-image-service/issues/1478))
([f7cb0ae](https://redirect.github.com/risu729/astro-better-image-service/commit/f7cb0ae4d3bf55573737f0388be68ddcb4f91dc4))

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-21 20:32:31 +02:00
TrueCharts Bot 359ece2fdf fix(website): update astro 5.9.4 → 5.10.0 (#36468)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.9.4` ->
`5.10.0`](https://renovatebot.com/diffs/npm/astro/5.9.4/5.10.0) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.10.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5100)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.9.4...astro@5.10.0)

##### Minor Changes

-
[#&#8203;13917](https://redirect.github.com/withastro/astro/pull/13917)
[`e615216`](https://redirect.github.com/withastro/astro/commit/e615216c55bca5d61b8c5c1b49d62671f0238509)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
a new `priority` attribute for Astro's image components.

This change introduces a new `priority` option for the `<Image />` and
`<Picture />` components, which automatically sets the `loading`,
`decoding`, and `fetchpriority` attributes to their optimal values for
above-the-fold images which should be loaded immediately.

It is a boolean prop, and you can use the shorthand syntax by simply
adding `priority` as a prop to the `<Image />` or `<Picture />`
component. When set, it will apply the following attributes:

    -   `loading="eager"`
    -   `decoding="sync"`
    -   `fetchpriority="high"`

The individual attributes can still be set manually if you need to
customize your images further.

By default, the Astro [`<Image />`
component](https://docs.astro.build/en/guides/images/#display-optimized-images-with-the-image--component)
generates `<img>` tags that lazy-load their content by setting
`loading="lazy"` and `decoding="async"`. This improves performance by
deferring the loading of images that are not immediately visible in the
viewport, and gives the best scores in performance audits like
Lighthouse.

The new `priority` attribute will override those defaults and
automatically add the best settings for your high-priority assets.

This option was previously available for experimental responsive images,
but now it is a standard feature for all images.

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-19 14:22:52 +02:00
TrueCharts Bot d2e951d4f9 chore(website): lock file maintenance (#36448)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-18 21:56:50 +02:00
TrueCharts Bot 4ecc1e31e5 chore(website): lock file maintenance (#36325)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-17 20:52:13 +02:00
TrueCharts Bot d7e6f56f17 fix(website): update astro 5.9.3 → 5.9.4 (#36385)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.9.3` ->
`5.9.4`](https://renovatebot.com/diffs/npm/astro/5.9.3/5.9.4) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.9.4`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#594)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.9.3...astro@5.9.4)

##### Patch Changes

-
[#&#8203;13951](https://redirect.github.com/withastro/astro/pull/13951)
[`7eb88f1`](https://redirect.github.com/withastro/astro/commit/7eb88f1e9113943b47e35e9f0033ab516f0a4f40)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a issue that caused errors when using an adapter-provided session driver
with custom options

-
[#&#8203;13953](https://redirect.github.com/withastro/astro/pull/13953)
[`448bddc`](https://redirect.github.com/withastro/astro/commit/448bddc49492c6a92a23735cd29a93baec0dda48)
Thanks
[@&#8203;zaitovalisher](https://redirect.github.com/zaitovalisher)! -
Fixes a bug where quotes were not added to the 'strict-dynamic' CSP
directive

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-17 20:33:07 +02:00
TrueCharts Bot d2fae3b35a fix(website): update astro 5.9.2 → 5.9.3 (#36310) 2025-06-13 14:11:42 +02:00
TrueCharts Bot c868cc0b85 chore(website): lock file maintenance (#36190)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-10 20:26:43 +02:00
TrueCharts Bot 697d1b9917 fix(website): update @playform/compress 0.1.9 → 0.2.0 (#36182)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@playform/compress](https://redirect.github.com/PlayForm/Compress) |
dependencies | minor | [`0.1.9` ->
`0.2.0`](https://renovatebot.com/diffs/npm/@playform%2fcompress/0.1.9/0.2.0)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>PlayForm/Compress (@&#8203;playform/compress)</summary>

###
[`v0.2.0`](https://redirect.github.com/PlayForm/Compress/blob/HEAD/CHANGELOG.md#020)

[Compare
Source](https://redirect.github.com/PlayForm/Compress/compare/5779505b555a047fc83db6fa34d9fbc78c06a1b9...887f5cb328d5441e0aeae1c9eeef30547b13e3c8)

##### Breaking Change

- Updated `commander` dependency from 13.1.0 → 14.0.0 (major version
update)

##### Change

- Updated contact information in package.json to use `PlayForm.Cloud`
domain
-   Updated dependencies to latest versions:
    -   `astro` (wildcard → ^5.9.2)
    -   `lightningcss` (1.29.3 → 1.30.1)
    -   `sharp` (0.33.5 → 0.34.2)
    -   `terser` (5.39.0 → 5.42.0)
    -   `@playform/build` (0.2.1 → 0.2.4)
    -   `browserslist` (4.24.4 → 4.25.0)
- Refactored option interfaces to use `Partial<>` type for more flexible
    configuration
-   Improved code organization in:
    -   Image processing module (Writesharp.ts)
    -   Core integration logic (Integration.ts)

##### Add

- Enhanced JSON compression options with configurable `replacer` and
`space`
    parameters for `JSON.stringify`

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-10 14:09:33 +02:00
TrueCharts Bot 32b31b81ea fix(website): update astro 5.9.1 → 5.9.2 (#36143)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.9.1` ->
`5.9.2`](https://renovatebot.com/diffs/npm/astro/5.9.1/5.9.2) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.9.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#592)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.9.1...astro@5.9.2)

##### Patch Changes

-
[#&#8203;13919](https://redirect.github.com/withastro/astro/pull/13919)
[`423fe60`](https://redirect.github.com/withastro/astro/commit/423fe6048dfb4c24d198611f60a5815459efacd3)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where Astro added quotes to the CSP resources.

Only certain resources require quotes (e.g. `'self'` but not
`https://cdn.example.com`), so Astro no longer adds quotes to any
resources. You must now provide the quotes yourself for resources such
as `'self'` when necessary:

    ```diff
    export default defineConfig({
      experimental: {
        csp: {
          styleDirective: {
            resources: [
    -          "self",
    +          "'self'",
              "https://cdn.example.com"
            ]
          }
        }
      }
    })
    ```

-
[#&#8203;13914](https://redirect.github.com/withastro/astro/pull/13914)
[`76c5480`](https://redirect.github.com/withastro/astro/commit/76c5480ac0ab1f64df38c23a848f8d28f7640562)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
**BREAKING CHANGE to the experimental Content Security Policy feature
only**

Removes support for experimental Content Security Policy (CSP) when
using the `<ClientRouter />` component for view transitions.

It is no longer possible to enable experimental CSP while using Astro's
view transitions. Support was already unstable with the `<ClientRouter
/>` because CSP required making its underlying implementation
asynchronous. This caused breaking changes for several users and
therefore, this PR removes support completely.

If you are currently using the component for view transitions, please
remove the experimental CSP flag as they cannot be used together.

    ```diff
    import { defineConfig } from 'astro/config';

    export default defineConfig({
      experimental: {
    -   csp: true
       }
    });
    ```

Alternatively, to continue using experimental CSP in your project, you
can [consider migrating to the browser native View Transition
API](https://events-3bg.pages.dev/jotter/astro-view-transitions/) and
remove the `<ClientRouter />` from your project. You may be able to
achieve similar results if you are not using Astro's enhancements to the
native View Transitions and Navigation APIs.

Support might be reintroduced in future releases. You can follow this
experimental feature's development in [the CSP
RFC](https://redirect.github.com/withastro/roadmap/blob/feat/rfc-csp/proposals/0055-csp.md).

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-10 00:11:37 +00:00
TrueCharts Bot 04b4a21bba chore(website): lock file maintenance (#36165)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-09 20:30:48 +02:00
TrueCharts Bot 9bc7f53e96 fix(website): update @astrojs/tailwind 5.1.5 → 6.0.2 (#36163)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[@astrojs/tailwind](https://docs.astro.build/en/guides/integrations-guide/tailwind/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind))
| dependencies | major | [`5.1.5` ->
`6.0.2`](https://renovatebot.com/diffs/npm/@astrojs%2ftailwind/5.1.5/6.0.2)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (@&#8203;astrojs/tailwind)</summary>

###
[`v6.0.2`](https://redirect.github.com/withastro/astro/releases/tag/%40astrojs/tailwind%406.0.2)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/tailwind@6.0.1...@astrojs/tailwind@6.0.2)

##### Patch Changes

-
[#&#8203;13505](https://redirect.github.com/withastro/astro/pull/13505)
[`a98ae5b`](https://redirect.github.com/withastro/astro/commit/a98ae5b8f5c33900379012e9e253a755c0a8927e)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Updates the dependency `vite` to the latest.

###
[`v6.0.1`](https://redirect.github.com/withastro/astro/releases/tag/%40astrojs/tailwind%406.0.1)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/tailwind@6.0.0...@astrojs/tailwind@6.0.1)

##### Patch Changes

-
[#&#8203;13471](https://redirect.github.com/withastro/astro/pull/13471)
[`020c542`](https://redirect.github.com/withastro/astro/commit/020c54247909fadc2c80c89b226ba59565d12cbf)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Updates
the README to indicate that the Tailwind integration is deprecated

###
[`v6.0.0`](https://redirect.github.com/withastro/astro/releases/tag/%40astrojs/tailwind%406.0.0)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/tailwind@5.1.5...@astrojs/tailwind@6.0.0)

##### Major Changes

-
[#&#8203;13049](https://redirect.github.com/withastro/astro/pull/13049)
[`2ed4bd9`](https://redirect.github.com/withastro/astro/commit/2ed4bd90f25a3e5a183d0bc862e3b359b8289b93)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Deprecates the integration

Tailwind CSS now offers a Vite plugin which is the preferred way to use
Tailwind 4 in Astro. Please uninstall `@astrojs/tailwind` and follow the
[Tailwind documentation for manual
installation](https://tailwindcss.com/docs/installation/framework-guides/astro).

This updated major version is only provided as a convenience for
existing projects until they are able to migrate to the new plugin. It
offers no additional functionality and is no longer recommended, but may
continue to be used in your projects until it is removed entirely.

</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 becomes conflicted, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
2025-06-09 20:30:21 +02:00
TrueCharts Bot 00ea2fcdd9 fix(website): update astro-better-image-service 2.1.5 → 2.1.6 (#36144) 2025-06-09 20:14:51 +02:00
TrueCharts Bot 04acef8903 chore(website): lock file maintenance (#36116)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-09 08:57:38 +02:00
TrueCharts Bot 8b612e8502 chore(website): lock file maintenance (#36071)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-07 14:54:52 +02:00
Douglas Chimento 67df3235ea feat(common): Add optional service account override to workload podSpec (#36051)
**Description**

Fixes https://github.com/truecharts/public/issues/35601

**Recommend ignoring whitespace for diff**

I'm looking for feedback on the implementation and if accepted, I will
update docs / tests as required.

Allow an optional service account name reference to workload podSpec.
This PR purposes adding new field to `workload.$name.podSpec` entitled
`overrideServiceAccountName`.

## How to Use

Add the `overrideServiceAccountName` field to your workload's `podSpec`
in your values.yaml:

```yaml
workload:
  main:
    enabled: true
    primary: true
    type: Deployment
    podSpec:
      overrideServiceAccountName: "my-service-account"
      containers:
        main:
          enabled: true
```

**⚙️ Type of change**

- [X] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**

Yes
```
 helm  template blah .  --set workload.main.podSpec.overrideServiceAccountName=my-service-account  -f ./default-values.yaml | grep serviceAccountName
 
 serviceAccountName: my-service-account
```

**📃 Notes:**

When `overrideServiceAccountName` is specified:
1. The chart will use this value directly as the `serviceAccountName` in
the pod spec
2. It will bypass the normal service account selection logic
3. The specified service account must already exist in the cluster
4. The service account must exist in the same namespace as the workload
5. You can still define service accounts in the chart for other
workloads

This is a useful feature when you want to share a common service account
across many pods/applications.

Side note, many other charts support this feature. The default chart
when you run `helm create` also has this feature.

**✔️ Checklist:**

- [X] ⚖️ My code follows the style guidelines of this project
- [X] 👀 I have performed a self-review of my own code
- [X] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [X] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

None

---

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Stavros Kois <s.kois@outlook.com>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-06-07 14:47:35 +02:00
TrueCharts Bot 6ac4275a90 fix(website): update astro 5.9.0 → 5.9.1 (#36068)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.9.0` ->
`5.9.1`](https://renovatebot.com/diffs/npm/astro/5.9.0/5.9.1) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.9.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#591)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.9.0...astro@5.9.1)

##### Patch Changes

-
[#&#8203;13899](https://redirect.github.com/withastro/astro/pull/13899)
[`7a1303d`](https://redirect.github.com/withastro/astro/commit/7a1303dbcebe0f0b5c8c3278669af5577115c0a3)
Thanks [@&#8203;reknih](https://redirect.github.com/reknih)! - Fix bug
where error pages would return invalid bodies if the upstream response
was compressed

-
[#&#8203;13902](https://redirect.github.com/withastro/astro/pull/13902)
[`051bc30`](https://redirect.github.com/withastro/astro/commit/051bc3025523756474ff5be350a7680e9fed3384)
Thanks [@&#8203;arHSM](https://redirect.github.com/arHSM)! - Fixes a bug
where vite virtual module ids were incorrectly added in the dev server

-
[#&#8203;13905](https://redirect.github.com/withastro/astro/pull/13905)
[`81f71ca`](https://redirect.github.com/withastro/astro/commit/81f71ca6fd8b313b055eb4659c02a8e0e0335204)
Thanks [@&#8203;jsparkdev](https://redirect.github.com/jsparkdev)! -
Fixes wrong contents in CSP meta tag.

-
[#&#8203;13907](https://redirect.github.com/withastro/astro/pull/13907)
[`8246bcc`](https://redirect.github.com/withastro/astro/commit/8246bcc0008880a49d9374136ec44488b629a2c3)
Thanks [@&#8203;martrapp](https://redirect.github.com/martrapp)! - Fixes
a bug that caused view transition names to be lost.

-
[#&#8203;13901](https://redirect.github.com/withastro/astro/pull/13901)
[`37fa0a2`](https://redirect.github.com/withastro/astro/commit/37fa0a228cdfdaf20dd135835fdc84337f2d9637)
Thanks [@&#8203;ansg191](https://redirect.github.com/ansg191)! - fix
fallback not being removed when server island is rendered

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-07 14:09:53 +02:00
TrueCharts Bot 2c56e1b3e7 fix(website): update astro 5.8.2 → 5.9.0 (#35979)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.8.2` ->
`5.9.0`](https://renovatebot.com/diffs/npm/astro/5.8.2/5.9.0) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.9.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#590)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.8.2...astro@5.9.0)

##### Minor Changes

-
[#&#8203;13802](https://redirect.github.com/withastro/astro/pull/13802)
[`0eafe14`](https://redirect.github.com/withastro/astro/commit/0eafe14b08c627b116842ea0a5299a00f9baa3d1)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds experimental Content Security Policy (CSP) support

CSP is an important feature to provide fine-grained control over
resources that can or cannot be downloaded and executed by a document.
In particular, it can help protect against [cross-site scripting
(XSS)](https://developer.mozilla.org/en-US/docs/Glossary/Cross-site_scripting)
attacks.

Enabling this feature adds additional security to Astro's handling of
processed and bundled scripts and styles by default, and allows you to
further configure these, and additional, content types. This new
experimental feature has been designed to work in every Astro rendering
environment (static pages, dynamic pages and single page applications),
while giving you maximum flexibility and with type-safety in mind.

It is compatible with most of Astro's features such as client islands,
and server islands, although Astro's view transitions using the
`<ClientRouter />` are not yet fully supported. Inline scripts are not
supported out of the box, but you can provide your own hashes for
external and inline scripts.

To enable this feature, add the experimental flag in your Astro config:

    ```js
    // astro.config.mjs
    import { defineConfig } from 'astro/config';

    export default defineConfig({
      experimental: {
        csp: true,
      },
    });
    ```

For more information on enabling and using this feature in your project,
see the [Experimental CSP
docs](https://docs.astro.build/en/reference/experimental-flags/csp/).

For a complete overview, and to give feedback on this experimental API,
see the [Content Security Policy
RFC](https://redirect.github.com/withastro/roadmap/blob/feat/rfc-csp/proposals/0055-csp.md).

-
[#&#8203;13850](https://redirect.github.com/withastro/astro/pull/13850)
[`1766d22`](https://redirect.github.com/withastro/astro/commit/1766d222e7bb4adb6d15090e2d6331a0d8978303)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Provides a Markdown renderer to content loaders

When creating a content loader, you will now have access to a
`renderMarkdown` function that allows you to render Markdown content
directly within your loaders. It uses the same settings and plugins as
the renderer used for Markdown files in Astro, and follows any Markdown
settings you have configured in your Astro project.

This allows you to render Markdown content from various sources, such as
a CMS or other data sources, directly in your loaders without needing to
preprocess the Markdown content separately.

    ```ts
    import type { Loader } from 'astro/loaders';
    import { loadFromCMS } from './cms';

    export function myLoader(settings): Loader {
      return {
        name: 'my-loader',
        async load({ renderMarkdown, store }) {
          const entries = await loadFromCMS();

          store.clear();

          for (const entry of entries) {
// Assume each entry has a 'content' field with markdown content
            store.set(entry.id, {
              id: entry.id,
              data: entry,
              rendered: await renderMarkdown(entry.content),
            });
          }
        },
      };
    }
    ```

The return value of `renderMarkdown` is an object with two properties:
`html` and `metadata`. These match the `rendered` property of content
entries in content collections, so you can use them to render the
content in your components or pages.

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-06 06:33:38 +00:00
TrueCharts Bot ea846e9115 fix(website): update astro monorepo (patch) (#35959)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap))
| dependencies | patch | [`3.4.0` ->
`3.4.1`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.4.0/3.4.1)
|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.8.1` ->
`5.8.2`](https://renovatebot.com/diffs/npm/astro/5.8.1/5.8.2) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (@&#8203;astrojs/sitemap)</summary>

###
[`v3.4.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#341)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/sitemap@3.4.0...@astrojs/sitemap@3.4.1)

##### Patch Changes

-
[#&#8203;13871](https://redirect.github.com/withastro/astro/pull/13871)
[`8a1e849`](https://redirect.github.com/withastro/astro/commit/8a1e8499dbd1ed98e971635e86eb89f910f0ce78)
Thanks [@&#8203;blimmer](https://redirect.github.com/blimmer)! -
Uncaught errors in the `filter` method will now bubble, causing the
astro build to fail.

</details>

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.8.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#582)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.8.1...astro@5.8.2)

##### Patch Changes

-
[#&#8203;13877](https://redirect.github.com/withastro/astro/pull/13877)
[`5a7797f`](https://redirect.github.com/withastro/astro/commit/5a7797fdd6ad3f1377e2719c79da9486a232dfcd)
Thanks [@&#8203;yuhang-dong](https://redirect.github.com/yuhang-dong)! -
Fixes a bug that caused `Astro.rewrite` to fail when used in `sequence`d
middleware

-
[#&#8203;13872](https://redirect.github.com/withastro/astro/pull/13872)
[`442b841`](https://redirect.github.com/withastro/astro/commit/442b8413dc9d29892499cfa97e54798a3a6ee136)
Thanks [@&#8203;isVivek99](https://redirect.github.com/isVivek99)! -
Fixes rendering of the `download` attribute when it has a boolean value

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-04 14:10:07 +02:00
Boemeltrein 577738e2a3 fix(clustertool&docs): apiVersion: source.toolkit.fluxcd.io (#35820)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
Changed from `source.toolkit.fluxcd.io/v1beta2` to `apiVersion:
source.toolkit.fluxcd.io/v1`
And some other additional files

⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [x] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-06-03 09:24:11 +02:00
bitpushr dfc7c1fc54 Minor spelling and grammar fixes (#35817)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

Signed-off-by: bitpushr <91350598+bitpushr@users.noreply.github.com>
Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-06-03 09:23:27 +02:00
TrueCharts Bot e23fdd2d1c chore(website): lock file maintenance (#35916)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-06-03 09:08:09 +02:00
bitpushr 5e38f8584a Minor spelling and grammar fixes (#35818)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

Signed-off-by: bitpushr <91350598+bitpushr@users.noreply.github.com>
2025-06-01 15:51:26 +02:00
bitpushr f66c536392 Minor spelling and grammar fixes (#35816)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: bitpushr <91350598+bitpushr@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-06-01 15:50:42 +02:00
zdeneksvarc db4dcdc1dc fix(docker-guide): correct naming of Docker Compose YAML (#35815)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
Docker Compose YAML is defined by `compose.yml` or `docker-compose.yaml`
not `Dockerfile`.

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

Signed-off-by: zdeneksvarc <79550344+zdeneksvarc@users.noreply.github.com>
2025-06-01 15:49:38 +02:00
TrueCharts Bot 969c344815 chore(website): lock file maintenance (#35808)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-05-30 02:52:00 +02:00
TrueCharts Bot f20d6a0955 fix(website): update astro monorepo (minor) (#35803)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap))
| dependencies | minor | [`3.3.1` ->
`3.4.0`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.3.1/3.4.0)
|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.7.14` ->
`5.8.1`](https://renovatebot.com/diffs/npm/astro/5.7.14/5.8.1) |

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (@&#8203;astrojs/sitemap)</summary>

###
[`v3.4.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#340)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/sitemap@3.3.1...@astrojs/sitemap@3.4.0)

##### Minor Changes

-
[#&#8203;13753](https://redirect.github.com/withastro/astro/pull/13753)
[`90293de`](https://redirect.github.com/withastro/astro/commit/90293de03320da51965f05cfa6923cbe5521f519)
Thanks [@&#8203;mattyoho](https://redirect.github.com/mattyoho)! -
Customize the filenames of sitemap XML files generated by the
`@astro/sitemap` integration by setting `filenameBase` in the
integration configuration settings. This may be useful when deploying an
Astro site at a path on a domain with preexisting sitemap files.

Generated sitemap files will appear at `/sitemap-0.xml` and
`/sitemap-index.xml` by default, which may conflict with preexisting
files. Set `filenameBase` to a custom value to avoid that if so:

    ```js
    import { defineConfig } from 'astro/config';
    import sitemap from '@&#8203;astrojs/sitemap';

    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          filenameBase: 'astronomy-sitemap',
        }),
      ],
    });
    ```

This will yield sitemap and index files as
`https://example.com/astronomy-sitemap-0.xml` and
`https://example.com/astronomy-sitemap-index.xml`.

</details>

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.8.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#581)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.8.0...astro@5.8.1)

##### Patch Changes

-
[#&#8203;13037](https://redirect.github.com/withastro/astro/pull/13037)
[`de2fc9b`](https://redirect.github.com/withastro/astro/commit/de2fc9b3c406c21683b8a692fafa3cbc77ca552b)
Thanks [@&#8203;nanarino](https://redirect.github.com/nanarino)! - Fixes
rendering of the `popover` attribute when it has a boolean value

-
[#&#8203;13851](https://redirect.github.com/withastro/astro/pull/13851)
[`45ae95a`](https://redirect.github.com/withastro/astro/commit/45ae95a507d5e83b5e38ce1b338c3202ab7e8d76)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Allows disabling default styles for responsive images

This change adds a new `image.experimentalDefaultStyles` option that
allows you to disable the default styles applied to responsive images.

When using experimental responsive images, Astro applies default styles
to ensure the images resize correctly. In most cases this is what you
want – and they are applied with low specificity so your own styles
override them. However in some cases you may want to disable these
default styles entirely. This is particularly useful when using Tailwind
4, because it uses CSS cascade layers to apply styles, making it
difficult to override the default styles.

`image.experimentalDefaultStyles` is a boolean option that defaults to
`true`, so you can change it in your Astro config file like this:

    ```js
    export default {
      image: {
        experimentalDefaultStyles: false,
      },
      experimental: {
        responsiveImages: true,
      },
    };
    ```

-
[#&#8203;13858](https://redirect.github.com/withastro/astro/pull/13858)
[`cb1a168`](https://redirect.github.com/withastro/astro/commit/cb1a1681c844737477670ac42bb051bf93fae0a3)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes the warning shown when client directives are used on Astro
components

-
[#&#8203;12574](https://redirect.github.com/withastro/astro/pull/12574)
[`da266d0`](https://redirect.github.com/withastro/astro/commit/da266d0578c1a603d6f57913c6fa8eefd61a354e)
Thanks [@&#8203;apatel369](https://redirect.github.com/apatel369)! -
Allows using server islands in mdx files

-
[#&#8203;13843](https://redirect.github.com/withastro/astro/pull/13843)
[`fbcfa68`](https://redirect.github.com/withastro/astro/commit/fbcfa683d38f13378678c25b53cd789107752087)
Thanks [@&#8203;z1haze](https://redirect.github.com/z1haze)! - Export
type `AstroSession` to allow use in explicitly typed safe code.

###
[`v5.8.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#580)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.7.14...astro@5.8.0)

##### Minor Changes

-
[#&#8203;13809](https://redirect.github.com/withastro/astro/pull/13809)
[`3c3b492`](https://redirect.github.com/withastro/astro/commit/3c3b492375bd6a63f1fb6cede3685aff999be3c9)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Increases minimum Node.js version to 18.20.8

Node.js 18 has now reached end-of-life and should not be used. For now,
Astro will continue to support Node.js 18.20.8, which is the final LTS
release of Node.js 18, as well as Node.js 20 and Node.js 22 or later. We
will drop support for Node.js 18 in a future release, so we recommend
upgrading to Node.js 22 as soon as possible. See Astro's [Node.js
support policy](https://docs.astro.build/en/upgrade-astro/#support) for
more details.

⚠️ **Important note for users of Cloudflare Pages**: The current
build image for Cloudflare Pages uses Node.js 18.17.1 by default, which
is no longer supported by Astro. If you are using Cloudflare Pages you
should [override the default Node.js
version](https://developers.cloudflare.com/pages/configuration/build-image/#override-default-versions)
to Node.js 22. This does not affect users of Cloudflare Workers, which
uses Node.js 22 by default.

##### Patch Changes

- Updated dependencies
\[[`3c3b492`](https://redirect.github.com/withastro/astro/commit/3c3b492375bd6a63f1fb6cede3685aff999be3c9)]:
-
[@&#8203;astrojs/telemetry](https://redirect.github.com/astrojs/telemetry)[@&#8203;3](https://redirect.github.com/3).3.0
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@&#8203;6](https://redirect.github.com/6).3.2

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-05-29 20:47:21 +02:00
Alfred Göppel a5ccdf029c fix(guides): news + guide for docker talos (#35604)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-05-29 11:45:48 +02:00
TrueCharts Bot 537b973aa0 chore(website): lock file maintenance (#35785)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-05-29 10:25:30 +02:00
TrueCharts Bot 3b30b32e5a fix(website): update @astrojs/starlight-tailwind 3.0.0 → 3.0.1 (#35725)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@astrojs/starlight-tailwind](https://starlight.astro.build)
([source](https://redirect.github.com/withastro/starlight/tree/HEAD/packages/tailwind))
| dependencies | patch | [`3.0.0` ->
`3.0.1`](https://renovatebot.com/diffs/npm/@astrojs%2fstarlight-tailwind/3.0.0/3.0.1)
|

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/starlight
(@&#8203;astrojs/starlight-tailwind)</summary>

###
[`v3.0.1`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/tailwind/CHANGELOG.md#301)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight-tailwind@3.0.0...@astrojs/starlight-tailwind@3.0.1)

##### Patch Changes

-
[#&#8203;2991](https://redirect.github.com/withastro/starlight/pull/2991)
[`b8a4800`](https://redirect.github.com/withastro/starlight/commit/b8a480054aba2b39414ef7942db1a6110b800540)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Adds support for `@astrojs/tailwind` v6

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-05-28 23:09:48 +02:00
Alfred Göppel 13da842e06 fix(support-policy): update support policy (#35603)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-05-28 19:40:27 +02:00
TJ 1fb956eea8 fix(docs): Created guide to install capacitor in your cluster. (#35602)
Created a short guide on how to set up capacitor. I have this
configuration working in my cluster now and I think it could be useful
for people to know.

**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
This is currently running in my cluster in this configuration now.
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [x] 📄 I have made changes to the documentation
- [] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: TJ <55514551+nerddotdad@users.noreply.github.com>
2025-05-28 13:40:57 +02:00
kqmaverick 44b7d8af62 docs(support-policy): update supported versions (#35600)
**Description**
Update supported versions with notes on latest helm and kubernetes.

⚒️ Fixes  # 
**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [X] 📜 Documentation Changes

**🧪 How Has This Been Tested?**

**📃 Notes:**

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [X] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-05-28 13:24:39 +02:00
TrueCharts Bot 3fa00433de chore(deps): update node.js v22.15.1 → v22.16.0 (#35583)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [node](https://nodejs.org)
([source](https://redirect.github.com/nodejs/node)) | minor | `22.15.1`
-> `22.16.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

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

###
[`v22.16.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.16.0):
2025-05-21, Version 22.16.0 &#x27;Jod&#x27; (LTS), @&#8203;aduh95

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

##### Notable Changes

-
\[[`c3ceaebb7a`](https://redirect.github.com/nodejs/node/commit/c3ceaebb7a)]
- **deps**: update timezone to 2025b (Node.js GitHub Bot)
[#&#8203;57857](https://redirect.github.com/nodejs/node/pull/57857)
-
\[[`5059a746ec`](https://redirect.github.com/nodejs/node/commit/5059a746ec)]
- **doc**: add dario-piotrowicz to collaborators (Dario Piotrowicz)
[#&#8203;58102](https://redirect.github.com/nodejs/node/pull/58102)
-
\[[`c8ceaaf397`](https://redirect.github.com/nodejs/node/commit/c8ceaaf397)]
- **(SEMVER-MINOR)** **doc**: graduate multiple experimental apis (James
M Snell)
[#&#8203;57765](https://redirect.github.com/nodejs/node/pull/57765)
-
\[[`e21b37d9df`](https://redirect.github.com/nodejs/node/commit/e21b37d9df)]
- **(SEMVER-MINOR)** **esm**: graduate import.meta properties (James M
Snell)
[#&#8203;58011](https://redirect.github.com/nodejs/node/pull/58011)
-
\[[`832640c35e`](https://redirect.github.com/nodejs/node/commit/832640c35e)]
- **(SEMVER-MINOR)** **esm**: support top-level Wasm without package
type (Guy Bedford)
[#&#8203;57610](https://redirect.github.com/nodejs/node/pull/57610)
-
\[[`c510391d2f`](https://redirect.github.com/nodejs/node/commit/c510391d2f)]
- **(SEMVER-MINOR)** **sqlite**: add StatementSync.prototype.columns()
(Colin Ihrig)
[#&#8203;57490](https://redirect.github.com/nodejs/node/pull/57490)
-
\[[`5d1230bec0`](https://redirect.github.com/nodejs/node/commit/5d1230bec0)]
- **(SEMVER-MINOR)** **src**: set default config as `node.config.json`
(Marco Ippolito)
[#&#8203;57171](https://redirect.github.com/nodejs/node/pull/57171)
-
\[[`30bb1ccbb0`](https://redirect.github.com/nodejs/node/commit/30bb1ccbb0)]
- **(SEMVER-MINOR)** **src**: create
`THROW_ERR_OPTIONS_BEFORE_BOOTSTRAPPING` (Marco Ippolito)
[#&#8203;57016](https://redirect.github.com/nodejs/node/pull/57016)
-
\[[`0350c6f478`](https://redirect.github.com/nodejs/node/commit/0350c6f478)]
- **(SEMVER-MINOR)** **src**: add config file support (Marco Ippolito)
[#&#8203;57016](https://redirect.github.com/nodejs/node/pull/57016)
-
\[[`e1d3a9e192`](https://redirect.github.com/nodejs/node/commit/e1d3a9e192)]
- **(SEMVER-MINOR)** **src**: add ExecutionAsyncId getter for any
Context (Attila Szegedi)
[#&#8203;57820](https://redirect.github.com/nodejs/node/pull/57820)
-
\[[`0ec912f452`](https://redirect.github.com/nodejs/node/commit/0ec912f452)]
- **(SEMVER-MINOR)** **stream**: preserve AsyncLocalStorage context in
finished() (Gürgün Dayıoğlu)
[#&#8203;57865](https://redirect.github.com/nodejs/node/pull/57865)
-
\[[`43490c8797`](https://redirect.github.com/nodejs/node/commit/43490c8797)]
- **(SEMVER-MINOR)** **util**: add `types.isFloat16Array()` (Livia
Medeiros)
[#&#8203;57879](https://redirect.github.com/nodejs/node/pull/57879)
-
\[[`dda6ca9172`](https://redirect.github.com/nodejs/node/commit/dda6ca9172)]
- **(SEMVER-MINOR)** **worker**: add worker.getHeapStatistics() (Matteo
Collina)
[#&#8203;57888](https://redirect.github.com/nodejs/node/pull/57888)

##### Commits

-
\[[`4252dc798c`](https://redirect.github.com/nodejs/node/commit/4252dc798c)]
- **assert**: support `Float16Array` in loose deep equality checks
(Livia Medeiros)
[#&#8203;57881](https://redirect.github.com/nodejs/node/pull/57881)
-
\[[`1c7396b078`](https://redirect.github.com/nodejs/node/commit/1c7396b078)]
- **assert,util**: fix constructor lookup in deep equal comparison
(Ruben Bridgewater)
[#&#8203;57876](https://redirect.github.com/nodejs/node/pull/57876)
-
\[[`1ded5f25c8`](https://redirect.github.com/nodejs/node/commit/1ded5f25c8)]
- **assert,util**: improve deep object comparison performance (Ruben
Bridgewater)
[#&#8203;57648](https://redirect.github.com/nodejs/node/pull/57648)
-
\[[`696b5f85ca`](https://redirect.github.com/nodejs/node/commit/696b5f85ca)]
- **assert,util**: improve unequal number comparison performance (Ruben
Bridgewater)
[#&#8203;57619](https://redirect.github.com/nodejs/node/pull/57619)
-
\[[`775ee4d40f`](https://redirect.github.com/nodejs/node/commit/775ee4d40f)]
- **assert,util**: improve array comparison (Ruben Bridgewater)
[#&#8203;57619](https://redirect.github.com/nodejs/node/pull/57619)
-
\[[`3766992ba4`](https://redirect.github.com/nodejs/node/commit/3766992ba4)]
- **benchmark**: add sqlite prepare select get (Vinícius Lourenço)
[#&#8203;58040](https://redirect.github.com/nodejs/node/pull/58040)
-
\[[`8390276be3`](https://redirect.github.com/nodejs/node/commit/8390276be3)]
- **benchmark**: add sqlite prepare select all (Vinícius Lourenço)
[#&#8203;58040](https://redirect.github.com/nodejs/node/pull/58040)
-
\[[`6a9b79e5c1`](https://redirect.github.com/nodejs/node/commit/6a9b79e5c1)]
- **benchmark**: add sqlite is transaction (Vinícius Lourenço)
[#&#8203;58040](https://redirect.github.com/nodejs/node/pull/58040)
-
\[[`f689f98344`](https://redirect.github.com/nodejs/node/commit/f689f98344)]
- **benchmark**: add sqlite prepare insert (Vinícius Lourenço)
[#&#8203;58040](https://redirect.github.com/nodejs/node/pull/58040)
-
\[[`14a82804d7`](https://redirect.github.com/nodejs/node/commit/14a82804d7)]
- **benchmark**: disambiguate `filename` and `dirname` read perf
(Antoine du Hamel)
[#&#8203;58056](https://redirect.github.com/nodejs/node/pull/58056)
-
\[[`e7e8256d35`](https://redirect.github.com/nodejs/node/commit/e7e8256d35)]
- **buffer**: avoid creating unnecessary environment (Yagiz Nizipli)
[#&#8203;58053](https://redirect.github.com/nodejs/node/pull/58053)
-
\[[`d7d8e8e994`](https://redirect.github.com/nodejs/node/commit/d7d8e8e994)]
- **buffer**: define global v8::CFunction objects as const (Mert Can
Altin)
[#&#8203;57676](https://redirect.github.com/nodejs/node/pull/57676)
-
\[[`f37633e85a`](https://redirect.github.com/nodejs/node/commit/f37633e85a)]
- **build**: use `$(BUILDTYPE)` when cleaning coverage files (Aviv
Keller)
[#&#8203;57995](https://redirect.github.com/nodejs/node/pull/57995)
-
\[[`e5bf67fe77`](https://redirect.github.com/nodejs/node/commit/e5bf67fe77)]
- **build**: define python when generating `out/Makefile` (Aviv Keller)
[#&#8203;57970](https://redirect.github.com/nodejs/node/pull/57970)
-
\[[`718f874ae0`](https://redirect.github.com/nodejs/node/commit/718f874ae0)]
- **build**: fix zstd libname (Antoine du Hamel)
[#&#8203;57999](https://redirect.github.com/nodejs/node/pull/57999)
-
\[[`53c5fdcae1`](https://redirect.github.com/nodejs/node/commit/53c5fdcae1)]
- **crypto**: fix cross-realm `SharedArrayBuffer` validation (Antoine du
Hamel)
[#&#8203;57974](https://redirect.github.com/nodejs/node/pull/57974)
-
\[[`78f4ffee5d`](https://redirect.github.com/nodejs/node/commit/78f4ffee5d)]
- **crypto**: fix cross-realm check of `ArrayBuffer` (Felipe Forbeck)
[#&#8203;57828](https://redirect.github.com/nodejs/node/pull/57828)
-
\[[`f606352b63`](https://redirect.github.com/nodejs/node/commit/f606352b63)]
- **crypto**: forbid passing `Float16Array` to `getRandomValues()`
(Livia Medeiros)
[#&#8203;57880](https://redirect.github.com/nodejs/node/pull/57880)
-
\[[`23c4e941c2`](https://redirect.github.com/nodejs/node/commit/23c4e941c2)]
- **crypto**: remove BoringSSL dh-primes addition (Shelley Vohr)
[#&#8203;57023](https://redirect.github.com/nodejs/node/pull/57023)
-
\[[`8339d9bc14`](https://redirect.github.com/nodejs/node/commit/8339d9bc14)]
- **deps**: V8: cherry-pick
[`f915fa4`](https://redirect.github.com/nodejs/node/commit/f915fa4c9f41)
(Chengzhong Wu)
[#&#8203;55484](https://redirect.github.com/nodejs/node/pull/55484)
-
\[[`c2111dd126`](https://redirect.github.com/nodejs/node/commit/c2111dd126)]
- **deps**: V8: backport
[`e5dbbba`](https://redirect.github.com/nodejs/node/commit/e5dbbbadcbff)
(Darshan Sen)
[#&#8203;58120](https://redirect.github.com/nodejs/node/pull/58120)
-
\[[`4cc49be951`](https://redirect.github.com/nodejs/node/commit/4cc49be951)]
- **deps**: update zstd to 1.5.7 (Node.js GitHub Bot)
[#&#8203;57940](https://redirect.github.com/nodejs/node/pull/57940)
-
\[[`c956d37c84`](https://redirect.github.com/nodejs/node/commit/c956d37c84)]
- **deps**: update zlib to 1.3.0.1-motley-780819f (Node.js GitHub Bot)
[#&#8203;57768](https://redirect.github.com/nodejs/node/pull/57768)
-
\[[`c3ceaebb7a`](https://redirect.github.com/nodejs/node/commit/c3ceaebb7a)]
- **deps**: update timezone to 2025b (Node.js GitHub Bot)
[#&#8203;57857](https://redirect.github.com/nodejs/node/pull/57857)
-
\[[`b5cd0eb590`](https://redirect.github.com/nodejs/node/commit/b5cd0eb590)]
- **deps**: update simdutf to 6.4.2 (Node.js GitHub Bot)
[#&#8203;57855](https://redirect.github.com/nodejs/node/pull/57855)
-
\[[`3eb6b814e9`](https://redirect.github.com/nodejs/node/commit/3eb6b814e9)]
- **deps**: update simdutf to 6.4.0 (Node.js GitHub Bot)
[#&#8203;56764](https://redirect.github.com/nodejs/node/pull/56764)
-
\[[`0be9fa3218`](https://redirect.github.com/nodejs/node/commit/0be9fa3218)]
- **deps**: update icu to 77.1 (Node.js GitHub Bot)
[#&#8203;57455](https://redirect.github.com/nodejs/node/pull/57455)
-
\[[`d5cf4254fb`](https://redirect.github.com/nodejs/node/commit/d5cf4254fb)]
- **doc**: add HBSPS as triager (Wiyeong Seo)
[#&#8203;57980](https://redirect.github.com/nodejs/node/pull/57980)
-
\[[`ad0861dba0`](https://redirect.github.com/nodejs/node/commit/ad0861dba0)]
- **doc**: add ambassaor message (Brian Muenzenmeyer)
[#&#8203;57600](https://redirect.github.com/nodejs/node/pull/57600)
-
\[[`0d3ec1aafe`](https://redirect.github.com/nodejs/node/commit/0d3ec1aafe)]
- **doc**: fix misaligned options in vm.compileFunction() (Jimmy Leung)
[#&#8203;58145](https://redirect.github.com/nodejs/node/pull/58145)
-
\[[`1f70baf3b0`](https://redirect.github.com/nodejs/node/commit/1f70baf3b0)]
- **doc**: add missing options.signal to
readlinePromises.createInterface() (Jimmy Leung)
[#&#8203;55456](https://redirect.github.com/nodejs/node/pull/55456)
-
\[[`ec6a48621f`](https://redirect.github.com/nodejs/node/commit/ec6a48621f)]
- **doc**: fix typo of file `zlib.md` (yusheng chen)
[#&#8203;58093](https://redirect.github.com/nodejs/node/pull/58093)
-
\[[`37e360e386`](https://redirect.github.com/nodejs/node/commit/37e360e386)]
- **doc**: make stability labels more consistent (Antoine du Hamel)
[#&#8203;57516](https://redirect.github.com/nodejs/node/pull/57516)
-
\[[`2b5d63d36e`](https://redirect.github.com/nodejs/node/commit/2b5d63d36e)]
- **doc**: allow the $schema property in node.config.json (Remco
Haszing)
[#&#8203;57560](https://redirect.github.com/nodejs/node/pull/57560)
-
\[[`a2063638e2`](https://redirect.github.com/nodejs/node/commit/a2063638e2)]
- **doc**: fix `AsyncLocalStorage` example response changes after node
v18 (Naor Tedgi (Abu Emma))
[#&#8203;57969](https://redirect.github.com/nodejs/node/pull/57969)
-
\[[`474c2b14c3`](https://redirect.github.com/nodejs/node/commit/474c2b14c3)]
- **doc**: mark Node.js 18 as End-of-Life (Richard Lau)
[#&#8203;58084](https://redirect.github.com/nodejs/node/pull/58084)
-
\[[`5059a746ec`](https://redirect.github.com/nodejs/node/commit/5059a746ec)]
- **doc**: add dario-piotrowicz to collaborators (Dario Piotrowicz)
[#&#8203;58102](https://redirect.github.com/nodejs/node/pull/58102)
-
\[[`1eec170fc3`](https://redirect.github.com/nodejs/node/commit/1eec170fc3)]
- **doc**: fix formatting of `import.meta.filename` section (Antoine du
Hamel)
[#&#8203;58079](https://redirect.github.com/nodejs/node/pull/58079)
-
\[[`7f108de525`](https://redirect.github.com/nodejs/node/commit/7f108de525)]
- **doc**: fix env variable name in `util.styleText` (Antoine du Hamel)
[#&#8203;58072](https://redirect.github.com/nodejs/node/pull/58072)
-
\[[`54b3f7fffc`](https://redirect.github.com/nodejs/node/commit/54b3f7fffc)]
- **doc**: add returns for https.get (Eng Zer Jun)
[#&#8203;58025](https://redirect.github.com/nodejs/node/pull/58025)
-
\[[`66f2c605a8`](https://redirect.github.com/nodejs/node/commit/66f2c605a8)]
- **doc**: fix typo in `buffer.md` (chocolateboy)
[#&#8203;58052](https://redirect.github.com/nodejs/node/pull/58052)
-
\[[`b0256dd42b`](https://redirect.github.com/nodejs/node/commit/b0256dd42b)]
- **doc**: correct deprecation type of `assert.CallTracker` (René)
[#&#8203;57997](https://redirect.github.com/nodejs/node/pull/57997)
-
\[[`581439c9e6`](https://redirect.github.com/nodejs/node/commit/581439c9e6)]
- **doc**: mark devtools integration section as active development
(Chengzhong Wu)
[#&#8203;57886](https://redirect.github.com/nodejs/node/pull/57886)
-
\[[`a2a2a2f027`](https://redirect.github.com/nodejs/node/commit/a2a2a2f027)]
- **doc**: fix typo in `module.md` (Alex Schwartz)
[#&#8203;57889](https://redirect.github.com/nodejs/node/pull/57889)
-
\[[`c0ec4e2935`](https://redirect.github.com/nodejs/node/commit/c0ec4e2935)]
- **doc**: increase z-index of header element (Dario Piotrowicz)
[#&#8203;57851](https://redirect.github.com/nodejs/node/pull/57851)
-
\[[`93d19ec6cd`](https://redirect.github.com/nodejs/node/commit/93d19ec6cd)]
- **doc**: add missing TS formats for `load` hooks (Antoine du Hamel)
[#&#8203;57837](https://redirect.github.com/nodejs/node/pull/57837)
-
\[[`f5ea06c61f`](https://redirect.github.com/nodejs/node/commit/f5ea06c61f)]
- **doc**: clarify the multi REPL example (Dario Piotrowicz)
[#&#8203;57759](https://redirect.github.com/nodejs/node/pull/57759)
-
\[[`80c4fe1b70`](https://redirect.github.com/nodejs/node/commit/80c4fe1b70)]
- **doc**: fix deprecation type for `DEP0148` (Livia Medeiros)
[#&#8203;57785](https://redirect.github.com/nodejs/node/pull/57785)
-
\[[`01cad99da0`](https://redirect.github.com/nodejs/node/commit/01cad99da0)]
- **doc**: list DOMException as a potential error raised by Node.js
(Chengzhong Wu)
[#&#8203;57783](https://redirect.github.com/nodejs/node/pull/57783)
-
\[[`a08b714a46`](https://redirect.github.com/nodejs/node/commit/a08b714a46)]
- **doc**: add missing v0.x changelog entries (Antoine du Hamel)
[#&#8203;57779](https://redirect.github.com/nodejs/node/pull/57779)
-
\[[`d0b48350fd`](https://redirect.github.com/nodejs/node/commit/d0b48350fd)]
- **doc**: fix typo in writing-docs (Sebastian Beltran)
[#&#8203;57776](https://redirect.github.com/nodejs/node/pull/57776)
-
\[[`bde3725f8b`](https://redirect.github.com/nodejs/node/commit/bde3725f8b)]
- **doc**: clarify examples section in REPL doc (Dario Piotrowicz)
[#&#8203;57762](https://redirect.github.com/nodejs/node/pull/57762)
-
\[[`c8ceaaf397`](https://redirect.github.com/nodejs/node/commit/c8ceaaf397)]
- **(SEMVER-MINOR)** **doc**: graduate multiple experimental apis (James
M Snell)
[#&#8203;57765](https://redirect.github.com/nodejs/node/pull/57765)
-
\[[`92428c2609`](https://redirect.github.com/nodejs/node/commit/92428c2609)]
- **doc**: explicitly state that corepack will be removed in v25+
(Trivikram Kamat)
[#&#8203;57747](https://redirect.github.com/nodejs/node/pull/57747)
-
\[[`298969e1dd`](https://redirect.github.com/nodejs/node/commit/298969e1dd)]
- **doc**: update position type to integer | null in fs (Yukihiro
Hasegawa)
[#&#8203;57745](https://redirect.github.com/nodejs/node/pull/57745)
-
\[[`a9d28e27c9`](https://redirect.github.com/nodejs/node/commit/a9d28e27c9)]
- **doc**: update CI instructions (Antoine du Hamel)
[#&#8203;57743](https://redirect.github.com/nodejs/node/pull/57743)
-
\[[`133d2878a1`](https://redirect.github.com/nodejs/node/commit/133d2878a1)]
- **doc**: update example of using `await` in REPL (Dario Piotrowicz)
[#&#8203;57653](https://redirect.github.com/nodejs/node/pull/57653)
-
\[[`fc5f126629`](https://redirect.github.com/nodejs/node/commit/fc5f126629)]
- **doc**: add back mention of visa fees to onboarding doc (Darshan Sen)
[#&#8203;57730](https://redirect.github.com/nodejs/node/pull/57730)
-
\[[`945f4ac538`](https://redirect.github.com/nodejs/node/commit/945f4ac538)]
- **doc**: process.execve is only unavailable for Windows (Yaksh Bariya)
[#&#8203;57726](https://redirect.github.com/nodejs/node/pull/57726)
-
\[[`f3b885bb5e`](https://redirect.github.com/nodejs/node/commit/f3b885bb5e)]
- **doc**: clarify `unhandledRejection` events behaviors in process doc
(Dario Piotrowicz)
[#&#8203;57654](https://redirect.github.com/nodejs/node/pull/57654)
-
\[[`7326dda5b0`](https://redirect.github.com/nodejs/node/commit/7326dda5b0)]
- **doc**: improved fetch docs (Alessandro Miliucci)
[#&#8203;57296](https://redirect.github.com/nodejs/node/pull/57296)
-
\[[`6906c5eb1f`](https://redirect.github.com/nodejs/node/commit/6906c5eb1f)]
- **doc**: document REPL custom eval arguments (Dario Piotrowicz)
[#&#8203;57690](https://redirect.github.com/nodejs/node/pull/57690)
-
\[[`47a7564e8f`](https://redirect.github.com/nodejs/node/commit/47a7564e8f)]
- **doc**: classify Chrome DevTools Protocol as tier 2 (Chengzhong Wu)
[#&#8203;57634](https://redirect.github.com/nodejs/node/pull/57634)
-
\[[`e274cc1310`](https://redirect.github.com/nodejs/node/commit/e274cc1310)]
- **doc**: replace NOTE that does not render properly (Colin Ihrig)
[#&#8203;57484](https://redirect.github.com/nodejs/node/pull/57484)
-
\[[`bef06b11df`](https://redirect.github.com/nodejs/node/commit/bef06b11df)]
- **esm**: avoid `import.meta` setup costs for unused properties
(Antoine du Hamel)
[#&#8203;57286](https://redirect.github.com/nodejs/node/pull/57286)
-
\[[`e21b37d9df`](https://redirect.github.com/nodejs/node/commit/e21b37d9df)]
- **(SEMVER-MINOR)** **esm**: graduate import.meta properties (James M
Snell)
[#&#8203;58011](https://redirect.github.com/nodejs/node/pull/58011)
-
\[[`832640c35e`](https://redirect.github.com/nodejs/node/commit/832640c35e)]
- **(SEMVER-MINOR)** **esm**: support top-level Wasm without package
type (Guy Bedford)
[#&#8203;57610](https://redirect.github.com/nodejs/node/pull/57610)
-
\[[`8f643471ef`](https://redirect.github.com/nodejs/node/commit/8f643471ef)]
- **fs**: improve globSync performance (Rich Trott)
[#&#8203;57725](https://redirect.github.com/nodejs/node/pull/57725)
-
\[[`bf9e17ecc6`](https://redirect.github.com/nodejs/node/commit/bf9e17ecc6)]
- **http2**: use args.This() instead of args.Holder() (Joyee Cheung)
[#&#8203;58004](https://redirect.github.com/nodejs/node/pull/58004)
-
\[[`137717354f`](https://redirect.github.com/nodejs/node/commit/137717354f)]
- **http2**: fix graceful session close (Kushagra Pandey)
[#&#8203;57808](https://redirect.github.com/nodejs/node/pull/57808)
-
\[[`9baf580269`](https://redirect.github.com/nodejs/node/commit/9baf580269)]
- **http2**: fix check for `frame->hd.type` (hanguanqiang)
[#&#8203;57644](https://redirect.github.com/nodejs/node/pull/57644)
-
\[[`b8189242b2`](https://redirect.github.com/nodejs/node/commit/b8189242b2)]
- **http2**: skip writeHead if stream is closed (Shima Ryuhei)
[#&#8203;57686](https://redirect.github.com/nodejs/node/pull/57686)
-
\[[`4e02a1650a`](https://redirect.github.com/nodejs/node/commit/4e02a1650a)]
- **lib**: remove unused file `fetch_module` (Michaël Zasso)
[#&#8203;55880](https://redirect.github.com/nodejs/node/pull/55880)
-
\[[`d9700fef26`](https://redirect.github.com/nodejs/node/commit/d9700fef26)]
- **lib**: avoid StackOverflow on `serializeError` (Chengzhong Wu)
[#&#8203;58075](https://redirect.github.com/nodejs/node/pull/58075)
-
\[[`f3a16b6d9c`](https://redirect.github.com/nodejs/node/commit/f3a16b6d9c)]
- **lib**: resolve the issue of not adhering to the specified buffer
size (0hm☘️🏳️‍⚧️)
[#&#8203;55896](https://redirect.github.com/nodejs/node/pull/55896)
-
\[[`d4fc282f73`](https://redirect.github.com/nodejs/node/commit/d4fc282f73)]
- **lib**: fix AbortSignal.any() with timeout signals (Gürgün Dayıoğlu)
[#&#8203;57867](https://redirect.github.com/nodejs/node/pull/57867)
-
\[[`f7e2902861`](https://redirect.github.com/nodejs/node/commit/f7e2902861)]
- **lib**: use Map primordial for ActiveAsyncContextFrame (Gürgün
Dayıoğlu)
[#&#8203;57670](https://redirect.github.com/nodejs/node/pull/57670)
-
\[[`8652b0e168`](https://redirect.github.com/nodejs/node/commit/8652b0e168)]
- **meta**: set nodejs/config as codeowner (Marco Ippolito)
[#&#8203;57237](https://redirect.github.com/nodejs/node/pull/57237)
-
\[[`e98504ed95`](https://redirect.github.com/nodejs/node/commit/e98504ed95)]
- **meta**: allow penetration testing on live system with prior
authorization (Matteo Collina)
[#&#8203;57966](https://redirect.github.com/nodejs/node/pull/57966)
-
\[[`340731bea0`](https://redirect.github.com/nodejs/node/commit/340731bea0)]
- **meta**: fix subsystem in commit title (Luigi Pinca)
[#&#8203;57945](https://redirect.github.com/nodejs/node/pull/57945)
-
\[[`d767cbffcf`](https://redirect.github.com/nodejs/node/commit/d767cbffcf)]
- **meta**: bump Mozilla-Actions/sccache-action from 0.0.8 to 0.0.9
(dependabot\[bot])
[#&#8203;57720](https://redirect.github.com/nodejs/node/pull/57720)
-
\[[`575f904b13`](https://redirect.github.com/nodejs/node/commit/575f904b13)]
- **meta**: bump actions/download-artifact from 4.1.9 to 4.2.1
(dependabot\[bot])
[#&#8203;57719](https://redirect.github.com/nodejs/node/pull/57719)
-
\[[`acd323c069`](https://redirect.github.com/nodejs/node/commit/acd323c069)]
- **meta**: bump actions/setup-python from 5.4.0 to 5.5.0
(dependabot\[bot])
[#&#8203;57718](https://redirect.github.com/nodejs/node/pull/57718)
-
\[[`21246fec20`](https://redirect.github.com/nodejs/node/commit/21246fec20)]
- **meta**: bump peter-evans/create-pull-request from 7.0.7 to 7.0.8
(dependabot\[bot])
[#&#8203;57717](https://redirect.github.com/nodejs/node/pull/57717)
-
\[[`97f32d5849`](https://redirect.github.com/nodejs/node/commit/97f32d5849)]
- **meta**: bump github/codeql-action from 3.28.10 to 3.28.13
(dependabot\[bot])
[#&#8203;57716](https://redirect.github.com/nodejs/node/pull/57716)
-
\[[`90ddbb8cfa`](https://redirect.github.com/nodejs/node/commit/90ddbb8cfa)]
- **meta**: bump actions/cache from 4.2.2 to 4.2.3 (dependabot\[bot])
[#&#8203;57715](https://redirect.github.com/nodejs/node/pull/57715)
-
\[[`728425d03e`](https://redirect.github.com/nodejs/node/commit/728425d03e)]
- **meta**: bump actions/setup-node from 4.2.0 to 4.3.0
(dependabot\[bot])
[#&#8203;57714](https://redirect.github.com/nodejs/node/pull/57714)
-
\[[`1f799140e0`](https://redirect.github.com/nodejs/node/commit/1f799140e0)]
- **meta**: bump actions/upload-artifact from 4.6.1 to 4.6.2
(dependabot\[bot])
[#&#8203;57713](https://redirect.github.com/nodejs/node/pull/57713)
-
\[[`021b174a1f`](https://redirect.github.com/nodejs/node/commit/021b174a1f)]
- **module**: tidy code string concat → string templates (Jacob Smith)
[#&#8203;55820](https://redirect.github.com/nodejs/node/pull/55820)
-
\[[`44c5718476`](https://redirect.github.com/nodejs/node/commit/44c5718476)]
- **module**: fix incorrect formatting in require(esm) cycle error
message (haykam821)
[#&#8203;57453](https://redirect.github.com/nodejs/node/pull/57453)
-
\[[`bb09b4d4ae`](https://redirect.github.com/nodejs/node/commit/bb09b4d4ae)]
- **module**: improve `getPackageType` performance (Dario Piotrowicz)
[#&#8203;57599](https://redirect.github.com/nodejs/node/pull/57599)
-
\[[`9e6054e715`](https://redirect.github.com/nodejs/node/commit/9e6054e715)]
- **module**: remove unnecessary `readPackage` function (Dario
Piotrowicz)
[#&#8203;57596](https://redirect.github.com/nodejs/node/pull/57596)
-
\[[`4a8db273ba`](https://redirect.github.com/nodejs/node/commit/4a8db273ba)]
- **node-api**: add nested object wrap and napi_ref test (Chengzhong Wu)
[#&#8203;57981](https://redirect.github.com/nodejs/node/pull/57981)
-
\[[`3c65058f20`](https://redirect.github.com/nodejs/node/commit/3c65058f20)]
- **node-api**: convert NewEnv to node_napi_env\_\_::New (Vladimir
Morozov)
[#&#8203;57834](https://redirect.github.com/nodejs/node/pull/57834)
-
\[[`a4105db1f7`](https://redirect.github.com/nodejs/node/commit/a4105db1f7)]
- **os**: fix netmask format check condition in getCIDR function
(Wiyeong Seo)
[#&#8203;57324](https://redirect.github.com/nodejs/node/pull/57324)
-
\[[`248c938139`](https://redirect.github.com/nodejs/node/commit/248c938139)]
- **process**: disable building execve on IBM i (Abdirahim Musse)
[#&#8203;57883](https://redirect.github.com/nodejs/node/pull/57883)
-
\[[`972275697a`](https://redirect.github.com/nodejs/node/commit/972275697a)]
- **repl**: deprecate `repl.builtinModules` (Dario Piotrowicz)
[#&#8203;57508](https://redirect.github.com/nodejs/node/pull/57508)
-
\[[`7485309d7e`](https://redirect.github.com/nodejs/node/commit/7485309d7e)]
- **sqlite**: add location method (Edy Silva)
[#&#8203;57860](https://redirect.github.com/nodejs/node/pull/57860)
-
\[[`c12cd2a190`](https://redirect.github.com/nodejs/node/commit/c12cd2a190)]
- **sqlite**: add timeout options to DatabaseSync (Edy Silva)
[#&#8203;57752](https://redirect.github.com/nodejs/node/pull/57752)
-
\[[`5e0503a967`](https://redirect.github.com/nodejs/node/commit/5e0503a967)]
- **sqlite**: add setReturnArrays method to StatementSync (Gürgün
Dayıoğlu)
[#&#8203;57542](https://redirect.github.com/nodejs/node/pull/57542)
-
\[[`ed9d2fd51a`](https://redirect.github.com/nodejs/node/commit/ed9d2fd51a)]
- **sqlite**: enable common flags (Edy Silva)
[#&#8203;57621](https://redirect.github.com/nodejs/node/pull/57621)
-
\[[`06dcb318bc`](https://redirect.github.com/nodejs/node/commit/06dcb318bc)]
- **sqlite**: refactor prepared statement iterator (Colin Ihrig)
[#&#8203;57569](https://redirect.github.com/nodejs/node/pull/57569)
-
\[[`c510391d2f`](https://redirect.github.com/nodejs/node/commit/c510391d2f)]
- **(SEMVER-MINOR)** **sqlite**: add StatementSync.prototype.columns()
(Colin Ihrig)
[#&#8203;57490](https://redirect.github.com/nodejs/node/pull/57490)
-
\[[`4e24456a1a`](https://redirect.github.com/nodejs/node/commit/4e24456a1a)]
- **sqlite**: reset statement immediately in run() (Colin Ihrig)
[#&#8203;57350](https://redirect.github.com/nodejs/node/pull/57350)
-
\[[`a9a6891b0b`](https://redirect.github.com/nodejs/node/commit/a9a6891b0b)]
- **sqlite**: fix coverity warnings related to backup() (Colin Ihrig)
[#&#8203;56961](https://redirect.github.com/nodejs/node/pull/56961)
-
\[[`d2e1bcf3d4`](https://redirect.github.com/nodejs/node/commit/d2e1bcf3d4)]
- **sqlite**: fix use-after-free in StatementSync due to premature GC
(Divy Srivastava)
[#&#8203;56840](https://redirect.github.com/nodejs/node/pull/56840)
-
\[[`cfe15ca7b4`](https://redirect.github.com/nodejs/node/commit/cfe15ca7b4)]
- **sqlite**: handle conflicting SQLite and JS errors (Colin Ihrig)
[#&#8203;56787](https://redirect.github.com/nodejs/node/pull/56787)
-
\[[`0e999eb65f`](https://redirect.github.com/nodejs/node/commit/0e999eb65f)]
- **sqlite**: add getter to detect transactions (Colin Ihrig)
[#&#8203;57925](https://redirect.github.com/nodejs/node/pull/57925)
-
\[[`20b27331c0`](https://redirect.github.com/nodejs/node/commit/20b27331c0)]
- **sqlite, test**: expose sqlite online backup api (Edy Silva)
[#&#8203;56253](https://redirect.github.com/nodejs/node/pull/56253)
-
\[[`8856712171`](https://redirect.github.com/nodejs/node/commit/8856712171)]
- **sqlite,doc,test**: add aggregate function (Edy Silva)
[#&#8203;56600](https://redirect.github.com/nodejs/node/pull/56600)
-
\[[`120050db97`](https://redirect.github.com/nodejs/node/commit/120050db97)]
- **sqlite,src**: refactor sqlite value conversion (Edy Silva)
[#&#8203;57571](https://redirect.github.com/nodejs/node/pull/57571)
-
\[[`4c5555d558`](https://redirect.github.com/nodejs/node/commit/4c5555d558)]
- **src**: initialize privateSymbols for per_context (Jason Zhang)
[#&#8203;57479](https://redirect.github.com/nodejs/node/pull/57479)
-
\[[`d2ce9023b1`](https://redirect.github.com/nodejs/node/commit/d2ce9023b1)]
- **src**: ensure primordials are initialized exactly once (Chengzhong
Wu) [#&#8203;57519](https://redirect.github.com/nodejs/node/pull/57519)
-
\[[`06179be6ca`](https://redirect.github.com/nodejs/node/commit/06179be6ca)]
- **src**: disable abseil deadlock detection (Chengzhong Wu)
[#&#8203;57582](https://redirect.github.com/nodejs/node/pull/57582)
-
\[[`5121c47990`](https://redirect.github.com/nodejs/node/commit/5121c47990)]
- **src**: fix node_config_file.h compilation error in GN build (Cheng)
[#&#8203;57210](https://redirect.github.com/nodejs/node/pull/57210)
-
\[[`5d1230bec0`](https://redirect.github.com/nodejs/node/commit/5d1230bec0)]
- **(SEMVER-MINOR)** **src**: set default config as `node.config.json`
(Marco Ippolito)
[#&#8203;57171](https://redirect.github.com/nodejs/node/pull/57171)
-
\[[`ccee741c43`](https://redirect.github.com/nodejs/node/commit/ccee741c43)]
- **src**: namespace config file flags (Marco Ippolito)
[#&#8203;57170](https://redirect.github.com/nodejs/node/pull/57170)
-
\[[`30bb1ccbb0`](https://redirect.github.com/nodejs/node/commit/30bb1ccbb0)]
- **(SEMVER-MINOR)** **src**: create
`THROW_ERR_OPTIONS_BEFORE_BOOTSTRAPPING` (Marco Ippolito)
[#&#8203;57016](https://redirect.github.com/nodejs/node/pull/57016)
-
\[[`0350c6f478`](https://redirect.github.com/nodejs/node/commit/0350c6f478)]
- **(SEMVER-MINOR)** **src**: add config file support (Marco Ippolito)
[#&#8203;57016](https://redirect.github.com/nodejs/node/pull/57016)
-
\[[`eef37d00cb`](https://redirect.github.com/nodejs/node/commit/eef37d00cb)]
- **src**: add more debug logs and comments in NodePlatform (Joyee
Cheung)
[#&#8203;58047](https://redirect.github.com/nodejs/node/pull/58047)
-
\[[`678e8f57c0`](https://redirect.github.com/nodejs/node/commit/678e8f57c0)]
- **src**: add dcheck_eq for Object::New constructor calls (Jonas)
[#&#8203;57943](https://redirect.github.com/nodejs/node/pull/57943)
-
\[[`aee45e2036`](https://redirect.github.com/nodejs/node/commit/aee45e2036)]
- **src**: move windows specific fns to `_WIN32` (Yagiz Nizipli)
[#&#8203;57951](https://redirect.github.com/nodejs/node/pull/57951)
-
\[[`6206a8edbc`](https://redirect.github.com/nodejs/node/commit/6206a8edbc)]
- **src**: improve thread safety of TaskQueue (Shelley Vohr)
[#&#8203;57910](https://redirect.github.com/nodejs/node/pull/57910)
-
\[[`03936f31c1`](https://redirect.github.com/nodejs/node/commit/03936f31c1)]
- **src**: fixup errorhandling more in various places (James M Snell)
[#&#8203;57852](https://redirect.github.com/nodejs/node/pull/57852)
-
\[[`010dd91a19`](https://redirect.github.com/nodejs/node/commit/010dd91a19)]
- **src**: fix typo in comments (Edy Silva)
[#&#8203;57868](https://redirect.github.com/nodejs/node/pull/57868)
-
\[[`e00c1ecbd2`](https://redirect.github.com/nodejs/node/commit/e00c1ecbd2)]
- **src**: add BaseObjectPtr nullptr operations (Chengzhong Wu)
[#&#8203;56585](https://redirect.github.com/nodejs/node/pull/56585)
-
\[[`648ad252e1`](https://redirect.github.com/nodejs/node/commit/648ad252e1)]
- **src**: remove `void*` -> `char*` -> `void*` casts (Tobias Nießen)
[#&#8203;57791](https://redirect.github.com/nodejs/node/pull/57791)
-
\[[`680b434a62`](https://redirect.github.com/nodejs/node/commit/680b434a62)]
- **src**: improve error handing in node_messaging (James M Snell)
[#&#8203;57760](https://redirect.github.com/nodejs/node/pull/57760)
-
\[[`18f5301747`](https://redirect.github.com/nodejs/node/commit/18f5301747)]
- **src**: remove unused detachArrayBuffer method (Yagiz Nizipli)
[#&#8203;58055](https://redirect.github.com/nodejs/node/pull/58055)
-
\[[`065e8cd670`](https://redirect.github.com/nodejs/node/commit/065e8cd670)]
- **src**: use macros to reduce code duplication is cares_wrap (James M
Snell)
[#&#8203;57937](https://redirect.github.com/nodejs/node/pull/57937)
-
\[[`39af5d678f`](https://redirect.github.com/nodejs/node/commit/39af5d678f)]
- **src**: improve error handling in cares_wrap (James M Snell)
[#&#8203;57937](https://redirect.github.com/nodejs/node/pull/57937)
-
\[[`ca020fdc4e`](https://redirect.github.com/nodejs/node/commit/ca020fdc4e)]
- **src**: fix -Wunreachable-code-return in node_sea (Shelley Vohr)
[#&#8203;57664](https://redirect.github.com/nodejs/node/pull/57664)
-
\[[`32b6e7094a`](https://redirect.github.com/nodejs/node/commit/32b6e7094a)]
- **src**: change DCHECK to CHECK (Wuli Zuo)
[#&#8203;57948](https://redirect.github.com/nodejs/node/pull/57948)
-
\[[`e1d3a9e192`](https://redirect.github.com/nodejs/node/commit/e1d3a9e192)]
- **(SEMVER-MINOR)** **src**: add ExecutionAsyncId getter for any
Context (Attila Szegedi)
[#&#8203;57820](https://redirect.github.com/nodejs/node/pull/57820)
-
\[[`96243a723a`](https://redirect.github.com/nodejs/node/commit/96243a723a)]
- **src**: update std::vector\<v8::Local\<T>> to use v8::LocalVector\<T>
(Aditi)
[#&#8203;57646](https://redirect.github.com/nodejs/node/pull/57646)
-
\[[`0f2cbc17c7`](https://redirect.github.com/nodejs/node/commit/0f2cbc17c7)]
- **src**: update std::vector\<v8::Local\<T>> to use v8::LocalVector\<T>
(Aditi)
[#&#8203;57642](https://redirect.github.com/nodejs/node/pull/57642)
-
\[[`d1c6f861d5`](https://redirect.github.com/nodejs/node/commit/d1c6f861d5)]
- **src**: update std::vector\<v8::Local\<T>> to use v8::LocalVector\<T>
(Aditi)
[#&#8203;57578](https://redirect.github.com/nodejs/node/pull/57578)
-
\[[`ab0d3a38db`](https://redirect.github.com/nodejs/node/commit/ab0d3a38db)]
- **src**: improve error message for invalid child stdio type in
spawn_sync (Dario Piotrowicz)
[#&#8203;57589](https://redirect.github.com/nodejs/node/pull/57589)
-
\[[`24b182e7b3`](https://redirect.github.com/nodejs/node/commit/24b182e7b3)]
- **src**: implement util.types fast API calls (Ruben Bridgewater)
[#&#8203;57819](https://redirect.github.com/nodejs/node/pull/57819)
-
\[[`dda6423be9`](https://redirect.github.com/nodejs/node/commit/dda6423be9)]
- **src**: enter and lock isolate properly in json parser (Joyee Cheung)
[#&#8203;57823](https://redirect.github.com/nodejs/node/pull/57823)
-
\[[`4754c693f8`](https://redirect.github.com/nodejs/node/commit/4754c693f8)]
- **src**: improve error handling in `node_env_var.cc` (Antoine du
Hamel)
[#&#8203;57767](https://redirect.github.com/nodejs/node/pull/57767)
-
\[[`db483bbe63`](https://redirect.github.com/nodejs/node/commit/db483bbe63)]
- **src**: improve error handling in node_http2 (James M Snell)
[#&#8203;57764](https://redirect.github.com/nodejs/node/pull/57764)
-
\[[`b0277700d6`](https://redirect.github.com/nodejs/node/commit/b0277700d6)]
- **src**: improve error handling in crypto_x509 (James M Snell)
[#&#8203;57757](https://redirect.github.com/nodejs/node/pull/57757)
-
\[[`353587f984`](https://redirect.github.com/nodejs/node/commit/353587f984)]
- **src**: improve error handling in callback.cc (James M Snell)
[#&#8203;57758](https://redirect.github.com/nodejs/node/pull/57758)
-
\[[`bec053ab20`](https://redirect.github.com/nodejs/node/commit/bec053ab20)]
- **src**: remove unused variable in crypto_x509.cc (Michaël Zasso)
[#&#8203;57754](https://redirect.github.com/nodejs/node/pull/57754)
-
\[[`38a329a857`](https://redirect.github.com/nodejs/node/commit/38a329a857)]
- **src**: fix kill signal 0 on Windows (Stefan Stojanovic)
[#&#8203;57695](https://redirect.github.com/nodejs/node/pull/57695)
-
\[[`70bb387f82`](https://redirect.github.com/nodejs/node/commit/70bb387f82)]
- **src**: fix inefficient usage of v8\_inspector::StringView (Simon
Zünd)
[#&#8203;52372](https://redirect.github.com/nodejs/node/pull/52372)
-
\[[`be038f0273`](https://redirect.github.com/nodejs/node/commit/be038f0273)]
- **src,permission**: make ERR_ACCESS_DENIED more descriptive (Rafael
Gonzaga)
[#&#8203;57585](https://redirect.github.com/nodejs/node/pull/57585)
-
\[[`0ec912f452`](https://redirect.github.com/nodejs/node/commit/0ec912f452)]
- **(SEMVER-MINOR)** **stream**: preserve AsyncLocalStorage context in
finished() (Gürgün Dayıoğlu)
[#&#8203;57865](https://redirect.github.com/nodejs/node/pull/57865)
-
\[[`6ffb66f82f`](https://redirect.github.com/nodejs/node/commit/6ffb66f82f)]
- **test**: fix permission fixtures lint (Rafael Gonzaga)
[#&#8203;55819](https://redirect.github.com/nodejs/node/pull/55819)
-
\[[`fd37891186`](https://redirect.github.com/nodejs/node/commit/fd37891186)]
- **test**: add repl preview timeout test (Chengzhong Wu)
[#&#8203;55484](https://redirect.github.com/nodejs/node/pull/55484)
-
\[[`1be5a8c1b4`](https://redirect.github.com/nodejs/node/commit/1be5a8c1b4)]
- **test**: skip `test-config-json-schema` with quic (Richard Lau)
[#&#8203;57225](https://redirect.github.com/nodejs/node/pull/57225)
-
\[[`e90583b657`](https://redirect.github.com/nodejs/node/commit/e90583b657)]
- **test**: add more coverage to `node_config_file` (Marco Ippolito)
[#&#8203;57170](https://redirect.github.com/nodejs/node/pull/57170)
-
\[[`df2a36bfcc`](https://redirect.github.com/nodejs/node/commit/df2a36bfcc)]
- **test**: remove deadlock workaround (Joyee Cheung)
[#&#8203;58047](https://redirect.github.com/nodejs/node/pull/58047)
-
\[[`103034b051`](https://redirect.github.com/nodejs/node/commit/103034b051)]
- **test**: prevent extraneous HOSTNAME substitution in
test-runner-output (René)
[#&#8203;58076](https://redirect.github.com/nodejs/node/pull/58076)
-
\[[`3e58f81a38`](https://redirect.github.com/nodejs/node/commit/3e58f81a38)]
- **test**: update WPT for WebCryptoAPI to
[`b48efd6`](https://redirect.github.com/nodejs/node/commit/b48efd681e)
(Node.js GitHub Bot)
[#&#8203;58044](https://redirect.github.com/nodejs/node/pull/58044)
-
\[[`2f4e4164a3`](https://redirect.github.com/nodejs/node/commit/2f4e4164a3)]
- **test**: add missing newlines to repl .exit writes (Dario Piotrowicz)
[#&#8203;58041](https://redirect.github.com/nodejs/node/pull/58041)
-
\[[`b40769292e`](https://redirect.github.com/nodejs/node/commit/b40769292e)]
- **test**: add fast api tests for getLibuvNow() (Yagiz Nizipli)
[#&#8203;58022](https://redirect.github.com/nodejs/node/pull/58022)
-
\[[`cbd5768d47`](https://redirect.github.com/nodejs/node/commit/cbd5768d47)]
- **test**: add ALS test using http agent keep alive (Gerhard Stöbich)
[#&#8203;58017](https://redirect.github.com/nodejs/node/pull/58017)
-
\[[`9e31ab502a`](https://redirect.github.com/nodejs/node/commit/9e31ab502a)]
- **test**: deflake test-http2-options-max-headers-block-length (Luigi
Pinca)
[#&#8203;57959](https://redirect.github.com/nodejs/node/pull/57959)
-
\[[`13f8f9cc12`](https://redirect.github.com/nodejs/node/commit/13f8f9cc12)]
- **test**: rename to getCallSites (Wuli Zuo)
[#&#8203;57948](https://redirect.github.com/nodejs/node/pull/57948)
-
\[[`92dce6ed6b`](https://redirect.github.com/nodejs/node/commit/92dce6ed6b)]
- **test**: force GC in test-file-write-stream4 (Luigi Pinca)
[#&#8203;57930](https://redirect.github.com/nodejs/node/pull/57930)
-
\[[`aa755d3acf`](https://redirect.github.com/nodejs/node/commit/aa755d3acf)]
- **test**: enable skipped colorize test (Shima Ryuhei)
[#&#8203;57887](https://redirect.github.com/nodejs/node/pull/57887)
-
\[[`331f44c78c`](https://redirect.github.com/nodejs/node/commit/331f44c78c)]
- **test**: update WPT for WebCryptoAPI to
[`164426a`](https://redirect.github.com/nodejs/node/commit/164426ace2)
(Node.js GitHub Bot)
[#&#8203;57854](https://redirect.github.com/nodejs/node/pull/57854)
-
\[[`4aaa8438b4`](https://redirect.github.com/nodejs/node/commit/4aaa8438b4)]
- **test**: add test for frame count being 0.5 (Jake Yuesong Li)
[#&#8203;57732](https://redirect.github.com/nodejs/node/pull/57732)
-
\[[`fb51d3a0c5`](https://redirect.github.com/nodejs/node/commit/fb51d3a0c5)]
- **test**: fix the decimal fractions explaination (Jake Yuesong Li)
[#&#8203;57732](https://redirect.github.com/nodejs/node/pull/57732)
-
\[[`c6a45a9087`](https://redirect.github.com/nodejs/node/commit/c6a45a9087)]
- ***Revert*** "**test**: add tests for REPL custom evals" (Tobias
Nießen)
[#&#8203;57793](https://redirect.github.com/nodejs/node/pull/57793)
-
\[[`f3a4d03963`](https://redirect.github.com/nodejs/node/commit/f3a4d03963)]
- **test**: add tests for REPL custom evals (Dario Piotrowicz)
[#&#8203;57691](https://redirect.github.com/nodejs/node/pull/57691)
-
\[[`a3be0df337`](https://redirect.github.com/nodejs/node/commit/a3be0df337)]
- **test**: update expected error message for macOS (Antoine du Hamel)
[#&#8203;57742](https://redirect.github.com/nodejs/node/pull/57742)
-
\[[`a7e73a0a74`](https://redirect.github.com/nodejs/node/commit/a7e73a0a74)]
- **test**: fix dangling promise in test_runner no isolation test setup
(Jacob Smith)
[#&#8203;57595](https://redirect.github.com/nodejs/node/pull/57595)
-
\[[`edb7dd1ec7`](https://redirect.github.com/nodejs/node/commit/edb7dd1ec7)]
- **test_runner**: match minimum file column to 'all files' (Shima
Ryuhei)
[#&#8203;57848](https://redirect.github.com/nodejs/node/pull/57848)
-
\[[`c56f495e83`](https://redirect.github.com/nodejs/node/commit/c56f495e83)]
- **tools**: extract target abseil to abseil.gyp (Chengzhong Wu)
[#&#8203;57289](https://redirect.github.com/nodejs/node/pull/57289)
-
\[[`1b37161a27`](https://redirect.github.com/nodejs/node/commit/1b37161a27)]
- **tools**: ignore V8 tests in CodeQL scans (Rich Trott)
[#&#8203;58081](https://redirect.github.com/nodejs/node/pull/58081)
-
\[[`23386308dd`](https://redirect.github.com/nodejs/node/commit/23386308dd)]
- **tools**: enable CodeQL config file (Rich Trott)
[#&#8203;58036](https://redirect.github.com/nodejs/node/pull/58036)
-
\[[`9c21abc169`](https://redirect.github.com/nodejs/node/commit/9c21abc169)]
- **tools**: ignore test directory in CodeQL scans (Rich Trott)
[#&#8203;57978](https://redirect.github.com/nodejs/node/pull/57978)
-
\[[`f210a1530d`](https://redirect.github.com/nodejs/node/commit/f210a1530d)]
- **tools**: add semver-major release support to release-lint (Antoine
du Hamel)
[#&#8203;57892](https://redirect.github.com/nodejs/node/pull/57892)
-
\[[`234c417e98`](https://redirect.github.com/nodejs/node/commit/234c417e98)]
- **tools**: add codeql nightly (Rafael Gonzaga)
[#&#8203;57788](https://redirect.github.com/nodejs/node/pull/57788)
-
\[[`938f1532da`](https://redirect.github.com/nodejs/node/commit/938f1532da)]
- **tools**: edit create-release-proposal workflow to handle pr body
length (Elves Vieira)
[#&#8203;57841](https://redirect.github.com/nodejs/node/pull/57841)
-
\[[`b362339f72`](https://redirect.github.com/nodejs/node/commit/b362339f72)]
- **tools**: add zstd updater to workflow (KASEYA\yahor.siarheyenka)
[#&#8203;57831](https://redirect.github.com/nodejs/node/pull/57831)
-
\[[`61180db9c0`](https://redirect.github.com/nodejs/node/commit/61180db9c0)]
- **tools**: remove unused `osx-pkg-postinstall.sh` (Antoine du Hamel)
[#&#8203;57667](https://redirect.github.com/nodejs/node/pull/57667)
-
\[[`3ae04c94eb`](https://redirect.github.com/nodejs/node/commit/3ae04c94eb)]
- **tools**: do not use temp files when merging PRs (Antoine du Hamel)
[#&#8203;57790](https://redirect.github.com/nodejs/node/pull/57790)
-
\[[`d623c2c2b4`](https://redirect.github.com/nodejs/node/commit/d623c2c2b4)]
- **tools**: update gyp-next to 0.20.0 (Node.js GitHub Bot)
[#&#8203;57683](https://redirect.github.com/nodejs/node/pull/57683)
-
\[[`43ea4c532a`](https://redirect.github.com/nodejs/node/commit/43ea4c532a)]
- **tools**: bump the eslint group in /tools/eslint with 4 updates
(dependabot\[bot])
[#&#8203;57721](https://redirect.github.com/nodejs/node/pull/57721)
-
\[[`5703147470`](https://redirect.github.com/nodejs/node/commit/5703147470)]
- **tools**: enable linter in `test/fixtures/source-map/output` (Antoine
du Hamel)
[#&#8203;57700](https://redirect.github.com/nodejs/node/pull/57700)
-
\[[`80d58c372d`](https://redirect.github.com/nodejs/node/commit/80d58c372d)]
- **tools**: enable linter in `test/fixtures/errors` (Antoine du Hamel)
[#&#8203;57701](https://redirect.github.com/nodejs/node/pull/57701)
-
\[[`ef5275b7be`](https://redirect.github.com/nodejs/node/commit/ef5275b7be)]
- **tools**: enable linter in `test/fixtures/test-runner/output`
(Antoine du Hamel)
[#&#8203;57698](https://redirect.github.com/nodejs/node/pull/57698)
-
\[[`631733e41f`](https://redirect.github.com/nodejs/node/commit/631733e41f)]
- **tools**: enable linter in `test/fixtures/eval` (Antoine du Hamel)
[#&#8203;57699](https://redirect.github.com/nodejs/node/pull/57699)
-
\[[`6d0128695f`](https://redirect.github.com/nodejs/node/commit/6d0128695f)]
- **tools**: enable linter on some fixtures file (Antoine du Hamel)
[#&#8203;57674](https://redirect.github.com/nodejs/node/pull/57674)
-
\[[`f4d7cbae89`](https://redirect.github.com/nodejs/node/commit/f4d7cbae89)]
- **tools**: update ESLint to 9.23 (Antoine du Hamel)
[#&#8203;57673](https://redirect.github.com/nodejs/node/pull/57673)
-
\[[`5a39a24cd1`](https://redirect.github.com/nodejs/node/commit/5a39a24cd1)]
- **typings**: fix `ModulesBinding` types (Antoine du Hamel)
[#&#8203;55549](https://redirect.github.com/nodejs/node/pull/55549)
-
\[[`2df7ce9ebd`](https://redirect.github.com/nodejs/node/commit/2df7ce9ebd)]
- **util**: fix parseEnv handling of invalid lines (Augustin Mauroy)
[#&#8203;57798](https://redirect.github.com/nodejs/node/pull/57798)
-
\[[`416052a9f2`](https://redirect.github.com/nodejs/node/commit/416052a9f2)]
- **util**: fix formatting of objects with built-in Symbol.toPrimitive
(Shima Ryuhei)
[#&#8203;57832](https://redirect.github.com/nodejs/node/pull/57832)
-
\[[`43490c8797`](https://redirect.github.com/nodejs/node/commit/43490c8797)]
- **(SEMVER-MINOR)** **util**: add `types.isFloat16Array()` (Livia
Medeiros)
[#&#8203;57879](https://redirect.github.com/nodejs/node/pull/57879)
-
\[[`30060e13d3`](https://redirect.github.com/nodejs/node/commit/30060e13d3)]
- **util**: preserve `length` of deprecated functions (Livia Medeiros)
[#&#8203;57806](https://redirect.github.com/nodejs/node/pull/57806)
-
\[[`9837e08a84`](https://redirect.github.com/nodejs/node/commit/9837e08a84)]
- **util**: fix parseEnv incorrectly splitting multiple ‘=‘ in value
(HEESEUNG)
[#&#8203;57421](https://redirect.github.com/nodejs/node/pull/57421)
-
\[[`af41dd3c07`](https://redirect.github.com/nodejs/node/commit/af41dd3c07)]
- **watch**: clarify completion/failure watch mode messages (Dario
Piotrowicz)
[#&#8203;57926](https://redirect.github.com/nodejs/node/pull/57926)
-
\[[`7229a29b47`](https://redirect.github.com/nodejs/node/commit/7229a29b47)]
- **watch**: check parent and child path properly (Jason Zhang)
[#&#8203;57425](https://redirect.github.com/nodejs/node/pull/57425)
-
\[[`1b5a7c6dc8`](https://redirect.github.com/nodejs/node/commit/1b5a7c6dc8)]
- **win**: fix SIGQUIT on ClangCL (Stefan Stojanovic)
[#&#8203;57659](https://redirect.github.com/nodejs/node/pull/57659)
-
\[[`e935c3c6f2`](https://redirect.github.com/nodejs/node/commit/e935c3c6f2)]
- **worker**: add ESM version examples to worker docs (fisker Cheung)
[#&#8203;57645](https://redirect.github.com/nodejs/node/pull/57645)
-
\[[`dda6ca9172`](https://redirect.github.com/nodejs/node/commit/dda6ca9172)]
- **(SEMVER-MINOR)** **worker**: add worker.getHeapStatistics() (Matteo
Collina)
[#&#8203;57888](https://redirect.github.com/nodejs/node/pull/57888)
-
\[[`f2159f2a44`](https://redirect.github.com/nodejs/node/commit/f2159f2a44)]
- **zlib**: fix pointer alignment (jhofstee)
[#&#8203;57727](https://redirect.github.com/nodejs/node/pull/57727)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-05-21 19:00:54 +00:00
TrueCharts Bot 586437efcb fix(website): update lottie-web 5.12.2 → 5.13.0 (#35584)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [lottie-web](https://redirect.github.com/airbnb/lottie-web) |
dependencies | minor | [`5.12.2` ->
`5.13.0`](https://renovatebot.com/diffs/npm/lottie-web/5.12.2/5.13.0) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>airbnb/lottie-web (lottie-web)</summary>

###
[`v5.13.0`](https://redirect.github.com/airbnb/lottie-web/blob/HEAD/CHANGELOG.md#V-5130)

[Compare
Source](https://redirect.github.com/airbnb/lottie-web/compare/v5.12.2...bede03d25d232826e0c9dca1733d542d8a7754fb)

- FIX: rollup config updated to prevent lottie-web from running in
Server-Side Rendering contexts
- FIX: fixed renderGradient() cache invalidation issue so that both
start and end points are checked for changes
- IMPROVEMENT: avoid recalculating static transform matrices, results in
a significant performance improvement
- FIX: reloadShapes() no longer has the side effect of creating
duplicate styles
-   FEATURE: Web Worker supports resetSegments
- FIX: hidden styles were forcibly set as visible when using
searchShapes()
-   IMPROVEMENT: expressions can access unidimensional values by index
-   IMPROVEMENT: expression support for thisProperty.name

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-05-21 20:58:19 +02:00
TrueCharts Bot 4072c91b42 fix(website): update astro 5.7.12 → 5.7.14 (#35582)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.7.12` ->
`5.7.14`](https://renovatebot.com/diffs/npm/astro/5.7.12/5.7.14) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.7.14`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5714)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.7.13...astro@5.7.14)

##### Patch Changes

-
[#&#8203;13773](https://redirect.github.com/withastro/astro/pull/13773)
[`3aa5337`](https://redirect.github.com/withastro/astro/commit/3aa5337eaf01dbcc987dee9413c6985514ef7d6b)
Thanks [@&#8203;sijad](https://redirect.github.com/sijad)! - Ignores
lightningcss unsupported pseudo-class warning.

-
[#&#8203;13833](https://redirect.github.com/withastro/astro/pull/13833)
[`5a6d2ae`](https://redirect.github.com/withastro/astro/commit/5a6d2aede4b397227be5acecfa9bfefb9a1af0f8)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
an issue where session modules would fail to resolve in Node.js < 20.6

-
[#&#8203;13383](https://redirect.github.com/withastro/astro/pull/13383)
[`f7f712c`](https://redirect.github.com/withastro/astro/commit/f7f712cc29f80c4f8096489d7368c2fda223e097)
Thanks [@&#8203;Haberkamp](https://redirect.github.com/Haberkamp)! -
Stop toolbar settings from overflowing

-
[#&#8203;13794](https://redirect.github.com/withastro/astro/pull/13794)
[`85b19d8`](https://redirect.github.com/withastro/astro/commit/85b19d87b6416957c245bd3e239fbf6da2038075)
Thanks
[@&#8203;alexcarpenter](https://redirect.github.com/alexcarpenter)! -
Exclude pre tags from `a11y-no-noninteractive-tabindex` audit check.

-
[#&#8203;13373](https://redirect.github.com/withastro/astro/pull/13373)
[`50ef568`](https://redirect.github.com/withastro/astro/commit/50ef568413b5fe7add36c089b77f9f180739f43f)
Thanks [@&#8203;jpwienekus](https://redirect.github.com/jpwienekus)! -
Fixes a bug where highlights and tooltips render over the audit list
window.

-
[#&#8203;13769](https://redirect.github.com/withastro/astro/pull/13769)
[`e9fc456`](https://redirect.github.com/withastro/astro/commit/e9fc456b58511da3ae2f932256217b3db4c42998)
Thanks [@&#8203;romanstetsyk](https://redirect.github.com/romanstetsyk)!
- Expand ActionError codes to include all IANA-registered HTTP error
codes.

-
[#&#8203;13668](https://redirect.github.com/withastro/astro/pull/13668)
[`866285a`](https://redirect.github.com/withastro/astro/commit/866285a5fb3e4ba9d8ca6aadb129d3a6ed2b0f69)
Thanks [@&#8203;sapphi-red](https://redirect.github.com/sapphi-red)! -
Replaces internal CSS chunking behavior for Astro components' scoped
styles to use Vite's `cssScopeTo` feature. The feature is a port of
Astro's implementation so this should not change the behavior.

###
[`v5.7.13`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5713)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.7.12...astro@5.7.13)

##### Patch Changes

-
[#&#8203;13761](https://redirect.github.com/withastro/astro/pull/13761)
[`a2e8463`](https://redirect.github.com/withastro/astro/commit/a2e84631ad0a8dbc466d1301cc07a031334ffe5b)
Thanks [@&#8203;jp-knj](https://redirect.github.com/jp-knj)! - Adds new
content collections errors

-
[#&#8203;13788](https://redirect.github.com/withastro/astro/pull/13788)
[`7d0b7ac`](https://redirect.github.com/withastro/astro/commit/7d0b7acb38d5140939d9660b2cf5718e9a8b2c15)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a case where an error would not be thrown when using the `<Font
/>` component from the experimental fonts API without adding fonts in
the Astro config

-
[#&#8203;13784](https://redirect.github.com/withastro/astro/pull/13784)
[`d7a1889`](https://redirect.github.com/withastro/astro/commit/d7a188988427d1b157d27b789f918c208ece41f7)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes the experimental fonts API to correctly take `config.base`,
`config.build.assets` and `config.build.assetsPrefix` into account

-
[#&#8203;13777](https://redirect.github.com/withastro/astro/pull/13777)
[`a56b8ea`](https://redirect.github.com/withastro/astro/commit/a56b8eaec486d26cbc61a7c94c152f4ee8cabc7a)
Thanks [@&#8203;L4Ph](https://redirect.github.com/L4Ph)! - Fixed an
issue where looping GIF animation would stop when converted to WebP

-
[#&#8203;13566](https://redirect.github.com/withastro/astro/pull/13566)
[`0489d8f`](https://redirect.github.com/withastro/astro/commit/0489d8fe96fb8ee90284277358e38f55c8e0ab1d)
Thanks [@&#8203;TheOtterlord](https://redirect.github.com/TheOtterlord)!
- Fix build errors being ignored when build.concurrency > 1

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-05-21 20:44:11 +02:00
TrueCharts Bot 3c63bb1952 fix(website): update sharp 0.34.1 → 0.34.2 (#35565)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [sharp](https://sharp.pixelplumbing.com)
([source](https://redirect.github.com/lovell/sharp),
[changelog](https://redirect.github.com/lovell/sharp/blob/main/docs/changelog.md))
| dependencies | patch | [`0.34.1` ->
`0.34.2`](https://renovatebot.com/diffs/npm/sharp/0.34.1/0.34.2) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>lovell/sharp (sharp)</summary>

###
[`v0.34.2`](https://redirect.github.com/lovell/sharp/compare/v0.34.1...v0.34.2)

[Compare
Source](https://redirect.github.com/lovell/sharp/compare/v0.34.1...v0.34.2)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-05-21 09:06:28 +02:00
TrueCharts Bot c73c22e73d chore(website): lock file maintenance (#35458)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-05-18 15:31:57 +02:00
kqmaverick 782a74c862 docs(support-policy): add supported kubernetes versions (#35396)
**Description**
Update supported kubernetes and helm versions.

⚒️ Fixes  # 

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [X] 📜 Documentation Changes

**🧪 How Has This Been Tested?**

**📃 Notes:**

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [X] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com>
Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-05-17 01:18:53 +02:00
TrueCharts Bot 7a6d643bc7 chore(deps): update node.js v22.15.0 → v22.15.1 (#35376)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [node](https://nodejs.org)
([source](https://redirect.github.com/nodejs/node)) | patch | `22.15.0`
-> `22.15.1` |

---

### Release Notes

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

###
[`v22.15.1`](https://redirect.github.com/nodejs/node/releases/tag/v22.15.1):
2025-05-14, Version 22.15.1 &#x27;Jod&#x27; (LTS), @&#8203;RafaelGSS

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

This is a security release.

##### Notable Changes

-   (CVE-2025-23166) fix error handling on async crypto operation
-   (CVE-2025-23165) add missing call to uv_fs_req_cleanup

##### Commits

-
\[[`edaf54da00`](https://redirect.github.com/nodejs/node/commit/edaf54da00)]
- **fs**: added test for missing call to uv_fs_req_cleanup (Justin
Nietzel)
[#&#8203;57811](https://redirect.github.com/nodejs/node/pull/57811)
-
\[[`9f403e98ef`](https://redirect.github.com/nodejs/node/commit/9f403e98ef)]
- **(CVE-2025-23165)** **fs**: add missing call to uv_fs_req_cleanup
(Justin Nietzel)
[#&#8203;57811](https://redirect.github.com/nodejs/node/pull/57811)
-
\[[`f4494d38f1`](https://redirect.github.com/nodejs/node/commit/f4494d38f1)]
- **(CVE-2025-23166)** **src**: fix error handling on async crypto
operations (RafaelGSS)
[nodejs-private/node-private#709](https://redirect.github.com/nodejs-private/node-private/pull/709)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **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.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-05-15 02:44:07 +02:00
TrueCharts Bot 44099e7d5f chore(website): lock file maintenance (#35314)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-05-13 06:34:48 +02:00
Boemeltrein 0374f6e104 fix(docs): First Chart (#35301)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
Warning was not correctly rendered? Maybe this helps?

⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

Signed-off-by: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com>
2025-05-12 15:33:03 +02:00
TrueCharts Bot 0387d118ac chore(website): lock file maintenance (#35269)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-05-11 08:57:44 +02:00
TrueCharts-Bot 0c7f4b78d7 Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2025-05-11 00:19:57 +00:00
Boemeltrein 3328a9b159 docs(clustertool): the first chart (#35011)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-05-10 07:34:24 +00:00