@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 +7 -0
- package/package.json +1 -1
- package/src/config-view.js +4 -0
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
package/src/config-view.js
CHANGED
|
@@ -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
|
}
|