Skip to content

Releases: gelic-idealab/komodo-relay

v1.1.1

02 Dec 21:16
d5769cf
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.1.1

v1.1.0

30 Nov 22:46
a5f4c7d
Compare
Choose a tag to compare

Breaking Change: Sync Namespace

Breaking change: all WebXR Clients must connect to "sync" namespace instead of just the default namespace.

Example client code:

var socket = io(window.RELAY_BASE_URL + "/sync"); //CURRENT WAY
var socket = io(window.RELAY_BASE_URL); //DEPRECATED, OLD WAY

The motivation for this is that every socket that connects to the "/chat" and "/admin" namespaces would also connect to the default "/" namespace, making it difficult to tell whether a sync connection was intended and broken, or if it was a chat or admin connection. This also makes it easier to debug and log information about the sockets.

What's Changed

  • v1.1.0: Private and message-based state catch-up, Sync namespace, Session.js, Connection Info, Socket Repair Center by @parseccentric in #24

Full Changelog: v1.0.0...v1.1.0

v1.0.0

09 Sep 21:01
62383b9
Compare
Choose a tag to compare
Merge pull request #23 from gelic-idealab/dev

v1.0.0