@adobe/helix-config 2.3.2 → 2.3.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 +5 -5
- package/src/config-view.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.3.4](https://github.com/adobe/helix-config/compare/v2.3.3...v2.3.4) (2024-04-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @aws-sdk/client-s3 to v3.554.0 ([#44](https://github.com/adobe/helix-config/issues/44)) ([da0f561](https://github.com/adobe/helix-config/commit/da0f56137c15bd551c9c18df47854884aada9e1c))
|
|
7
|
+
|
|
8
|
+
## [2.3.3](https://github.com/adobe/helix-config/compare/v2.3.2...v2.3.3) (2024-04-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update external fixes ([#43](https://github.com/adobe/helix-config/issues/43)) ([5629ca4](https://github.com/adobe/helix-config/commit/5629ca4484b463bfe368904fc2f17aee4590a7b2))
|
|
14
|
+
|
|
1
15
|
## [2.3.2](https://github.com/adobe/helix-config/compare/v2.3.1...v2.3.2) (2024-04-08)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/helix-config",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "Helix Config",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"mocha": "10.4.0",
|
|
48
48
|
"mocha-multi-reporters": "1.5.1",
|
|
49
49
|
"nock": "13.5.4",
|
|
50
|
-
"semantic-release": "23.0.
|
|
50
|
+
"semantic-release": "23.0.8",
|
|
51
51
|
"xml2js": "0.6.2"
|
|
52
52
|
},
|
|
53
53
|
"lint-staged": {
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
"*.cjs": "eslint"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@adobe/fetch": "4.1.
|
|
59
|
-
"@adobe/helix-shared-config": "10.4.
|
|
58
|
+
"@adobe/fetch": "4.1.2",
|
|
59
|
+
"@adobe/helix-shared-config": "10.4.1",
|
|
60
60
|
"@adobe/helix-shared-process-queue": "3.0.3",
|
|
61
61
|
"@adobe/helix-shared-utils": "3.0.1",
|
|
62
|
-
"@aws-sdk/client-s3": "3.
|
|
62
|
+
"@aws-sdk/client-s3": "3.554.0",
|
|
63
63
|
"@aws-sdk/node-http-handler": "3.374.0",
|
|
64
64
|
"mime": "4.0.1"
|
|
65
65
|
}
|
package/src/config-view.js
CHANGED
|
@@ -249,7 +249,7 @@ export async function getConfigResponse(ctx, opts) {
|
|
|
249
249
|
return new PipelineResponse('', {
|
|
250
250
|
status: 404,
|
|
251
251
|
headers: {
|
|
252
|
-
'x-error': 'ref does not
|
|
252
|
+
'x-error': 'ref does not exist (no head.html)',
|
|
253
253
|
...surrogateHeaders,
|
|
254
254
|
},
|
|
255
255
|
});
|