@adobe/helix-html-pipeline 6.30.0 → 6.30.1

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.30.1](https://github.com/adobe/helix-html-pipeline/compare/v6.30.0...v6.30.1) (2026-08-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **sitemap-index:** static version in code, dynamic version in content ([#1125](https://github.com/adobe/helix-html-pipeline/issues/1125)) ([5c76a06](https://github.com/adobe/helix-html-pipeline/commit/5c76a060b3ff5a1c198c565f256b3ee7a5bbbc0b))
7
+
1
8
  # [6.30.0](https://github.com/adobe/helix-html-pipeline/compare/v6.29.12...v6.30.0) (2026-08-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.30.0",
3
+ "version": "6.30.1",
4
4
  "description": "Helix HTML Pipeline",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -77,10 +77,12 @@ export async function sitemapIndexPipe(state, req) {
77
77
  try {
78
78
  await initConfig(state, req, res);
79
79
 
80
- // fetch sitemap.xml
80
+ // fetch sitemap-index.xml
81
81
  state.timer?.update('content-fetch');
82
+ state.content.sourceBus = 'code';
82
83
  await fetchContent(state, req, res);
83
84
  if (res.status === 404) {
85
+ state.content.sourceBus = 'content';
84
86
  const ret = await generateSitemapIndex(state);
85
87
  if (ret.status === 200) {
86
88
  res.status = 200;