@adobe/helix-rum-enhancer
Advanced tools
Comparing version 2.29.0 to 2.30.0
@@ -0,1 +1,8 @@ | ||
# [2.30.0](https://github.com/adobe/helix-rum-enhancer/compare/v2.29.0...v2.30.0) (2025-01-15) | ||
### Features | ||
* **missingresource:** report all resource error with http status code ([e238136](https://github.com/adobe/helix-rum-enhancer/commit/e238136c46a9801be1e3ce7887c7b4b292cbcf5b)) | ||
# [2.29.0](https://github.com/adobe/helix-rum-enhancer/compare/v2.28.0...v2.29.0) (2025-01-15) | ||
@@ -2,0 +9,0 @@ |
@@ -171,5 +171,5 @@ /* | ||
list.getEntries() | ||
.filter((e) => e.responseStatus === 404) | ||
.filter((e) => e.responseStatus >= 400) | ||
.forEach((e) => { | ||
sampleRUM('missingresource', { source: e.name, target: e.hostname }); | ||
sampleRUM('missingresource', { source: e.name, target: e.responseStatus }); | ||
}); | ||
@@ -176,0 +176,0 @@ /* c8 ignore next 3 */ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "2.29.0", | ||
"version": "2.30.0", | ||
"description": "Helix RUM Enhancer", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -317,5 +317,5 @@ /* | ||
list.getEntries() | ||
.filter((e) => e.responseStatus === 404) | ||
.filter((e) => e.responseStatus >= 400) | ||
.forEach((e) => { | ||
sampleRUM('missingresource', { source: e.name, target: e.hostname }); | ||
sampleRUM('missingresource', { source: e.name, target: e.responseStatus }); | ||
}); | ||
@@ -322,0 +322,0 @@ } catch (error) { |
Sorry, the diff of this file is not supported yet
98090