Skip to content

Commit

Permalink
add Bun 0.5.7 compat data
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Feb 24, 2023
1 parent a2a9f8f commit 653152a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
##### Unreleased
- Allowed cloning resizable `ArrayBuffer`s in the `structuredClone` polyfill
- Fixed wrong export in `/(stable|actual|full)/instance/unshift` entries, [#1207](https://github.com/zloirock/core-js/issues/1207)
- Compat data improvements:
- [`Set` methods proposal](https://github.com/tc39/proposal-set-methods) marked as supported from Bun 0.5.7
- `String.prototype.toWellFormed` marked as fixed from Bun 0.5.7

##### [3.28.0 - 2023.02.14](https://github.com/zloirock/core-js/releases/tag/v3.28.0)
**I highly recommend reading this: [So, what's next?](https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md)**
Expand Down
8 changes: 7 additions & 1 deletion packages/core-js-compat/src/data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2147,21 +2147,25 @@ export const data = {
'esnext.set.from': {
},
'esnext.set.intersection.v2': {
bun: '0.5.7',
},
// TODO: Remove from `core-js@4`
'esnext.set.intersection': {
},
'esnext.set.is-disjoint-from.v2': {
bun: '0.5.7',
},
// TODO: Remove from `core-js@4`
'esnext.set.is-disjoint-from': {
},
'esnext.set.is-subset-of.v2': {
bun: '0.5.7',
},
// TODO: Remove from `core-js@4`
'esnext.set.is-subset-of': {
},
'esnext.set.is-superset-of.v2': {
bun: '0.5.7',
},
// TODO: Remove from `core-js@4`
'esnext.set.is-superset-of': {
Expand All @@ -2177,11 +2181,13 @@ export const data = {
'esnext.set.some': {
},
'esnext.set.symmetric-difference.v2': {
bun: '0.5.7',
},
// TODO: Remove from `core-js@4`
'esnext.set.symmetric-difference': {
},
'esnext.set.union.v2': {
bun: '0.5.7',
},
// TODO: Remove from `core-js@4`
'esnext.set.union': {
Expand All @@ -2205,7 +2211,7 @@ export const data = {
'esnext.string.to-well-formed': {
// Safari ToString conversion bug
// https://bugs.webkit.org/show_bug.cgi?id=251757
// bun: '0.4.0',
bun: '0.5.7', // '0.4.0',
},
'esnext.symbol.async-dispose': {
},
Expand Down

0 comments on commit 653152a

Please sign in to comment.