@forge/tunnel 6.5.0-next.7-experimental-44b7a12 → 7.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -21
  2. package/package.json +17 -8
package/CHANGELOG.md CHANGED
@@ -1,31 +1,27 @@
1
1
  # @forge/tunnel
2
2
 
3
- ## 6.5.0-next.7-experimental-44b7a12
3
+ ## 7.0.0-next.9
4
4
 
5
- ### Minor Changes
5
+ ### Major Changes
6
6
 
7
- - 6aeecd7: The tunnel debugger now binds to localhost (127.0.0.1) by default instead of all network interfaces (0.0.0.0). If you need to attach a debugger from another host, use the new `--debugHost` option on `forge tunnel` to specify the IP address to bind to.
7
+ - 78fcb7f: Adds support for TypeScript 5
8
8
 
9
9
  ### Patch Changes
10
10
 
11
- - 55c1371: bump cheerio to ^1.2.0 to pull in a patched undici (>=7.19.0, resolving to a fixed release) and remediate CVE-2026-1525
12
- NodeJS requirement bumped from 20.0.0 to >=20.18.1
13
- - Updated dependencies [c3b96b3]
14
- - Updated dependencies [2a03b88]
15
- - Updated dependencies [561f8f4]
16
- - Updated dependencies [6aeecd7]
17
- - Updated dependencies [ab1dcaa]
18
- - Updated dependencies [bb903a8]
19
- - Updated dependencies [c1acc55]
20
- - Updated dependencies [297d598]
21
- - Updated dependencies [5b67e61]
22
- - Updated dependencies [661b109]
23
- - Updated dependencies [55c1371]
24
- - Updated dependencies [2a1ec30]
25
- - @forge/cli-shared@8.25.0-next.5-experimental-44b7a12
26
- - @forge/bundler@6.2.2-next.7-experimental-44b7a12
27
- - @forge/runtime@6.2.0-next.0-experimental-44b7a12
28
- - @forge/csp@5.9.0-next.2-experimental-44b7a12
11
+ - Updated dependencies [78fcb7f]
12
+ - @forge/bundler@7.0.0-next.9
13
+ - @forge/cli-shared@9.0.0-next.7
14
+ - @forge/csp@6.0.0-next.3
15
+ - @forge/runtime@7.0.0-next.1
16
+ - @forge/util@3.0.0-next.0
17
+
18
+ ## 6.5.0-next.8
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [9a6de66]
23
+ - @forge/cli-shared@8.25.0-next.6
24
+ - @forge/bundler@6.2.2-next.8
29
25
 
30
26
  ## 6.5.0-next.7
31
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/tunnel",
3
- "version": "6.5.0-next.7-experimental-44b7a12",
3
+ "version": "7.0.0-next.9",
4
4
  "description": "Tunnel functionality for Forge CLI",
5
5
  "author": "Atlassian",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -11,11 +11,11 @@
11
11
  "compile": "tsc -b -v"
12
12
  },
13
13
  "dependencies": {
14
- "@forge/bundler": "6.2.2-next.7-experimental-44b7a12",
15
- "@forge/cli-shared": "8.25.0-next.5-experimental-44b7a12",
16
- "@forge/csp": "5.9.0-next.2-experimental-44b7a12",
17
- "@forge/runtime": "6.2.0-next.0-experimental-44b7a12",
18
- "@forge/util": "^2.0.1",
14
+ "@forge/bundler": "7.0.0-next.9",
15
+ "@forge/cli-shared": "9.0.0-next.7",
16
+ "@forge/csp": "6.0.0-next.3",
17
+ "@forge/runtime": "7.0.0-next.1",
18
+ "@forge/util": "^3.0.0-next.0",
19
19
  "cheerio": "^1.2.0",
20
20
  "chokidar": "^3.6.0",
21
21
  "cloudflared": "^0.7.0",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "devDependencies": {
34
34
  "@atlassian/xen-test-util": "^4.2.0",
35
- "@forge/manifest": "12.10.0-next.1-experimental-44b7a12",
35
+ "@forge/manifest": "13.0.0-next.2",
36
36
  "@types/express": "^4.17.21",
37
37
  "@types/jest": "^29.5.14",
38
38
  "@types/node": "20.19.1",
@@ -40,9 +40,18 @@
40
40
  "@types/tmp": "^0.2.6",
41
41
  "@types/which": "^3.0.4",
42
42
  "nock": "13.5.6",
43
- "supertest": "^6.3.3"
43
+ "supertest": "^6.3.3",
44
+ "typescript": "5.9.2"
44
45
  },
45
46
  "publishConfig": {
46
47
  "registry": "https://packages.atlassian.com/api/npm/npm-public/"
48
+ },
49
+ "peerDependencies": {
50
+ "typescript": ">=5.0.0"
51
+ },
52
+ "peerDependenciesMeta": {
53
+ "typescript": {
54
+ "optional": true
55
+ }
47
56
  }
48
57
  }