@forge/tunnel 1.6.0-next.6 → 1.6.0-next.9

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,31 @@
1
1
  # @forge/tunnel
2
2
 
3
+ ## 1.6.0-next.9
4
+
5
+ ### Patch Changes
6
+
7
+ - @forge/cli-shared@2.3.0-next.8
8
+ - @forge/bundler@3.0.1-next.9
9
+
10
+ ## 1.6.0-next.8
11
+
12
+ ### Patch Changes
13
+
14
+ - ca79652: Improve observability
15
+ - Updated dependencies [ca79652]
16
+ - @forge/runtime@1.15.0-next.2
17
+ - @forge/cli-shared@2.3.0-next.7
18
+ - @forge/bundler@3.0.1-next.8
19
+
20
+ ## 1.6.0-next.7
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [e95919f]
25
+ - @forge/csp@1.10.0-next.1
26
+ - @forge/cli-shared@2.3.0-next.6
27
+ - @forge/bundler@3.0.1-next.7
28
+
3
29
  ## 1.6.0-next.6
4
30
 
5
31
  ### Patch Changes
@@ -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;AAG9E,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;CAkDjF"}
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;AAG9E,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;CAsDjF"}
@@ -51,6 +51,9 @@ 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
+ if (reportMetrics && metrics) {
55
+ this.logger.debug(`Metrics: ${JSON.stringify(metrics, null, 2)}`);
56
+ }
54
57
  return reportMetrics ? { body, metrics } : body;
55
58
  }
56
59
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/tunnel",
3
- "version": "1.6.0-next.6",
3
+ "version": "1.6.0-next.9",
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-next.6",
20
- "@forge/cli-shared": "2.3.0-next.5",
21
- "@forge/csp": "^1.10.0-next.0",
19
+ "@forge/bundler": "3.0.1-next.9",
20
+ "@forge/cli-shared": "2.3.0-next.8",
21
+ "@forge/csp": "^1.10.0-next.1",
22
22
  "@forge/isolated-vm": "3.3.10",
23
- "@forge/runtime": "1.15.0-next.1",
23
+ "@forge/runtime": "1.15.0-next.2",
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-next.4",
34
+ "@forge/manifest": "^3.3.0-next.7",
35
35
  "@types/express": "^4.17.2",
36
36
  "@types/express-mung": "^0.5.2",
37
37
  "@types/jest": "^26.0.0",