web 3d图形渲染器
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.

201 lines
7.6 KiB

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