@forge/tunnel 3.8.3-next.1 → 3.8.3-next.11

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,86 @@
1
1
  # @forge/tunnel
2
2
 
3
+ ## 3.8.3-next.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [5c47ac2]
8
+ - @forge/bundler@4.13.0-next.10
9
+
10
+ ## 3.8.3-next.10
11
+
12
+ ### Patch Changes
13
+
14
+ - @forge/bundler@4.13.0-next.9
15
+ - @forge/cli-shared@3.20.2-next.3
16
+ - @forge/runtime@5.1.2-next.1
17
+
18
+ ## 3.8.3-next.9
19
+
20
+ ### Patch Changes
21
+
22
+ - 2f3eb11: Bumping dependencies via Renovate:
23
+
24
+ - @types/express
25
+
26
+ ## 3.8.3-next.8
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies [ce14925]
31
+ - @forge/cli-shared@3.20.2-next.2
32
+ - @forge/bundler@4.13.0-next.8
33
+
34
+ ## 3.8.3-next.7
35
+
36
+ ### Patch Changes
37
+
38
+ - @forge/bundler@4.13.0-next.7
39
+
40
+ ## 3.8.3-next.6
41
+
42
+ ### Patch Changes
43
+
44
+ - @forge/cli-shared@3.20.2-next.1
45
+ - @forge/bundler@4.13.0-next.6
46
+
47
+ ## 3.8.3-next.5
48
+
49
+ ### Patch Changes
50
+
51
+ - Updated dependencies [1d4baff]
52
+ - @forge/bundler@4.13.0-next.5
53
+
54
+ ## 3.8.3-next.4
55
+
56
+ ### Patch Changes
57
+
58
+ - 7169010: Bumping dependencies via Renovate:
59
+
60
+ - uuid
61
+ - @types/uuid
62
+
63
+ - Updated dependencies [691d952]
64
+ - @forge/bundler@4.12.4-next.4
65
+
66
+ ## 3.8.3-next.3
67
+
68
+ ### Patch Changes
69
+
70
+ - b3fba81: Bumping dependencies via Renovate:
71
+
72
+ - uuid
73
+ - @types/uuid
74
+ - @forge/bundler@4.12.4-next.3
75
+
76
+ ## 3.8.3-next.2
77
+
78
+ ### Patch Changes
79
+
80
+ - Updated dependencies [da7573f]
81
+ - @forge/bundler@4.12.4-next.2
82
+ - @forge/runtime@5.1.2-next.0
83
+
3
84
  ## 3.8.3-next.1
4
85
 
5
86
  ### 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 v4_1 = tslib_1.__importDefault(require("uuid/v4"));
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, v4_1.default)());
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.1",
3
+ "version": "3.8.3-next.11",
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.1",
15
- "@forge/cli-shared": "3.20.2-next.0",
14
+ "@forge/bundler": "4.13.0-next.10",
15
+ "@forge/cli-shared": "3.20.2-next.3",
16
16
  "@forge/csp": "3.0.0",
17
- "@forge/runtime": "5.1.1",
17
+ "@forge/runtime": "5.1.2-next.1",
18
18
  "express": "^4.18.2",
19
19
  "express-intercept": "^1.1.0",
20
20
  "http-proxy-middleware": "^2.0.6",
@@ -22,18 +22,18 @@
22
22
  "node-cache": "^5.1.2",
23
23
  "tmp": "^0.2.1",
24
24
  "tslib": "^2.6.2",
25
- "uuid": "^3.4.0",
25
+ "uuid": "^9.0.1",
26
26
  "webpack-dev-server": "^4.15.1"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@atlassian/xen-test-util": "^3.1.2",
30
- "@forge/manifest": "4.20.3-next.0",
31
- "@types/express": "^4.17.18",
30
+ "@forge/manifest": "4.20.3-next.2",
31
+ "@types/express": "^4.17.19",
32
32
  "@types/jest": "^29.5.5",
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.11",
36
+ "@types/uuid": "^9.0.5",
37
37
  "supertest": "^6.3.3"
38
38
  }
39
39
  }