@adobe/helix-config 4.13.0 → 4.14.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,17 @@
1
+ ## [4.14.1](https://github.com/adobe/helix-config/compare/v4.14.0...v4.14.1) (2025-02-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @adobe/helix-shared-config to v11.1.0 ([#244](https://github.com/adobe/helix-config/issues/244)) ([128e654](https://github.com/adobe/helix-config/commit/128e65459d7fc7622b4fd680b8ddd05d2a16336b))
7
+
8
+ # [4.14.0](https://github.com/adobe/helix-config/compare/v4.13.0...v4.14.0) (2025-02-11)
9
+
10
+
11
+ ### Features
12
+
13
+ * include features and limits to responses ([#242](https://github.com/adobe/helix-config/issues/242)) ([c7500b8](https://github.com/adobe/helix-config/commit/c7500b83a44f8479a9a70a43850fabc83294a60c)), closes [#9](https://github.com/adobe/helix-config/issues/9)
14
+
1
15
  # [4.13.0](https://github.com/adobe/helix-config/compare/v4.12.1...v4.13.0) (2025-01-21)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config",
3
- "version": "4.13.0",
3
+ "version": "4.14.1",
4
4
  "description": "Helix Config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -35,7 +35,7 @@
35
35
  "reporter-options": "configFile=.mocha-multi.json"
36
36
  },
37
37
  "devDependencies": {
38
- "@adobe/eslint-config-helix": "2.0.8",
38
+ "@adobe/eslint-config-helix": "2.0.9",
39
39
  "@semantic-release/changelog": "6.0.3",
40
40
  "@semantic-release/git": "10.0.1",
41
41
  "@semantic-release/npm": "12.0.1",
@@ -43,12 +43,12 @@
43
43
  "eslint": "8.57.1",
44
44
  "husky": "9.1.7",
45
45
  "junit-report-builder": "5.1.1",
46
- "lint-staged": "15.4.1",
47
- "mocha": "11.0.1",
46
+ "lint-staged": "15.4.3",
47
+ "mocha": "11.1.0",
48
48
  "mocha-multi-reporters": "1.5.1",
49
49
  "mocha-suppress-logs": "0.5.1",
50
50
  "nock": "13.5.6",
51
- "semantic-release": "24.2.1"
51
+ "semantic-release": "24.2.3"
52
52
  },
53
53
  "lint-staged": {
54
54
  "*.js": "eslint",
@@ -56,7 +56,7 @@
56
56
  },
57
57
  "dependencies": {
58
58
  "@adobe/fetch": "4.1.11",
59
- "@adobe/helix-shared-config": "11.0.15",
59
+ "@adobe/helix-shared-config": "11.1.0",
60
60
  "@adobe/helix-shared-utils": "3.0.2"
61
61
  }
62
62
  }
@@ -35,6 +35,8 @@ const ROOT_PROPERTIES = {
35
35
  secrets: {},
36
36
  public: {},
37
37
  groups: {},
38
+ features: {},
39
+ limits: {},
38
40
  };
39
41
 
40
42
  const FORCED_TYPES = {
@@ -582,6 +582,12 @@ export async function getConfigResponse(ctx, opts) {
582
582
  legacy: config.legacy,
583
583
  lastModified: siteConfig.lastModified,
584
584
  };
585
+ if (config.features) {
586
+ pipelineConfig.features = config.features;
587
+ }
588
+ if (config.limits) {
589
+ pipelineConfig.limits = config.limits;
590
+ }
585
591
  return new PipelineResponse(JSON.stringify(pipelineConfig, null, 2), {
586
592
  headers: {
587
593
  'content-type': 'application/json',