@forge/manifest 12.8.0-next.6 → 12.8.0-next.7-experimental-2e302e1
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 +28 -0
- package/out/schema/manifest-schema.json +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 12.8.0-next.7-experimental-2e302e1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1eded6e: Update action reference validation
|
|
8
|
+
- cf7000f: rovo:skill validation
|
|
9
|
+
- d660fb0: Update action validation
|
|
10
|
+
- e7b0684: support scaling containers to zero
|
|
11
|
+
- 8d90f4f: Add entry map support to hosted resources schema and enhance validation
|
|
12
|
+
- f80e7b3: Added first-class rovo:skill support to the forge-manifest package
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 0e45239: Forge manifest linter now includes devops:designInfoProvider and devops:securityInfoProvider
|
|
17
|
+
- e6a3ab2: Adding new PKCE property to auth providers
|
|
18
|
+
- f7c39e1: Setup limit to max number of resource entries allowed
|
|
19
|
+
- ef0434d: Added support for multi-entry resources in UI Kit applications, enabling developers to define multiple entry points within a single resource.
|
|
20
|
+
- 55991a3: Update manifest definitions
|
|
21
|
+
- 2e44a71: Update manifest definitions
|
|
22
|
+
- c775d3d: Update manifest definitions
|
|
23
|
+
- c99451e: Update manifest definitions
|
|
24
|
+
|
|
25
|
+
## 12.8.0-next.7
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- f7c39e1: Setup limit to max number of resource entries allowed
|
|
30
|
+
|
|
3
31
|
## 12.8.0-next.6
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
|
@@ -32302,6 +32302,8 @@
|
|
|
32302
32302
|
},
|
|
32303
32303
|
"entry": {
|
|
32304
32304
|
"type": "object",
|
|
32305
|
+
"minProperties": 1,
|
|
32306
|
+
"maxProperties": 50,
|
|
32305
32307
|
"propertyNames": {
|
|
32306
32308
|
"pattern": "^[a-zA-Z0-9_-]+$",
|
|
32307
32309
|
"maxLength": 23
|