@adobe/helix-config 4.7.1 → 4.8.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
+ # [4.8.0](https://github.com/adobe/helix-config/compare/v4.7.1...v4.8.0) (2024-11-14)
2
+
3
+
4
+ ### Features
5
+
6
+ * include profile information in admin scope ([#214](https://github.com/adobe/helix-config/issues/214)) ([ecd43b2](https://github.com/adobe/helix-config/commit/ecd43b20271d60dd3c4deb57e116a25955548bb2))
7
+
1
8
  ## [4.7.1](https://github.com/adobe/helix-config/compare/v4.7.0...v4.7.1) (2024-11-14)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config",
3
- "version": "4.7.1",
3
+ "version": "4.8.0",
4
4
  "description": "Helix Config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -427,7 +427,7 @@ export async function getConfigResponse(ctx, opts) {
427
427
  }
428
428
 
429
429
  const config = siteConfig.data;
430
- if (scope !== SCOPE_RAW) {
430
+ if (scope === SCOPE_PIPELINE || config.extends?.profile === 'default') {
431
431
  delete config.extends;
432
432
  }
433
433