@adobe/helix-rum-enhancer
Advanced tools
Comparing version 2.4.0 to 2.4.1
@@ -0,1 +1,8 @@ | ||
## [2.4.1](https://github.com/adobe/helix-rum-enhancer/compare/v2.4.0...v2.4.1) (2024-04-08) | ||
### Bug Fixes | ||
* broken code in the utm tracking ([d1695dd](https://github.com/adobe/helix-rum-enhancer/commit/d1695ddf62b316d3cc06c75c444f859a271cff2e)) | ||
# [2.4.0](https://github.com/adobe/helix-rum-enhancer/compare/v2.3.1...v2.4.0) (2024-03-22) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "2.4.0", | ||
"version": "2.4.1", | ||
"description": "Helix RUM Enhancer", | ||
@@ -45,3 +45,3 @@ "main": "src/index.js", | ||
"lint-staged": "15.2.2", | ||
"mocha": "10.3.0", | ||
"mocha": "10.4.0", | ||
"mocha-multi-reporters": "1.5.1", | ||
@@ -48,0 +48,0 @@ "semantic-release": "22.0.12" |
@@ -231,3 +231,3 @@ /* | ||
.filter(([key]) => key.startsWith('utm_')) | ||
.filter(([key]) => key !== 'utm_id'); | ||
.filter(([key]) => key !== 'utm_id') | ||
.forEach(([source, target]) => sampleRUM('utm', { source, target })); | ||
@@ -234,0 +234,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45813