@forge/tunnel 1.6.0-next.7 → 1.6.0
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 +77 -0
- package/out/tunnelling/command/interactors/function-change-watcher.js +1 -1
- package/out/tunnelling/services/local-invocation-service.d.ts +4 -0
- package/out/tunnelling/services/local-invocation-service.d.ts.map +1 -1
- package/out/tunnelling/services/local-invocation-service.js +7 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,82 @@
|
|
|
1
1
|
# @forge/tunnel
|
|
2
2
|
|
|
3
|
+
## 1.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- cee5eea1: Observability improvements
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 68c1a7f: Fix for observability
|
|
12
|
+
- ca79652: Improve observability
|
|
13
|
+
- Updated dependencies [b673009]
|
|
14
|
+
- Updated dependencies [cee5eea1]
|
|
15
|
+
- Updated dependencies [47a71a6]
|
|
16
|
+
- Updated dependencies [e95919f]
|
|
17
|
+
- Updated dependencies [56164fe]
|
|
18
|
+
- Updated dependencies [949bd40]
|
|
19
|
+
- Updated dependencies [cf2420d]
|
|
20
|
+
- Updated dependencies [ca79652]
|
|
21
|
+
- @forge/runtime@1.15.0
|
|
22
|
+
- @forge/cli-shared@2.3.0
|
|
23
|
+
- @forge/csp@1.10.0
|
|
24
|
+
- @forge/bundler@3.0.1
|
|
25
|
+
|
|
26
|
+
## 1.6.0-next.14
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- @forge/cli-shared@2.3.0-next.11
|
|
31
|
+
- @forge/bundler@3.0.1-next.12
|
|
32
|
+
|
|
33
|
+
## 1.6.0-next.13
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 68c1a7f3: Fix for observability
|
|
38
|
+
|
|
39
|
+
## 1.6.0-next.12
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- Updated dependencies [47a71a62]
|
|
44
|
+
- @forge/cli-shared@2.3.0-next.10
|
|
45
|
+
- @forge/runtime@1.15.0-next.4
|
|
46
|
+
- @forge/bundler@3.0.1-next.11
|
|
47
|
+
|
|
48
|
+
## 1.6.0-next.11
|
|
49
|
+
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
- Updated dependencies [cf2420d2]
|
|
53
|
+
- @forge/cli-shared@2.3.0-next.9
|
|
54
|
+
- @forge/bundler@3.0.1-next.10
|
|
55
|
+
|
|
56
|
+
## 1.6.0-next.10
|
|
57
|
+
|
|
58
|
+
### Patch Changes
|
|
59
|
+
|
|
60
|
+
- Updated dependencies [b6730093]
|
|
61
|
+
- @forge/runtime@1.15.0-next.3
|
|
62
|
+
|
|
63
|
+
## 1.6.0-next.9
|
|
64
|
+
|
|
65
|
+
### Patch Changes
|
|
66
|
+
|
|
67
|
+
- @forge/cli-shared@2.3.0-next.8
|
|
68
|
+
- @forge/bundler@3.0.1-next.9
|
|
69
|
+
|
|
70
|
+
## 1.6.0-next.8
|
|
71
|
+
|
|
72
|
+
### Patch Changes
|
|
73
|
+
|
|
74
|
+
- ca79652: Improve observability
|
|
75
|
+
- Updated dependencies [ca79652]
|
|
76
|
+
- @forge/runtime@1.15.0-next.2
|
|
77
|
+
- @forge/cli-shared@2.3.0-next.7
|
|
78
|
+
- @forge/bundler@3.0.1-next.8
|
|
79
|
+
|
|
3
80
|
## 1.6.0-next.7
|
|
4
81
|
|
|
5
82
|
### Patch Changes
|
|
@@ -49,7 +49,7 @@ class LocalFunctionHost {
|
|
|
49
49
|
bundleFileSourceMapPath: path_1.resolve(directory, `${bundleName}.js.map`),
|
|
50
50
|
bundleFileSourceMap: bundledCode.sourceMap ? bundledCode.sourceMap[bundleName] : undefined
|
|
51
51
|
}));
|
|
52
|
-
const manifestFilePath = path_1.resolve(directory, cli_shared_1.
|
|
52
|
+
const manifestFilePath = path_1.resolve(directory, cli_shared_1.manifestFileName);
|
|
53
53
|
const manifestContents = JSON.stringify(await this.configFile.readConfig());
|
|
54
54
|
const allPromises = [];
|
|
55
55
|
bundles.forEach((bundle) => allPromises.push(this.generateBundleFiles(bundle, isSnapshotEnabled)));
|
|
@@ -7,5 +7,9 @@ export declare class LocalInvocationService implements InvocationService {
|
|
|
7
7
|
private readonly inspector;
|
|
8
8
|
constructor(configFile: ConfigFile, logger: Logger, inspector: Inspector);
|
|
9
9
|
invoke(handler: string, request: ExternalRequestBody): Promise<any>;
|
|
10
|
+
static INTERNAL_METRICS: string[];
|
|
11
|
+
static printMetrics: (shouldReportMetrics: boolean, metrics: {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
}[] | undefined, logger: Logger) => void;
|
|
10
14
|
}
|
|
11
15
|
//# sourceMappingURL=local-invocation-service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"local-invocation-service.d.ts","sourceRoot":"","sources":["../../../src/tunnelling/services/local-invocation-service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAI/C,OAAO,EACL,mBAAmB,EACnB,SAAS,EAIV,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,EAAyB,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"local-invocation-service.d.ts","sourceRoot":"","sources":["../../../src/tunnelling/services/local-invocation-service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAI/C,OAAO,EACL,mBAAmB,EACnB,SAAS,EAIV,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,EAAyB,MAAM,mBAAmB,CAAC;AAI9E,qBAAa,sBAAuB,YAAW,iBAAiB;IAE5D,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,SAAS;gBAFT,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,SAAS;IAG1B,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,GAAG,CAAC;IAqDhF,MAAM,CAAC,gBAAgB,WAA6D;IAEpF,MAAM,CAAC,YAAY,wBACI,OAAO;;6BAEpB,MAAM,KACb,IAAI,CAUL;CACH"}
|
|
@@ -51,7 +51,14 @@ class LocalInvocationService {
|
|
|
51
51
|
inspector: inspect ? this.inspector : undefined
|
|
52
52
|
});
|
|
53
53
|
const reportMetrics = xenInvocationRequest.isFeatureFlagEnabled(feature_flag_1.XEN_RUNTIME_SHOULD_REPORT_METRICS);
|
|
54
|
+
LocalInvocationService.printMetrics(reportMetrics, metrics, this.logger);
|
|
54
55
|
return reportMetrics ? { body, metrics } : body;
|
|
55
56
|
}
|
|
56
57
|
}
|
|
57
58
|
exports.LocalInvocationService = LocalInvocationService;
|
|
59
|
+
LocalInvocationService.INTERNAL_METRICS = ['execute.setup-request-context', 'invoke.setup-isolate'];
|
|
60
|
+
LocalInvocationService.printMetrics = (shouldReportMetrics, metrics, logger) => {
|
|
61
|
+
if (shouldReportMetrics && (metrics === null || metrics === void 0 ? void 0 : metrics.length)) {
|
|
62
|
+
logger.debug(`Metrics: ${JSON.stringify(metrics.filter((m) => !LocalInvocationService.INTERNAL_METRICS.includes(m.name)), null, 2)}`);
|
|
63
|
+
}
|
|
64
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/tunnel",
|
|
3
|
-
"version": "1.6.0
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Tunnel functionality for Forge CLI",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"postbuild": "chmod +x out/*.js"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@forge/bundler": "3.0.1
|
|
20
|
-
"@forge/cli-shared": "2.3.0
|
|
21
|
-
"@forge/csp": "^1.10.0
|
|
19
|
+
"@forge/bundler": "3.0.1",
|
|
20
|
+
"@forge/cli-shared": "2.3.0",
|
|
21
|
+
"@forge/csp": "^1.10.0",
|
|
22
22
|
"@forge/isolated-vm": "3.3.10",
|
|
23
|
-
"@forge/runtime": "1.15.0
|
|
23
|
+
"@forge/runtime": "1.15.0",
|
|
24
24
|
"express": "^4.17.1",
|
|
25
25
|
"express-mung": "^0.5.1",
|
|
26
26
|
"http-proxy-middleware": "^1.0.6",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"uuid": "^3.4.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@forge/manifest": "^3.3.0
|
|
34
|
+
"@forge/manifest": "^3.3.0",
|
|
35
35
|
"@types/express": "^4.17.2",
|
|
36
36
|
"@types/express-mung": "^0.5.2",
|
|
37
37
|
"@types/jest": "^26.0.0",
|