@forge/manifest 4.8.0 → 4.9.0-next.1

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,17 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 4.9.0-next.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 0fc09ac: Regex pattern changed for custom entity name to be same as in ESS and XLS
8
+
9
+ ## 4.8.1-next.0
10
+
11
+ ### Patch Changes
12
+
13
+ - a302f62: Update manifest definitions
14
+
3
15
  ## 4.8.0
4
16
 
5
17
  ### Minor 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-z]+$",
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-z]+$",
116
+ "pattern": "^[a-zA-Z0-9]+$",
117
117
  "minLength": 3,
118
118
  "maxLength": 60
119
119
  },
@@ -87,6 +87,7 @@
87
87
  "manage:servicedesk-customer",
88
88
  "project-admin:connect-jira",
89
89
  "read:account",
90
+ "read:account:brie",
90
91
  "read:analytics.content:confluence",
91
92
  "read:application-role:jira",
92
93
  "read:attachment:confluence",
@@ -138,7 +139,6 @@
138
139
  "read:field.default-value:jira",
139
140
  "read:field.option:jira",
140
141
  "read:field.options:jira",
141
- "read:file:brie",
142
142
  "read:filter:jira",
143
143
  "read:filter.column:jira",
144
144
  "read:filter.default-share-scope:jira",
@@ -183,7 +183,6 @@
183
183
  "read:label:jira",
184
184
  "read:license:jira",
185
185
  "read:me",
186
- "read:media:brie",
187
186
  "read:metric:compass",
188
187
  "read:notification-scheme:jira",
189
188
  "read:object:cmdb",
@@ -310,7 +309,6 @@
310
309
  "write:field:jira",
311
310
  "write:field.default-value:jira",
312
311
  "write:field.option:jira",
313
- "write:file:brie",
314
312
  "write:filter:jira",
315
313
  "write:filter.column:jira",
316
314
  "write:filter.default-share-scope:jira",
@@ -336,7 +334,6 @@
336
334
  "write:issue.watcher:jira",
337
335
  "write:jira-work",
338
336
  "write:label:confluence",
339
- "write:media:brie",
340
337
  "write:membership:teams",
341
338
  "write:metric:compass",
342
339
  "write:organization:jira-service-management",
@@ -385,7 +382,7 @@
385
382
  "write:space.property:confluence",
386
383
  "write:space.setting:confluence",
387
384
  "write:sprint:jira-software",
388
- "write:task:brie",
385
+ "write:storage:brie",
389
386
  "write:task:confluence",
390
387
  "write:team:teams",
391
388
  "write:template:confluence",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "4.8.0",
3
+ "version": "4.9.0-next.1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {