Skip to content

Commit a47114e

Browse files
committed
mark Math.f16round and DataView.prototype.{ getFloat16, setFloat16 } as shipped from FF129
https://bugzilla.mozilla.org/show_bug.cgi?id=1903329
1 parent 1b968d5 commit a47114e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
- Fixed [`Set.prototype.symmetricDifference` to call `this.has` in each iteration](https://bugs.webkit.org/show_bug.cgi?id=272679)
2929
- Fixed `Array.fromAsync` to [not call the `Array` constructor twice](https://bugs.webkit.org/show_bug.cgi?id=271703)
3030
- Added [`URL.parse`](https://url.spec.whatwg.org/#dom-url-parse)
31+
- [`Math.f16round` and `DataView.prototype.{ getFloat16, setFloat16 }`](https://github.com/tc39/proposal-float16array) marked as [shipped from FF129](https://bugzilla.mozilla.org/show_bug.cgi?id=1903329)
3132
- [`Symbol.asyncDispose`](https://github.com/tc39/proposal-explicit-resource-management) added and marked as supported from V8 ~ Chromium 127
3233
- Added [Deno 1.44](https://github.com/denoland/deno/releases/tag/v1.44.0) compat data mapping
3334
- Added Electron 32 compat data mapping

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2119,11 +2119,13 @@ export const data = {
21192119
},
21202120
'esnext.data-view.get-float16': {
21212121
deno: '1.43',
2122+
firefox: '129',
21222123
},
21232124
'esnext.data-view.get-uint8-clamped': {
21242125
},
21252126
'esnext.data-view.set-float16': {
21262127
deno: '1.43',
2128+
firefox: '129',
21272129
},
21282130
'esnext.data-view.set-uint8-clamped': {
21292131
},
@@ -2266,6 +2268,7 @@ export const data = {
22662268
},
22672269
'esnext.math.f16round': {
22682270
deno: '1.43',
2271+
firefox: '129',
22692272
},
22702273
// TODO: Remove from `core-js@4`
22712274
'esnext.math.iaddh': {

0 commit comments

Comments
 (0)