CHANGES 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. v3.1.0 -- 2016.05.17
  2. * Fix internals of symbol detection
  3. * Ensure Symbol.prototype[Symbol.toPrimitive] in all cases returns primitive value
  4. (fixes Node v6 support)
  5. * Create native symbols whenver possible
  6. v3.0.2 -- 2015.12.12
  7. * Fix definition flow, so uneven state of Symbol implementation doesn't crash initialization of
  8. polyfill. See #13
  9. v3.0.1 -- 2015.10.22
  10. * Workaround for IE11 bug (reported in #12)
  11. v3.0.0 -- 2015.10.02
  12. * Reuse native symbols (e.g. iterator, toStringTag etc.) in a polyfill if they're available
  13. Otherwise polyfill symbols may not be recognized by other functions
  14. * Improve documentation
  15. v2.0.1 -- 2015.01.28
  16. * Fix Symbol.prototype[Symbol.isPrimitive] implementation
  17. * Improve validation within Symbol.prototype.toString and
  18. Symbol.prototype.valueOf
  19. v2.0.0 -- 2015.01.28
  20. * Update up to changes in specification:
  21. * Implement `for` and `keyFor`
  22. * Remove `Symbol.create` and `Symbol.isRegExp`
  23. * Add `Symbol.match`, `Symbol.replace`, `Symbol.search`, `Symbol.species` and
  24. `Symbol.split`
  25. * Rename `validSymbol` to `validateSymbol`
  26. * Improve documentation
  27. * Remove dead test modules
  28. v1.0.0 -- 2015.01.26
  29. * Fix enumerability for symbol properties set normally (e.g. obj[symbol] = value)
  30. * Introduce initialization via hidden constructor
  31. * Fix isSymbol handling of polyfill values when native Symbol is present
  32. * Fix spelling of LICENSE
  33. * Configure lint scripts
  34. v0.1.1 -- 2014.10.07
  35. * Fix isImplemented, so it returns true in case of polyfill
  36. * Improve documentations
  37. v0.1.0 -- 2014.04.28
  38. * Assure strictly npm dependencies
  39. * Update to use latest versions of dependencies
  40. * Fix implementation detection so it doesn't crash on `String(symbol)`
  41. * throw on `new Symbol()` (as decided by TC39)
  42. v0.0.0 -- 2013.11.15
  43. * Initial (dev) version