@adobe/spacecat-shared-http-utils 1.17.0 → 1.17.2
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/auth/handlers/abstract.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-http-utils-v1.17.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.17.1...@adobe/spacecat-shared-http-utils-v1.17.2) (2025-09-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external major (major) ([#795](https://github.com/adobe/spacecat-shared/issues/795)) ([b020e88](https://github.com/adobe/spacecat-shared/commit/b020e884bfcad48667da87ad9caee7a3669e43d0))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-http-utils-v1.17.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.17.0...@adobe/spacecat-shared-http-utils-v1.17.1) (2025-09-06)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update external fixes ([#920](https://github.com/adobe/spacecat-shared/issues/920)) ([1a6b1e1](https://github.com/adobe/spacecat-shared/commit/1a6b1e1ac9531a41c86406ada4bd4ab903307fdc))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-http-utils-v1.17.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.16.0...@adobe/spacecat-shared-http-utils-v1.17.0) (2025-08-28)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spacecat-shared-http-utils",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.2",
|
|
4
4
|
"description": "Shared modules of the Spacecat Services - HTTP Utils",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"@adobe/fetch": "4.2.2",
|
|
38
38
|
"@adobe/spacecat-shared-data-access": "2.45.0",
|
|
39
39
|
"@adobe/spacecat-shared-utils": "1.26.4",
|
|
40
|
-
"jose": "6.0
|
|
40
|
+
"jose": "6.1.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@adobe/helix-shared-wrap": "2.0.2",
|
|
44
|
-
"chai": "
|
|
45
|
-
"chai-as-promised": "8.0.
|
|
46
|
-
"sinon": "
|
|
44
|
+
"chai": "6.0.1",
|
|
45
|
+
"chai-as-promised": "8.0.2",
|
|
46
|
+
"sinon": "21.0.0"
|
|
47
47
|
}
|
|
48
48
|
}
|
|
@@ -37,7 +37,7 @@ export default class AbstractHandler {
|
|
|
37
37
|
* @return {Promise<AuthInfo|null>} The authentication info
|
|
38
38
|
* or null if the request is not authenticated
|
|
39
39
|
*/
|
|
40
|
-
// eslint-disable-next-line
|
|
40
|
+
// eslint-disable-next-line no-unused-vars,class-methods-use-this
|
|
41
41
|
async checkAuth(request, context) {
|
|
42
42
|
throw new Error('checkAuth method must be implemented');
|
|
43
43
|
}
|