| 103 |
- |
1 |
# CHANGELOG
|
|
|
2 |
|
|
|
3 |
|
|
|
4 |
## 1.3.1 - 2016-12-20
|
|
|
5 |
|
|
|
6 |
### Fixed
|
|
|
7 |
|
|
|
8 |
- `wait()` foreign promise compatibility
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
## 1.3.0 - 2016-11-18
|
|
|
12 |
|
|
|
13 |
### Added
|
|
|
14 |
|
|
|
15 |
- Adds support for custom task queues.
|
|
|
16 |
|
|
|
17 |
### Fixed
|
|
|
18 |
|
|
|
19 |
- Fixed coroutine promise memory leak.
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
## 1.2.0 - 2016-05-18
|
|
|
23 |
|
|
|
24 |
### Changed
|
|
|
25 |
|
|
|
26 |
- Update to now catch `\Throwable` on PHP 7+
|
|
|
27 |
|
|
|
28 |
|
|
|
29 |
## 1.1.0 - 2016-03-07
|
|
|
30 |
|
|
|
31 |
### Changed
|
|
|
32 |
|
|
|
33 |
- Update EachPromise to prevent recurring on a iterator when advancing, as this
|
|
|
34 |
could trigger fatal generator errors.
|
|
|
35 |
- Update Promise to allow recursive waiting without unwrapping exceptions.
|
|
|
36 |
|
|
|
37 |
|
|
|
38 |
## 1.0.3 - 2015-10-15
|
|
|
39 |
|
|
|
40 |
### Changed
|
|
|
41 |
|
|
|
42 |
- Update EachPromise to immediately resolve when the underlying promise iterator
|
|
|
43 |
is empty. Previously, such a promise would throw an exception when its `wait`
|
|
|
44 |
function was called.
|
|
|
45 |
|
|
|
46 |
|
|
|
47 |
## 1.0.2 - 2015-05-15
|
|
|
48 |
|
|
|
49 |
### Changed
|
|
|
50 |
|
|
|
51 |
- Conditionally require functions.php.
|
|
|
52 |
|
|
|
53 |
|
|
|
54 |
## 1.0.1 - 2015-06-24
|
|
|
55 |
|
|
|
56 |
### Changed
|
|
|
57 |
|
|
|
58 |
- Updating EachPromise to call next on the underlying promise iterator as late
|
|
|
59 |
as possible to ensure that generators that generate new requests based on
|
|
|
60 |
callbacks are not iterated until after callbacks are invoked.
|
|
|
61 |
|
|
|
62 |
|
|
|
63 |
## 1.0.0 - 2015-05-12
|
|
|
64 |
|
|
|
65 |
- Initial release
|