@forge/tunnel 6.3.17-next.0 → 6.3.17-next.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.
- package/CHANGELOG.md +15 -0
- package/out/sandbox/node-sandbox.js +2 -2
- package/package.json +5 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/tunnel
|
|
2
2
|
|
|
3
|
+
## 6.3.17-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- efff3f1: Remove uuid dependency
|
|
8
|
+
- Updated dependencies [7d660c1]
|
|
9
|
+
- @forge/runtime@6.1.3-next.0
|
|
10
|
+
|
|
11
|
+
## 6.3.17-next.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- @forge/bundler@6.1.26-next.1
|
|
16
|
+
- @forge/cli-shared@8.21.1-next.1
|
|
17
|
+
|
|
3
18
|
## 6.3.17-next.0
|
|
4
19
|
|
|
5
20
|
### 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
|
|
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,
|
|
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.
|
|
3
|
+
"version": "6.3.17-next.2",
|
|
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.
|
|
15
|
-
"@forge/cli-shared": "8.21.1-next.
|
|
14
|
+
"@forge/bundler": "6.1.26-next.1",
|
|
15
|
+
"@forge/cli-shared": "8.21.1-next.1",
|
|
16
16
|
"@forge/csp": "5.8.0",
|
|
17
|
-
"@forge/runtime": "6.1.
|
|
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,19 +27,17 @@
|
|
|
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
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
34
|
"@atlassian/xen-test-util": "^4.2.0",
|
|
36
|
-
"@forge/manifest": "12.7.0-next.
|
|
35
|
+
"@forge/manifest": "12.7.0-next.1",
|
|
37
36
|
"@types/express": "^4.17.21",
|
|
38
37
|
"@types/jest": "^29.5.14",
|
|
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"
|