@adobe/helix-html-pipeline 6.28.6 → 6.28.8
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 +14 -0
- package/package.json +2 -2
- package/src/steps/utils.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [6.28.8](https://github.com/adobe/helix-html-pipeline/compare/v6.28.7...v6.28.8) (2026-04-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @adobe/remark-gridtables to v3.0.20 ([#1077](https://github.com/adobe/helix-html-pipeline/issues/1077)) ([a56e037](https://github.com/adobe/helix-html-pipeline/commit/a56e0377480da472de26c0f815c3bad5b54e52a3))
|
|
7
|
+
|
|
8
|
+
## [6.28.7](https://github.com/adobe/helix-html-pipeline/compare/v6.28.6...v6.28.7) (2026-04-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* 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))
|
|
14
|
+
|
|
1
15
|
## [6.28.6](https://github.com/adobe/helix-html-pipeline/compare/v6.28.5...v6.28.6) (2026-04-14)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-html-pipeline",
|
|
3
|
-
"version": "6.28.
|
|
3
|
+
"version": "6.28.8",
|
|
4
4
|
"description": "Helix HTML Pipeline",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@adobe/helix-markdown-support": "7.1.18",
|
|
46
46
|
"@adobe/helix-shared-utils": "3.0.2",
|
|
47
47
|
"@adobe/mdast-util-gridtables": "4.0.19",
|
|
48
|
-
"@adobe/remark-gridtables": "3.0.
|
|
48
|
+
"@adobe/remark-gridtables": "3.0.20",
|
|
49
49
|
"github-slugger": "2.0.0",
|
|
50
50
|
"hast-util-raw": "9.1.0",
|
|
51
51
|
"hast-util-select": "6.0.4",
|
package/src/steps/utils.js
CHANGED
|
@@ -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}
|
|
194
|
+
return resolveUrl(`https://${state.prodHost}${state.info?.path || '/'}`, url);
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
/**
|