@forge/manifest 2.5.1-next.2 → 2.6.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,71 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 2.6.0-next.11
4
+
5
+ ### Patch Changes
6
+
7
+ - dfe9dd8: Update manifest definitions
8
+ - d3c8c8d: Update manifest definitions
9
+ - 0a7725f: Update manifest definitions
10
+ - 2bb89c5: Update manifest definitions
11
+
12
+ ## 2.6.0-next.10
13
+
14
+ ### Minor Changes
15
+
16
+ - bd6e025: Add confluence:globalPage module
17
+
18
+ ### Patch Changes
19
+
20
+ - d2f6992: Update manifest definitions
21
+
22
+ ## 2.6.0-next.9
23
+
24
+ ### Patch Changes
25
+
26
+ - 22a488ec: Add avi:jira:updated:field:context:configuration product event for scope mapping
27
+
28
+ ## 2.6.0-next.8
29
+
30
+ ### Patch Changes
31
+
32
+ - c0e5696: add new, granular scopes for custom field related product events
33
+ - 7c0d2ee: Update manifest definitions
34
+
35
+ ## 2.6.0-next.7
36
+
37
+ ### Patch Changes
38
+
39
+ - d3afe01: Update manifest definitions
40
+
41
+ ## 2.6.0-next.6
42
+
43
+ ### Minor Changes
44
+
45
+ - cdd8645: Show a warning message during forge lint if manifest has deprecated permission scope
46
+
47
+ ### Patch Changes
48
+
49
+ - b97660c: Update manifest definitions
50
+
51
+ ## 2.6.0-next.5
52
+
53
+ ### Minor Changes
54
+
55
+ - 0a39c43: Updating forge-manifest to include new Compass Metric scopes
56
+
57
+ ## 2.5.1-next.4
58
+
59
+ ### Patch Changes
60
+
61
+ - 91ea057: Update manifest definitions
62
+
63
+ ## 2.5.1-next.3
64
+
65
+ ### Patch Changes
66
+
67
+ - 3010f0e: Update manifest definitions
68
+
3
69
  ## 2.5.1-next.2
4
70
 
5
71
  ### 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
  ]);