@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 +7 -0
- package/package.json +1 -1
- package/src/config-view.js +1 -1
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
package/src/config-view.js
CHANGED
|
@@ -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
|
|
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
|
}
|