@forge/lint 5.7.0-next.1 → 5.7.0-next.11
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,79 @@
|
|
|
1
1
|
# @forge/lint
|
|
2
2
|
|
|
3
|
+
## 5.7.0-next.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a5e7647: Update license for Forge public packages
|
|
8
|
+
- Updated dependencies [a5e7647]
|
|
9
|
+
- @forge/cli-shared@6.6.0-next.10
|
|
10
|
+
- @forge/manifest@8.6.1-next.3
|
|
11
|
+
- @forge/egress@1.3.1-next.0
|
|
12
|
+
|
|
13
|
+
## 5.7.0-next.10
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [385907a]
|
|
18
|
+
- Updated dependencies [87ae208]
|
|
19
|
+
- @forge/cli-shared@6.6.0-next.9
|
|
20
|
+
- @forge/manifest@8.6.1-next.2
|
|
21
|
+
|
|
22
|
+
## 5.7.0-next.9
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- cad81f0: Corrected product name lookup.
|
|
27
|
+
- Updated dependencies [1a76049]
|
|
28
|
+
- @forge/cli-shared@6.6.0-next.8
|
|
29
|
+
|
|
30
|
+
## 5.7.0-next.8
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies [951f3f0]
|
|
35
|
+
- @forge/cli-shared@6.6.0-next.7
|
|
36
|
+
|
|
37
|
+
## 5.7.0-next.7
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- @forge/cli-shared@6.6.0-next.6
|
|
42
|
+
|
|
43
|
+
## 5.7.0-next.6
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- @forge/cli-shared@6.6.0-next.5
|
|
48
|
+
|
|
49
|
+
## 5.7.0-next.5
|
|
50
|
+
|
|
51
|
+
### Patch Changes
|
|
52
|
+
|
|
53
|
+
- Updated dependencies [0954fcd]
|
|
54
|
+
- @forge/cli-shared@6.6.0-next.4
|
|
55
|
+
|
|
56
|
+
## 5.7.0-next.4
|
|
57
|
+
|
|
58
|
+
### Patch Changes
|
|
59
|
+
|
|
60
|
+
- Updated dependencies [e5cca82]
|
|
61
|
+
- @forge/cli-shared@6.6.0-next.3
|
|
62
|
+
|
|
63
|
+
## 5.7.0-next.3
|
|
64
|
+
|
|
65
|
+
### Patch Changes
|
|
66
|
+
|
|
67
|
+
- Updated dependencies [f8e2503]
|
|
68
|
+
- @forge/cli-shared@6.6.0-next.2
|
|
69
|
+
|
|
70
|
+
## 5.7.0-next.2
|
|
71
|
+
|
|
72
|
+
### Patch Changes
|
|
73
|
+
|
|
74
|
+
- @forge/cli-shared@6.5.5-next.1
|
|
75
|
+
- @forge/manifest@8.6.1-next.1
|
|
76
|
+
|
|
3
77
|
## 5.7.0-next.1
|
|
4
78
|
|
|
5
79
|
### Patch Changes
|
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright (c) 2025 Atlassian
|
|
2
|
+
Permission is hereby granted to use this software in accordance with the terms
|
|
3
|
+
and conditions outlined in the Atlassian Developer Terms, which can be found
|
|
4
|
+
at the following URL:
|
|
5
|
+
https://developer.atlassian.com/platform/marketplace/atlassian-developer-terms/
|
|
6
|
+
By using this software, you agree to comply with these terms and conditions.
|
|
7
|
+
If you do not agree with these terms, you are not permitted to use this software.
|
|
@@ -36,7 +36,7 @@ class ProductVerifier extends verifier_interface_1.BaseLintIssueVerifier {
|
|
|
36
36
|
for (const permission of missingScopes) {
|
|
37
37
|
rules.push({
|
|
38
38
|
class: this.getLintClass(),
|
|
39
|
-
message: text_1.messages.verifiers.product.message((0, cli_shared_1.
|
|
39
|
+
message: text_1.messages.verifiers.product.message((0, cli_shared_1.productDisplayName)(this.product), apiCall.method.toUpperCase(), this.pathMap.get(apiCall.regex)?.originalPath, permission),
|
|
40
40
|
reference: text_1.messages.verifiers.product.reference,
|
|
41
41
|
line: apiCall.line,
|
|
42
42
|
column: apiCall.column,
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/lint",
|
|
3
|
-
"version": "5.7.0-next.
|
|
3
|
+
"version": "5.7.0-next.11",
|
|
4
4
|
"description": "Linting for forge apps",
|
|
5
5
|
"main": "out/index.js",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "yarn run clean && yarn run compile",
|
|
9
9
|
"compile": "tsc -b -v",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@atlassian/xen-test-util": "^4.2.0",
|
|
14
|
-
"@forge/api": "^5.0.
|
|
14
|
+
"@forge/api": "^5.0.1-next.3",
|
|
15
15
|
"@types/array.prototype.flatmap": "^1.2.6",
|
|
16
16
|
"@types/cross-spawn": "^6.0.6",
|
|
17
17
|
"@types/eslint": "8.56.2",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"eslint-plugin-import": "^2.29.1"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@forge/cli-shared": "6.
|
|
23
|
-
"@forge/egress": "1.3.0",
|
|
24
|
-
"@forge/manifest": "8.6.1-next.
|
|
22
|
+
"@forge/cli-shared": "6.6.0-next.10",
|
|
23
|
+
"@forge/egress": "1.3.1-next.0",
|
|
24
|
+
"@forge/manifest": "8.6.1-next.3",
|
|
25
25
|
"@typescript-eslint/typescript-estree": "^5.62.0",
|
|
26
26
|
"array.prototype.flatmap": "^1.3.2",
|
|
27
27
|
"atlassian-openapi": "^1.0.18",
|