Skip to content

Commit

Permalink
use 7.1 instead of 8.0 for safari versions in compat data since i…
Browse files Browse the repository at this point in the history
…t's a backported version with the same results
  • Loading branch information
zloirock committed Aug 6, 2021
1 parent 0aae40b commit ea035fe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Changelog
##### Unreleased
- Fixed microtask implementation on iOS Pebble, [#967](https://github.com/zloirock/core-js/issues/967)
- Improved old Safari compat data

##### 3.16.0 - 2021.07.30
- [`Array` find from last proposal](https://github.com/tc39/proposal-array-find-from-last) moved to the stage 3, [July 2021 TC39 meeting](https://github.com/tc39/proposal-array-find-from-last/pull/47)
Expand Down
14 changes: 7 additions & 7 deletions packages/core-js-compat/src/data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const data = {
chrome: '26',
firefox: '4',
ie: '9',
safari: '8.0',
safari: '7.1',
rhino: '1.7.13',
},
'es.array.fill': {
Expand Down Expand Up @@ -155,7 +155,7 @@ export const data = {
chrome: '26',
firefox: '4',
ie: '9',
safari: '8.0',
safari: '7.1',
rhino: '1.7.13',
},
'es.array.from': {
Expand All @@ -175,7 +175,7 @@ export const data = {
chrome: '51',
firefox: '4',
ie: '9',
safari: '8.0',
safari: '7.1',
rhino: '1.7.13',
},
'es.array.is-array': {
Expand Down Expand Up @@ -203,7 +203,7 @@ export const data = {
chrome: '51',
firefox: '4',
ie: '9',
safari: '8.0',
safari: '7.1',
rhino: '1.7.13',
},
'es.array.map': {
Expand All @@ -224,15 +224,15 @@ export const data = {
firefox: '4',
ie: '9',
node: '6.0', // ^^^
safari: '8.0',
safari: '7.1',
rhino: '1.7.13',
},
'es.array.reduce-right': {
chrome: '83', // https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
firefox: '4',
ie: '9',
node: '6.0', // ^^^
safari: '8.0',
safari: '7.1',
rhino: '1.7.13',
},
'es.array.reverse': {
Expand All @@ -254,7 +254,7 @@ export const data = {
chrome: '26',
firefox: '4',
ie: '9',
safari: '8.0',
safari: '7.1',
rhino: '1.7.13',
},
'es.array.sort': {
Expand Down

0 comments on commit ea035fe

Please sign in to comment.