@adobe/spacecat-shared-utils 1.96.2 → 1.97.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,15 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-utils-v1.97.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.96.3...@adobe/spacecat-shared-utils-v1.97.0) (2026-02-27)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* add dataset info for cloudflare ([#1383](https://github.com/adobe/spacecat-shared/issues/1383)) ([5ee3bbf](https://github.com/adobe/spacecat-shared/commit/5ee3bbf22188300e9e34f96cf786a0db993484ac))
|
|
6
|
+
|
|
7
|
+
## [@adobe/spacecat-shared-utils-v1.96.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.96.2...@adobe/spacecat-shared-utils-v1.96.3) (2026-02-25)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* revert breaking aggregation granularity changes from v1.96.1 ([#1378](https://github.com/adobe/spacecat-shared/issues/1378)) ([fbc00f4](https://github.com/adobe/spacecat-shared/commit/fbc00f4d282bd2753e46377ac8ead2c45ab79416)), closes [#1376](https://github.com/adobe/spacecat-shared/issues/1376)
|
|
12
|
+
|
|
1
13
|
## [@adobe/spacecat-shared-utils-v1.96.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.96.1...@adobe/spacecat-shared-utils-v1.96.2) (2026-02-25)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -116,12 +116,12 @@ export const ISSUE_GRANULARITY_MAP = {
|
|
|
116
116
|
'aria-roles': Granularity.PER_PAGE_PER_COMPONENT,
|
|
117
117
|
'image-alt': Granularity.PER_PAGE_PER_COMPONENT,
|
|
118
118
|
'link-in-text-block': Granularity.PER_PAGE_PER_COMPONENT,
|
|
119
|
-
'link-name': Granularity.
|
|
119
|
+
'link-name': Granularity.PER_PAGE_PER_COMPONENT,
|
|
120
120
|
'target-size': Granularity.PER_PAGE_PER_COMPONENT,
|
|
121
121
|
listitem: Granularity.PER_COMPONENT,
|
|
122
122
|
label: Granularity.PER_PAGE_PER_COMPONENT,
|
|
123
123
|
'aria-prohibited-attr': Granularity.PER_TYPE,
|
|
124
|
-
'button-name': Granularity.
|
|
124
|
+
'button-name': Granularity.PER_PAGE_PER_COMPONENT,
|
|
125
125
|
'frame-title': Granularity.PER_PAGE_PER_COMPONENT,
|
|
126
126
|
'aria-valid-attr-value': Granularity.PER_PAGE_PER_COMPONENT,
|
|
127
127
|
'aria-allowed-attr': Granularity.PER_TYPE,
|
|
@@ -135,7 +135,7 @@ export const ISSUE_GRANULARITY_MAP = {
|
|
|
135
135
|
'role-img-alt': Granularity.PER_PAGE_PER_COMPONENT,
|
|
136
136
|
'aria-input-field-name': Granularity.PER_PAGE_PER_COMPONENT,
|
|
137
137
|
'scrollable-region-focusable': Granularity.PER_PAGE_PER_COMPONENT,
|
|
138
|
-
'select-name': Granularity.
|
|
138
|
+
'select-name': Granularity.PER_PAGE_PER_COMPONENT,
|
|
139
139
|
};
|
|
140
140
|
|
|
141
141
|
/**
|
package/src/cdn-helpers.js
CHANGED
|
@@ -105,6 +105,7 @@ const CDN_TRANSFORMATIONS = {
|
|
|
105
105
|
HelpUrl: 'https://techdocs.akamai.com/datastream2/docs/stream-amazon-s3',
|
|
106
106
|
}),
|
|
107
107
|
'byocdn-cloudflare': (payload) => ({
|
|
108
|
+
Dataset: 'HTTP Requests (zone-scoped)',
|
|
108
109
|
'Bucket Name': payload.bucketName,
|
|
109
110
|
Region: payload.region,
|
|
110
111
|
Path: `${payload.allowedPaths?.[0] || ''}`,
|