You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. 4.0.4 / 2017-12-21
  2. ==================
  3. * [New] add `auto` entry point (#52)
  4. * [Refactor] Use `has-symbols` module
  5. * [Deps] update `function-bind`, `object-keys`
  6. * [Dev Deps] update `@es-shims/api`, `browserify`, `nsp`, `eslint`, `@ljharb/eslint-config`, `is`
  7. * [Tests] up to `node` `v9.3`, `v8.9`, `v6.12`; use `nvm install-latest-npm`; pin included builds to LTS
  8. 4.0.4 / 2016-07-04
  9. ==================
  10. * [Fix] Cache original `getOwnPropertySymbols`, and use that when `Object.getOwnPropertySymbols` is unavailable
  11. * [Deps] update `object-keys`
  12. * [Dev Deps] update `eslint`, `get-own-property-symbols`, `core-js`, `jscs`, `nsp`, `browserify`, `@ljharb/eslint-config`, `tape`, `@es-shims/api`
  13. * [Tests] up to `node` `v6.2`, `v5.10`, `v4.4`
  14. * [Tests] run sham tests on node 0.10
  15. * [Tests] use pretest/posttest for linting/security
  16. 4.0.3 / 2015-10-21
  17. ==================
  18. * [Fix] Support core-js's Symbol sham (#17)
  19. * [Fix] Ensure that properties removed or made non-enumerable during enumeration are not assigned (#16)
  20. * [Fix] Avoid looking up keys and values more than once
  21. * [Tests] Avoid using `reduce` so `npm run test:shams:corejs` passes in `node` `v0.8` ([core-js#122](https://github.com/zloirock/core-js/issues/122))
  22. * [Tests] Refactor to use my conventional structure that separates shimmed, implementation, and common tests
  23. * [Tests] Create `npm run test:shams` and better organize tests for symbol shams
  24. * [Tests] Remove `nsp` in favor of `requiresafe`
  25. 4.0.2 / 2015-10-20
  26. ==================
  27. * [Fix] Ensure correct property enumeration order, particularly in v8 (#15)
  28. * [Deps] update `object-keys`, `define-properties`
  29. * [Dev Deps] update `browserify`, `is`, `tape`, `jscs`, `eslint`, `@ljharb/eslint-config`
  30. * [Tests] up to `io.js` `v3.3`, `node` `v4.2`
  31. 4.0.1 / 2015-08-16
  32. ==================
  33. * [Docs] Add `Symbol` note to readme
  34. 4.0.0 / 2015-08-15
  35. ==================
  36. * [Breaking] Implement the [es-shim API](es-shims/api).
  37. * [Robustness] Make implementation robust against later modification of environment methods.
  38. * [Refactor] Move implementation to `implementation.js`
  39. * [Docs] Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG
  40. * [Deps] update `object-keys`, `define-properties`
  41. * [Dev Deps] update `browserify`, `tape`, `eslint`, `jscs`, `browserify`
  42. * [Tests] Add `npm run tests-only`
  43. * [Tests] use my personal shared `eslint` config.
  44. * [Tests] up to `io.js` `v3.0`
  45. 3.0.1 / 2015-06-28
  46. ==================
  47. * Cache `Object` and `Array#push` to make the shim more robust.
  48. * [Fix] Remove use of `Array#filter`, which isn't in ES3.
  49. * [Deps] Update `object-keys`, `define-properties`
  50. * [Dev Deps] Update `get-own-property-symbols`, `browserify`, `eslint`, `nsp`
  51. * [Tests] Test up to `io.js` `v2.3`
  52. * [Tests] Adding `Object.assign` tests for non-object targets, per https://github.com/paulmillr/es6-shim/issues/348
  53. 3.0.0 / 2015-05-20
  54. ==================
  55. * Attempt to feature-detect Symbols, even if `typeof Symbol() !== 'symbol'` (#12)
  56. * Make a separate `hasSymbols` internal module
  57. * Update `browserify`, `eslint`
  58. 2.0.3 / 2015-06-28
  59. ==================
  60. * Cache `Object` and `Array#push` to make the shim more robust.
  61. * [Fix] Remove use of `Array#filter`, which isn't in ES3
  62. * [Deps] Update `object-keys`, `define-properties`
  63. * [Dev Deps] Update `browserify`, `nsp`, `eslint`
  64. * [Tests] Test up to `io.js` `v2.3`
  65. 2.0.2 / 2015-05-20
  66. ==================
  67. * Make sure `.shim` is non-enumerable.
  68. * Refactor `.shim` implementation to use `define-properties` predicates, rather than `delete`ing the original.
  69. * Update docs to match spec/implementation. (#11)
  70. * Add `npm run eslint`
  71. * Test up to `io.js` `v2.0`
  72. * Update `jscs`, `browserify`, `covert`
  73. 2.0.1 / 2015-04-12
  74. ==================
  75. * Make sure non-enumerable Symbols are excluded.
  76. 2.0.0 / 2015-04-12
  77. ==================
  78. * Make sure the shim function overwrites a broken implementation with pending exceptions.
  79. * Ensure shim is not enumerable using `define-properties`
  80. * Ensure `Object.assign` includes symbols.
  81. * All grade A-supported `node`/`iojs` versions now ship with an `npm` that understands `^`.
  82. * Run `travis-ci` tests on `iojs` and `node` v0.12; speed up builds; allow 0.8 failures.
  83. * Add `npm run security` via `nsp`
  84. * Update `browserify`, `jscs`, `tape`, `object-keys`, `is`
  85. 1.1.1 / 2014-12-14
  86. ==================
  87. * Actually include the browser build in `npm`
  88. 1.1.0 / 2014-12-14
  89. ==================
  90. * Add `npm run build`, and build an automatic-shimming browser distribution as part of the npm publish process.
  91. * Update `is`, `jscs`
  92. 1.0.3 / 2014-11-29
  93. ==================
  94. * Revert "optimize --production installs"
  95. 1.0.2 / 2014-11-27
  96. ==================
  97. * Update `jscs`, `is`, `object-keys`, `tape`
  98. * Add badges to README
  99. * Name URLs in README
  100. * Lock `covert` to `v1.0.0`
  101. * Optimize --production installs
  102. 1.0.1 / 2014-08-26
  103. ==================
  104. * Update `is`, `covert`
  105. 1.0.0 / 2014-08-07
  106. ==================
  107. * Update `object-keys`, `tape`
  108. 0.5.0 / 2014-07-31
  109. ==================
  110. * Object.assign no longer throws on null or undefined sources, per https://bugs.ecmascript.org/show_bug.cgi?id=3096
  111. 0.4.3 / 2014-07-30
  112. ==================
  113. * Don’t modify vars in the function signature, since it deoptimizes v8
  114. 0.4.2 / 2014-07-30
  115. ==================
  116. * Fixing the version number: v0.4.2
  117. 0.4.1 / 2014-07-19
  118. ==================
  119. * Revert "Use the native Object.keys if it’s available."
  120. 0.4.0 / 2014-07-19
  121. ==================
  122. * Use the native Object.keys if it’s available.
  123. * Fixes [#2](https://github.com/ljharb/object.assign/issues/2).
  124. * Adding failing tests for [#2](https://github.com/ljharb/object.assign/issues/2).
  125. * Fix indentation.
  126. * Adding `npm run lint`
  127. * Update `tape`, `covert`
  128. * README: Use SVG badge for Travis [#1](https://github.com/ljharb/object.assign/issues/1) from mathiasbynens/patch-1
  129. 0.3.1 / 2014-04-10
  130. ==================
  131. * Object.assign does partially modify objects if it throws, per https://twitter.com/awbjs/status/454320863093862400
  132. 0.3.0 / 2014-04-10
  133. ==================
  134. * Update with newest ES6 behavior - Object.assign now takes a variable number of source objects.
  135. * Update `tape`
  136. * Make sure old and unstable nodes don’t fail Travis
  137. 0.2.1 / 2014-03-16
  138. ==================
  139. * Let object-keys handle the fallback
  140. * Update dependency badges
  141. * Adding bower.json
  142. 0.2.0 / 2014-03-16
  143. ==================
  144. * Use a for loop, because ES3 browsers don’t have "reduce"
  145. 0.1.1 / 2014-03-14
  146. ==================
  147. * Updating readme
  148. 0.1.0 / 2014-03-14
  149. ==================
  150. * Initial release.