@forge/manifest 8.3.0-next.3 → 8.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 +23 -0
- package/out/schema/manifest-schema.json +42 -0
- package/out/schema/manifest.d.ts +1792 -0
- package/out/scopes/shipyard-scopes.json +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 8.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0146304: Added scopes for the jira configuration changed product event
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- d5c7fe4: add bitbucket:repoCodeOverviewPanel module and add new templates
|
|
12
|
+
- 56b1d12: Update manifest definitions
|
|
13
|
+
- e94d83f: Update manifest definitions
|
|
14
|
+
- b088bc0: Update manifest definitions
|
|
15
|
+
- 035b3f5: Update manifest definitions
|
|
16
|
+
- 66f157a: Update manifest definitions
|
|
17
|
+
- 0a3744a: Update manifest definitions
|
|
18
|
+
|
|
19
|
+
## 8.3.0-next.4
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- e94d83f: Update manifest definitions
|
|
24
|
+
- 0a3744a: Update manifest definitions
|
|
25
|
+
|
|
3
26
|
## 8.3.0-next.3
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -397,6 +397,48 @@
|
|
|
397
397
|
"title": "function",
|
|
398
398
|
"type": "string"
|
|
399
399
|
},
|
|
400
|
+
"security": {
|
|
401
|
+
"description": "Security options for the webtrigger module.",
|
|
402
|
+
"type": "object",
|
|
403
|
+
"additionalProperties": false,
|
|
404
|
+
"properties": {
|
|
405
|
+
"egress": {
|
|
406
|
+
"type": "object",
|
|
407
|
+
"additionalProperties": false,
|
|
408
|
+
"properties": {
|
|
409
|
+
"allowDataEgress": {
|
|
410
|
+
"description": "If set to false, webtriggers will sanitise responses for forms of egress.",
|
|
411
|
+
"type": "boolean"
|
|
412
|
+
},
|
|
413
|
+
"allowedResponses": {
|
|
414
|
+
"description": "An array of statically defined responses that are not sanitised by no-egress webtriggers.",
|
|
415
|
+
"type": "array",
|
|
416
|
+
"maxItems": 20,
|
|
417
|
+
"items": {
|
|
418
|
+
"type": "object",
|
|
419
|
+
"additionalProperties": false,
|
|
420
|
+
"properties": {
|
|
421
|
+
"statusCode": {
|
|
422
|
+
"type": "integer"
|
|
423
|
+
},
|
|
424
|
+
"body": {
|
|
425
|
+
"type": "string",
|
|
426
|
+
"maxLength": 1024
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"required": [
|
|
430
|
+
"statusCode",
|
|
431
|
+
"body"
|
|
432
|
+
]
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
},
|
|
436
|
+
"required": [
|
|
437
|
+
"allowDataEgress"
|
|
438
|
+
]
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
},
|
|
400
442
|
"key": {
|
|
401
443
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
402
444
|
}
|