@forge/tunnel 6.3.17-next.1 → 6.3.17-next.3

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,5 +1,21 @@
1
1
  # @forge/tunnel
2
2
 
3
+ ## 6.3.17-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [16894cf]
8
+ - @forge/cli-shared@8.22.0-next.2
9
+ - @forge/bundler@6.1.26-next.2
10
+
11
+ ## 6.3.17-next.2
12
+
13
+ ### Patch Changes
14
+
15
+ - efff3f1: Remove uuid dependency
16
+ - Updated dependencies [7d660c1]
17
+ - @forge/runtime@6.1.3-next.0
18
+
3
19
  ## 6.3.17-next.1
4
20
 
5
21
  ### Patch Changes
@@ -5,7 +5,7 @@ const tslib_1 = require("tslib");
5
5
  const child_process_1 = require("child_process");
6
6
  const path_1 = tslib_1.__importDefault(require("path"));
7
7
  const readline_1 = tslib_1.__importDefault(require("readline"));
8
- const uuid_1 = require("uuid");
8
+ const crypto_1 = require("crypto");
9
9
  const bundler_1 = require("@forge/bundler");
10
10
  const runtime_1 = require("@forge/runtime");
11
11
  const RUNNER = path_1.default.join(__dirname, '..', '..', 'out', 'sandbox', 'sandbox-runner.js');
@@ -46,7 +46,7 @@ class NodeSandbox {
46
46
  }
47
47
  }
48
48
  async execute(request) {
49
- const requestId = (0, uuid_1.v4)();
49
+ const requestId = (0, crypto_1.randomUUID)();
50
50
  return new Promise((resolve, reject) => {
51
51
  this.callbacks.set(requestId, (result) => {
52
52
  this.callbacks.delete(requestId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/tunnel",
3
- "version": "6.3.17-next.1",
3
+ "version": "6.3.17-next.3",
4
4
  "description": "Tunnel functionality for Forge CLI",
5
5
  "author": "Atlassian",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -11,10 +11,10 @@
11
11
  "compile": "tsc -b -v"
12
12
  },
13
13
  "dependencies": {
14
- "@forge/bundler": "6.1.26-next.1",
15
- "@forge/cli-shared": "8.21.1-next.1",
14
+ "@forge/bundler": "6.1.26-next.2",
15
+ "@forge/cli-shared": "8.22.0-next.2",
16
16
  "@forge/csp": "5.8.0",
17
- "@forge/runtime": "6.1.2",
17
+ "@forge/runtime": "6.1.3-next.0",
18
18
  "@forge/util": "^2.0.1",
19
19
  "cheerio": "^1.1.0",
20
20
  "chokidar": "^3.6.0",
@@ -27,7 +27,6 @@
27
27
  "portfinder": "^1.0.37",
28
28
  "tmp": "^0.2.3",
29
29
  "tslib": "^2.6.2",
30
- "uuid": "^9.0.1",
31
30
  "webpack-dev-server": "^5.2.2",
32
31
  "which": "^3.0.1"
33
32
  },
@@ -39,7 +38,6 @@
39
38
  "@types/node": "20.19.1",
40
39
  "@types/supertest": "^2.0.16",
41
40
  "@types/tmp": "^0.2.6",
42
- "@types/uuid": "^9.0.8",
43
41
  "@types/which": "^3.0.4",
44
42
  "nock": "13.5.6",
45
43
  "supertest": "^6.3.3"