Michaël Zasso
Michaël Zasso
Currently it depends on useEffect and state which has lead to timing errors in production. Let's refactor to use a ref.
We should aim to enable `"noImplicitAny": true` in our tsconfig. Without it, we have a lot of type-unsafe code (1140 errors in 273 files at the moment !!!)
Namely: - `v8::ObjectTemplate::SetAccessor(v8::Local, ...);` - `v8::ObjectTemplate::SetNativeDataProperty` with `AccessControl` Refs: https://github.com/v8/v8/commit/46c241eb99557fe8205acac5c526650c3847d180 Refs: https://github.com/v8/v8/commit/6ec883986bd417e2a42ddb960bd9449deb7e4639
Closes: https://github.com/nodejs/node/issues/45578 The only way to know if it works is to try.
V8 does not allow returning arbitrary values from the interceptor setter callbacks, only a boolean return value is allowed. Since default return value is `true`, it's not even necessary to...
## 2024-06-26, Version 22.4.0 (Current), @targos ### Notable Changes #### Experimental Web Storage API * \[[`9e30724b53`](https://github.com/nodejs/node/commit/9e30724b53)] - **(SEMVER-MINOR)** **deps,lib,src**: add experimental web storage (Colin Ihrig) [#52435](https://github.com/nodejs/node/pull/52435) #### API stability updates...
To investigate https://github.com/nodejs/build/issues/3697 I'm not sure what kind of access is required exactly. At least: - Read on the bucket that contains the logs uploaded by Cloudflare (Role `storage.objectViewer`) -...
Refs: https://github.com/nodejs/build/pull/3481 Could we setup automation (equivalent of crontab) that regularly (once a day?) runs as root: ``` symbolscache delete ``` This would be less intrusive than running the full...