@forge/lint 6.0.0-next.12 → 6.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @forge/lint
2
2
 
3
+ ## 6.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 78fcb7f: Adds support for TypeScript 5
8
+
9
+ ### Minor Changes
10
+
11
+ - fbf8219: Adds a lint warning when you use app-managed permissions and the linter still sees API usage that usually needs scopes, but no permission checks in your scanned code or manifest yet.
12
+ - 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.
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [c3b96b3]
17
+ - Updated dependencies [2a03b88]
18
+ - Updated dependencies [814b8fe]
19
+ - Updated dependencies [561f8f4]
20
+ - Updated dependencies [6aeecd7]
21
+ - Updated dependencies [78fcb7f]
22
+ - Updated dependencies [ab1dcaa]
23
+ - Updated dependencies [4a191fe]
24
+ - Updated dependencies [bb903a8]
25
+ - Updated dependencies [c1acc55]
26
+ - Updated dependencies [8ac7dd3]
27
+ - Updated dependencies [39d4f9d]
28
+ - Updated dependencies [297d598]
29
+ - Updated dependencies [5b67e61]
30
+ - Updated dependencies [661b109]
31
+ - Updated dependencies [9a6de66]
32
+ - Updated dependencies [55c1371]
33
+ - Updated dependencies [d66be70]
34
+ - Updated dependencies [1a461c3]
35
+ - Updated dependencies [2a1ec30]
36
+ - @forge/cli-shared@9.0.0
37
+ - @forge/manifest@13.0.0
38
+ - @forge/csp@6.0.0
39
+ - @forge/egress@3.0.0
40
+
3
41
  ## 6.0.0-next.12
4
42
 
5
43
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/lint",
3
- "version": "6.0.0-next.12",
3
+ "version": "6.0.0",
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.2",
14
+ "@forge/api": "^8.0.0",
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,10 +19,10 @@
19
19
  "eslint-plugin-import": "^2.29.1"
20
20
  },
21
21
  "dependencies": {
22
- "@forge/cli-shared": "9.0.0-next.9",
23
- "@forge/csp": "6.0.0-next.3",
24
- "@forge/egress": "3.0.0-next.0",
25
- "@forge/manifest": "13.0.0-next.3",
22
+ "@forge/cli-shared": "9.0.0",
23
+ "@forge/csp": "6.0.0",
24
+ "@forge/egress": "3.0.0",
25
+ "@forge/manifest": "13.0.0",
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",