@adobe/helix-html-pipeline 6.25.0 → 6.25.2

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.25.2](https://github.com/adobe/helix-html-pipeline/compare/v6.25.1...v6.25.2) (2025-04-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency parse5 to v7.3.0 ([#860](https://github.com/adobe/helix-html-pipeline/issues/860)) ([85716c8](https://github.com/adobe/helix-html-pipeline/commit/85716c8d1ad1fc8a67ed8b400c75ae14ad074412))
7
+
8
+ ## [6.25.1](https://github.com/adobe/helix-html-pipeline/compare/v6.25.0...v6.25.1) (2025-04-20)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **sitemap:** helix 5 projects live in aem.page/aem.live ([#858](https://github.com/adobe/helix-html-pipeline/issues/858)) ([04efa44](https://github.com/adobe/helix-html-pipeline/commit/04efa44f162e31a343d49e5e125792865f33cadb))
14
+
1
15
  # [6.25.0](https://github.com/adobe/helix-html-pipeline/compare/v6.24.3...v6.25.0) (2025-04-09)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-html-pipeline",
3
- "version": "6.25.0",
3
+ "version": "6.25.2",
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.2.1",
59
+ "parse5": "7.3.0",
60
60
  "rehype-format": "5.0.1",
61
61
  "rehype-parse": "9.0.1",
62
62
  "remark-parse": "11.0.0",
@@ -83,9 +83,9 @@
83
83
  "esmock": "2.7.0",
84
84
  "husky": "9.1.7",
85
85
  "js-yaml": "4.1.0",
86
- "jsdom": "26.0.0",
86
+ "jsdom": "26.1.0",
87
87
  "junit-report-builder": "5.1.1",
88
- "lint-staged": "15.5.0",
88
+ "lint-staged": "15.5.1",
89
89
  "mocha": "11.1.0",
90
90
  "mocha-multi-reporters": "1.5.1",
91
91
  "mocha-suppress-logs": "0.5.1",
@@ -41,8 +41,8 @@ async function generateSitemap(state) {
41
41
  throw new PipelineStatusError(404, 'Expected \'data\' array not found in /sitemap.json');
42
42
  }
43
43
  const host = partition === 'preview'
44
- ? (previewHost || `${ref}--${repo}--${owner}.hlx.page`)
45
- : (prodHost || liveHost || `${ref}--${repo}--${owner}.hlx.live`);
44
+ ? (previewHost || `${ref}--${repo}--${owner}.aem.page`)
45
+ : (prodHost || liveHost || `${ref}--${repo}--${owner}.aem.live`);
46
46
  const loc = ({ path, lastModified }) => ` <url>
47
47
  <loc>https://${host}${escape(path)}</loc>
48
48
  <lastmod>${new Date(lastModified * 1000).toISOString().substring(0, 10)}</lastmod>