v0.18.0
This release is identical to the previous alpha version.
Changed in 0.18
- The
Context
interface has been removed, and theBaseContext
class is renamed toContext
. This is a BC break, but should only be an issue if you used theContext
interface directly.BaseContext
is still exported but simply aliased toContext
. This alias will be removed from a future version. This change should make it easier to use interface declaration merging to extendContext
. - The
ws
dependency has been updated to version 8. There are some breaking changes in this release. The most likely you'll hit is that incoming messages are now of typeBuffer
instead ofstring
. Check out the ws changelog for more details.