@adobe/helix-config 2.5.1 → 2.5.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
+ ## [2.5.3](https://github.com/adobe/helix-config/compare/v2.5.2...v2.5.3) (2024-04-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** now using @smithy/note-httphandler ([#49](https://github.com/adobe/helix-config/issues/49)) ([a94c016](https://github.com/adobe/helix-config/commit/a94c016fcc6c078346eee6051e52487133e23f03))
7
+
8
+ ## [2.5.2](https://github.com/adobe/helix-config/compare/v2.5.1...v2.5.2) (2024-04-17)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update adobe fixes ([cc232a3](https://github.com/adobe/helix-config/commit/cc232a3291ffa3c23ffdee5166008abb5c10b8de))
14
+
1
15
  ## [2.5.1](https://github.com/adobe/helix-config/compare/v2.5.0...v2.5.1) (2024-04-16)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config",
3
- "version": "2.5.1",
3
+ "version": "2.5.3",
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": "test/setup-env.js",
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"
@@ -56,11 +60,11 @@
56
60
  },
57
61
  "dependencies": {
58
62
  "@adobe/fetch": "4.1.2",
59
- "@adobe/helix-shared-config": "10.4.1",
60
- "@adobe/helix-shared-process-queue": "3.0.3",
61
- "@adobe/helix-shared-utils": "3.0.1",
63
+ "@adobe/helix-shared-config": "10.4.2",
64
+ "@adobe/helix-shared-process-queue": "3.0.4",
65
+ "@adobe/helix-shared-utils": "3.0.2",
62
66
  "@aws-sdk/client-s3": "3.554.0",
63
- "@aws-sdk/node-http-handler": "3.374.0",
67
+ "@smithy/node-http-handler": "2.5.0",
64
68
  "mime": "4.0.1"
65
69
  }
66
70
  }
@@ -24,7 +24,7 @@ import {
24
24
  PutObjectCommand,
25
25
  S3Client,
26
26
  } from '@aws-sdk/client-s3';
27
- import { NodeHttpHandler } from '@aws-sdk/node-http-handler';
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';