Skip to content

Releases: zloirock/core-js

2.0.1 - 2015.12.31

31 Dec 10:21

Choose a tag to compare

  • forced usage Promise.resolve polyfill in the library version for correct work with wrapper
  • Object.assign should be defined in the strict mode -> throw an error on extension non-extensible objects, #154

2.0.0 - 2015.12.24

24 Dec 08:31

Choose a tag to compare

...and I hope that is not the end.

2.0.0-beta.2 - 2015.12.18

18 Dec 08:13

Choose a tag to compare

Pre-release
  • contains most changes from this thread
  • typed arrays related features enough stable
  • export and API typed arrays related features still not finished

2.0.0-beta - 2015.12.08

07 Dec 18:03

Choose a tag to compare

Pre-release

Contains most changes from this thread. Typed arrays-related features enabled by default, but still not enough stable. Fixed some problems of library version from alpha release.

2.0.0-alpha - 2015.11.26

25 Nov 18:14

Choose a tag to compare

Pre-release

Special for TFS users and without a changelog. Contains most changes from this thread exclude typed arrays related features.

1.2.6 - 2015.11.09

09 Nov 04:46

Choose a tag to compare

  • reject with TypeError on attempt resolve promise itself
  • correct behavior with broken Promise subclass constructors / methods
  • added Promise-based fallback for microtask
  • fixed V8 and FF Array#{values, @@iterator}.name
  • fixed IE7- [1, 2].join(undefined) -> '1,2'
  • some other fixes / improvements / optimizations

1.2.5 - 2015.11.02

02 Nov 11:11

Choose a tag to compare

  • some more Number constructor fixes:
    • fixed V8 ~ Node 0.8 bug: Number('+0x1') should be NaN
    • fixed Number(' 0b1\n') case, should be 1
    • fixed Number() case, should be 0

1.2.4 - 2015.11.01

31 Oct 23:07

Choose a tag to compare

  • fixed Number('0b12') -> NaN case in the shim
  • fixed V8 ~ Chromium 40- bug - Weak(Map|Set)#{delete, get, has} should not throw errors #124
  • some other fixes and optimizations

1.2.3 - 2015.10.23

22 Oct 19:41

Choose a tag to compare

  • fixed some problems related old V8 bug Object('a').propertyIsEnumerable(0) // => false, for example, Object.assign({}, 'qwe') from the last release
  • fixed .name property and Function#toString conversion some polyfilled methods
  • fixed Math.imul arity in Safari 8-

1.2.2 - 2015.10.18

18 Oct 17:49

Choose a tag to compare

  • improved optimisations for V8
  • fixed build process from external packages, #120
  • one more Object.{assign, values, entries} fix for very specific case