@adobe/helix-config 5.2.0 → 5.3.0

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.3.0](https://github.com/adobe/helix-config/compare/v5.2.0...v5.3.0) (2025-04-10)
2
+
3
+
4
+ ### Features
5
+
6
+ * add repo _head surrogate key for all scopes ([#264](https://github.com/adobe/helix-config/issues/264)) ([1a85c22](https://github.com/adobe/helix-config/commit/1a85c228aa4d4489f42d5edf5b8095097ec7362f))
7
+
1
8
  # [5.2.0](https://github.com/adobe/helix-config/compare/v5.1.3...v5.2.0) (2025-04-09)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config",
3
- "version": "5.2.0",
3
+ "version": "5.3.0",
4
4
  "description": "Helix Config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -346,7 +346,7 @@ async function getSurrogateKey(opts, config) {
346
346
  ];
347
347
  if (site) {
348
348
  keys.push(await computeSurrogateKey(`${site}--${org}_config.json`));
349
- if (config?.code?.owner && config?.code?.repo && opts.scope === SCOPE_PIPELINE) {
349
+ if (config?.code?.owner && config?.code?.repo) {
350
350
  keys.push(`${opts.ref}--${config.code.repo}--${config.code.owner}_head`);
351
351
  }
352
352
  }