@liveblocks/client 0.17.1 → 0.17.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.js +1 -1
  2. package/index.mjs +1 -1
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -414,7 +414,7 @@ function makeStateMachine(state, context, mockedEffects) {
414
414
  var ws = WebSocketPolyfill || WebSocket;
415
415
  return function (token) {
416
416
  return new ws(
417
- liveblocksServer + "/?token=" + token + "&version=0.17.1"
417
+ liveblocksServer + "/?token=" + token + "&version=0.17.2"
418
418
  );
419
419
  };
420
420
  })(
package/index.mjs CHANGED
@@ -337,7 +337,7 @@ function makeStateMachine(state, context, mockedEffects) {
337
337
  );
338
338
  const ws = WebSocketPolyfill || WebSocket;
339
339
  return (token) =>
340
- new ws(`${liveblocksServer}/?token=${token}&version=0.17.1`);
340
+ new ws(`${liveblocksServer}/?token=${token}&version=0.17.2`);
341
341
  })(
342
342
  context.liveblocksServer,
343
343
  null !==
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/client",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
4
4
  "description": "A client that lets you interact with Liveblocks servers.",
5
5
  "main": "./index.js",
6
6
  "module": "./index.mjs",