core-js 1.2.6 → 1.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,406 +1,409 @@
1
- ## Changelog
2
- ##### 1.2.6 - 2015.11.09
3
- * reject with `TypeError` on attempt resolve promise itself
4
- * correct behavior with broken `Promise` subclass constructors / methods
5
- * added `Promise`-based fallback for microtask
6
- * fixed V8 and FF `Array#{values, @@iterator}.name`
7
- * fixed IE7- `[1, 2].join(undefined) -> '1,2'`
8
- * some other fixes / improvements / optimizations
9
-
10
- ##### 1.2.5 - 2015.11.02
11
- * some more `Number` constructor fixes:
12
- * fixed V8 ~ Node 0.8 bug: `Number('+0x1')` should be `NaN`
13
- * fixed `Number(' 0b1\n')` case, should be `1`
14
- * fixed `Number()` case, should be `0`
15
-
16
- ##### 1.2.4 - 2015.11.01
17
- * fixed `Number('0b12') -> NaN` case in the shim
18
- * fixed V8 ~ Chromium 40- bug - `Weak(Map|Set)#{delete, get, has}` should not throw errors [#124](https://github.com/zloirock/core-js/issues/124)
19
- * some other fixes and optimizations
20
-
21
- ##### 1.2.3 - 2015.10.23
22
- * fixed some problems related old V8 bug `Object('a').propertyIsEnumerable(0) // => false`, for example, `Object.assign({}, 'qwe')` from the last release
23
- * fixed `.name` property and `Function#toString` conversion some polyfilled methods
24
- * fixed `Math.imul` arity in Safari 8-
25
-
26
- ##### 1.2.2 - 2015.10.18
27
- * improved optimisations for V8
28
- * fixed build process from external packages, [#120](https://github.com/zloirock/core-js/pull/120)
29
- * one more `Object.{assign, values, entries}` fix for [**very** specific case](https://github.com/ljharb/proposal-object-values-entries/issues/5)
30
-
31
- ##### 1.2.1 - 2015.10.02
32
- * replaced fix `JSON.stringify` + `Symbol` behavior from `.toJSON` method to wrapping `JSON.stringify` - little more correct, [compat-table/642](https://github.com/kangax/compat-table/pull/642)
33
- * fixed typo which broke tasks scheduler in WebWorkers in old FF, [#114](https://github.com/zloirock/core-js/pull/114)
34
-
35
- ##### 1.2.0 - 2015.09.27
36
- * added browser [`Promise` rejection hook](#unhandled-rejection-tracking), [#106](https://github.com/zloirock/core-js/issues/106)
37
- * added correct [`IsRegExp`](http://www.ecma-international.org/ecma-262/6.0/#sec-isregexp) logic to [`String#{includes, startsWith, endsWith}`](https://github.com/zloirock/core-js/#ecmascript-6-string) and [`RegExp` constructor](https://github.com/zloirock/core-js/#ecmascript-6-regexp), `@@match` case, [example](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/match#Disabling_the_isRegExp_check)
38
- * updated [`String#leftPad`](https://github.com/zloirock/core-js/#ecmascript-7) [with proposal](https://github.com/ljharb/proposal-string-pad-left-right/issues/6): string filler truncated from the right side
39
- * replaced V8 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object) - its properties order not only [incorrect](https://github.com/sindresorhus/object-assign/issues/22), it is non-deterministic and it causes some problems
40
- * fixed behavior with deleted in getters properties for `Object.{`[`assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)`, `[`entries, values`](https://github.com/zloirock/core-js/#ecmascript-7)`}`, [example](http://goo.gl/iQE01c)
41
- * fixed [`Math.sinh`](https://github.com/zloirock/core-js/#ecmascript-6-math) with very small numbers in V8 near Chromium 38
42
- * some other fixes and optimizations
43
-
44
- ##### 1.1.4 - 2015.09.05
45
- * fixed support symbols in FF34-35 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)
46
- * fixed [collections iterators](https://github.com/zloirock/core-js/#ecmascript-6-iterators) in FF25-26
47
- * fixed non-generic WebKit [`Array.of`](https://github.com/zloirock/core-js/#ecmascript-6-array)
48
- * some other fixes and optimizations
49
-
50
- ##### 1.1.3 - 2015.08.29
51
- * fixed support Node.js domains in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise), [#103](https://github.com/zloirock/core-js/issues/103)
52
-
53
- ##### 1.1.2 - 2015.08.28
54
- * added `toJSON` method to [`Symbol`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill and to MS Edge implementation for expected `JSON.stringify` result w/o patching this method
55
- * replaced [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) implementations w/o correct support third argument
56
- * fixed `global` detection with changed `document.domain` in ~IE8, [#100](https://github.com/zloirock/core-js/issues/100)
57
-
58
- ##### 1.1.1 - 2015.08.20
59
- * added more correct microtask implementation for [`Promise`](#ecmascript-6-promise)
60
-
61
- ##### 1.1.0 - 2015.08.17
62
- * updated [string padding](https://github.com/zloirock/core-js/#ecmascript-7) to [actual proposal](https://github.com/ljharb/proposal-string-pad-left-right) - renamed, minor internal changes:
63
- * `String#lpad` -> `String#padLeft`
64
- * `String#rpad` -> `String#padRight`
65
- * added [string trim functions](#ecmascript-7) - [proposal](https://github.com/sebmarkbage/ecmascript-string-left-right-trim), defacto standard - required only for IE11- and fixed for some old engines:
66
- * `String#trimLeft`
67
- * `String#trimRight`
68
- * [`String#trim`](https://github.com/zloirock/core-js/#ecmascript-6-string) fixed for some engines by es6 spec and moved from `es5` to single `es6` module
69
- * splitted [`es6.object.statics-accept-primitives`](https://github.com/zloirock/core-js/#ecmascript-6-object)
70
- * caps for `freeze`-family `Object` methods moved from `es5` to `es6` namespace and joined with [es6 wrappers](https://github.com/zloirock/core-js/#ecmascript-6-object)
71
- * `es5` [namespace](https://github.com/zloirock/core-js/#commonjs) also includes modules, moved to `es6` namespace - you can use it as before
72
- * increased `MessageChannel` priority in `$.task`, [#95](https://github.com/zloirock/core-js/issues/95)
73
- * does not get `global.Symbol` on each getting iterator, if you wanna use alternative `Symbol` shim - add it before `core-js`
74
- * [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) optimized and fixed for some cases
75
- * simplified [`Reflect.enumerate`](https://github.com/zloirock/core-js/#ecmascript-6-reflect), see [this question](https://esdiscuss.org/topic/question-about-enumerate-and-property-decision-timing)
76
- * some corrections in [`Math.acosh`](https://github.com/zloirock/core-js/#ecmascript-6-math)
77
- * fixed [`Math.imul`](https://github.com/zloirock/core-js/#ecmascript-6-math) for old WebKit
78
- * some fixes in string / RegExp [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp) logic
79
- * some other fixes and optimizations
80
-
81
- ##### 1.0.1 - 2015.07.31
82
- * some fixes for final MS Edge, replaced broken native `Reflect.defineProperty`
83
- * some minor fixes and optimizations
84
- * changed compression `client/*.min.js` options for safe `Function#name` and `Function#length`, should be fixed [#92](https://github.com/zloirock/core-js/issues/92)
85
-
86
- ##### 1.0.0 - 2015.07.22
87
- * added logic for [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp):
88
- * `Symbol.match`
89
- * `Symbol.replace`
90
- * `Symbol.split`
91
- * `Symbol.search`
92
- * actualized and optimized work with iterables:
93
- * optimized [`Map`, `Set`, `WeakMap`, `WeakSet` constructors](https://github.com/zloirock/core-js/#ecmascript-6-collections), [`Promise.all`, `Promise.race`](https://github.com/zloirock/core-js/#ecmascript-6-promise) for default `Array Iterator`
94
- * optimized [`Array.from`](https://github.com/zloirock/core-js/#ecmascript-6-array) for default `Array Iterator`
95
- * added [`core.getIteratorMethod`](https://github.com/zloirock/core-js/#ecmascript-6-iterators) helper
96
- * uses enumerable properties in shimmed instances - collections, iterators, etc for optimize performance
97
- * added support native constructors to [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) with 2 arguments
98
- * added support native constructors to [`Function#bind`](https://github.com/zloirock/core-js/#ecmascript-5) shim with `new`
99
- * removed obsolete `.clear` methods native [`Weak`-collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
100
- * maximum modularity, reduced minimal custom build size, separated into submodules:
101
- * [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect)
102
- * [`es6.regexp`](https://github.com/zloirock/core-js/#ecmascript-6-regexp)
103
- * [`es6.math`](https://github.com/zloirock/core-js/#ecmascript-6-math)
104
- * [`es6.number`](https://github.com/zloirock/core-js/#ecmascript-6-number)
105
- * [`es7.object.to-array`](https://github.com/zloirock/core-js/#ecmascript-7)
106
- * [`core.object`](https://github.com/zloirock/core-js/#object)
107
- * [`core.string`](https://github.com/zloirock/core-js/#escaping-html)
108
- * [`core.iter-helpers`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
109
- * internal modules (`$`, `$.iter`, etc)
110
- * many other optimizations
111
- * final cleaning non-standard features
112
- * moved `$for` to [separate library](https://github.com/zloirock/forof). This work for syntax - `for-of` loop and comprehensions
113
- * moved `Date#{format, formatUTC}` to [separate library](https://github.com/zloirock/dtf). Standard way for this - `ECMA-402`
114
- * removed `Math` methods from `Number.prototype`. Slight sugar for simple `Math` methods calling
115
- * removed `{Array#, Array, Dict}.turn`
116
- * removed `core.global`
117
- * uses `ToNumber` instead of `ToLength` in [`Number Iterator`](https://github.com/zloirock/core-js/#number-iterator), `Array.from(2.5)` will be `[0, 1, 2]` instead of `[0, 1]`
118
- * fixed [#85](https://github.com/zloirock/core-js/issues/85) - invalid `Promise` unhandled rejection message in nested `setTimeout`
119
- * fixed [#86](https://github.com/zloirock/core-js/issues/86) - support FF extensions
120
- * fixed [#89](https://github.com/zloirock/core-js/issues/89) - behavior `Number` constructor in strange case
121
-
122
- ##### 0.9.18 - 2015.06.17
123
- * removed `/` from [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) escaped characters
124
-
125
- ##### 0.9.17 - 2015.06.14
126
- * updated [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) to the [latest proposal](https://github.com/benjamingr/RexExp.escape)
127
- * fixed conflict with webpack dev server + IE buggy behavior
128
-
129
- ##### 0.9.16 - 2015.06.11
130
- * more correct order resolving thenable in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) polyfill
131
- * uses polyfill instead of [buggy V8 `Promise`](https://github.com/zloirock/core-js/issues/78)
132
-
133
- ##### 0.9.15 - 2015.06.09
134
- * [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) from `library` version return wrapped native instances
135
- * fixed collections prototype methods in `library` version
136
- * optimized [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math)
137
-
138
- ##### 0.9.14 - 2015.06.04
139
- * updated [`Promise.resolve` behavior](https://esdiscuss.org/topic/fixing-promise-resolve)
140
- * added fallback for IE11 buggy `Object.getOwnPropertyNames` + iframe
141
- * some other fixes
142
-
143
- ##### 0.9.13 - 2015.05.25
144
- * added fallback for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol) for old Android
145
- * some other fixes
146
-
147
- ##### 0.9.12 - 2015.05.24
148
- * different instances `core-js` should use / recognize the same symbols
149
- * some fixes
150
-
151
- ##### 0.9.11 - 2015.05.18
152
- * simplified [custom build](https://github.com/zloirock/core-js/#custom-build)
153
- * add custom build js api
154
- * added `grunt-cli` to `devDependencies` for `npm run grunt`
155
- * some fixes
156
-
157
- ##### 0.9.10 - 2015.05.16
158
- * wrapped `Function#toString` for correct work wrapped methods / constructors with methods similar to the [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
159
- * added proto versions of methods to export object in `default` version for consistency with `library` version
160
-
161
- ##### 0.9.9 - 2015.05.14
162
- * wrapped `Object#propertyIsEnumerable` for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
163
- * [added proto versions of methods to `library` for ES7 bind syntax](https://github.com/zloirock/core-js/issues/65)
164
- * some other fixes
165
-
166
- ##### 0.9.8 - 2015.05.12
167
- * fixed [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math) with negative arguments
168
- * added `Object#toString.toString` as fallback for [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
169
-
170
- ##### 0.9.7 - 2015.05.07
171
- * added [support DOM collections](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice#Streamlining_cross-browser_behavior) to IE8- `Array#slice`
172
-
173
- ##### 0.9.6 - 2015.05.01
174
- * added [`String#lpad`, `String#rpad`](https://github.com/zloirock/core-js/#ecmascript-7)
175
-
176
- ##### 0.9.5 - 2015.04.30
177
- * added cap for `Function#@@hasInstance`
178
- * some fixes and optimizations
179
-
180
- ##### 0.9.4 - 2015.04.27
181
- * fixed `RegExp` constructor
182
-
183
- ##### 0.9.3 - 2015.04.26
184
- * some fixes and optimizations
185
-
186
- ##### 0.9.2 - 2015.04.25
187
- * more correct [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking and resolving / rejection priority
188
-
189
- ##### 0.9.1 - 2015.04.25
190
- * fixed `__proto__`-based [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) subclassing in some environments
191
-
192
- ##### 0.9.0 - 2015.04.24
193
- * added correct [symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol) descriptors
194
- * fixed behavior `Object.{assign, create, defineProperty, defineProperties, getOwnPropertyDescriptor, getOwnPropertyDescriptors}` with symbols
195
- * added [single entry points](https://github.com/zloirock/core-js/#commonjs) for `Object.{create, defineProperty, defineProperties}`
196
- * added [`Map#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
197
- * removed non-standard methods `Object#[_]` and `Function#only` - they solves syntax problems, but now in compilers available arrows and ~~in near future will be available~~ [available](http://babeljs.io/blog/2015/05/14/function-bind/) [bind syntax](https://github.com/zenparsing/es-function-bind)
198
- * removed non-standard undocumented methods `Symbol.{pure, set}`
199
- * some fixes and internal changes
200
-
201
- ##### 0.8.4 - 2015.04.18
202
- * uses `webpack` instead of `browserify` for browser builds - more compression-friendly result
203
-
204
- ##### 0.8.3 - 2015.04.14
205
- * fixed `Array` statics with single entry points
206
-
207
- ##### 0.8.2 - 2015.04.13
208
- * [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) now also works in IE9-
209
- * added [`Set#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
210
- * some optimizations and fixes
211
-
212
- ##### 0.8.1 - 2015.04.03
213
- * fixed `Symbol.keyFor`
214
-
215
- ##### 0.8.0 - 2015.04.02
216
- * changed [CommonJS API](https://github.com/zloirock/core-js/#commonjs)
217
- * splitted and renamed some modules
218
- * added support ES3 environment (ES5 polyfill) to **all** default versions - size increases slightly (+ ~4kb w/o gzip), many issues disappear, if you don't need it - [simply include only required namespaces / features / modules](https://github.com/zloirock/core-js/#commonjs)
219
- * removed [abstract references](https://github.com/zenparsing/es-abstract-refs) support - proposal has been superseded =\
220
- * [`$for.isIterable` -> `core.isIterable`, `$for.getIterator` -> `core.getIterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), temporary available in old namespace
221
- * fixed iterators support in v8 `Promise.all` and `Promise.race`
222
- * many other fixes
223
-
224
- ##### 0.7.2 - 2015.03.09
225
- * some fixes
226
-
227
- ##### 0.7.1 - 2015.03.07
228
- * some fixes
229
-
230
- ##### 0.7.0 - 2015.03.06
231
- * rewritten and splitted into [CommonJS modules](https://github.com/zloirock/core-js/#commonjs)
232
-
233
- ##### 0.6.1 - 2015.02.24
234
- * fixed support [`Object.defineProperty`](https://github.com/zloirock/core-js/#ecmascript-5) with accessors on DOM elements on IE8
235
-
236
- ##### 0.6.0 - 2015.02.23
237
- * added support safe closing iteration - calling `iterator.return` on abort iteration, if it exists
238
- * added basic support [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking in shim
239
- * added [`Object.getOwnPropertyDescriptors`](https://github.com/zloirock/core-js/#ecmascript-7)
240
- * removed `console` cap - creates too many problems - you can use [`core.log`](https://github.com/zloirock/core-js/#console) module as that
241
- * restructuring [namespaces](https://github.com/zloirock/core-js/#custom-build)
242
- * some fixes
243
-
244
- ##### 0.5.4 - 2015.02.15
245
- * some fixes
246
-
247
- ##### 0.5.3 - 2015.02.14
248
- * added [support binary and octal literals](https://github.com/zloirock/core-js/#ecmascript-6-number) to `Number` constructor
249
- * added [`Date#toISOString`](https://github.com/zloirock/core-js/#ecmascript-5)
250
-
251
- ##### 0.5.2 - 2015.02.10
252
- * some fixes
253
-
254
- ##### 0.5.1 - 2015.02.09
255
- * some fixes
256
-
257
- ##### 0.5.0 - 2015.02.08
258
- * systematization of modules
259
- * splitted [`es6` module](https://github.com/zloirock/core-js/#ecmascript-6)
260
- * splitted [`console` module](https://github.com/zloirock/core-js/#console): `web.console` - only cap for missing methods, `core.log` - bound methods & additional features
261
- * added [`delay` method](https://github.com/zloirock/core-js/#delay)
262
- * some fixes
263
-
264
- ##### 0.4.10 - 2015.01.28
265
- * [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill returns array of wrapped keys
266
-
267
- ##### 0.4.9 - 2015.01.27
268
- * FF20-24 fix
269
-
270
- ##### 0.4.8 - 2015.01.25
271
- * some [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) fixes
272
-
273
- ##### 0.4.7 - 2015.01.25
274
- * added support frozen objects as [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) keys
275
-
276
- ##### 0.4.6 - 2015.01.21
277
- * added [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
278
- * added [`NodeList.prototype[@@iterator]`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
279
- * added basic `@@species` logic - getter in native constructors
280
- * removed `Function#by`
281
- * some fixes
282
-
283
- ##### 0.4.5 - 2015.01.16
284
- * some fixes
285
-
286
- ##### 0.4.4 - 2015.01.11
287
- * enabled CSP support
288
-
289
- ##### 0.4.3 - 2015.01.10
290
- * added `Function` instances `name` property for IE9+
291
-
292
- ##### 0.4.2 - 2015.01.10
293
- * `Object` static methods accept primitives
294
- * `RegExp` constructor can alter flags (IE9+)
295
- * added `Array.prototype[Symbol.unscopables]`
296
-
297
- ##### 0.4.1 - 2015.01.05
298
- * some fixes
299
-
300
- ##### 0.4.0 - 2015.01.03
301
- * added [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) module:
302
- * added `Reflect.apply`
303
- * added `Reflect.construct`
304
- * added `Reflect.defineProperty`
305
- * added `Reflect.deleteProperty`
306
- * added `Reflect.enumerate`
307
- * added `Reflect.get`
308
- * added `Reflect.getOwnPropertyDescriptor`
309
- * added `Reflect.getPrototypeOf`
310
- * added `Reflect.has`
311
- * added `Reflect.isExtensible`
312
- * added `Reflect.preventExtensions`
313
- * added `Reflect.set`
314
- * added `Reflect.setPrototypeOf`
315
- * `core-js` methods now can use external `Symbol.iterator` polyfill
316
- * some fixes
317
-
318
- ##### 0.3.3 - 2014.12.28
319
- * [console cap](https://github.com/zloirock/core-js/#console) excluded from node.js default builds
320
-
321
- ##### 0.3.2 - 2014.12.25
322
- * added cap for [ES5](https://github.com/zloirock/core-js/#ecmascript-5) freeze-family methods
323
- * fixed `console` bug
324
-
325
- ##### 0.3.1 - 2014.12.23
326
- * some fixes
327
-
328
- ##### 0.3.0 - 2014.12.23
329
- * Optimize [`Map` & `Set`](https://github.com/zloirock/core-js/#ecmascript-6-collections):
330
- * use entries chain on hash table
331
- * fast & correct iteration
332
- * iterators moved to [`es6`](https://github.com/zloirock/core-js/#ecmascript-6) and [`es6.collections`](https://github.com/zloirock/core-js/#ecmascript-6-collections) modules
333
-
334
- ##### 0.2.5 - 2014.12.20
335
- * `console` no longer shortcut for `console.log` (compatibility problems)
336
- * some fixes
337
-
338
- ##### 0.2.4 - 2014.12.17
339
- * better compliance of ES6
340
- * added [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) (IE10+)
341
- * some fixes
342
-
343
- ##### 0.2.3 - 2014.12.15
344
- * [Symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol):
345
- * added option to disable addition setter to `Object.prototype` for Symbol polyfill:
346
- * added `Symbol.useSimple`
347
- * added `Symbol.useSetter`
348
- * added cap for well-known Symbols:
349
- * added `Symbol.hasInstance`
350
- * added `Symbol.isConcatSpreadable`
351
- * added `Symbol.match`
352
- * added `Symbol.replace`
353
- * added `Symbol.search`
354
- * added `Symbol.species`
355
- * added `Symbol.split`
356
- * added `Symbol.toPrimitive`
357
- * added `Symbol.unscopables`
358
-
359
- ##### 0.2.2 - 2014.12.13
360
- * added [`RegExp#flags`](https://github.com/zloirock/core-js/#ecmascript-6-regexp) ([December 2014 Draft Rev 29](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts#december_6_2014_draft_rev_29))
361
- * added [`String.raw`](https://github.com/zloirock/core-js/#ecmascript-6-string)
362
-
363
- ##### 0.2.1 - 2014.12.12
364
- * repair converting -0 to +0 in [native collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
365
-
366
- ##### 0.2.0 - 2014.12.06
367
- * added [`es7.proposals`](https://github.com/zloirock/core-js/#ecmascript-7) and [`es7.abstract-refs`](https://github.com/zenparsing/es-abstract-refs) modules
368
- * added [`String#at`](https://github.com/zloirock/core-js/#ecmascript-7)
369
- * added real [`String Iterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), older versions used Array Iterator
370
- * added abstract references support:
371
- * added `Symbol.referenceGet`
372
- * added `Symbol.referenceSet`
373
- * added `Symbol.referenceDelete`
374
- * added `Function#@@referenceGet`
375
- * added `Map#@@referenceGet`
376
- * added `Map#@@referenceSet`
377
- * added `Map#@@referenceDelete`
378
- * added `WeakMap#@@referenceGet`
379
- * added `WeakMap#@@referenceSet`
380
- * added `WeakMap#@@referenceDelete`
381
- * added `Dict.{...methods}[@@referenceGet]`
382
- * removed deprecated `.contains` methods
383
- * some fixes
384
-
385
- ##### 0.1.5 - 2014.12.01
386
- * added [`Array#copyWithin`](https://github.com/zloirock/core-js/#ecmascript-6-array)
387
- * added [`String#codePointAt`](https://github.com/zloirock/core-js/#ecmascript-6-string)
388
- * added [`String.fromCodePoint`](https://github.com/zloirock/core-js/#ecmascript-6-string)
389
-
390
- ##### 0.1.4 - 2014.11.27
391
- * added [`Dict.mapPairs`](https://github.com/zloirock/core-js/#dict)
392
-
393
- ##### 0.1.3 - 2014.11.20
394
- * [TC39 November meeting](https://github.com/rwaldron/tc39-notes/tree/master/es6/2014-11):
395
- * [`.contains` -> `.includes`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-18.md#51--44-arrayprototypecontains-and-stringprototypecontains)
396
- * `String#contains` -> [`String#includes`](https://github.com/zloirock/core-js/#ecmascript-6-string)
397
- * `Array#contains` -> [`Array#includes`](https://github.com/zloirock/core-js/#ecmascript-7)
398
- * `Dict.contains` -> [`Dict.includes`](https://github.com/zloirock/core-js/#dict)
399
- * [removed `WeakMap#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
400
- * [removed `WeakSet#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
401
-
402
- ##### 0.1.2 - 2014.11.19
403
- * `Map` & `Set` bug fix
404
-
405
- ##### 0.1.1 - 2014.11.18
1
+ ## Changelog
2
+ ##### 1.2.7 [LEGACY] - 2016.07.18
3
+ * some fixes for issues like #159, #186, #194, #207
4
+
5
+ ##### 1.2.6 - 2015.11.09
6
+ * reject with `TypeError` on attempt resolve promise itself
7
+ * correct behavior with broken `Promise` subclass constructors / methods
8
+ * added `Promise`-based fallback for microtask
9
+ * fixed V8 and FF `Array#{values, @@iterator}.name`
10
+ * fixed IE7- `[1, 2].join(undefined) -> '1,2'`
11
+ * some other fixes / improvements / optimizations
12
+
13
+ ##### 1.2.5 - 2015.11.02
14
+ * some more `Number` constructor fixes:
15
+ * fixed V8 ~ Node 0.8 bug: `Number('+0x1')` should be `NaN`
16
+ * fixed `Number(' 0b1\n')` case, should be `1`
17
+ * fixed `Number()` case, should be `0`
18
+
19
+ ##### 1.2.4 - 2015.11.01
20
+ * fixed `Number('0b12') -> NaN` case in the shim
21
+ * fixed V8 ~ Chromium 40- bug - `Weak(Map|Set)#{delete, get, has}` should not throw errors [#124](https://github.com/zloirock/core-js/issues/124)
22
+ * some other fixes and optimizations
23
+
24
+ ##### 1.2.3 - 2015.10.23
25
+ * fixed some problems related old V8 bug `Object('a').propertyIsEnumerable(0) // => false`, for example, `Object.assign({}, 'qwe')` from the last release
26
+ * fixed `.name` property and `Function#toString` conversion some polyfilled methods
27
+ * fixed `Math.imul` arity in Safari 8-
28
+
29
+ ##### 1.2.2 - 2015.10.18
30
+ * improved optimisations for V8
31
+ * fixed build process from external packages, [#120](https://github.com/zloirock/core-js/pull/120)
32
+ * one more `Object.{assign, values, entries}` fix for [**very** specific case](https://github.com/ljharb/proposal-object-values-entries/issues/5)
33
+
34
+ ##### 1.2.1 - 2015.10.02
35
+ * replaced fix `JSON.stringify` + `Symbol` behavior from `.toJSON` method to wrapping `JSON.stringify` - little more correct, [compat-table/642](https://github.com/kangax/compat-table/pull/642)
36
+ * fixed typo which broke tasks scheduler in WebWorkers in old FF, [#114](https://github.com/zloirock/core-js/pull/114)
37
+
38
+ ##### 1.2.0 - 2015.09.27
39
+ * added browser [`Promise` rejection hook](#unhandled-rejection-tracking), [#106](https://github.com/zloirock/core-js/issues/106)
40
+ * added correct [`IsRegExp`](http://www.ecma-international.org/ecma-262/6.0/#sec-isregexp) logic to [`String#{includes, startsWith, endsWith}`](https://github.com/zloirock/core-js/#ecmascript-6-string) and [`RegExp` constructor](https://github.com/zloirock/core-js/#ecmascript-6-regexp), `@@match` case, [example](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/match#Disabling_the_isRegExp_check)
41
+ * updated [`String#leftPad`](https://github.com/zloirock/core-js/#ecmascript-7) [with proposal](https://github.com/ljharb/proposal-string-pad-left-right/issues/6): string filler truncated from the right side
42
+ * replaced V8 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object) - its properties order not only [incorrect](https://github.com/sindresorhus/object-assign/issues/22), it is non-deterministic and it causes some problems
43
+ * fixed behavior with deleted in getters properties for `Object.{`[`assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)`, `[`entries, values`](https://github.com/zloirock/core-js/#ecmascript-7)`}`, [example](http://goo.gl/iQE01c)
44
+ * fixed [`Math.sinh`](https://github.com/zloirock/core-js/#ecmascript-6-math) with very small numbers in V8 near Chromium 38
45
+ * some other fixes and optimizations
46
+
47
+ ##### 1.1.4 - 2015.09.05
48
+ * fixed support symbols in FF34-35 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)
49
+ * fixed [collections iterators](https://github.com/zloirock/core-js/#ecmascript-6-iterators) in FF25-26
50
+ * fixed non-generic WebKit [`Array.of`](https://github.com/zloirock/core-js/#ecmascript-6-array)
51
+ * some other fixes and optimizations
52
+
53
+ ##### 1.1.3 - 2015.08.29
54
+ * fixed support Node.js domains in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise), [#103](https://github.com/zloirock/core-js/issues/103)
55
+
56
+ ##### 1.1.2 - 2015.08.28
57
+ * added `toJSON` method to [`Symbol`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill and to MS Edge implementation for expected `JSON.stringify` result w/o patching this method
58
+ * replaced [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) implementations w/o correct support third argument
59
+ * fixed `global` detection with changed `document.domain` in ~IE8, [#100](https://github.com/zloirock/core-js/issues/100)
60
+
61
+ ##### 1.1.1 - 2015.08.20
62
+ * added more correct microtask implementation for [`Promise`](#ecmascript-6-promise)
63
+
64
+ ##### 1.1.0 - 2015.08.17
65
+ * updated [string padding](https://github.com/zloirock/core-js/#ecmascript-7) to [actual proposal](https://github.com/ljharb/proposal-string-pad-left-right) - renamed, minor internal changes:
66
+ * `String#lpad` -> `String#padLeft`
67
+ * `String#rpad` -> `String#padRight`
68
+ * added [string trim functions](#ecmascript-7) - [proposal](https://github.com/sebmarkbage/ecmascript-string-left-right-trim), defacto standard - required only for IE11- and fixed for some old engines:
69
+ * `String#trimLeft`
70
+ * `String#trimRight`
71
+ * [`String#trim`](https://github.com/zloirock/core-js/#ecmascript-6-string) fixed for some engines by es6 spec and moved from `es5` to single `es6` module
72
+ * splitted [`es6.object.statics-accept-primitives`](https://github.com/zloirock/core-js/#ecmascript-6-object)
73
+ * caps for `freeze`-family `Object` methods moved from `es5` to `es6` namespace and joined with [es6 wrappers](https://github.com/zloirock/core-js/#ecmascript-6-object)
74
+ * `es5` [namespace](https://github.com/zloirock/core-js/#commonjs) also includes modules, moved to `es6` namespace - you can use it as before
75
+ * increased `MessageChannel` priority in `$.task`, [#95](https://github.com/zloirock/core-js/issues/95)
76
+ * does not get `global.Symbol` on each getting iterator, if you wanna use alternative `Symbol` shim - add it before `core-js`
77
+ * [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) optimized and fixed for some cases
78
+ * simplified [`Reflect.enumerate`](https://github.com/zloirock/core-js/#ecmascript-6-reflect), see [this question](https://esdiscuss.org/topic/question-about-enumerate-and-property-decision-timing)
79
+ * some corrections in [`Math.acosh`](https://github.com/zloirock/core-js/#ecmascript-6-math)
80
+ * fixed [`Math.imul`](https://github.com/zloirock/core-js/#ecmascript-6-math) for old WebKit
81
+ * some fixes in string / RegExp [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp) logic
82
+ * some other fixes and optimizations
83
+
84
+ ##### 1.0.1 - 2015.07.31
85
+ * some fixes for final MS Edge, replaced broken native `Reflect.defineProperty`
86
+ * some minor fixes and optimizations
87
+ * changed compression `client/*.min.js` options for safe `Function#name` and `Function#length`, should be fixed [#92](https://github.com/zloirock/core-js/issues/92)
88
+
89
+ ##### 1.0.0 - 2015.07.22
90
+ * added logic for [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp):
91
+ * `Symbol.match`
92
+ * `Symbol.replace`
93
+ * `Symbol.split`
94
+ * `Symbol.search`
95
+ * actualized and optimized work with iterables:
96
+ * optimized [`Map`, `Set`, `WeakMap`, `WeakSet` constructors](https://github.com/zloirock/core-js/#ecmascript-6-collections), [`Promise.all`, `Promise.race`](https://github.com/zloirock/core-js/#ecmascript-6-promise) for default `Array Iterator`
97
+ * optimized [`Array.from`](https://github.com/zloirock/core-js/#ecmascript-6-array) for default `Array Iterator`
98
+ * added [`core.getIteratorMethod`](https://github.com/zloirock/core-js/#ecmascript-6-iterators) helper
99
+ * uses enumerable properties in shimmed instances - collections, iterators, etc for optimize performance
100
+ * added support native constructors to [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) with 2 arguments
101
+ * added support native constructors to [`Function#bind`](https://github.com/zloirock/core-js/#ecmascript-5) shim with `new`
102
+ * removed obsolete `.clear` methods native [`Weak`-collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
103
+ * maximum modularity, reduced minimal custom build size, separated into submodules:
104
+ * [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect)
105
+ * [`es6.regexp`](https://github.com/zloirock/core-js/#ecmascript-6-regexp)
106
+ * [`es6.math`](https://github.com/zloirock/core-js/#ecmascript-6-math)
107
+ * [`es6.number`](https://github.com/zloirock/core-js/#ecmascript-6-number)
108
+ * [`es7.object.to-array`](https://github.com/zloirock/core-js/#ecmascript-7)
109
+ * [`core.object`](https://github.com/zloirock/core-js/#object)
110
+ * [`core.string`](https://github.com/zloirock/core-js/#escaping-html)
111
+ * [`core.iter-helpers`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
112
+ * internal modules (`$`, `$.iter`, etc)
113
+ * many other optimizations
114
+ * final cleaning non-standard features
115
+ * moved `$for` to [separate library](https://github.com/zloirock/forof). This work for syntax - `for-of` loop and comprehensions
116
+ * moved `Date#{format, formatUTC}` to [separate library](https://github.com/zloirock/dtf). Standard way for this - `ECMA-402`
117
+ * removed `Math` methods from `Number.prototype`. Slight sugar for simple `Math` methods calling
118
+ * removed `{Array#, Array, Dict}.turn`
119
+ * removed `core.global`
120
+ * uses `ToNumber` instead of `ToLength` in [`Number Iterator`](https://github.com/zloirock/core-js/#number-iterator), `Array.from(2.5)` will be `[0, 1, 2]` instead of `[0, 1]`
121
+ * fixed [#85](https://github.com/zloirock/core-js/issues/85) - invalid `Promise` unhandled rejection message in nested `setTimeout`
122
+ * fixed [#86](https://github.com/zloirock/core-js/issues/86) - support FF extensions
123
+ * fixed [#89](https://github.com/zloirock/core-js/issues/89) - behavior `Number` constructor in strange case
124
+
125
+ ##### 0.9.18 - 2015.06.17
126
+ * removed `/` from [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) escaped characters
127
+
128
+ ##### 0.9.17 - 2015.06.14
129
+ * updated [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) to the [latest proposal](https://github.com/benjamingr/RexExp.escape)
130
+ * fixed conflict with webpack dev server + IE buggy behavior
131
+
132
+ ##### 0.9.16 - 2015.06.11
133
+ * more correct order resolving thenable in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) polyfill
134
+ * uses polyfill instead of [buggy V8 `Promise`](https://github.com/zloirock/core-js/issues/78)
135
+
136
+ ##### 0.9.15 - 2015.06.09
137
+ * [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) from `library` version return wrapped native instances
138
+ * fixed collections prototype methods in `library` version
139
+ * optimized [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math)
140
+
141
+ ##### 0.9.14 - 2015.06.04
142
+ * updated [`Promise.resolve` behavior](https://esdiscuss.org/topic/fixing-promise-resolve)
143
+ * added fallback for IE11 buggy `Object.getOwnPropertyNames` + iframe
144
+ * some other fixes
145
+
146
+ ##### 0.9.13 - 2015.05.25
147
+ * added fallback for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol) for old Android
148
+ * some other fixes
149
+
150
+ ##### 0.9.12 - 2015.05.24
151
+ * different instances `core-js` should use / recognize the same symbols
152
+ * some fixes
153
+
154
+ ##### 0.9.11 - 2015.05.18
155
+ * simplified [custom build](https://github.com/zloirock/core-js/#custom-build)
156
+ * add custom build js api
157
+ * added `grunt-cli` to `devDependencies` for `npm run grunt`
158
+ * some fixes
159
+
160
+ ##### 0.9.10 - 2015.05.16
161
+ * wrapped `Function#toString` for correct work wrapped methods / constructors with methods similar to the [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
162
+ * added proto versions of methods to export object in `default` version for consistency with `library` version
163
+
164
+ ##### 0.9.9 - 2015.05.14
165
+ * wrapped `Object#propertyIsEnumerable` for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
166
+ * [added proto versions of methods to `library` for ES7 bind syntax](https://github.com/zloirock/core-js/issues/65)
167
+ * some other fixes
168
+
169
+ ##### 0.9.8 - 2015.05.12
170
+ * fixed [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math) with negative arguments
171
+ * added `Object#toString.toString` as fallback for [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
172
+
173
+ ##### 0.9.7 - 2015.05.07
174
+ * added [support DOM collections](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice#Streamlining_cross-browser_behavior) to IE8- `Array#slice`
175
+
176
+ ##### 0.9.6 - 2015.05.01
177
+ * added [`String#lpad`, `String#rpad`](https://github.com/zloirock/core-js/#ecmascript-7)
178
+
179
+ ##### 0.9.5 - 2015.04.30
180
+ * added cap for `Function#@@hasInstance`
181
+ * some fixes and optimizations
182
+
183
+ ##### 0.9.4 - 2015.04.27
184
+ * fixed `RegExp` constructor
185
+
186
+ ##### 0.9.3 - 2015.04.26
187
+ * some fixes and optimizations
188
+
189
+ ##### 0.9.2 - 2015.04.25
190
+ * more correct [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking and resolving / rejection priority
191
+
192
+ ##### 0.9.1 - 2015.04.25
193
+ * fixed `__proto__`-based [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) subclassing in some environments
194
+
195
+ ##### 0.9.0 - 2015.04.24
196
+ * added correct [symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol) descriptors
197
+ * fixed behavior `Object.{assign, create, defineProperty, defineProperties, getOwnPropertyDescriptor, getOwnPropertyDescriptors}` with symbols
198
+ * added [single entry points](https://github.com/zloirock/core-js/#commonjs) for `Object.{create, defineProperty, defineProperties}`
199
+ * added [`Map#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
200
+ * removed non-standard methods `Object#[_]` and `Function#only` - they solves syntax problems, but now in compilers available arrows and ~~in near future will be available~~ [available](http://babeljs.io/blog/2015/05/14/function-bind/) [bind syntax](https://github.com/zenparsing/es-function-bind)
201
+ * removed non-standard undocumented methods `Symbol.{pure, set}`
202
+ * some fixes and internal changes
203
+
204
+ ##### 0.8.4 - 2015.04.18
205
+ * uses `webpack` instead of `browserify` for browser builds - more compression-friendly result
206
+
207
+ ##### 0.8.3 - 2015.04.14
208
+ * fixed `Array` statics with single entry points
209
+
210
+ ##### 0.8.2 - 2015.04.13
211
+ * [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) now also works in IE9-
212
+ * added [`Set#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
213
+ * some optimizations and fixes
214
+
215
+ ##### 0.8.1 - 2015.04.03
216
+ * fixed `Symbol.keyFor`
217
+
218
+ ##### 0.8.0 - 2015.04.02
219
+ * changed [CommonJS API](https://github.com/zloirock/core-js/#commonjs)
220
+ * splitted and renamed some modules
221
+ * added support ES3 environment (ES5 polyfill) to **all** default versions - size increases slightly (+ ~4kb w/o gzip), many issues disappear, if you don't need it - [simply include only required namespaces / features / modules](https://github.com/zloirock/core-js/#commonjs)
222
+ * removed [abstract references](https://github.com/zenparsing/es-abstract-refs) support - proposal has been superseded =\
223
+ * [`$for.isIterable` -> `core.isIterable`, `$for.getIterator` -> `core.getIterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), temporary available in old namespace
224
+ * fixed iterators support in v8 `Promise.all` and `Promise.race`
225
+ * many other fixes
226
+
227
+ ##### 0.7.2 - 2015.03.09
228
+ * some fixes
229
+
230
+ ##### 0.7.1 - 2015.03.07
231
+ * some fixes
232
+
233
+ ##### 0.7.0 - 2015.03.06
234
+ * rewritten and splitted into [CommonJS modules](https://github.com/zloirock/core-js/#commonjs)
235
+
236
+ ##### 0.6.1 - 2015.02.24
237
+ * fixed support [`Object.defineProperty`](https://github.com/zloirock/core-js/#ecmascript-5) with accessors on DOM elements on IE8
238
+
239
+ ##### 0.6.0 - 2015.02.23
240
+ * added support safe closing iteration - calling `iterator.return` on abort iteration, if it exists
241
+ * added basic support [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking in shim
242
+ * added [`Object.getOwnPropertyDescriptors`](https://github.com/zloirock/core-js/#ecmascript-7)
243
+ * removed `console` cap - creates too many problems - you can use [`core.log`](https://github.com/zloirock/core-js/#console) module as that
244
+ * restructuring [namespaces](https://github.com/zloirock/core-js/#custom-build)
245
+ * some fixes
246
+
247
+ ##### 0.5.4 - 2015.02.15
248
+ * some fixes
249
+
250
+ ##### 0.5.3 - 2015.02.14
251
+ * added [support binary and octal literals](https://github.com/zloirock/core-js/#ecmascript-6-number) to `Number` constructor
252
+ * added [`Date#toISOString`](https://github.com/zloirock/core-js/#ecmascript-5)
253
+
254
+ ##### 0.5.2 - 2015.02.10
255
+ * some fixes
256
+
257
+ ##### 0.5.1 - 2015.02.09
258
+ * some fixes
259
+
260
+ ##### 0.5.0 - 2015.02.08
261
+ * systematization of modules
262
+ * splitted [`es6` module](https://github.com/zloirock/core-js/#ecmascript-6)
263
+ * splitted [`console` module](https://github.com/zloirock/core-js/#console): `web.console` - only cap for missing methods, `core.log` - bound methods & additional features
264
+ * added [`delay` method](https://github.com/zloirock/core-js/#delay)
265
+ * some fixes
266
+
267
+ ##### 0.4.10 - 2015.01.28
268
+ * [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill returns array of wrapped keys
269
+
270
+ ##### 0.4.9 - 2015.01.27
271
+ * FF20-24 fix
272
+
273
+ ##### 0.4.8 - 2015.01.25
274
+ * some [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) fixes
275
+
276
+ ##### 0.4.7 - 2015.01.25
277
+ * added support frozen objects as [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) keys
278
+
279
+ ##### 0.4.6 - 2015.01.21
280
+ * added [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
281
+ * added [`NodeList.prototype[@@iterator]`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
282
+ * added basic `@@species` logic - getter in native constructors
283
+ * removed `Function#by`
284
+ * some fixes
285
+
286
+ ##### 0.4.5 - 2015.01.16
287
+ * some fixes
288
+
289
+ ##### 0.4.4 - 2015.01.11
290
+ * enabled CSP support
291
+
292
+ ##### 0.4.3 - 2015.01.10
293
+ * added `Function` instances `name` property for IE9+
294
+
295
+ ##### 0.4.2 - 2015.01.10
296
+ * `Object` static methods accept primitives
297
+ * `RegExp` constructor can alter flags (IE9+)
298
+ * added `Array.prototype[Symbol.unscopables]`
299
+
300
+ ##### 0.4.1 - 2015.01.05
301
+ * some fixes
302
+
303
+ ##### 0.4.0 - 2015.01.03
304
+ * added [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) module:
305
+ * added `Reflect.apply`
306
+ * added `Reflect.construct`
307
+ * added `Reflect.defineProperty`
308
+ * added `Reflect.deleteProperty`
309
+ * added `Reflect.enumerate`
310
+ * added `Reflect.get`
311
+ * added `Reflect.getOwnPropertyDescriptor`
312
+ * added `Reflect.getPrototypeOf`
313
+ * added `Reflect.has`
314
+ * added `Reflect.isExtensible`
315
+ * added `Reflect.preventExtensions`
316
+ * added `Reflect.set`
317
+ * added `Reflect.setPrototypeOf`
318
+ * `core-js` methods now can use external `Symbol.iterator` polyfill
319
+ * some fixes
320
+
321
+ ##### 0.3.3 - 2014.12.28
322
+ * [console cap](https://github.com/zloirock/core-js/#console) excluded from node.js default builds
323
+
324
+ ##### 0.3.2 - 2014.12.25
325
+ * added cap for [ES5](https://github.com/zloirock/core-js/#ecmascript-5) freeze-family methods
326
+ * fixed `console` bug
327
+
328
+ ##### 0.3.1 - 2014.12.23
329
+ * some fixes
330
+
331
+ ##### 0.3.0 - 2014.12.23
332
+ * Optimize [`Map` & `Set`](https://github.com/zloirock/core-js/#ecmascript-6-collections):
333
+ * use entries chain on hash table
334
+ * fast & correct iteration
335
+ * iterators moved to [`es6`](https://github.com/zloirock/core-js/#ecmascript-6) and [`es6.collections`](https://github.com/zloirock/core-js/#ecmascript-6-collections) modules
336
+
337
+ ##### 0.2.5 - 2014.12.20
338
+ * `console` no longer shortcut for `console.log` (compatibility problems)
339
+ * some fixes
340
+
341
+ ##### 0.2.4 - 2014.12.17
342
+ * better compliance of ES6
343
+ * added [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) (IE10+)
344
+ * some fixes
345
+
346
+ ##### 0.2.3 - 2014.12.15
347
+ * [Symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol):
348
+ * added option to disable addition setter to `Object.prototype` for Symbol polyfill:
349
+ * added `Symbol.useSimple`
350
+ * added `Symbol.useSetter`
351
+ * added cap for well-known Symbols:
352
+ * added `Symbol.hasInstance`
353
+ * added `Symbol.isConcatSpreadable`
354
+ * added `Symbol.match`
355
+ * added `Symbol.replace`
356
+ * added `Symbol.search`
357
+ * added `Symbol.species`
358
+ * added `Symbol.split`
359
+ * added `Symbol.toPrimitive`
360
+ * added `Symbol.unscopables`
361
+
362
+ ##### 0.2.2 - 2014.12.13
363
+ * added [`RegExp#flags`](https://github.com/zloirock/core-js/#ecmascript-6-regexp) ([December 2014 Draft Rev 29](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts#december_6_2014_draft_rev_29))
364
+ * added [`String.raw`](https://github.com/zloirock/core-js/#ecmascript-6-string)
365
+
366
+ ##### 0.2.1 - 2014.12.12
367
+ * repair converting -0 to +0 in [native collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
368
+
369
+ ##### 0.2.0 - 2014.12.06
370
+ * added [`es7.proposals`](https://github.com/zloirock/core-js/#ecmascript-7) and [`es7.abstract-refs`](https://github.com/zenparsing/es-abstract-refs) modules
371
+ * added [`String#at`](https://github.com/zloirock/core-js/#ecmascript-7)
372
+ * added real [`String Iterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), older versions used Array Iterator
373
+ * added abstract references support:
374
+ * added `Symbol.referenceGet`
375
+ * added `Symbol.referenceSet`
376
+ * added `Symbol.referenceDelete`
377
+ * added `Function#@@referenceGet`
378
+ * added `Map#@@referenceGet`
379
+ * added `Map#@@referenceSet`
380
+ * added `Map#@@referenceDelete`
381
+ * added `WeakMap#@@referenceGet`
382
+ * added `WeakMap#@@referenceSet`
383
+ * added `WeakMap#@@referenceDelete`
384
+ * added `Dict.{...methods}[@@referenceGet]`
385
+ * removed deprecated `.contains` methods
386
+ * some fixes
387
+
388
+ ##### 0.1.5 - 2014.12.01
389
+ * added [`Array#copyWithin`](https://github.com/zloirock/core-js/#ecmascript-6-array)
390
+ * added [`String#codePointAt`](https://github.com/zloirock/core-js/#ecmascript-6-string)
391
+ * added [`String.fromCodePoint`](https://github.com/zloirock/core-js/#ecmascript-6-string)
392
+
393
+ ##### 0.1.4 - 2014.11.27
394
+ * added [`Dict.mapPairs`](https://github.com/zloirock/core-js/#dict)
395
+
396
+ ##### 0.1.3 - 2014.11.20
397
+ * [TC39 November meeting](https://github.com/rwaldron/tc39-notes/tree/master/es6/2014-11):
398
+ * [`.contains` -> `.includes`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-18.md#51--44-arrayprototypecontains-and-stringprototypecontains)
399
+ * `String#contains` -> [`String#includes`](https://github.com/zloirock/core-js/#ecmascript-6-string)
400
+ * `Array#contains` -> [`Array#includes`](https://github.com/zloirock/core-js/#ecmascript-7)
401
+ * `Dict.contains` -> [`Dict.includes`](https://github.com/zloirock/core-js/#dict)
402
+ * [removed `WeakMap#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
403
+ * [removed `WeakSet#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
404
+
405
+ ##### 0.1.2 - 2014.11.19
406
+ * `Map` & `Set` bug fix
407
+
408
+ ##### 0.1.1 - 2014.11.18
406
409
  * public release