@forge/tunnel 3.8.3-next.1 → 3.8.3-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,23 @@
|
|
|
1
1
|
# @forge/tunnel
|
|
2
2
|
|
|
3
|
+
## 3.8.3-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b3fba81: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- uuid
|
|
10
|
+
- @types/uuid
|
|
11
|
+
- @forge/bundler@4.12.4-next.3
|
|
12
|
+
|
|
13
|
+
## 3.8.3-next.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [da7573f]
|
|
18
|
+
- @forge/bundler@4.12.4-next.2
|
|
19
|
+
- @forge/runtime@5.1.2-next.0
|
|
20
|
+
|
|
3
21
|
## 3.8.3-next.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.LocalInvocationService = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
4
|
const util_1 = require("../util");
|
|
6
5
|
const index_1 = require("../index");
|
|
7
|
-
const
|
|
6
|
+
const uuid_1 = require("uuid");
|
|
8
7
|
const runtime_1 = require("@forge/runtime");
|
|
9
8
|
const cli_shared_1 = require("@forge/cli-shared");
|
|
10
9
|
const DEFAULT_INVOCATION_TIMEOUT = 25;
|
|
@@ -38,7 +37,7 @@ class LocalInvocationService {
|
|
|
38
37
|
if (!isSnapshotValueFoundAndUpdated) {
|
|
39
38
|
variables.push({ key: 'FUNCTION_IS_SNAPSHOTTED', value: isSnapshotEnabled.toString(), secure: false });
|
|
40
39
|
}
|
|
41
|
-
const requestId = (0, util_1.getRequestId)(request, (0,
|
|
40
|
+
const requestId = (0, util_1.getRequestId)(request, (0, uuid_1.v4)());
|
|
42
41
|
const timeout = (_a = request._meta.timeout) !== null && _a !== void 0 ? _a : DEFAULT_INVOCATION_TIMEOUT;
|
|
43
42
|
const xenInvocationRequest = (0, runtime_1.xenInvocationRequestFactory)({
|
|
44
43
|
request: Object.assign(Object.assign({}, request), { variables }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/tunnel",
|
|
3
|
-
"version": "3.8.3-next.
|
|
3
|
+
"version": "3.8.3-next.3",
|
|
4
4
|
"description": "Tunnel functionality for Forge CLI",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"compile": "tsc -b -v"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@forge/bundler": "4.12.4-next.
|
|
14
|
+
"@forge/bundler": "4.12.4-next.3",
|
|
15
15
|
"@forge/cli-shared": "3.20.2-next.0",
|
|
16
16
|
"@forge/csp": "3.0.0",
|
|
17
|
-
"@forge/runtime": "5.1.
|
|
17
|
+
"@forge/runtime": "5.1.2-next.0",
|
|
18
18
|
"express": "^4.18.2",
|
|
19
19
|
"express-intercept": "^1.1.0",
|
|
20
20
|
"http-proxy-middleware": "^2.0.6",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"node-cache": "^5.1.2",
|
|
23
23
|
"tmp": "^0.2.1",
|
|
24
24
|
"tslib": "^2.6.2",
|
|
25
|
-
"uuid": "^3.
|
|
25
|
+
"uuid": "^8.3.2",
|
|
26
26
|
"webpack-dev-server": "^4.15.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@types/node": "14.18.63",
|
|
34
34
|
"@types/supertest": "^2.0.14",
|
|
35
35
|
"@types/tmp": "^0.2.4",
|
|
36
|
-
"@types/uuid": "^3.4
|
|
36
|
+
"@types/uuid": "^8.3.4",
|
|
37
37
|
"supertest": "^6.3.3"
|
|
38
38
|
}
|
|
39
39
|
}
|