aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/CHANGELOG.md')
-rw-r--r--node_modules/core-js/CHANGELOG.md18
1 files changed, 17 insertions, 1 deletions
diff --git a/node_modules/core-js/CHANGELOG.md b/node_modules/core-js/CHANGELOG.md
index 31c2ff2ff..6a4ffa19d 100644
--- a/node_modules/core-js/CHANGELOG.md
+++ b/node_modules/core-js/CHANGELOG.md
@@ -1,5 +1,21 @@
## Changelog
-##### 2.5.0 - 2016.08.05
+##### 2.5.3 - 2017.12.12
+- Fixed calling `onunhandledrejectionhandler` multiple times for one `Promise` chain, [#318](https://github.com/zloirock/core-js/issues/318)
+- Forced replacement of `String#{padStart, padEnd}` in Safari 10 because of [a bug](https://bugs.webkit.org/show_bug.cgi?id=161944), [#280](https://github.com/zloirock/core-js/issues/280)
+- Fixed `Array#@@iterator` in a very rare version of `WebKit`, [#236](https://github.com/zloirock/core-js/issues/236) and [#237](https://github.com/zloirock/core-js/issues/237)
+- One more [#345](https://github.com/zloirock/core-js/issues/345)-related fix
+
+##### 2.5.2 - 2017.12.09
+- `MutationObserver` no longer used for microtask implementation in iOS Safari because of bug with scrolling, [#339](https://github.com/zloirock/core-js/issues/339)
+- Fixed `JSON.stringify(undefined, replacer)` case in the wrapper from the `Symbol` polyfill, [#345](https://github.com/zloirock/core-js/issues/345)
+- `Array()` calls changed to `new Array()` for V8 optimisation
+
+##### 2.5.1 - 2017.09.01
+- Updated `Promise#finally` per [tc39/proposal-promise-finally#37](https://github.com/tc39/proposal-promise-finally/issues/37)
+- Optimized usage of some internal helpers for reducing size of `shim` version
+- Fixed some entry points for virtual methods
+
+##### 2.5.0 - 2017.08.05
- Added `Promise#finally` [stage 3 proposal](https://github.com/tc39/proposal-promise-finally), [#225](https://github.com/zloirock/core-js/issues/225)
- Added `Promise.try` [stage 1 proposal](https://github.com/tc39/proposal-promise-try)
- Added `Array#flatten` and `Array#flatMap` [stage 1 proposal](https://tc39.github.io/proposal-flatMap)