CHANGELOG.md
3.14 KB
CHANGELOG
-
2.4.0 (2016-03-31)
- Support foreign thenables in
resolve(). Any object that provides athen()method is now assimilated to a trusted promise that follows the state of this thenable (#52). - Fix
some()andany()for input arrays containing not enough items (#34).
- Support foreign thenables in
-
2.3.0 (2016-03-24)
- Allow cancellation of promises returned by functions working on promise collections (#36).
- Handle
\Throwablein the same way as\Exception(#51 by @joshdifabio).
-
2.2.2 (2016-02-26)
- Fix cancellation handlers called multiple times (#47 by @clue).
-
2.2.1 (2015-07-03)
- Fix stack error when resolving a promise in its own fulfillment or rejection handlers.
-
2.2.0 (2014-12-30)
- Introduce new
ExtendedPromiseInterfaceimplemented by all promises. - Add new
done()method (part of theExtendedPromiseInterface). - Add new
otherwise()method (part of theExtendedPromiseInterface). - Add new
always()method (part of theExtendedPromiseInterface). - Add new
progress()method (part of theExtendedPromiseInterface). - Rename
Deferred::progresstoDeferred::notifyto avoid confusion withExtendedPromiseInterface::progress(aDeferred::progressalias is still available for backward compatibility) -
resolve()now always returns aExtendedPromiseInterface.
- Introduce new
-
2.1.0 (2014-10-15)
- Introduce new
CancellablePromiseInterfaceimplemented by all promises. - Add new
cancel()method (part of theCancellablePromiseInterface).
- Introduce new
-
2.0.0 (2013-12-10)
New major release. The goal is to streamline the API and to make it more compliant with other promise libraries and especially with the new upcoming ES6 promises specification.
- Add standalone Promise class.
- Add new
race()function. - BC break: Bump minimum PHP version to PHP 5.4.
- BC break: Remove
ResolverInterfaceandPromiseInterfacefromDeferred. - BC break: Change signature of
PromiseInterface. - BC break: Remove
WhenandUtilclasses and move static methods to functions. - BC break:
FulfilledPromiseandRejectedPromisenow throw an exception when initialized with a promise instead of a value/reason. - BC break:
Deferred::resolve()andDeferred::reject()no longer return a promise.
-
1.0.4 (2013-04-03)
- Trigger PHP errors when invalid callback is passed.
- Fully resolve rejection value before calling rejection handler.
- Add
When::lazy()to create lazy promises which will be initialized once a consumer calls thethen()method.
-
1.0.3 (2012-11-17)
- Add
PromisorInterfacefor objects that have apromise()method.
- Add
-
1.0.2 (2012-11-14)
- Fix bug in
When::any()not correctly unwrapping to a single result value. -
$promiseOrValueargument ofWhen::resolve()and When::reject() is now optional.
- Fix bug in
-
1.0.1 (2012-11-13)
- Prevent deep recursion which was reaching
xdebug.max_nesting_leveldefault of 100.
- Prevent deep recursion which was reaching
-
1.0.0 (2012-11-07)
- First tagged release.