@xh/hoist 73.0.0-SNAPSHOT.1744587856582 → 73.0.0-SNAPSHOT.1744653564971

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## v73.0.0-SNAPSHOT - unreleased
3
+ ## 73.0.0-SNAPSHOT - unreleased
4
+
5
+ ## v72.5.0 - 2025-04-14
4
6
 
5
7
  ### 🎁 New Features
6
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "73.0.0-SNAPSHOT.1744587856582",
3
+ "version": "73.0.0-SNAPSHOT.1744653564971",
4
4
  "description": "Hoist add-on for building and deploying React Applications.",
5
5
  "repository": "github:xh/hoist-react",
6
6
  "homepage": "https://xh.io",
@@ -61,7 +61,7 @@ export class WebSocketService extends HoistService {
61
61
  /** Set to true to log all sent/received messages - very chatty. */
62
62
  logMessages: boolean = false;
63
63
 
64
- telemetry: WebSocketTelemetry = null;
64
+ telemetry: WebSocketTelemetry = {channelKey: null, subscriptionCount: 0, events: {}};
65
65
 
66
66
  private _timer: Timer;
67
67
  private _socket: WebSocket;
@@ -83,7 +83,6 @@ export class WebSocketService extends HoistService {
83
83
  this.enabled = false;
84
84
  return;
85
85
  }
86
- this.telemetry = {channelKey: null, subscriptionCount: 0, events: {}};
87
86
 
88
87
  this.connect();
89
88