-
Feature / BC break: Simplify
Collection
by extendingResponse
and mergingCollector
intoActionSender
(#41 by @clue)// old $collector = new Collector($client); $collector->coreShowChannels()->then(function (Collection $collection) { var_dump($collection->getResponse()->getFieldValue('Message')); }); // new $collector = new ActionSender($client); $collector->coreShowChannels()->then(function (Collection $collection) { var_dump($collection->getFieldValue('Message')); });
-
Feature / BC break: Replace deprecated SocketClient with new Socket component and improve forward compatibility with upcoming ReactPHP components (#39 by @clue)
-
Feature / BC break: Consistently require URL when creating client (#40 by @clue)
-
Feature / Fix: Update SocketClient to v0.5 and fix secure connection via TLS (#38 by @clue)
-
Improve test suite by adding PHPUnit to require-dev, fix HHVM build for now again and ignore future HHVM build errors, test against legacy PHP 5.3 through PHP 7.1 and lock Travis distro so new defaults will not break the build (#34, #35, #36 and #37 by @clue)
-
Fix: Make parser more robust by supporting parsing messages with missing space after colon (#29 by @bonan, @clue)
-
Improve documentation
-
BC break: Rename
Api
toActionSender
to reflect its responsibility (#22)- Rename invalid action method
logout()
to properlogoff()
(#17)
- Rename invalid action method
-
Feature: Add
Response::getCommandOutput()
helper (#23) -
Feature: Emit "error" event for unexpected response messages (#21)
- Package renamed to "clue/ami-react"
- First tagged release
- Initial concept