@adobe/helix-config 5.6.10 → 5.6.11

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
+ ## [5.6.11](https://github.com/adobe/helix-config/compare/v5.6.10...v5.6.11) (2025-11-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * load head in delivery scope ([#334](https://github.com/adobe/helix-config/issues/334)) ([c3bba6d](https://github.com/adobe/helix-config/commit/c3bba6dc7b1e9d8c8954fde32625d5fea49246c9))
7
+
1
8
  ## [5.6.10](https://github.com/adobe/helix-config/compare/v5.6.9...v5.6.10) (2025-11-05)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config",
3
- "version": "5.6.10",
3
+ "version": "5.6.11",
4
4
  "description": "Helix Config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -336,9 +336,13 @@ async function resolveConfig(ctx, rso, scope) {
336
336
  config.robots = robots;
337
337
  }
338
338
  }
339
+ }
340
+ if (scope === SCOPE_PIPELINE || scope === SCOPE_RAW || scope === SCOPE_DELIVERY) {
341
+ // although not used in delivery, load in order to set correct last-modified
339
342
  ctx.timer?.update('head.html');
340
343
  config.head = await loadHeadHtml(ctx, config, rso.ref);
341
344
  }
345
+
342
346
  return site;
343
347
  }
344
348