v4.0.0-alpha.0
Pre-release
Pre-release
·
38 commits
to master
since this release
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
- Diff: 2.2.0...v4.0.0-alpha.0