Skip to content

Commit 653152a

Browse files
committed
add Bun 0.5.7 compat data
1 parent a2a9f8f commit 653152a

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
##### Unreleased
33
- Allowed cloning resizable `ArrayBuffer`s in the `structuredClone` polyfill
44
- Fixed wrong export in `/(stable|actual|full)/instance/unshift` entries, [#1207](https://github.com/zloirock/core-js/issues/1207)
5+
- Compat data improvements:
6+
- [`Set` methods proposal](https://github.com/tc39/proposal-set-methods) marked as supported from Bun 0.5.7
7+
- `String.prototype.toWellFormed` marked as fixed from Bun 0.5.7
58

69
##### [3.28.0 - 2023.02.14](https://github.com/zloirock/core-js/releases/tag/v3.28.0)
710
**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)**

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2147,21 +2147,25 @@ export const data = {
21472147
'esnext.set.from': {
21482148
},
21492149
'esnext.set.intersection.v2': {
2150+
bun: '0.5.7',
21502151
},
21512152
// TODO: Remove from `core-js@4`
21522153
'esnext.set.intersection': {
21532154
},
21542155
'esnext.set.is-disjoint-from.v2': {
2156+
bun: '0.5.7',
21552157
},
21562158
// TODO: Remove from `core-js@4`
21572159
'esnext.set.is-disjoint-from': {
21582160
},
21592161
'esnext.set.is-subset-of.v2': {
2162+
bun: '0.5.7',
21602163
},
21612164
// TODO: Remove from `core-js@4`
21622165
'esnext.set.is-subset-of': {
21632166
},
21642167
'esnext.set.is-superset-of.v2': {
2168+
bun: '0.5.7',
21652169
},
21662170
// TODO: Remove from `core-js@4`
21672171
'esnext.set.is-superset-of': {
@@ -2177,11 +2181,13 @@ export const data = {
21772181
'esnext.set.some': {
21782182
},
21792183
'esnext.set.symmetric-difference.v2': {
2184+
bun: '0.5.7',
21802185
},
21812186
// TODO: Remove from `core-js@4`
21822187
'esnext.set.symmetric-difference': {
21832188
},
21842189
'esnext.set.union.v2': {
2190+
bun: '0.5.7',
21852191
},
21862192
// TODO: Remove from `core-js@4`
21872193
'esnext.set.union': {
@@ -2205,7 +2211,7 @@ export const data = {
22052211
'esnext.string.to-well-formed': {
22062212
// Safari ToString conversion bug
22072213
// https://bugs.webkit.org/show_bug.cgi?id=251757
2208-
// bun: '0.4.0',
2214+
bun: '0.5.7', // '0.4.0',
22092215
},
22102216
'esnext.symbol.async-dispose': {
22112217
},

0 commit comments

Comments
 (0)