@adobe/helix-config 5.10.1 → 5.10.3

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
+ ## [5.10.3](https://github.com/adobe/helix-config/compare/v5.10.2...v5.10.3) (2026-05-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * keep created when merging profile ([#381](https://github.com/adobe/helix-config/issues/381)) ([77b65c0](https://github.com/adobe/helix-config/commit/77b65c06d87200ac161d86227cdcec29fc08bb70))
7
+
8
+ ## [5.10.2](https://github.com/adobe/helix-config/compare/v5.10.1...v5.10.2) (2026-05-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * add site config created prop to pipeline scope ([#380](https://github.com/adobe/helix-config/issues/380)) ([e36503a](https://github.com/adobe/helix-config/commit/e36503a20d7f645109ff60505404ebb896b2413a))
14
+
1
15
  ## [5.10.1](https://github.com/adobe/helix-config/compare/v5.10.0...v5.10.1) (2026-03-16)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config",
3
- "version": "5.10.1",
3
+ "version": "5.10.3",
4
4
  "description": "Helix Config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -35,16 +35,16 @@
35
35
  "reporter-options": "configFile=.mocha-multi.json"
36
36
  },
37
37
  "devDependencies": {
38
- "@adobe/eslint-config-helix": "3.0.21",
39
- "@eslint/config-helpers": "0.5.2",
38
+ "@adobe/eslint-config-helix": "3.0.27",
39
+ "@eslint/config-helpers": "0.5.5",
40
40
  "@semantic-release/changelog": "6.0.3",
41
41
  "@semantic-release/git": "10.0.1",
42
- "@semantic-release/npm": "13.1.4",
42
+ "@semantic-release/npm": "13.1.5",
43
43
  "c8": "11.0.0",
44
44
  "eslint": "9.4.0",
45
45
  "husky": "9.1.7",
46
- "junit-report-builder": "5.1.1",
47
- "lint-staged": "16.2.7",
46
+ "junit-report-builder": "5.1.2",
47
+ "lint-staged": "16.4.0",
48
48
  "mocha": "11.7.5",
49
49
  "mocha-multi-reporters": "1.5.1",
50
50
  "mocha-suppress-logs": "0.6.0",
@@ -18,6 +18,7 @@ export declare class PipelineResponse {
18
18
  constructor(body?:string, init?:PipelineResponseInit);
19
19
  status: number;
20
20
  body: string;
21
+ json(): object;
21
22
  headers: Map<string, string>;
22
23
  error: any;
23
24
  }
@@ -39,6 +39,7 @@ const ROOT_PROPERTIES = {
39
39
  features: {},
40
40
  limits: {},
41
41
  apiKeys: {},
42
+ created: { atomic: true },
42
43
  };
43
44
 
44
45
  const FORCED_TYPES = {
@@ -773,6 +773,7 @@ export async function getConfigResponse(ctx, opts) {
773
773
  access: config.access,
774
774
  legacy: config.legacy,
775
775
  lastModified: siteConfig.lastModified,
776
+ created: config.created,
776
777
  trustedHosts: computeTrustedHosts(org, site, config),
777
778
  };
778
779
  if (config.features) {