@adobe/spacecat-shared-http-utils 1.7.3 → 1.9.0

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
+ # [@adobe/spacecat-shared-http-utils-v1.9.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.8.0...@adobe/spacecat-shared-http-utils-v1.9.0) (2024-12-23)
2
+
3
+
4
+ ### Features
5
+
6
+ * latest audit entity ([#503](https://github.com/adobe/spacecat-shared/issues/503)) ([2d01b09](https://github.com/adobe/spacecat-shared/commit/2d01b0969c0c046cdbffa480f8e40991e5abf91e))
7
+
8
+ # [@adobe/spacecat-shared-http-utils-v1.8.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.7.3...@adobe/spacecat-shared-http-utils-v1.8.0) (2024-12-18)
9
+
10
+
11
+ ### Features
12
+
13
+ * migrate entities to electrodb ([#484](https://github.com/adobe/spacecat-shared/issues/484)) ([e9a6310](https://github.com/adobe/spacecat-shared/commit/e9a6310dbdea4d44562432b794aa1e287ba9428d))
14
+
1
15
  # [@adobe/spacecat-shared-http-utils-v1.7.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.7.2...@adobe/spacecat-shared-http-utils-v1.7.3) (2024-12-07)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-http-utils",
3
- "version": "1.7.3",
3
+ "version": "1.9.0",
4
4
  "description": "Shared modules of the Spacecat Services - HTTP Utils",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": ">=20.0.0 <23.0.0",
8
- "npm": ">=10.0.0 <11.0.0"
8
+ "npm": ">=10.0.0 <12.0.0"
9
9
  },
10
10
  "main": "src/index.js",
11
11
  "types": "src/index.d.ts",
@@ -34,8 +34,8 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@adobe/fetch": "4.1.11",
37
- "@adobe/spacecat-shared-utils": "1.22.4",
38
- "@adobe/spacecat-shared-data-access": "1.50.0",
37
+ "@adobe/spacecat-shared-utils": "1.24.1",
38
+ "@adobe/spacecat-shared-data-access": "1.60.3",
39
39
  "jose": "5.9.6"
40
40
  },
41
41
  "devDependencies": {
@@ -72,7 +72,7 @@ export default class AuthenticationManager {
72
72
  /**
73
73
  * Create an instance of AuthenticationManager.
74
74
  * @param {Array<AbstractHandler>} handlers - The handlers to be used for authentication
75
- * @param {Object} log - The logger object
75
+ * @param {Object} log - The log object
76
76
  * @return {AuthenticationManager} The authentication manager
77
77
  */
78
78
  static create(handlers, log) {