Skip to content

Commit

Permalink
mark JSON.parse source text access proposal features as shipped fro…
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Dec 5, 2024
1 parent 6291b76 commit 166e6ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- [`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
- [`Uint8Array` to / from base64 and hex proposal](https://github.com/tc39/proposal-arraybuffer-base64) methods marked as shipped from Safari 18.2
- [`JSON.parse` source text access proposal](https://github.com/tc39/proposal-json-parse-with-source) features marked as [shipped from FF135](https://bugzilla.mozilla.org/show_bug.cgi?id=1934622)
- [`RegExp.escape`](https://github.com/tc39/proposal-regex-escaping) marked as shipped [from FF134](https://bugzilla.mozilla.org/show_bug.cgi?id=1918235)
- [`Promise.try`](https://github.com/tc39/proposal-promise-try) marked as shipped from FF134
- [`Symbol.dispose`, `Symbol.asyncDispose` and `Iterator.prototype[@@dispose]`](https://github.com/tc39/proposal-explicit-resource-management) marked as shipped from FF134
Expand Down
12 changes: 6 additions & 6 deletions packages/core-js-compat/src/data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2290,18 +2290,18 @@ export const data = {
},
'esnext.json.is-raw-json': {
chrome: '114',
// disabled in 133 nightly because of regression, https://bugzilla.mozilla.org/show_bug.cgi?id=1925334
// firefox: '132',
// enabled in 132 and disabled in 133 because of regression, https://bugzilla.mozilla.org/show_bug.cgi?id=1925334
firefox: '135', // '132',
},
'esnext.json.parse': {
chrome: '114',
// disabled in 133 nightly because of regression, https://bugzilla.mozilla.org/show_bug.cgi?id=1925334
// firefox: '132',
// enabled in 132 and disabled in 133 because of regression, https://bugzilla.mozilla.org/show_bug.cgi?id=1925334
firefox: '135', // '132',
},
'esnext.json.raw-json': {
chrome: '114',
// disabled in 133 nightly because of regression, https://bugzilla.mozilla.org/show_bug.cgi?id=1925334
// firefox: '132',
// enabled in 132 and disabled in 133 because of regression, https://bugzilla.mozilla.org/show_bug.cgi?id=1925334
firefox: '135', // '132',
},
'esnext.map.delete-all': {
},
Expand Down

0 comments on commit 166e6ac

Please sign in to comment.