@forge/tunnel 3.3.0-next.9 → 3.3.1-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,68 @@
1
1
  # @forge/tunnel
2
2
 
3
+ ## 3.3.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d1c1588]
8
+ - @forge/cli-shared@3.9.0-next.0
9
+ - @forge/bundler@4.6.2-next.0
10
+
11
+ ## 3.3.0
12
+
13
+ ### Minor Changes
14
+
15
+ - dc0e198: Added 'forge environment list' command
16
+
17
+ ### Patch Changes
18
+
19
+ - 8db8d54: Don't try bundling optional packages with native extensions
20
+ - Updated dependencies [0d36e72]
21
+ - Updated dependencies [8db8d54]
22
+ - Updated dependencies [d9ebc65]
23
+ - Updated dependencies [db2615bd]
24
+ - Updated dependencies [149ebb5]
25
+ - Updated dependencies [dc0e198]
26
+ - Updated dependencies [47a05cd]
27
+ - Updated dependencies [081aaa9]
28
+ - Updated dependencies [9614f64]
29
+ - Updated dependencies [6f454d7]
30
+ - @forge/cli-shared@3.8.0
31
+ - @forge/bundler@4.6.1
32
+ - @forge/runtime@4.3.1
33
+
34
+ ## 3.3.0-next.13
35
+
36
+ ### Patch Changes
37
+
38
+ - Updated dependencies [9614f64]
39
+ - @forge/cli-shared@3.8.0-next.7
40
+ - @forge/bundler@4.6.1-next.13
41
+
42
+ ## 3.3.0-next.12
43
+
44
+ ### Patch Changes
45
+
46
+ - Updated dependencies [149ebb5]
47
+ - @forge/cli-shared@3.8.0-next.6
48
+ - @forge/bundler@4.6.1-next.12
49
+
50
+ ## 3.3.0-next.11
51
+
52
+ ### Patch Changes
53
+
54
+ - 8db8d54: Don't try bundling optional packages with native extensions
55
+ - Updated dependencies [8db8d54]
56
+ - @forge/bundler@4.6.1-next.11
57
+
58
+ ## 3.3.0-next.10
59
+
60
+ ### Patch Changes
61
+
62
+ - Updated dependencies [0d36e724]
63
+ - @forge/cli-shared@3.8.0-next.5
64
+ - @forge/bundler@4.6.1-next.10
65
+
3
66
  ## 3.3.0-next.9
4
67
 
5
68
  ### Patch Changes
@@ -101,7 +101,7 @@ class LocalDevelopmentServer {
101
101
  return new Promise((resolve, reject) => {
102
102
  compiler.watch({ poll: 1000 }, async (compilerError, stats) => {
103
103
  try {
104
- (0, bundler_2.handleWebpackCompilationResult)(compilerError, stats);
104
+ (0, bundler_2.handleWebpackCompilationResult)(this.logger, compilerError, stats);
105
105
  this.logger.info(cli_shared_1.LogColor.trace(cli_shared_1.Text.tunnel.functionsBundlingSucceeded));
106
106
  const bundle = (0, bundler_2.getInMemoryBundle)(config);
107
107
  if (!isFirstRun) {
@@ -62,7 +62,7 @@ class NativeUITunnelServer extends resource_tunnel_server_1.ResourceTunnelServer
62
62
  compiler.hooks.done.tapAsync('done', async (stats, doneCallback) => {
63
63
  const maybeError = stats.hasErrors() ? stats.compilation.getErrors()[0] : undefined;
64
64
  try {
65
- (0, bundler_1.handleWebpackCompilationResult)(maybeError, stats);
65
+ (0, bundler_1.handleWebpackCompilationResult)(this.logger, maybeError, stats);
66
66
  this.logger.info(cli_shared_1.LogColor.trace(cli_shared_1.Text.tunnel.resourcesBundlingSucceeded));
67
67
  if (!isFirtCompilation) {
68
68
  await onBuildFinished(null);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/tunnel",
3
- "version": "3.3.0-next.9",
3
+ "version": "3.3.1-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.6.1-next.9",
15
- "@forge/cli-shared": "3.8.0-next.4",
14
+ "@forge/bundler": "4.6.2-next.0",
15
+ "@forge/cli-shared": "3.9.0-next.0",
16
16
  "@forge/csp": "2.1.1",
17
- "@forge/runtime": "4.3.1-next.1",
17
+ "@forge/runtime": "4.3.1",
18
18
  "express": "^4.17.1",
19
19
  "express-intercept": "^0.8.10",
20
20
  "http-proxy-middleware": "^1.0.6",
@@ -26,7 +26,7 @@
26
26
  "webpack-dev-server": "^4.11.1"
27
27
  },
28
28
  "devDependencies": {
29
- "@forge/manifest": "4.8.0-next.2",
29
+ "@forge/manifest": "4.8.0",
30
30
  "@types/express": "^4.17.2",
31
31
  "@types/jest": "^29.1.2",
32
32
  "@types/node": "^12.12.63",