@forge/manifest 8.9.0-next.2 → 8.9.0-next.3-experimental-900adc2
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
|
+
## 8.9.0-next.3-experimental-900adc2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 94e48b9: Remove agent mode support per product decision
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 9d231e9: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
|
|
12
|
+
- b503084: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
|
|
13
|
+
- 64daaa5: validate schema for app.contexts so developers can define a required context in the manifest
|
|
14
|
+
- 3a703de: Update manifest definitions
|
|
15
|
+
- 003b1ed: Update manifest definitions
|
|
16
|
+
|
|
17
|
+
## 8.9.0-next.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 9d231e9: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
|
|
22
|
+
- b503084: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
|
|
23
|
+
|
|
3
24
|
## 8.9.0-next.2
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"compass"
|
|
62
62
|
],
|
|
63
63
|
"title": "requiredProduct",
|
|
64
|
-
"description": "
|
|
64
|
+
"description": "This property is deprecated."
|
|
65
65
|
},
|
|
66
66
|
"contexts": {
|
|
67
67
|
"type": "object",
|
|
@@ -26,7 +26,7 @@ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
|
|
|
26
26
|
*/
|
|
27
27
|
export type Architecture = 'x86_64' | 'arm64';
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* This property is deprecated.
|
|
30
30
|
*/
|
|
31
31
|
export type RequiredProduct = 'confluence' | 'jira' | 'compass';
|
|
32
32
|
/**
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"compass"
|
|
62
62
|
],
|
|
63
63
|
"title": "requiredProduct",
|
|
64
|
-
"description": "
|
|
64
|
+
"description": "This property is deprecated."
|
|
65
65
|
},
|
|
66
66
|
"contexts": {
|
|
67
67
|
"type": "object",
|
|
@@ -18703,10 +18703,64 @@
|
|
|
18703
18703
|
"type": "object",
|
|
18704
18704
|
"properties": {
|
|
18705
18705
|
"name": {
|
|
18706
|
-
"
|
|
18706
|
+
"oneOf": [
|
|
18707
|
+
{
|
|
18708
|
+
"type": "object",
|
|
18709
|
+
"additionalProperties": false,
|
|
18710
|
+
"properties": {
|
|
18711
|
+
"i18n": {
|
|
18712
|
+
"type": "string",
|
|
18713
|
+
"minLength": 1,
|
|
18714
|
+
"maxLength": 300,
|
|
18715
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
18716
|
+
}
|
|
18717
|
+
},
|
|
18718
|
+
"required": [
|
|
18719
|
+
"i18n"
|
|
18720
|
+
]
|
|
18721
|
+
},
|
|
18722
|
+
{
|
|
18723
|
+
"type": "string",
|
|
18724
|
+
"minLength": 1,
|
|
18725
|
+
"maxLength": 255
|
|
18726
|
+
}
|
|
18727
|
+
]
|
|
18728
|
+
},
|
|
18729
|
+
"name__i18n": {
|
|
18730
|
+
"type": "string",
|
|
18731
|
+
"minLength": 1,
|
|
18732
|
+
"maxLength": 300,
|
|
18733
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
18707
18734
|
},
|
|
18708
18735
|
"description": {
|
|
18709
|
-
"
|
|
18736
|
+
"oneOf": [
|
|
18737
|
+
{
|
|
18738
|
+
"type": "object",
|
|
18739
|
+
"additionalProperties": false,
|
|
18740
|
+
"properties": {
|
|
18741
|
+
"i18n": {
|
|
18742
|
+
"type": "string",
|
|
18743
|
+
"minLength": 1,
|
|
18744
|
+
"maxLength": 300,
|
|
18745
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
18746
|
+
}
|
|
18747
|
+
},
|
|
18748
|
+
"required": [
|
|
18749
|
+
"i18n"
|
|
18750
|
+
]
|
|
18751
|
+
},
|
|
18752
|
+
{
|
|
18753
|
+
"type": "string",
|
|
18754
|
+
"minLength": 1,
|
|
18755
|
+
"maxLength": 255
|
|
18756
|
+
}
|
|
18757
|
+
]
|
|
18758
|
+
},
|
|
18759
|
+
"description__i18n": {
|
|
18760
|
+
"type": "string",
|
|
18761
|
+
"minLength": 1,
|
|
18762
|
+
"maxLength": 300,
|
|
18763
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
18710
18764
|
},
|
|
18711
18765
|
"icon": {
|
|
18712
18766
|
"type": "string"
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
|
|
|
26
26
|
*/
|
|
27
27
|
export type Architecture = 'x86_64' | 'arm64';
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* This property is deprecated.
|
|
30
30
|
*/
|
|
31
31
|
export type RequiredProduct = 'confluence' | 'jira' | 'compass';
|
|
32
32
|
/**
|
|
@@ -9302,8 +9302,18 @@ export interface Modules {
|
|
|
9302
9302
|
'bitbucket:dynamicPipelinesProvider'?: [
|
|
9303
9303
|
(
|
|
9304
9304
|
| {
|
|
9305
|
-
name:
|
|
9306
|
-
|
|
9305
|
+
name:
|
|
9306
|
+
| {
|
|
9307
|
+
i18n: string;
|
|
9308
|
+
}
|
|
9309
|
+
| string;
|
|
9310
|
+
name__i18n?: string;
|
|
9311
|
+
description?:
|
|
9312
|
+
| {
|
|
9313
|
+
i18n: string;
|
|
9314
|
+
}
|
|
9315
|
+
| string;
|
|
9316
|
+
description__i18n?: string;
|
|
9307
9317
|
icon?: string;
|
|
9308
9318
|
function: string;
|
|
9309
9319
|
key: ModuleKeySchema;
|
|
@@ -9320,8 +9330,18 @@ export interface Modules {
|
|
|
9320
9330
|
),
|
|
9321
9331
|
...(
|
|
9322
9332
|
| {
|
|
9323
|
-
name:
|
|
9324
|
-
|
|
9333
|
+
name:
|
|
9334
|
+
| {
|
|
9335
|
+
i18n: string;
|
|
9336
|
+
}
|
|
9337
|
+
| string;
|
|
9338
|
+
name__i18n?: string;
|
|
9339
|
+
description?:
|
|
9340
|
+
| {
|
|
9341
|
+
i18n: string;
|
|
9342
|
+
}
|
|
9343
|
+
| string;
|
|
9344
|
+
description__i18n?: string;
|
|
9325
9345
|
icon?: string;
|
|
9326
9346
|
function: string;
|
|
9327
9347
|
key: ModuleKeySchema;
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"delete:build-info:jira",
|
|
19
19
|
"delete:calendar-info:jira",
|
|
20
20
|
"delete:cmdb-attribute:jira",
|
|
21
|
+
"delete:cmdb-config:jira",
|
|
21
22
|
"delete:cmdb-object:jira",
|
|
22
23
|
"delete:cmdb-schema:jira",
|
|
23
24
|
"delete:cmdb-type:jira",
|
|
@@ -145,6 +146,7 @@
|
|
|
145
146
|
"read:calendar-info:jira",
|
|
146
147
|
"read:chat:rovo",
|
|
147
148
|
"read:cmdb-attribute:jira",
|
|
149
|
+
"read:cmdb-config:jira",
|
|
148
150
|
"read:cmdb-icon:jira",
|
|
149
151
|
"read:cmdb-object:jira",
|
|
150
152
|
"read:cmdb-schema:jira",
|
|
@@ -374,6 +376,7 @@
|
|
|
374
376
|
"write:build:jira-software",
|
|
375
377
|
"write:calendar-info:jira",
|
|
376
378
|
"write:cmdb-attribute:jira",
|
|
379
|
+
"write:cmdb-config:jira",
|
|
377
380
|
"write:cmdb-object:jira",
|
|
378
381
|
"write:cmdb-schema:jira",
|
|
379
382
|
"write:cmdb-type:jira",
|