Skip to content

Releases: kyranet/veza

v1.2.0

29 Jan 11:16
Compare
Choose a tag to compare

What's Changed

1.2.0 (2022-01-29)

Features

Bug Fixes

  • ensure client socket is writeable before writing to it (405190b), closes #231

New Contributors

Full Changelog: v1.1.0...v1.2.0

veza@1.1.0

31 Aug 15:32
Compare
Choose a tag to compare

1.1.0

Added

  • Exported SendOptions, BroadcastOptions, and NetworkError interfaces.

veza@1.0.0

06 Aug 13:46
Compare
Choose a tag to compare

This is a final release of veza@0.7.0. Only cleans up the dist and sets up more npm stuff for better discoverability.

veza@0.7.0

06 Aug 12:49
Compare
Choose a tag to compare

Added

Changed

  • Simplified event names to be more intuitive and easier to use.
  • Revamped queue to use the old message split method from veza@0.5.0.
  • Updated spec to re-include ByteLength into the headers.
  • Document more things as private to not show in the documentation.
  • Modified Server#serve's return from undefined to this.

Removed

  • Removed veza.Node in favor of veza.Server and veza.Client.

Fixed

  • Resolved bug from 0.6.0 where the queue was getting into data racing on extremely edge cases.

veza@0.6.0

18 Jun 20:38
Compare
Choose a tag to compare
  • Written more tests.
  • Coverage 100%.
  • Written more tests.
  • And also added a shiny 100% coverage badge.

Added:

  • Added handshakeTimeout option in Node.
  • Added more typings.
  • Added more documentation.
  • Added socket.connecting, socket.connect, socket.destroy, socket.ready, socket.connect, and socket.ready.

Changed:

  • Node#connectTo does not longer take an argument for the socket's name, also called "label". The name is now the socket's.

Removed:

  • Infinity is not longer an option in timeouts nor retry limits, refer to -1 for the same behaviour.
  • Removed Queue#name and Queue#socket. They're unnecessary getters.

Fixed:

  • Fixed any possible outcome of an HTTP server or client being able to crash a Veza server or socket.
  • Fixed reconnections not identifying correctly.

And more!

0.5.0

21 May 23:27
Compare
Choose a tag to compare
  • Added Test Suite (#9).
  • Disconnect previous node if there was one named the same (#12).
  • Rewritten Veza to Strict TypeScript (#13).
  • Nullify the socket when destroyed.
  • Fixed "Cannot read property delete of undefined".