@adobe/helix-config 2.5.2 → 2.5.4
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 +7 -3
- package/src/config-view.js +1 -0
- package/src/storage/storage.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.5.4](https://github.com/adobe/helix-config/compare/v2.5.3...v2.5.4) (2024-04-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* include public config in pipeline ([#51](https://github.com/adobe/helix-config/issues/51)) ([67e95b5](https://github.com/adobe/helix-config/commit/67e95b56b96e68eba468543b41266b42df9b2ad2))
|
|
7
|
+
|
|
8
|
+
## [2.5.3](https://github.com/adobe/helix-config/compare/v2.5.2...v2.5.3) (2024-04-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** now using @smithy/note-httphandler ([#49](https://github.com/adobe/helix-config/issues/49)) ([a94c016](https://github.com/adobe/helix-config/commit/a94c016fcc6c078346eee6051e52487133e23f03))
|
|
14
|
+
|
|
1
15
|
## [2.5.2](https://github.com/adobe/helix-config/compare/v2.5.1...v2.5.2) (2024-04-17)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-config",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
4
|
"description": "Helix Config",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -28,7 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/adobe/helix-config#readme",
|
|
30
30
|
"mocha": {
|
|
31
|
-
"require":
|
|
31
|
+
"require": [
|
|
32
|
+
"test/setup-env.js",
|
|
33
|
+
"mocha-suppress-logs"
|
|
34
|
+
],
|
|
32
35
|
"recursive": "true",
|
|
33
36
|
"reporter": "mocha-multi-reporters",
|
|
34
37
|
"reporter-options": "configFile=.mocha-multi.json"
|
|
@@ -46,6 +49,7 @@
|
|
|
46
49
|
"lint-staged": "15.2.2",
|
|
47
50
|
"mocha": "10.4.0",
|
|
48
51
|
"mocha-multi-reporters": "1.5.1",
|
|
52
|
+
"mocha-suppress-logs": "0.5.1",
|
|
49
53
|
"nock": "13.5.4",
|
|
50
54
|
"semantic-release": "23.0.8",
|
|
51
55
|
"xml2js": "0.6.2"
|
|
@@ -60,7 +64,7 @@
|
|
|
60
64
|
"@adobe/helix-shared-process-queue": "3.0.4",
|
|
61
65
|
"@adobe/helix-shared-utils": "3.0.2",
|
|
62
66
|
"@aws-sdk/client-s3": "3.554.0",
|
|
63
|
-
"@
|
|
67
|
+
"@smithy/node-http-handler": "2.5.0",
|
|
64
68
|
"mime": "4.0.1"
|
|
65
69
|
}
|
|
66
70
|
}
|
package/src/config-view.js
CHANGED
|
@@ -287,6 +287,7 @@ export async function getConfigResponse(ctx, opts) {
|
|
|
287
287
|
metadata: config.metadata,
|
|
288
288
|
cdn: config.cdn,
|
|
289
289
|
folders: config.folders,
|
|
290
|
+
public: config.public,
|
|
290
291
|
};
|
|
291
292
|
return new PipelineResponse(JSON.stringify(pipelineConfig, null, 2), {
|
|
292
293
|
headers: {
|
package/src/storage/storage.js
CHANGED
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
PutObjectCommand,
|
|
25
25
|
S3Client,
|
|
26
26
|
} from '@aws-sdk/client-s3';
|
|
27
|
-
import { NodeHttpHandler } from '@
|
|
27
|
+
import { NodeHttpHandler } from '@smithy/node-http-handler';
|
|
28
28
|
import { Response } from '@adobe/fetch';
|
|
29
29
|
import mime from 'mime';
|
|
30
30
|
import processQueue from '@adobe/helix-shared-process-queue';
|