@knapsack/renderer-client 4.68.0--canary.4489.5ef6295.0 → 4.68.0--canary.4489.30ac7b8.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ # v4.67.6 (Thu Aug 15 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Merge branch 'latest' into feature/ksp-5384-add-ability-to-hide-component-props-and-title-in-figma ([@GormanDesign](https://github.com/GormanDesign))
6
+
7
+ #### 🏠 Internal
8
+
9
+ - Update babel [#4478](https://github.com/knapsack-labs/app-monorepo/pull/4478) ([@renovate[bot]](https://github.com/renovate[bot]))
10
+ - Update dependency node to v20.16.0 [#4481](https://github.com/knapsack-labs/app-monorepo/pull/4481) ([@renovate[bot]](https://github.com/renovate[bot]) [@greylabel](https://github.com/greylabel))
11
+
12
+ #### Authors: 3
13
+
14
+ - [@renovate[bot]](https://github.com/renovate[bot])
15
+ - Grant Gaudet ([@greylabel](https://github.com/greylabel))
16
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
17
+
18
+ ---
19
+
1
20
  # v4.67.5 (Thu Aug 08 2024)
2
21
 
3
22
  #### 🏠 Internal
@@ -8,7 +8,8 @@ const {
8
8
  const isReallyInIframe = window.parent !== window;
9
9
  if (websocketsPort) {
10
10
  if ('WebSocket' in window && window.location.hostname === 'localhost') {
11
- const socket = new window.WebSocket(`ws://localhost:${websocketsPort}`);
11
+ const protocol = window.location.protocol === 'https:' ? 'wss' : 'ws';
12
+ const socket = new window.WebSocket(`${protocol}://localhost:${websocketsPort}`);
12
13
  socket.addEventListener('message', msg => {
13
14
  const theMsg = JSON.parse(msg?.data ?? {});
14
15
  if (!theMsg?.event) return;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knapsack/renderer-client",
3
3
  "description": "",
4
- "version": "4.68.0--canary.4489.5ef6295.0",
4
+ "version": "4.68.0--canary.4489.30ac7b8.0",
5
5
  "type": "module",
6
6
  "main": "dist/renderer-client.mjs",
7
7
  "module": "dist/renderer-client.mjs",
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@babel/core": "^7.25.2",
27
- "@knapsack/babel-config-starter": "4.68.0--canary.4489.5ef6295.0",
28
- "@knapsack/eslint-config-starter": "4.68.0--canary.4489.5ef6295.0",
29
- "@knapsack/types": "4.68.0--canary.4489.5ef6295.0",
30
- "@knapsack/typescript-config-starter": "4.68.0--canary.4489.5ef6295.0",
27
+ "@knapsack/babel-config-starter": "4.68.0--canary.4489.30ac7b8.0",
28
+ "@knapsack/eslint-config-starter": "4.68.0--canary.4489.30ac7b8.0",
29
+ "@knapsack/types": "4.68.0--canary.4489.30ac7b8.0",
30
+ "@knapsack/typescript-config-starter": "4.68.0--canary.4489.30ac7b8.0",
31
31
  "@rollup/plugin-babel": "^5.3.1",
32
32
  "@rollup/plugin-commonjs": "^21.1.0",
33
33
  "@rollup/plugin-json": "^4.1.0",
@@ -47,5 +47,5 @@
47
47
  "directory": "apps/client/libs/renderer-client",
48
48
  "type": "git"
49
49
  },
50
- "gitHead": "5ef6295503d70b572ec8e909205556f3afcdb5e0"
50
+ "gitHead": "30ac7b8ffa876b5f8ba408d44d41d76d83550c43"
51
51
  }