Skip to content

Releases: eole-io/sandstone

Version 2.1.0

24 Apr 10:31
Compare
Choose a tag to compare

Version 2.0.0

25 Oct 11:46
Compare
Choose a tag to compare

It changes the way to get websocket request object:

$conn->WebSocket->request

becomes:

$conn->httpRequest

Also, you get a psr7 request object.
So, in exemple, to access to query parameters, do:

parse_str($conn->httpRequest->getUri()->getQuery(), $queryParameters);
$myParameter = $queryParameters['my_parameter'];

It then removes the support for PHP 5.5. See league/oauth2-server changelog.

Version 1.3.1

16 Oct 11:07
Compare
Choose a tag to compare

Version 1.3.0

19 Sep 16:02
Compare
Choose a tag to compare

[Issue #5] Dispatch events on websocket connection open, close, topic subscribe, publish...
See documentation: Listen to websocket events

Version 1.2.6

01 Sep 15:55
Compare
Choose a tag to compare
  • Fix bug when trying to forward events before application boot (d1104cb)

Version 1.2.5

30 Aug 15:59
Compare
Choose a tag to compare
  • Make forwarding event works also in console commands (5311c01)
  • Add Docker environment for develop and testing (1de08e0)
  • Throw an exception when user Topic class implements the JMS EventDispatcherInterface instead of the Symfony one (2bde779)

Version 1.2.4

25 Aug 12:18
Compare
Choose a tag to compare
  • Prevent upgrade to Ratchet 0.4 as should break
  • [Closes #3] Add push item in debug toolbar

Version 1.2.3

11 Jan 20:46
Compare
Choose a tag to compare
  • Fix bug when using web profiler in prod mode
  • Supports PHPUnit 4 and 5, fix deprecations messages under php7
  • Documentation updates

Version 1.2.2

01 Dec 21:51
Compare
Choose a tag to compare
  • Documentation: add reference to @Noren Docker full example

Version 1.2.1

29 Nov 19:56
Compare
Choose a tag to compare
  • Hotfix, fix compatibility with jms/serializer 1.4
  • Update doc page titles