@forge/manifest 2.5.1-next.4 → 2.6.0-next.8

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,34 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 2.6.0-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - c0e5696: add new, granular scopes for custom field related product events
8
+ - 7c0d2ee: Update manifest definitions
9
+
10
+ ## 2.6.0-next.7
11
+
12
+ ### Patch Changes
13
+
14
+ - d3afe01: Update manifest definitions
15
+
16
+ ## 2.6.0-next.6
17
+
18
+ ### Minor Changes
19
+
20
+ - cdd8645: Show a warning message during forge lint if manifest has deprecated permission scope
21
+
22
+ ### Patch Changes
23
+
24
+ - b97660c: Update manifest definitions
25
+
26
+ ## 2.6.0-next.5
27
+
28
+ ### Minor Changes
29
+
30
+ - 0a39c43: Updating forge-manifest to include new Compass Metric scopes
31
+
3
32
  ## 2.5.1-next.4
4
33
 
5
34
  ### Patch Changes
@@ -45,49 +45,49 @@
45
45
  {
46
46
  "productEvent": "avi:jira:created:field",
47
47
  "oAuthScopes": [
48
- "manage:jira-configuration"
48
+ "read:field:jira"
49
49
  ]
50
50
  },
51
51
  {
52
52
  "productEvent": "avi:jira:updated:field",
53
53
  "oAuthScopes": [
54
- "manage:jira-configuration"
54
+ "read:field:jira"
55
55
  ]
56
56
  },
57
57
  {
58
58
  "productEvent": "avi:jira:trashed:field",
59
59
  "oAuthScopes": [
60
- "manage:jira-configuration"
60
+ "read:field:jira"
61
61
  ]
62
62
  },
63
63
  {
64
64
  "productEvent": "avi:jira:deleted:field",
65
65
  "oAuthScopes": [
66
- "manage:jira-configuration"
66
+ "read:field:jira"
67
67
  ]
68
68
  },
69
69
  {
70
70
  "productEvent": "avi:jira:restored:field",
71
71
  "oAuthScopes": [
72
- "manage:jira-configuration"
72
+ "read:field:jira"
73
73
  ]
74
74
  },
75
75
  {
76
76
  "productEvent": "avi:jira:created:field:context",
77
77
  "oAuthScopes": [
78
- "manage:jira-configuration"
78
+ "read:field:jira"
79
79
  ]
80
80
  },
81
81
  {
82
82
  "productEvent": "avi:jira:updated:field:context",
83
83
  "oAuthScopes": [
84
- "manage:jira-configuration"
84
+ "read:field:jira"
85
85
  ]
86
86
  },
87
87
  {
88
88
  "productEvent": "avi:jira:deleted:field:context",
89
89
  "oAuthScopes": [
90
- "manage:jira-configuration"
90
+ "read:field:jira"
91
91
  ]
92
92
  },
93
93
  {
@@ -1 +1 @@
1
- {"version":3,"file":"full-validation-processor.d.ts","sourceRoot":"","sources":["../../src/processor/full-validation-processor.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEpD,qBAAa,uBAAwB,SAAQ,2BAA2B,CAAC,cAAc,CAAC;;CAevF"}
1
+ {"version":3,"file":"full-validation-processor.d.ts","sourceRoot":"","sources":["../../src/processor/full-validation-processor.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAGpD,qBAAa,uBAAwB,SAAQ,2BAA2B,CAAC,cAAc,CAAC;;CAgBvF"}
@@ -6,6 +6,7 @@ const validators_1 = require("../validators");
6
6
  const FULL_SCHEMA = tslib_1.__importStar(require("../schema/manifest-schema.json"));
7
7
  const DISPLAY_CONDITIONS_SCHEMA = tslib_1.__importStar(require("../schema/display-conditions-schema.json"));
8
8
  const abstract_validation_processor_1 = require("./abstract-validation-processor");
9
+ const deprecated_permissions_validator_1 = require("../validators/deprecated-permissions-validator");
9
10
  class FullValidationProcessor extends abstract_validation_processor_1.AbstractValidationProcessor {
10
11
  constructor() {
11
12
  super([
@@ -17,6 +18,7 @@ class FullValidationProcessor extends abstract_validation_processor_1.AbstractVa
17
18
  new validators_1.ResourcesValidator(),
18
19
  new validators_1.ConnectRemoteValidator(),
19
20
  new validators_1.PermissionsValidator(),
21
+ new deprecated_permissions_validator_1.DeprecatedPermissionsValidator(),
20
22
  new validators_1.DisplayConditionsValidator(DISPLAY_CONDITIONS_SCHEMA),
21
23
  new validators_1.ProvidersValidator()
22
24
  ]);