@adobe/helix-config 5.10.1 → 5.10.2
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 +6 -6
- package/src/config-view.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [5.10.2](https://github.com/adobe/helix-config/compare/v5.10.1...v5.10.2) (2026-05-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 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))
|
|
7
|
+
|
|
1
8
|
## [5.10.1](https://github.com/adobe/helix-config/compare/v5.10.0...v5.10.1) (2026-03-16)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-config",
|
|
3
|
-
"version": "5.10.
|
|
3
|
+
"version": "5.10.2",
|
|
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.
|
|
39
|
-
"@eslint/config-helpers": "0.5.
|
|
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.
|
|
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.
|
|
47
|
-
"lint-staged": "16.
|
|
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",
|
package/src/config-view.js
CHANGED
|
@@ -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) {
|