Skip to content

v4.0.0-alpha.0

Pre-release
Pre-release

Choose a tag to compare

@darrachequesne darrachequesne released this 08 Sep 21:18
· 38 commits to master since this release
7f5a903

Bug Fixes

  • properly decode binary packets (5085373)

Features

  • remove packet type when encoding binary packets (a947ae5)

BREAKING CHANGES

  • the packet containing binary data will now be sent without any transformation

Protocol v3: { type: 'message', data: <Buffer 01 02 03> } => <Buffer 04 01 02 03>
Protocol v4: { type: 'message', data: <Buffer 01 02 03> } => <Buffer 01 02 03>

Links