@adobe/spacecat-shared-utils 1.112.4 → 1.112.5
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 +6 -0
- package/package.json +1 -1
- package/src/cdn-helpers.js +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-utils-v1.112.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.112.4...@adobe/spacecat-shared-utils-v1.112.5) (2026-04-10)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* byocdn-imperva shows correct config ([#1529](https://github.com/adobe/spacecat-shared/issues/1529)) ([8aaaf1d](https://github.com/adobe/spacecat-shared/commit/8aaaf1df7b5081184f9f6c3824b915f260c0d898))
|
|
6
|
+
|
|
1
7
|
## [@adobe/spacecat-shared-utils-v1.112.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.112.3...@adobe/spacecat-shared-utils-v1.112.4) (2026-04-09)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/package.json
CHANGED
package/src/cdn-helpers.js
CHANGED
|
@@ -189,13 +189,12 @@ const CDN_TRANSFORMATIONS = {
|
|
|
189
189
|
'byocdn-imperva': (payload) => ({
|
|
190
190
|
'Log integration mode': 'Push mode',
|
|
191
191
|
'Delivery method': 'Amazon S3 ARN',
|
|
192
|
-
'Bucket Name': payload.bucketName,
|
|
193
192
|
Region: payload.region,
|
|
194
|
-
Path: payload.allowedPaths?.[0] || '',
|
|
193
|
+
Path: `${payload.bucketName}/${payload.allowedPaths?.[0] || ''}`.replace(/\/$/, ''),
|
|
195
194
|
'Log types': 'Cloud WAF',
|
|
196
195
|
'Log level': 'Access logs',
|
|
197
196
|
Format: 'W3C',
|
|
198
|
-
'Compress logs': '
|
|
197
|
+
'Compress logs': 'No',
|
|
199
198
|
HelpUrl: 'https://docs-cybersec.thalesgroup.com/bundle/cloud-application-security/page/siem-log-configuration.htm',
|
|
200
199
|
}),
|
|
201
200
|
'byocdn-other': (payload) => ({
|