@adobe/spacecat-shared-data-access 3.57.0 → 3.58.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 +6 -0
- package/package.json +1 -1
- package/src/models/audit/audit.model.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-data-access-v3.58.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.57.0...@adobe/spacecat-shared-data-access-v3.58.0) (2026-05-05)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **data-access:** forward customHeaders in SCRAPE_CLIENT payload ([#1585](https://github.com/adobe/spacecat-shared/issues/1585)) ([41f636e](https://github.com/adobe/spacecat-shared/commit/41f636ee03037f98db3838f487a3211a2ea716a4))
|
|
6
|
+
|
|
1
7
|
## [@adobe/spacecat-shared-data-access-v3.57.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.56.1...@adobe/spacecat-shared-data-access-v3.57.0) (2026-05-05)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -223,6 +223,10 @@ class Audit extends BaseModel {
|
|
|
223
223
|
},
|
|
224
224
|
};
|
|
225
225
|
|
|
226
|
+
if (stepResult.customHeaders) {
|
|
227
|
+
payload.customHeaders = stepResult.customHeaders;
|
|
228
|
+
}
|
|
229
|
+
|
|
226
230
|
// Propagate traceId for cross-worker tracing continuity
|
|
227
231
|
// This allows the scrape client to maintain the same trace across multiple workers
|
|
228
232
|
if (context.traceId) {
|