@adobe/helix-rum-enhancer
Advanced tools
Comparing version 2.5.0 to 2.6.0
@@ -0,1 +1,8 @@ | ||
# [2.6.0](https://github.com/adobe/helix-rum-enhancer/compare/v2.5.0...v2.6.0) (2024-04-16) | ||
### Features | ||
* **resources:** add missingresource checkpoint behind feature toggle ([a9ba59d](https://github.com/adobe/helix-rum-enhancer/commit/a9ba59dccc4712571530fd785bb9aa6cc277bea8)) | ||
# [2.5.0](https://github.com/adobe/helix-rum-enhancer/compare/v2.4.1...v2.5.0) (2024-04-16) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "2.5.0", | ||
"version": "2.6.0", | ||
"description": "Helix RUM Enhancer", | ||
@@ -47,3 +47,3 @@ "main": "src/index.js", | ||
"mocha-multi-reporters": "1.5.1", | ||
"semantic-release": "22.0.12" | ||
"semantic-release": "23.0.8" | ||
}, | ||
@@ -50,0 +50,0 @@ "lint-staged": { |
@@ -180,2 +180,11 @@ /* | ||
}); | ||
if (window.origin === 'business.adobe.com') { | ||
// feature flagged for now | ||
list.getEntries() | ||
.filter((entry) => entry.responseStatus === 404) | ||
.forEach((entry) => { | ||
sampleRUM('missingresource', { source: entry.name, target: entry.hostname }); | ||
}); | ||
} | ||
}); | ||
@@ -182,0 +191,0 @@ observer.observe({ type: 'resource', buffered: true }); |
46956
331