@adobe/helix-html-pipeline 6.26.7 → 6.26.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 +7 -0
- package/package.json +4 -4
- package/src/html-pipe.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.26.8](https://github.com/adobe/helix-html-pipeline/compare/v6.26.7...v6.26.8) (2025-09-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* metadata with multiple colons ([#937](https://github.com/adobe/helix-html-pipeline/issues/937)) ([71daa09](https://github.com/adobe/helix-html-pipeline/commit/71daa09374afbd58b0f6a5e0945663e2753f64e1))
|
|
7
|
+
|
|
1
8
|
## [6.26.7](https://github.com/adobe/helix-html-pipeline/compare/v6.26.6...v6.26.7) (2025-08-20)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-html-pipeline",
|
|
3
|
-
"version": "6.26.
|
|
3
|
+
"version": "6.26.8",
|
|
4
4
|
"description": "Helix HTML Pipeline",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -81,13 +81,13 @@
|
|
|
81
81
|
"eslint-import-resolver-exports": "1.0.0-beta.5",
|
|
82
82
|
"eslint-plugin-header": "3.1.1",
|
|
83
83
|
"eslint-plugin-import": "2.32.0",
|
|
84
|
-
"esmock": "2.7.
|
|
84
|
+
"esmock": "2.7.2",
|
|
85
85
|
"husky": "9.1.7",
|
|
86
86
|
"js-yaml": "4.1.0",
|
|
87
87
|
"jsdom": "26.1.0",
|
|
88
88
|
"junit-report-builder": "5.1.1",
|
|
89
|
-
"lint-staged": "16.1.
|
|
90
|
-
"mocha": "11.7.
|
|
89
|
+
"lint-staged": "16.1.6",
|
|
90
|
+
"mocha": "11.7.2",
|
|
91
91
|
"mocha-multi-reporters": "1.5.1",
|
|
92
92
|
"mocha-suppress-logs": "0.6.0",
|
|
93
93
|
"semantic-release": "24.2.7"
|
package/src/html-pipe.js
CHANGED
|
@@ -162,11 +162,11 @@ export async function htmlPipe(state, req) {
|
|
|
162
162
|
await unwrapSoleImages(state);
|
|
163
163
|
await html(state);
|
|
164
164
|
await rewriteUrls(state);
|
|
165
|
-
await rewriteIcons(state);
|
|
166
165
|
await fixSections(state);
|
|
167
166
|
await createPageBlocks(state);
|
|
168
167
|
await createPictures(state);
|
|
169
168
|
await extractMetaData(state, req);
|
|
169
|
+
await rewriteIcons(state);
|
|
170
170
|
await addHeadingIds(state);
|
|
171
171
|
await setCustomResponseHeaders(state, req, res);
|
|
172
172
|
await render(state, req, res);
|