Skip to content

Commit

Permalink
explicit resource management reverted in V8
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Dec 23, 2024
1 parent 71b4e68 commit abb7e66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
- Dropped possible re-usage of some non-standard / early stage features (like `Math.scale`) available on global
- Some other minor improvements
- Compat data improvements:
- [`DisposableStack`, `AsyncDisposableStack`, `SuppressedError` and `Iterator.prototype[@@dispose]`](https://github.com/tc39/proposal-explicit-resource-management) marked as [shipped from V8 ~ Chromium 133](https://issues.chromium.org/issues/42203506#comment24)
- [`RegExp.escape`](https://github.com/tc39/proposal-regex-escaping) marked as shipped from Safari 18.2
- [`Promise.try`](https://github.com/tc39/proposal-promise-try) marked as shipped from Safari 18.2
- [`Math.f16round` and `DataView.prototype.{ getFloat16, setFloat16 }`](https://github.com/tc39/proposal-float16array) marked as shipped from Safari 18.2
Expand Down
12 changes: 8 additions & 4 deletions packages/core-js-compat/src/data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2110,7 +2110,8 @@ export const data = {
// https://github.com/oven-sh/bun/issues/9282
// https://github.com/oven-sh/bun/issues/9283
// bun: '1.0.23',
chrome: '133',
// reverted in https://issues.chromium.org/issues/42203506#comment25
// chrome: '133',
},
'esnext.array.from-async': {
// https://bugs.webkit.org/show_bug.cgi?id=271703
Expand Down Expand Up @@ -2177,7 +2178,8 @@ export const data = {
// TODO: Remove from `core-js@4`
'esnext.array-buffer.transfer-to-fixed-length': null,
'esnext.async-disposable-stack.constructor': {
chrome: '133',
// reverted in https://issues.chromium.org/issues/42203506#comment25
// chrome: '133',
},
'esnext.async-iterator.constructor': {
},
Expand Down Expand Up @@ -2236,7 +2238,8 @@ export const data = {
'esnext.data-view.set-uint8-clamped': {
},
'esnext.disposable-stack.constructor': {
chrome: '133',
// reverted in https://issues.chromium.org/issues/42203506#comment25
// chrome: '133',
},
'esnext.function.demethodize': {
},
Expand All @@ -2259,7 +2262,8 @@ export const data = {
'esnext.iterator.concat': {
},
'esnext.iterator.dispose': {
chrome: '133',
// reverted in https://issues.chromium.org/issues/42203506#comment25
// chrome: '133',
firefox: '134',
},
// TODO: Remove from `core-js@4`
Expand Down

0 comments on commit abb7e66

Please sign in to comment.