Releases: clue/reactphp-eventsource
Releases · clue/reactphp-eventsource
v1.2.0
v1.1.0
-
Feature: Public
MessageEvent
constructor and refactor property assignments.
(#36 and #41 by @clue)This is mostly used internally to represent each incoming message event
(see alsomessage
event). Likewise, you can also use this class in test
cases to test how your application reacts to incoming messages.$message = new Clue\React\EventSource\MessageEvent('hello', '42', 'message'); assert($message->data === 'hello'); assert($message->lastEventId === '42'); assert($message->type === 'message');
-
Feature / Fix: Use replacement character for invalid UTF-8, handle null bytes and ignore empty
event
type as per EventSource specs.
(#33 and #40 by @clue) -
Feature: Full support for PHP 8.2 and update test environment.
(#38 by @clue) -
Improve test suite, ensure 100% code coverage and report failed assertions.
(#35 by @clue and #39 by @clue)