Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlowrey committed Dec 8, 2014
1 parent 0360aec commit c21068f
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
### master

- n/a

v0.15.0
-------

**Additions**

- Added `Reactor::__debugInfo()` hook to ease debugging.
- Added `Reactor::onError()` exception handling hook
- Added `Reactor::onError()` exception handling hook to handle asynchronous
errors without breaking the event loop
- Added optional boolean `$noWait` parameter to `Reactor::tick($noWait)`
- Added `Amp\getReactor()` and `Amp\chooseReactor()` functions
- Added `Amp\wait()` to replace deprecated `Amp\Promise::wait()`
- Added new `"bind"` yield command

**Bugfixes:**

- Correctly break out of the `NativeReactor` run loop immediately when
`Reactor::stop()` invoked inside immediately watchers
- Correctly exit `UvReactor` and `LibeventReactor` run loop when no outstanding
watchers remain active

**Removals:**

- Removed `Combinator` class in favor of combinator functions
Expand All @@ -30,6 +30,14 @@
- The `ReactorFactory` class is deprecated and scheduled for removal. Please use
the `Amp\getReactor()` function instead of `ReactorFactory::select()`

**Bugfixes:**

- Correctly break out of the `NativeReactor` run loop immediately when
`Reactor::stop()` invoked inside immediately watchers
- Correctly exit `UvReactor` and `LibeventReactor` run loop when no outstanding
watchers remain active
- Other miscellaneous fixes

**Other:**

- Changed `"wait"` yield command to `"pause"`
Expand Down

0 comments on commit c21068f

Please sign in to comment.