Skip to content

Commit 0aa58f7

Browse files
committed
mark Iterator.concat as shipped in Safari 26.4
1 parent ac06711 commit 0aa58f7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- [`Iterator.range`](https://github.com/tc39/proposal-iterator.range) updated following the actual spec version
55
- Throw a `RangeError` on `NaN` `start` / `end` / `step`
66
- Allow `null` as `optionOrStep`
7-
- Fixed some edge cases
7+
- Fixed some other edge cases
88
- `Math.atanh` has become slightly more correct with small values
99
- Wrap `Symbol.for` in `Symbol.prototype.description` polyfill for correct handling of empty string descriptions
1010
- Fixed one more case (`Iterator.prototype.take`) of a V8 ~ Chromium < 126 [bug](https://issues.chromium.org/issues/336839115)
@@ -17,7 +17,7 @@
1717
- Fixed (updated following the final spec) one more case `Set.prototype.difference` polyfill with updating `this`
1818
- Fixed `DataView.prototype.setFloat16` polyfill in (0, 1) range
1919
- Fixed order of arguments validation in `String.prototype.{ startsWith, endsWith }` polyfills
20-
- Fixed handling of `Infinity` in `String.prototype.substr` polyfill
20+
- Fixed some cases of `Infinity` handling in `String.prototype.substr` polyfill
2121
- Fixed some cases of chars case in `escape` polyfill
2222
- Fixed named backreferences in `RegExp` NCG polyfill
2323
- Fixed some cases of `RegExp` NCG polyfill in combination with other types of groups
@@ -69,6 +69,7 @@
6969
- Many minor stylistic fixes and optimizations
7070
- Compat data improvements:
7171
- [`Iterator.concat`](https://github.com/tc39/proposal-iterator-sequencing) marked as [shipped in V8 ~ Chrome 146](https://issues.chromium.org/issues/434977727#comment7)
72+
- [`Iterator.concat`](https://github.com/tc39/proposal-iterator-sequencing) marked as shipped in Safari 26.4
7273
- Added [Deno 2.6.7](https://github.com/denoland/deno/releases/tag/v2.6.7) compat data mapping
7374
- Added [Opera Android 95](https://forums.opera.com/topic/87912/opera-for-android-95) compat data mapping
7475
- Added Oculus Quest Browser 42 compat data mapping

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,7 @@ export const data = {
699699
bun: '1.3.7',
700700
chrome: '146',
701701
firefox: '147',
702+
safari: '26.4',
702703
},
703704
'es.iterator.dispose': {
704705
bun: '1.3.0',

0 commit comments

Comments
 (0)