@forge/tunnel 3.8.3-next.2 → 3.8.3-next.4

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,27 @@
1
1
  # @forge/tunnel
2
2
 
3
+ ## 3.8.3-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 7169010: Bumping dependencies via Renovate:
8
+
9
+ - uuid
10
+ - @types/uuid
11
+
12
+ - Updated dependencies [691d952]
13
+ - @forge/bundler@4.12.4-next.4
14
+
15
+ ## 3.8.3-next.3
16
+
17
+ ### Patch Changes
18
+
19
+ - b3fba81: Bumping dependencies via Renovate:
20
+
21
+ - uuid
22
+ - @types/uuid
23
+ - @forge/bundler@4.12.4-next.3
24
+
3
25
  ## 3.8.3-next.2
4
26
 
5
27
  ### 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.2",
3
+ "version": "3.8.3-next.4",
4
4
  "description": "Tunnel functionality for Forge CLI",
5
5
  "author": "Atlassian",
6
6
  "license": "UNLICENSED",
@@ -11,7 +11,7 @@
11
11
  "compile": "tsc -b -v"
12
12
  },
13
13
  "dependencies": {
14
- "@forge/bundler": "4.12.4-next.2",
14
+ "@forge/bundler": "4.12.4-next.4",
15
15
  "@forge/cli-shared": "3.20.2-next.0",
16
16
  "@forge/csp": "3.0.0",
17
17
  "@forge/runtime": "5.1.2-next.0",
@@ -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.4.0",
25
+ "uuid": "^9.0.1",
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.11",
36
+ "@types/uuid": "^9.0.5",
37
37
  "supertest": "^6.3.3"
38
38
  }
39
39
  }