mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
4.4 KiB
4.4 KiB
2.0.4
- Allow
AMP_DEBUG
to be defined via the environment. - Fix formatting of stack traces used for double resolution debugging.
2.0.3
Loop::set()
replaces the current driver with a dummy driver for the time ofgc_collect_cycles()
now. This allows cyclic references to be cleaned up properly before the new driver is set. Without such a fix, cyclic references might have been cleaned up later, e.g. cancelling their watcher IDs on the new loop, thereby cancelling the wrong watchers.- Promise combinator functions (
all(),
any(),
first(),
some()) now preserve order of the given
$promises` array argument.
2.0.2
- Fixed warnings and timers in
EventDriver
. - Does no longer hide warnings from
stream_select
.
2.0.1
- Fixed an issue where the loop blocks even though all watchers are unreferenced.
2.0.0
Amp\reactor()
has been replaced withAmp\Loop::set()
andAmp\Loop::get()
.Amp\driver()
has been replaced withAmp\Loop\Factory::create()
.Amp\tick()
no longer exists and doesn't have a replacement. Ticks are an internal detail.- Functions for creating and managing watchers are now static methods of
Amp\Loop
instead of functions in theAmp
namespace.once()
is nowdelay()
andimmediately()
isdefer()
.- Parameter order for
delay()
andrepeat()
has been changed. reference()
andunreference()
have been added.
Amp\Pause
has been renamed toAmp\Delayed
and accepts an optional resolution value now. Additionallyreference()
andunreference()
methods have been added.- Promise accepting functions have been moved to the
Amp\Promise
namespace. Amp\Promise\some()
accepts an additional$required
parameter.Amp\call()
,Amp\asyncCall()
,Amp\coroutine()
andAmp\asyncCoroutine()
have been added.Amp\resolve()
has been removed, useAmp\call()
instead.Promise::when()
has been renamed toPromise::onResolve()
Promise::watch()
has been removed, useAmp\Iterator
,amphp/byte-stream
or a custom implementation that implementsAmp\Promise
instead and provides dedicated APIs to access the previously data shared via thewatch()
mechanism.Amp\Iterator
,Amp\Emitter
andAmp\Producer
have been added with several functions in theAmp\Iterator
namespace.- Various other changes.
1.2.2
- Fix notice in
NativeReactor
when removing a handle while an event is waiting for it. (Regression fix from 1.1.1)
1.2.1
- Fix
uv_run()
potentially exiting earlier than intended, leading to an infinite loop inUvReactor::run()
.
1.2.0
resolve()
now also accepts callables returning generators.
1.1.1
- Fix memory leak in
NativeReactor
, retaining an empty array for each stream. - Remove circular references in
UvReactor
to avoid garbage collector calls.
1.1.0
- Add
getExceptions()
method toCombinatorException
to get an array of all the exceptions (affectingsome()
andfirst()
). - Fix
NativeReactor
not ending up in stopped state if primary callback didn't install any events.
1.0.8
- Fix
NativeReactor
running a busy loop if no timers are active. Properly block now in NativeReactor insidestream_select()
.
1.0.7
- Several combinator functions could result in a promise already resolved exception in case some values of the array weren't promises.
1.0.6
- Fix issue in
NativeReactor
causingstop()
to be delayed by one second.
1.0.5
- Convert general
RuntimeException
to more specificAmp\CombinatorException
.
1.0.4
- Repeat watchers in
LibeventReactor
internally were handled in microsecond intervals instead of milliseconds.
1.0.3
- Fix issue in
NativeReactor
capable of causing keep alive counter corruption when a watcher was cancelled inside its own callback. - Fix issue in
UvReactor
withlibuv
>= 1.1.0 causing busy loop with immediates present, but no watchers being triggered.
1.0.2
- Fix PHP 7 issue in which top-level
Throwable
s weren't caught in certain coroutine contexts. - Remove error suppression operator on optionally
null
option assignment to avoid spuriousE_NOTICE
output when custom error handlers are used.
1.0.1
- Fix bug preventing
UvReactor::tick()
from returning when no events are ready for a single active IO watcher.
1.0.0
- Initial stable API release