@forge/manifest 4.8.1-next.0 → 4.9.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
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0fc09ac: Regex pattern changed for custom entity name to be same as in ESS and XLS
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- a302f62: Update manifest definitions
|
|
12
|
+
|
|
13
|
+
## 4.9.0-next.1
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 0fc09ac: Regex pattern changed for custom entity name to be same as in ESS and XLS
|
|
18
|
+
|
|
3
19
|
## 4.8.1-next.0
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"name": {
|
|
114
114
|
"description": "A name for the entity. Must be unique within the manifest and have a maximum of 60 characters.",
|
|
115
115
|
"type": "string",
|
|
116
|
-
"pattern": "^[a-
|
|
116
|
+
"pattern": "^[a-zA-Z0-9]+$",
|
|
117
117
|
"minLength": 3,
|
|
118
118
|
"maxLength": 60
|
|
119
119
|
},
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"name": {
|
|
114
114
|
"description": "A name for the entity. Must be unique within the manifest and have a maximum of 60 characters.",
|
|
115
115
|
"type": "string",
|
|
116
|
-
"pattern": "^[a-
|
|
116
|
+
"pattern": "^[a-zA-Z0-9]+$",
|
|
117
117
|
"minLength": 3,
|
|
118
118
|
"maxLength": 60
|
|
119
119
|
},
|