@forge/manifest 11.0.0-next.8 → 11.0.0-next.9

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,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 11.0.0-next.9
4
+
5
+ ### Minor Changes
6
+
7
+ - 88238e7: updated regex for container tags validation
8
+
3
9
  ## 11.0.0-next.8
4
10
 
5
11
  ### Patch Changes
@@ -28912,9 +28912,9 @@
28912
28912
  },
28913
28913
  "tag": {
28914
28914
  "type": "string",
28915
- "maxLength": 128,
28915
+ "maxLength": 127,
28916
28916
  "minLength": 1,
28917
- "pattern": "^[\\w][\\w.-]{0,127}$"
28917
+ "pattern": "^[a-zA-Z0-9]([a-zA-Z0-9-_.]{0,125}[a-zA-Z0-9])?$"
28918
28918
  },
28919
28919
  "health": {
28920
28920
  "$ref": "#/definitions/ContainerHealthSchema",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "11.0.0-next.8",
3
+ "version": "11.0.0-next.9",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {