@forge/lint 3.3.0-next.9 → 3.3.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,78 @@
|
|
|
1
1
|
# @forge/lint
|
|
2
2
|
|
|
3
|
+
## 3.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d50d90b: Add ability to detect missing image permissions when using Confluence contentByLineItem modules with dynamic properties
|
|
8
|
+
- 5795a3e: Update linter to detect missing egress permissions for Jira Issue Context dynamic properties modules. And fix bug related to Confluence ContentByLineItem modules
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 2da63a5: Bumping dependencies via Renovate:
|
|
13
|
+
|
|
14
|
+
- atlassian-openapi
|
|
15
|
+
|
|
16
|
+
- ffbb321: Update linter to not reject bundled resources
|
|
17
|
+
- Updated dependencies [9c3f9e4]
|
|
18
|
+
- Updated dependencies [04a9b36]
|
|
19
|
+
- Updated dependencies [f2d9cd7]
|
|
20
|
+
- Updated dependencies [52f15e18]
|
|
21
|
+
- Updated dependencies [87b2440]
|
|
22
|
+
- Updated dependencies [3e7edfb]
|
|
23
|
+
- Updated dependencies [97b57e7]
|
|
24
|
+
- Updated dependencies [3bdedf0]
|
|
25
|
+
- Updated dependencies [0da2b48]
|
|
26
|
+
- Updated dependencies [6e015d7]
|
|
27
|
+
- Updated dependencies [6cb6ad2]
|
|
28
|
+
- Updated dependencies [59c693ee]
|
|
29
|
+
- Updated dependencies [b91c323]
|
|
30
|
+
- @forge/manifest@4.10.0
|
|
31
|
+
- @forge/cli-shared@3.11.0
|
|
32
|
+
- @forge/egress@1.2.0
|
|
33
|
+
|
|
34
|
+
## 3.3.0-next.15
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- Updated dependencies [6cb6ad2]
|
|
39
|
+
- @forge/manifest@4.10.0-next.3
|
|
40
|
+
- @forge/cli-shared@3.11.0-next.10
|
|
41
|
+
|
|
42
|
+
## 3.3.0-next.14
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- Updated dependencies [f2d9cd7]
|
|
47
|
+
- @forge/cli-shared@3.11.0-next.9
|
|
48
|
+
|
|
49
|
+
## 3.3.0-next.13
|
|
50
|
+
|
|
51
|
+
### Patch Changes
|
|
52
|
+
|
|
53
|
+
- Updated dependencies [97b57e7]
|
|
54
|
+
- @forge/cli-shared@3.11.0-next.8
|
|
55
|
+
|
|
56
|
+
## 3.3.0-next.12
|
|
57
|
+
|
|
58
|
+
### Patch Changes
|
|
59
|
+
|
|
60
|
+
- Updated dependencies [3e7edfb]
|
|
61
|
+
- @forge/cli-shared@3.11.0-next.7
|
|
62
|
+
|
|
63
|
+
## 3.3.0-next.11
|
|
64
|
+
|
|
65
|
+
### Patch Changes
|
|
66
|
+
|
|
67
|
+
- ffbb321: Update linter to not reject bundled resources
|
|
68
|
+
|
|
69
|
+
## 3.3.0-next.10
|
|
70
|
+
|
|
71
|
+
### Patch Changes
|
|
72
|
+
|
|
73
|
+
- Updated dependencies [3bdedf0]
|
|
74
|
+
- @forge/egress@1.2.0-next.1
|
|
75
|
+
|
|
3
76
|
## 3.3.0-next.9
|
|
4
77
|
|
|
5
78
|
### Minor Changes
|
|
@@ -6,7 +6,7 @@ class AbstractIconVisitor {
|
|
|
6
6
|
constructor() {
|
|
7
7
|
this.handleIconNode = (iconNode, callback) => {
|
|
8
8
|
if ((iconNode === null || iconNode === void 0 ? void 0 : iconNode.type) === typescript_estree_1.AST_NODE_TYPES.Literal && typeof (iconNode === null || iconNode === void 0 ? void 0 : iconNode.value) === 'string') {
|
|
9
|
-
if (iconNode.value.trim() !== '') {
|
|
9
|
+
if (iconNode.value.trim() !== '' && !iconNode.value.trim().startsWith('resource:')) {
|
|
10
10
|
const iconUrl = this.transformArgsToIconUrl(iconNode);
|
|
11
11
|
callback(iconUrl);
|
|
12
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/lint",
|
|
3
|
-
"version": "3.3.0
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Linting for forge apps",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"@types/node-fetch": "^2.5.7"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@forge/cli-shared": "3.11.0
|
|
21
|
-
"@forge/egress": "1.
|
|
22
|
-
"@forge/manifest": "4.10.0
|
|
20
|
+
"@forge/cli-shared": "3.11.0",
|
|
21
|
+
"@forge/egress": "1.2.0",
|
|
22
|
+
"@forge/manifest": "4.10.0",
|
|
23
23
|
"@typescript-eslint/typescript-estree": "^5.40.0",
|
|
24
24
|
"array.prototype.flatmap": "^1.2.3",
|
|
25
25
|
"atlassian-openapi": "^1.0.17",
|