Releases: foxxyz/ws-plus
Releases · foxxyz/ws-plus
v6.0.0
v5.0.0
v4.1.0
v4.0.0
v3.1.0
v3.0.0
Breaking changes
- The
rootObject
argument forServer
andClient
has been removed. Instead, the includedJSONObjSerializer
can be passed to the newserializer
argument toServer
orClient
to achieve the same behavior:
import { Server } from 'ws-plus'
import { JSONObjSerializer } from 'ws-plus/serializers'
const server = new Server({ port: 8088, serializer: JSONObjSerializer })
Other changes
- The underlying
ws
version has been upgraded to version 8.