@forge/tunnel 5.5.3-next.9 → 5.5.4-next.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 CHANGED
@@ -1,5 +1,111 @@
1
1
  # @forge/tunnel
2
2
 
3
+ ## 5.5.4-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - @forge/bundler@4.19.4-next.0
8
+ - @forge/cli-shared@6.0.1-next.0
9
+
10
+ ## 5.5.3
11
+
12
+ ### Patch Changes
13
+
14
+ - a128084: Fix metrics publication for tunnel invocations
15
+ - Updated dependencies [9c5836c]
16
+ - Updated dependencies [3d92b59]
17
+ - Updated dependencies [238e7ab]
18
+ - Updated dependencies [89b9453]
19
+ - Updated dependencies [f354267]
20
+ - Updated dependencies [f81ee89]
21
+ - Updated dependencies [6b41440]
22
+ - Updated dependencies [a128084]
23
+ - @forge/cli-shared@6.0.0
24
+ - @forge/runtime@5.10.2
25
+ - @forge/bundler@4.19.3
26
+
27
+ ## 5.5.3-next.20
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies [3d92b59]
32
+ - @forge/cli-shared@6.0.0-next.18
33
+ - @forge/bundler@4.19.3-next.19
34
+
35
+ ## 5.5.3-next.19
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [6b41440]
40
+ - @forge/cli-shared@6.0.0-next.17
41
+ - @forge/bundler@4.19.3-next.18
42
+
43
+ ## 5.5.3-next.18
44
+
45
+ ### Patch Changes
46
+
47
+ - Updated dependencies [f354267]
48
+ - @forge/cli-shared@6.0.0-next.16
49
+ - @forge/bundler@4.19.3-next.17
50
+
51
+ ## 5.5.3-next.17
52
+
53
+ ### Patch Changes
54
+
55
+ - a128084: Fix metrics publication for tunnel invocations
56
+ - Updated dependencies [a128084]
57
+ - @forge/runtime@5.10.2-next.0
58
+
59
+ ## 5.5.3-next.16
60
+
61
+ ### Patch Changes
62
+
63
+ - Updated dependencies [9c5836c]
64
+ - @forge/cli-shared@5.6.0-next.15
65
+ - @forge/bundler@4.19.3-next.16
66
+
67
+ ## 5.5.3-next.15
68
+
69
+ ### Patch Changes
70
+
71
+ - @forge/bundler@4.19.3-next.15
72
+ - @forge/cli-shared@5.6.0-next.14
73
+
74
+ ## 5.5.3-next.14
75
+
76
+ ### Patch Changes
77
+
78
+ - @forge/bundler@4.19.3-next.14
79
+ - @forge/cli-shared@5.6.0-next.13
80
+
81
+ ## 5.5.3-next.13
82
+
83
+ ### Patch Changes
84
+
85
+ - @forge/bundler@4.19.3-next.13
86
+ - @forge/cli-shared@5.6.0-next.12
87
+
88
+ ## 5.5.3-next.12
89
+
90
+ ### Patch Changes
91
+
92
+ - @forge/bundler@4.19.3-next.12
93
+ - @forge/cli-shared@5.6.0-next.11
94
+
95
+ ## 5.5.3-next.11
96
+
97
+ ### Patch Changes
98
+
99
+ - @forge/bundler@4.19.3-next.11
100
+ - @forge/cli-shared@5.6.0-next.10
101
+
102
+ ## 5.5.3-next.10
103
+
104
+ ### Patch Changes
105
+
106
+ - @forge/bundler@4.19.3-next.10
107
+ - @forge/cli-shared@5.6.0-next.9
108
+
3
109
  ## 5.5.3-next.9
4
110
 
5
111
  ### Patch Changes
@@ -49,7 +49,7 @@ class LocalInvocationService {
49
49
  const tunnelWarningTimeout = setTimeout(() => {
50
50
  this.logger.warn(cli_shared_1.Text.tunnel.invocationTimeout(timeout));
51
51
  }, timeout * 1000);
52
- const { body, metrics, success, error } = await (0, runtime_1.invoke)({
52
+ const { body, metrics, success, error, metricsCompressed } = await (0, runtime_1.invoke)({
53
53
  sandbox,
54
54
  xenInvocationRequest,
55
55
  invocationLimits,
@@ -58,7 +58,7 @@ class LocalInvocationService {
58
58
  clearTimeout(tunnelWarningTimeout);
59
59
  const reportMetrics = xenInvocationRequest.isFeatureFlagEnabled(runtime_1.XEN_RUNTIME_SHOULD_REPORT_METRICS);
60
60
  LocalInvocationService.printMetrics(reportMetrics, metrics, this.logger);
61
- return reportMetrics ? { body, metrics, success, error } : body;
61
+ return reportMetrics ? { body, metrics, success, error, metricsCompressed } : body;
62
62
  }
63
63
  static INTERNAL_METRICS = ['execute.setup-request-context', 'invoke.setup-isolate'];
64
64
  static printMetrics = (shouldReportMetrics, metrics, logger) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/tunnel",
3
- "version": "5.5.3-next.9",
3
+ "version": "5.5.4-next.0",
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.19.3-next.9",
15
- "@forge/cli-shared": "5.6.0-next.8",
14
+ "@forge/bundler": "4.19.4-next.0",
15
+ "@forge/cli-shared": "6.0.1-next.0",
16
16
  "@forge/csp": "3.3.0",
17
- "@forge/runtime": "5.10.1",
17
+ "@forge/runtime": "5.10.2",
18
18
  "chokidar": "^3.6.0",
19
19
  "cloudflared": "^0.5.2",
20
20
  "express": "^4.18.3",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "devDependencies": {
31
31
  "@atlassian/xen-test-util": "^4.2.0",
32
- "@forge/manifest": "7.9.0-next.6",
32
+ "@forge/manifest": "7.9.1-next.0",
33
33
  "@types/express": "^4.17.21",
34
34
  "@types/jest": "^29.5.12",
35
35
  "@types/node": "14.18.63",