Skip to content

Commit db8162e

Browse files
committed
mark Float16 and Explicit resource management marked as not enabled by default in Node 24
nodejs/node#57609 (comment)
1 parent e56fb6c commit db8162e

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- Compat data improvements:
44
- Added [Deno 2.3](https://github.com/denoland/deno/releases/tag/v2.3.0) compat data mapping
55
- [`Error.isError`](https://github.com/tc39/proposal-is-error) marked not supported in Node because of [a bug](https://github.com/nodejs/node/issues/58134)
6+
- [`Float16`](https://github.com/tc39/proposal-float16array) and [Explicit resource management ](https://github.com/tc39/proposal-explicit-resource-management) marked as [not enabled by default](https://github.com/nodejs/node/pull/57609#discussion_r2072361536) in Node 24
67

78
##### [3.42.0 - 2025.04.30](https://github.com/zloirock/core-js/releases/tag/v3.42.0)
89
- Changes [v3.41.0...v3.42.0](https://github.com/zloirock/core-js/compare/v3.41.0...v3.42.0) (142 commits)

packages/core-js-compat/src/data.mjs

+14
Original file line numberDiff line numberDiff line change
@@ -491,13 +491,17 @@ export const data = {
491491
chrome: '135',
492492
deno: '1.43',
493493
firefox: '129',
494+
// https://github.com/nodejs/node/pull/57609#discussion_r2072361536
495+
node: false,
494496
safari: '18.2',
495497
},
496498
'es.data-view.set-float16': {
497499
bun: '1.1.23',
498500
chrome: '135',
499501
deno: '1.43',
500502
firefox: '129',
503+
// https://github.com/nodejs/node/pull/57609#discussion_r2072361536
504+
node: false,
501505
safari: '18.2',
502506
},
503507
'es.array-buffer.detached': {
@@ -849,6 +853,8 @@ export const data = {
849853
chrome: '135',
850854
deno: '1.43',
851855
firefox: '129',
856+
// https://github.com/nodejs/node/pull/57609#discussion_r2072361536
857+
node: false,
852858
safari: '18.2',
853859
},
854860
'es.math.hypot': {
@@ -2247,6 +2253,8 @@ export const data = {
22472253
// disabled again in 135 and re-enabled in 136
22482254
chrome: '136', // '134', // '133',
22492255
deno: '2.2.10',
2256+
// https://github.com/nodejs/node/pull/57609#discussion_r2072361536
2257+
node: false,
22502258
},
22512259
'esnext.array.from-async': {
22522260
// https://bugs.webkit.org/show_bug.cgi?id=271703
@@ -2317,6 +2325,8 @@ export const data = {
23172325
// https://github.com/tc39/proposal-explicit-resource-management/issues/256, fixed in early 135
23182326
chrome: '136',
23192327
deno: false,
2328+
// https://github.com/nodejs/node/pull/57609#discussion_r2072361536
2329+
node: false,
23202330
},
23212331
'esnext.async-iterator.constructor': {
23222332
},
@@ -2371,6 +2381,8 @@ export const data = {
23712381
// disabled again in 135 and re-enabled in 136
23722382
chrome: '136', // '134', // '133',
23732383
deno: '2.2.10',
2384+
// https://github.com/nodejs/node/pull/57609#discussion_r2072361536
2385+
node: false,
23742386
},
23752387
'esnext.error.is-error': {
23762388
// early WebKit implementation bug
@@ -2407,6 +2419,8 @@ export const data = {
24072419
chrome: '136', // '134', // '133',
24082420
deno: '2.2.10',
24092421
firefox: '135',
2422+
// https://github.com/nodejs/node/pull/57609#discussion_r2072361536
2423+
node: false,
24102424
},
24112425
// TODO: Remove from `core-js@4`
24122426
'esnext.iterator.drop': null,

0 commit comments

Comments
 (0)