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

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,50 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 2.6.0-next.10
4
+
5
+ ### Minor Changes
6
+
7
+ - bd6e025: Add confluence:globalPage module
8
+
9
+ ### Patch Changes
10
+
11
+ - d2f6992: Update manifest definitions
12
+
13
+ ## 2.6.0-next.9
14
+
15
+ ### Patch Changes
16
+
17
+ - 22a488ec: Add avi:jira:updated:field:context:configuration product event for scope mapping
18
+
19
+ ## 2.6.0-next.8
20
+
21
+ ### Patch Changes
22
+
23
+ - c0e5696: add new, granular scopes for custom field related product events
24
+ - 7c0d2ee: Update manifest definitions
25
+
26
+ ## 2.6.0-next.7
27
+
28
+ ### Patch Changes
29
+
30
+ - d3afe01: Update manifest definitions
31
+
32
+ ## 2.6.0-next.6
33
+
34
+ ### Minor Changes
35
+
36
+ - cdd8645: Show a warning message during forge lint if manifest has deprecated permission scope
37
+
38
+ ### Patch Changes
39
+
40
+ - b97660c: Update manifest definitions
41
+
42
+ ## 2.6.0-next.5
43
+
44
+ ### Minor Changes
45
+
46
+ - 0a39c43: Updating forge-manifest to include new Compass Metric scopes
47
+
3
48
  ## 2.5.1-next.4
4
49
 
5
50
  ### Patch Changes
@@ -45,49 +45,55 @@
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
+ ]
92
+ },
93
+ {
94
+ "productEvent": "avi:jira:updated:field:context:configuration",
95
+ "oAuthScopes": [
96
+ "read:custom-field-contextual-configuration:jira"
91
97
  ]
92
98
  },
93
99
  {
@@ -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
  ]);