@adobe/spacecat-shared-http-utils 1.17.5 → 1.17.7
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.17.7](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.17.6...@adobe/spacecat-shared-http-utils-v1.17.7) (2025-10-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* allow more group to have admin user ([#1026](https://github.com/adobe/spacecat-shared/issues/1026)) ([512066c](https://github.com/adobe/spacecat-shared/commit/512066cf52cbfc6e386cc4b636d7187fd4980325))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-http-utils-v1.17.6](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.17.5...@adobe/spacecat-shared-http-utils-v1.17.6) (2025-09-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* remove unnecessary logs to reduce Coralogix usage ([#947](https://github.com/adobe/spacecat-shared/issues/947)) ([c93fa4f](https://github.com/adobe/spacecat-shared/commit/c93fa4f69238106caa0f8150df029e4535c99e39))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-http-utils-v1.17.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.17.4...@adobe/spacecat-shared-http-utils-v1.17.5) (2025-09-24)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -65,7 +65,7 @@ export default class AuthenticationManager {
|
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
this.log.
|
|
68
|
+
this.log.debug('No authentication handler was able to authenticate the request');
|
|
69
69
|
throw new NotAuthenticatedError();
|
|
70
70
|
}
|
|
71
71
|
|
package/src/auth/handlers/ims.js
CHANGED
|
@@ -43,6 +43,12 @@ const ADMIN_GROUP_IDENT = {
|
|
|
43
43
|
879529884, // IMS admin group for prod
|
|
44
44
|
901092291, // IMS admin group for on call engineers
|
|
45
45
|
],
|
|
46
|
+
'42A126776407096B0A495E50': [
|
|
47
|
+
945801205, // IMS admin group for reference demo org users
|
|
48
|
+
],
|
|
49
|
+
'38931D6666E3ECDA0A495E80': [
|
|
50
|
+
945802231, // IMS admin group for AEM Showcase org users
|
|
51
|
+
],
|
|
46
52
|
};
|
|
47
53
|
const SERVICE_CODE = 'dx_aem_perf';
|
|
48
54
|
const loadConfig = (context) => {
|