@adobe/helix-html-pipeline 6.26.4 → 6.26.6

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,17 @@
1
+ ## [6.26.6](https://github.com/adobe/helix-html-pipeline/compare/v6.26.5...v6.26.6) (2025-07-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency parse5 to v8 ([#912](https://github.com/adobe/helix-html-pipeline/issues/912)) ([2d27ec6](https://github.com/adobe/helix-html-pipeline/commit/2d27ec67aa56d7be276003ee22d065611c9116f8))
7
+
8
+ ## [6.26.5](https://github.com/adobe/helix-html-pipeline/compare/v6.26.4...v6.26.5) (2025-07-17)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * don't replace 3 spaces in metadata value with comma ([ddb1c8e](https://github.com/adobe/helix-html-pipeline/commit/ddb1c8e3e2de92265b7a5f545cc73c94059ec31f))
14
+
1
15
  ## [6.26.4](https://github.com/adobe/helix-html-pipeline/compare/v6.26.3...v6.26.4) (2025-07-11)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-html-pipeline",
3
- "version": "6.26.4",
3
+ "version": "6.26.6",
4
4
  "description": "Helix HTML Pipeline",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -56,7 +56,7 @@
56
56
  "mdast-util-to-hast": "13.2.0",
57
57
  "mdast-util-to-string": "4.0.0",
58
58
  "mime": "4.0.7",
59
- "parse5": "7.3.0",
59
+ "parse5": "8.0.0",
60
60
  "rehype-format": "5.0.1",
61
61
  "rehype-parse": "9.0.1",
62
62
  "remark-parse": "11.0.0",
@@ -90,7 +90,7 @@
90
90
  "mocha": "11.7.1",
91
91
  "mocha-multi-reporters": "1.5.1",
92
92
  "mocha-suppress-logs": "0.6.0",
93
- "semantic-release": "24.2.6"
93
+ "semantic-release": "24.2.7"
94
94
  },
95
95
  "lint-staged": {
96
96
  "*.js": "eslint",
@@ -70,7 +70,7 @@ function readBlockConfig($block) {
70
70
 
71
71
  if (!value) {
72
72
  // for text content only
73
- value = toString($value).trim().replace(/ {3}/g, ',');
73
+ value = toString($value).trim();
74
74
  }
75
75
 
76
76
  if (!value) {