Skip to content

Latest commit

 

History

History
74 lines (43 loc) · 1.35 KB

CHANGELOG.md

File metadata and controls

74 lines (43 loc) · 1.35 KB

2.2.0

  • Changes for PHP 8.3
  • Test newer versions of PHP

2.1.8

  • Limit react/http dependencies

2.1.7

  • Allow http headers to be set on client

2.1.6

  • Remove optional before required parameters to MessageSubject

2.1.5

  • Bump react/http to version ^1

2.1.4

  • Allow Ratchet/RFC6455 0.3

2.1.3

  • Forward compatibility with voryx/event-loop 3.0 while supporting 2.0

2.1.2

  • Update deps

2.1.1

  • Emit socket errors instead of throwing

2.1.0

  • Added websocket ping keepalive

2.0.0

  • Updated react libraries (http/http-client)
  • Changed API to allow passing of Connector

before

$server = new \Rx\Websocket\Server('127.0.0.1', 9191);

after

$server = new \Rx\Websocket\Server('127.0.0.1:9191');

1.0.2

  • End the request not the response when dispose is called (b77c5118)

1.0.1

  • Connection errors are now sent to onError #6 (a880353)

1.0.0

  • Upgrade to RxPHP v2

0.10.0

Changes/Additions

  • Project now uses RFC6455 library for underlying protocol support
  • Message subject now emits Ratchet\RFC6455\Messaging\Message instead of Rx\Websocket\Message
  • Client is no longer a Subject