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.

преди 4 години
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # CHANGELOG
  2. ## 1.3.1 - 2016-12-20
  3. ### Fixed
  4. - `wait()` foreign promise compatibility
  5. ## 1.3.0 - 2016-11-18
  6. ### Added
  7. - Adds support for custom task queues.
  8. ### Fixed
  9. - Fixed coroutine promise memory leak.
  10. ## 1.2.0 - 2016-05-18
  11. ### Changed
  12. - Update to now catch `\Throwable` on PHP 7+
  13. ## 1.1.0 - 2016-03-07
  14. ### Changed
  15. - Update EachPromise to prevent recurring on a iterator when advancing, as this
  16. could trigger fatal generator errors.
  17. - Update Promise to allow recursive waiting without unwrapping exceptions.
  18. ## 1.0.3 - 2015-10-15
  19. ### Changed
  20. - Update EachPromise to immediately resolve when the underlying promise iterator
  21. is empty. Previously, such a promise would throw an exception when its `wait`
  22. function was called.
  23. ## 1.0.2 - 2015-05-15
  24. ### Changed
  25. - Conditionally require functions.php.
  26. ## 1.0.1 - 2015-06-24
  27. ### Changed
  28. - Updating EachPromise to call next on the underlying promise iterator as late
  29. as possible to ensure that generators that generate new requests based on
  30. callbacks are not iterated until after callbacks are invoked.
  31. ## 1.0.0 - 2015-05-12
  32. - Initial release