npm package diff
Package: @forge/tunnel
Versions: 5.5.3-next.16 - 5.5.3-next.17
Modified: package/out/services/local-invocation-service.js
Index: package/out/services/local-invocation-service.js
===================================================================
--- package/out/services/local-invocation-service.js
+++ package/out/services/local-invocation-service.js
@@ -48,18 +48,18 @@
const invocationLimits = (0, runtime_1.perInvocationLimitsTrackerFactory)(xenInvocationRequest);
const tunnelWarningTimeout = setTimeout(() => {
this.logger.warn(cli_shared_1.Text.tunnel.invocationTimeout(timeout));
}, timeout * 1000);
- const { body, metrics, success, error } = await (0, runtime_1.invoke)({
+ const { body, metrics, success, error, metricsCompressed } = await (0, runtime_1.invoke)({
sandbox,
xenInvocationRequest,
invocationLimits,
inspector: inspect ? this.inspector : undefined
});
clearTimeout(tunnelWarningTimeout);
const reportMetrics = xenInvocationRequest.isFeatureFlagEnabled(runtime_1.XEN_RUNTIME_SHOULD_REPORT_METRICS);
LocalInvocationService.printMetrics(reportMetrics, metrics, this.logger);
- return reportMetrics ? { body, metrics, success, error } : body;
+ return reportMetrics ? { body, metrics, success, error, metricsCompressed } : body;
}
static INTERNAL_METRICS = ['execute.setup-request-context', 'invoke.setup-isolate'];
static printMetrics = (shouldReportMetrics, metrics, logger) => {
if (shouldReportMetrics && metrics?.length) {
Modified: package/package.json
Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
{
"name": "@forge/tunnel",
- "version": "5.5.3-next.16",
+ "version": "5.5.3-next.17",
"description": "Tunnel functionality for Forge CLI",
"author": "Atlassian",
"license": "UNLICENSED",
"main": "out/index.js",
@@ -13,9 +13,9 @@
"dependencies": {
"@forge/bundler": "4.19.3-next.16",
"@forge/cli-shared": "5.6.0-next.15",
"@forge/csp": "3.3.0",
- "@forge/runtime": "5.10.1",
+ "@forge/runtime": "5.10.2-next.0",
"chokidar": "^3.6.0",
"cloudflared": "^0.5.2",
"express": "^4.18.3",
"express-intercept": "^1.1.0",
Modified: package/CHANGELOG.md
Large diffs are not rendered by default.