@forge/manifest 7.3.0-next.5 → 7.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,26 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7787d36: Add linting for remote auth scopes
8
+ - 670a419: Only parse listed environment variables in the manifest
9
+ - 4c2dc9f: Add support for auth capabilities for remotes specified in the manifest
10
+
11
+ ### Patch Changes
12
+
13
+ - 77d16a9: Add manifest validation for adfExport entrypoint in macro module
14
+ - 6162ed5: Added scope mapping for avi:jira:deleted:comment product event
15
+ - 6099d41: Update testing to support Node 20+
16
+ - f04a310: Update manifest definitions
17
+
18
+ ## 7.3.0-next.6
19
+
20
+ ### Patch Changes
21
+
22
+ - 6162ed5: Added scope mapping for avi:jira:deleted:comment product event
23
+
3
24
  ## 7.3.0-next.5
4
25
 
5
26
  ### Minor Changes
@@ -31,6 +31,22 @@
31
31
  ]
32
32
  }
33
33
  },
34
+ {
35
+ "productEvent": "avi:jira:deleted:comment",
36
+ "oAuthScopes": {
37
+ "beta": [
38
+ "read:issue:jira",
39
+ "read:issue-type:jira",
40
+ "read:user:jira",
41
+ "read:project:jira",
42
+ "read:status:jira",
43
+ "read:comment:jira"
44
+ ],
45
+ "current": [
46
+ "read:jira-work"
47
+ ]
48
+ }
49
+ },
34
50
  {
35
51
  "productEvent": "avi:jira:created:issue",
36
52
  "oAuthScopes": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.3.0-next.5",
3
+ "version": "7.3.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {