@adobe/helix-html-pipeline 6.28.6 → 6.28.7

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
+ ## [6.28.7](https://github.com/adobe/helix-html-pipeline/compare/v6.28.6...v6.28.7) (2026-04-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * absolutify section metadata URLs relative to page path ([#1075](https://github.com/adobe/helix-html-pipeline/issues/1075)) ([#1076](https://github.com/adobe/helix-html-pipeline/issues/1076)) ([07cbacc](https://github.com/adobe/helix-html-pipeline/commit/07cbacc287cd4c5630098ff7b7f8a5eaa60d5954))
7
+
1
8
  ## [6.28.6](https://github.com/adobe/helix-html-pipeline/compare/v6.28.5...v6.28.6) (2026-04-14)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-html-pipeline",
3
- "version": "6.28.6",
3
+ "version": "6.28.7",
4
4
  "description": "Helix HTML Pipeline",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -191,7 +191,7 @@ export function getAbsoluteUrl(state, url) {
191
191
  if (typeof url !== 'string') {
192
192
  return null;
193
193
  }
194
- return resolveUrl(`https://${state.prodHost}/`, url);
194
+ return resolveUrl(`https://${state.prodHost}${state.info?.path || '/'}`, url);
195
195
  }
196
196
 
197
197
  /**