@adobe/helix-config 3.2.4 → 3.2.6
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 +14 -0
- package/package.json +3 -3
- package/src/config-view.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.2.6](https://github.com/adobe/helix-config/compare/v3.2.5...v3.2.6) (2024-06-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update adobe fixes ([#99](https://github.com/adobe/helix-config/issues/99)) ([e3127a7](https://github.com/adobe/helix-config/commit/e3127a73b1e32ddd3a7a25b9898204dea3d92450))
|
|
7
|
+
|
|
8
|
+
## [3.2.5](https://github.com/adobe/helix-config/compare/v3.2.4...v3.2.5) (2024-06-04)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* remove org users from site config ([#98](https://github.com/adobe/helix-config/issues/98)) ([ec7be79](https://github.com/adobe/helix-config/commit/ec7be790966d182917a0d3773acf35372ea4e0a1))
|
|
14
|
+
|
|
1
15
|
## [3.2.4](https://github.com/adobe/helix-config/compare/v3.2.3...v3.2.4) (2024-06-01)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-config",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.6",
|
|
4
4
|
"description": "Helix Config",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@adobe/fetch": "4.1.3",
|
|
62
|
-
"@adobe/helix-shared-config": "10.4.
|
|
63
|
-
"@adobe/helix-shared-git": "3.0.
|
|
62
|
+
"@adobe/helix-shared-config": "10.4.6",
|
|
63
|
+
"@adobe/helix-shared-git": "3.0.10",
|
|
64
64
|
"@adobe/helix-shared-storage": "1.0.2",
|
|
65
65
|
"@adobe/helix-shared-utils": "3.0.2",
|
|
66
66
|
"ajv": "8.14.0",
|
package/src/config-view.js
CHANGED
|
@@ -385,7 +385,6 @@ export async function getConfigResponse(ctx, opts) {
|
|
|
385
385
|
...config.content.source,
|
|
386
386
|
},
|
|
387
387
|
};
|
|
388
|
-
computeAdminRoles(adminConfig, orgConfig);
|
|
389
388
|
delete adminConfig.public;
|
|
390
389
|
delete adminConfig.robots;
|
|
391
390
|
return new PipelineResponse(JSON.stringify(adminConfig, null, 2), {
|