From 8c5b62b5b304937821ec05dde177c9ca74952c6d Mon Sep 17 00:00:00 2001 From: Denis Pushkarev Date: Fri, 11 Oct 2019 14:56:14 +0700 Subject: [PATCH] add mapping for Samsung up to 10.2 --- CHANGELOG.md | 2 +- packages/core-js-compat/src/mapping.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06631b3f240b..124a2bd90eea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,7 +43,7 @@ - Added a workaround for iOS Safari MessageChannel + bfcache bug, [#624](https://github.com/zloirock/core-js/issues/624) - Added a workaround for Chrome 33 / Android 4.4.4 `Promise` bug, [#640](https://github.com/zloirock/core-js/issues/640) - Replaced broken `URL` constructor in Safari and `URLSearchParams` in Chrome 66-, [#656](https://github.com/zloirock/core-js/issues/656) -- Added compat data for Node to 12.11, FF 69 and Phantom 1.9 +- Added compat data for Node up to 12.11, FF 69, Samsung up to 10.2 and Phantom 1.9 - `Math.hypot` marked as not supported in Chrome 77 since [a bug in this method](https://bugs.chromium.org/p/v8/issues/detail?id=9546) was not fixed before the stable Chrome 77 release - Fixed unnecessary exposing on `Symbol.matchAll` in `esnext.string.match-all`, [#626](https://github.com/zloirock/core-js/issues/626) - Fixed missed cases [access the `.next` method once, at the beginning, of the iteration protocol](https://github.com/tc39/ecma262/issues/976) diff --git a/packages/core-js-compat/src/mapping.js b/packages/core-js-compat/src/mapping.js index 6fcc96181a92..6e5751b4aa86 100644 --- a/packages/core-js-compat/src/mapping.js +++ b/packages/core-js-compat/src/mapping.js @@ -36,6 +36,8 @@ module.exports = { [56, '6.2'], [59, '7.2'], [63, '8.2'], + [67, '9.2'], + [71, '10.2'], ], ChromeToAndroid: [ [30, '4.4'],