Releases: eole-io/sandstone
Releases · eole-io/sandstone
Version 2.1.0
- Add compatibility with Symfony 4
- Move documentation outside the repo. Now here: https://github.com/eole-io/sandstone-doc
Version 2.0.0
-
Upgraded RatchetPHP
0.3
to0.4
.
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'];
-
Upgraded
league/oauth2-server
from4.x
to6.x
It then removes the support for PHP 5.5. See league/oauth2-server
changelog.
Version 1.3.1
- Documentation: added two pages:
- Documentation: Provide docker environment to host documentation locally
Version 1.3.0
[Issue #5] Dispatch events on websocket connection open, close, topic subscribe, publish...
See documentation: Listen to websocket events
Version 1.2.6
- Fix bug when trying to forward events before application boot (d1104cb)
Version 1.2.5
Version 1.2.4
- Prevent upgrade to Ratchet 0.4 as should break
- [Closes #3] Add push item in debug toolbar
Version 1.2.3
- 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
- Documentation: add reference to @Noren Docker full example
Version 1.2.1
- Hotfix, fix compatibility with jms/serializer 1.4
- Update doc page titles