@adobe/helix-config-storage 2.0.6 → 2.1.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,3 +1,16 @@
1
+ # [2.1.0](https://github.com/adobe/helix-config-storage/compare/v2.0.6...v2.1.0) (2025-03-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * address comments ([e30b646](https://github.com/adobe/helix-config-storage/commit/e30b6465ce23fe85726ee173cd3d94bdcf71e98e))
7
+ * remove escaped ([efc3ef4](https://github.com/adobe/helix-config-storage/commit/efc3ef4819fd89192f3b0b082135b11cbcc6e506))
8
+
9
+
10
+ ### Features
11
+
12
+ * support cdn.review.host for custom review origin ([b8ba6c5](https://github.com/adobe/helix-config-storage/commit/b8ba6c549238ba0328e2cb74aa24ee5b9f8b26be))
13
+
1
14
  ## [2.0.6](https://github.com/adobe/helix-config-storage/compare/v2.0.5...v2.0.6) (2025-03-05)
2
15
 
3
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config-storage",
3
- "version": "2.0.6",
3
+ "version": "2.1.0",
4
4
  "description": "Helix Config Storage",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -42,7 +42,7 @@
42
42
  "type": "object",
43
43
  "properties": {
44
44
  "host": {
45
- "description": "Sidekick config to override the default preview host. it supports parameters $owner and $repo",
45
+ "description": "Sidekick config to override the default previewHost. it supports parameters $owner and $repo",
46
46
  "examples": [
47
47
  "main--$repo--page.example.com"
48
48
  ],
@@ -58,9 +58,25 @@
58
58
  "type": "object",
59
59
  "properties": {
60
60
  "host": {
61
- "description": "Sidekick config to override the default live host. it supports parameters $owner and $repo",
61
+ "description": "Sidekick config to override the default liveHost. it supports parameters $owner and $repo",
62
62
  "examples": [
63
- "main--$repo--live.example.com\""
63
+ "main--$repo--live.example.com"
64
+ ],
65
+ "type": "string"
66
+ }
67
+ },
68
+ "required": [
69
+ "host"
70
+ ],
71
+ "additionalProperties": false
72
+ },
73
+ "review": {
74
+ "type": "object",
75
+ "properties": {
76
+ "host": {
77
+ "description": "Sidekick config to override the default reviewHost. it supports parameters $owner and $repo",
78
+ "examples": [
79
+ "example.reviews"
64
80
  ],
65
81
  "type": "string"
66
82
  }