Ohm-Management - Projektarbeit B-ME
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 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Master
  2. # 3.2.0
  3. * improve tamper resistence of Promise.all Promise.race and
  4. Promise.prototype.then (note, this isn't complete, but addresses an exception
  5. when used \w core-js, follow up work will address entirely)
  6. * remove spec incompatible then chaining fast-path
  7. * add eslint
  8. * update build deps
  9. # 3.1.2
  10. * fix node detection issues with NWJS/electron
  11. # 3.1.0
  12. * improve performance of Promise.all when it encounters a non-promise input object input
  13. * then/resolve tamper protection
  14. * reduce AST size of promise constructor, to facilitate more inlining
  15. * Update README.md with details about PhantomJS requirement for running tests
  16. * Mangle and compress the minified version
  17. # 3.0.1
  18. * no longer include dist/test in npm releases
  19. # 3.0.0
  20. * use nextTick() instead of setImmediate() to schedule microtasks with node 0.10. Later versions of
  21. nodes are not affected as they were already using nextTick(). Note that using nextTick() might
  22. trigger a depreciation warning on 0.10 as described at https://github.com/cujojs/when/issues/410.
  23. The reason why nextTick() is preferred is that is setImmediate() would schedule a macrotask
  24. instead of a microtask and might result in a different scheduling.
  25. If needed you can revert to the former behavior as follow:
  26. var Promise = require('es6-promise').Promise;
  27. Promise._setScheduler(setImmediate);
  28. # 2.3.0
  29. * #121: Ability to override the internal asap implementation
  30. * #120: Use an ascii character for an apostrophe, for source maps
  31. # 2.2.0
  32. * #116: Expose asap() and a way to override the scheduling mechanism on Promise
  33. * Lock to v0.2.3 of ember-cli
  34. # 2.1.1
  35. * Fix #100 via #105: tell browserify to ignore vertx require
  36. * Fix #101 via #102: "follow thenable state, not own state"
  37. # 2.1.0
  38. * ? (see the commit log)
  39. # 2.0.0
  40. * re-sync with RSVP. Many large performance improvements and bugfixes.
  41. # 1.0.0
  42. * first subset of RSVP