File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.1.0 (2018-04-30)
4+
5+ * Feature: Add ` all() ` helper to await successful fulfillment of all operations
6+ (#8 by @clue )
7+
8+ ``` php
9+ // new: limit concurrency while awaiting all operations to complete
10+ $promise = Queue:all(3, $urls, function ($url) use ($browser) {
11+ return $browser->get($url);
12+ });
13+
14+ $promise->then(function (array $responses) {
15+ echo 'All ' . count($responses) . ' successful!' . PHP_EOL;
16+ });
17+ ```
18+
19+ * Fix: Implement cancellation forwarding for previously queued operations
20+ (#7 by @clue)
21+
322## 1.0.0 (2018-02-26)
423
524* First stable release, following SemVer
Original file line number Diff line number Diff line change @@ -399,7 +399,7 @@ This project follows [SemVer](http://semver.org/).
399399This will install the latest supported version:
400400
401401``` bash
402- $ composer require clue/mq-react:^1.0
402+ $ composer require clue/mq-react:^1.1
403403```
404404
405405See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments