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
…m Bun 1.1.43
  • Loading branch information
zloirock committed Jan 4, 2025
1 parent 09f6c53 commit aa54f98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- [`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 FF135
- [`JSON.parse` source text access proposal](https://github.com/tc39/proposal-json-parse-with-source) features marked as shipped from Bun 1.1.43
- Fixed NodeJS version where `URL.parse` was added - 22.1 instead of 22.0
- Added [Deno 2.1](https://github.com/denoland/deno/releases/tag/v2.1.0) compat data mapping
- Added [Rhino 1.8.0](https://github.com/mozilla/rhino/releases/tag/Rhino1_8_0_Release) compat data with significant number of modern features
Expand Down
3 changes: 3 additions & 0 deletions packages/core-js-compat/src/data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2371,16 +2371,19 @@ export const data = {
'esnext.iterator.to-async': {
},
'esnext.json.is-raw-json': {
bun: '1.1.43',
chrome: '114',
// 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': {
bun: '1.1.43',
chrome: '114',
// 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': {
bun: '1.1.43',
chrome: '114',
// enabled in 132 and disabled in 133 because of regression, https://bugzilla.mozilla.org/show_bug.cgi?id=1925334
firefox: '135', // '132',
Expand Down

0 comments on commit aa54f98

Please sign in to comment.