@adobe/helix-config 5.9.0 → 5.9.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,3 +1,10 @@
1
+ ## [5.9.1](https://github.com/adobe/helix-config/compare/v5.9.0...v5.9.1) (2026-01-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * trust custom review host ([#350](https://github.com/adobe/helix-config/issues/350)) ([6ec7d2d](https://github.com/adobe/helix-config/commit/6ec7d2d5d85f186df3c5adc6980f4e7923378817))
7
+
1
8
  # [5.9.0](https://github.com/adobe/helix-config/compare/v5.8.0...v5.9.0) (2026-01-07)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config",
3
- "version": "5.9.0",
3
+ "version": "5.9.1",
4
4
  "description": "Helix Config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -573,6 +573,10 @@ function computeTrustedHosts(org, site, siteConfig) {
573
573
  trustedHosts.push(siteConfig.cdn.preview.host);
574
574
  }
575
575
 
576
+ if (siteConfig.cdn?.review?.host) {
577
+ trustedHosts.push(siteConfig.cdn.review.host);
578
+ }
579
+
576
580
  if (siteConfig.cdn?.live?.host) {
577
581
  trustedHosts.push(siteConfig.cdn.live.host);
578
582
  }