@adobe/helix-rum-enhancer
Advanced tools
Comparing version 1.17.0 to 1.17.1
@@ -0,1 +1,8 @@ | ||
## [1.17.1](https://github.com/adobe/helix-rum-enhancer/compare/v1.17.0...v1.17.1) (2024-05-21) | ||
### Bug Fixes | ||
* no type leads to empty checkpoint (1x) ([#168](https://github.com/adobe/helix-rum-enhancer/issues/168)) ([422fd8e](https://github.com/adobe/helix-rum-enhancer/commit/422fd8ed43d0cf842777ffbfae8c64242adbf39e)) | ||
# [1.17.0](https://github.com/adobe/helix-rum-enhancer/compare/v1.16.0...v1.17.0) (2024-05-07) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "1.17.0", | ||
"version": "1.17.1", | ||
"description": "Helix RUM Enhancer", | ||
@@ -35,3 +35,3 @@ "main": "src/index.js", | ||
"@semantic-release/git": "10.0.1", | ||
"@semantic-release/npm": "12.0.0", | ||
"@semantic-release/npm": "12.0.1", | ||
"c8": "9.1.0", | ||
@@ -48,3 +48,3 @@ "codecov": "3.8.3", | ||
"mocha-multi-reporters": "1.5.1", | ||
"semantic-release": "23.0.8" | ||
"semantic-release": "23.1.1" | ||
}, | ||
@@ -51,0 +51,0 @@ "lint-staged": { |
@@ -56,3 +56,3 @@ /* | ||
sampleRUM('reload', payload); | ||
} else if (type !== 'navigate') { | ||
} else if (type && type !== 'navigate') { | ||
sampleRUM(type, payload); // back, forward, prerender, etc. | ||
@@ -59,0 +59,0 @@ } else if (source && window.location.origin === new URL(source).origin) { |
44143