@forge/lint 5.20.0-next.7-experimental-44b7a12 → 6.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 +15 -21
  2. package/package.json +16 -7
package/CHANGELOG.md CHANGED
@@ -1,31 +1,25 @@
1
1
  # @forge/lint
2
2
 
3
- ## 5.20.0-next.7-experimental-44b7a12
3
+ ## 6.0.0-next.9
4
4
 
5
- ### Minor Changes
5
+ ### Major Changes
6
6
 
7
- - 6adb226: The Forge linter now reports an error (previously a warning) when the `@forge/sql` SDK is imported but no corresponding `sql` module is declared in the manifest. The autofix continues to add the missing `sql` module and now counts it as a fixed error.
7
+ - 78fcb7f: Adds support for TypeScript 5
8
8
 
9
9
  ### Patch Changes
10
10
 
11
- - Updated dependencies [c3b96b3]
12
- - Updated dependencies [2a03b88]
13
- - Updated dependencies [814b8fe]
14
- - Updated dependencies [561f8f4]
15
- - Updated dependencies [6aeecd7]
16
- - Updated dependencies [ab1dcaa]
17
- - Updated dependencies [bb903a8]
18
- - Updated dependencies [c1acc55]
19
- - Updated dependencies [8ac7dd3]
20
- - Updated dependencies [297d598]
21
- - Updated dependencies [5b67e61]
22
- - Updated dependencies [661b109]
23
- - Updated dependencies [55c1371]
24
- - Updated dependencies [1a461c3]
25
- - Updated dependencies [2a1ec30]
26
- - @forge/cli-shared@8.25.0-next.5-experimental-44b7a12
27
- - @forge/manifest@12.10.0-next.1-experimental-44b7a12
28
- - @forge/csp@5.9.0-next.2-experimental-44b7a12
11
+ - Updated dependencies [78fcb7f]
12
+ - @forge/cli-shared@9.0.0-next.7
13
+ - @forge/csp@6.0.0-next.3
14
+ - @forge/egress@3.0.0-next.0
15
+ - @forge/manifest@13.0.0-next.2
16
+
17
+ ## 5.20.0-next.8
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [9a6de66]
22
+ - @forge/cli-shared@8.25.0-next.6
29
23
 
30
24
  ## 5.20.0-next.7
31
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/lint",
3
- "version": "5.20.0-next.7-experimental-44b7a12",
3
+ "version": "6.0.0-next.9",
4
4
  "description": "Linting for forge apps",
5
5
  "main": "out/index.js",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "devDependencies": {
13
13
  "@atlassian/xen-test-util": "^4.2.0",
14
- "@forge/api": "^8.0.0-next.1-experimental-44b7a12",
14
+ "@forge/api": "^8.0.0-next.2",
15
15
  "@types/array.prototype.flatmap": "^1.2.6",
16
16
  "@types/cross-spawn": "^6.0.6",
17
17
  "@types/eslint": "8.56.12",
@@ -19,17 +19,26 @@
19
19
  "eslint-plugin-import": "^2.29.1"
20
20
  },
21
21
  "dependencies": {
22
- "@forge/cli-shared": "8.25.0-next.5-experimental-44b7a12",
23
- "@forge/csp": "5.9.0-next.2-experimental-44b7a12",
24
- "@forge/egress": "2.3.2",
25
- "@forge/manifest": "12.10.0-next.1-experimental-44b7a12",
22
+ "@forge/cli-shared": "9.0.0-next.7",
23
+ "@forge/csp": "6.0.0-next.3",
24
+ "@forge/egress": "3.0.0-next.0",
25
+ "@forge/manifest": "13.0.0-next.2",
26
26
  "@typescript-eslint/typescript-estree": "^5.62.0",
27
27
  "array.prototype.flatmap": "^1.3.3",
28
28
  "@atlassian/atlassian-openapi": "^1.0.6",
29
29
  "cross-spawn": "^7.0.6",
30
- "node-fetch": "2.7.0"
30
+ "node-fetch": "2.7.0",
31
+ "typescript": "5.9.2"
31
32
  },
32
33
  "publishConfig": {
33
34
  "registry": "https://packages.atlassian.com/api/npm/npm-public/"
35
+ },
36
+ "peerDependencies": {
37
+ "typescript": ">=5.0.0"
38
+ },
39
+ "peerDependenciesMeta": {
40
+ "typescript": {
41
+ "optional": true
42
+ }
34
43
  }
35
44
  }