@adobe/helix-rum-enhancer
Advanced tools
Comparing version 1.9.0 to 1.9.1
@@ -0,1 +1,8 @@ | ||
## [1.9.1](https://github.com/adobe/helix-rum-enhancer/compare/v1.9.0...v1.9.1) (2024-01-11) | ||
### Bug Fixes | ||
* correct prefix check for relative urls in targets. fixes [#102](https://github.com/adobe/helix-rum-enhancer/issues/102) ([3df4132](https://github.com/adobe/helix-rum-enhancer/commit/3df413259cd0e71777328f738b81057f7f4e5520)) | ||
# [1.9.0](https://github.com/adobe/helix-rum-enhancer/compare/v1.8.1...v1.9.0) (2023-12-11) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "1.9.0", | ||
"version": "1.9.1", | ||
"description": "Helix RUM Enhancer", | ||
@@ -35,7 +35,7 @@ "main": "src/index.js", | ||
"@semantic-release/npm": "11.0.2", | ||
"c8": "8.0.1", | ||
"c8": "9.0.0", | ||
"codecov": "3.8.3", | ||
"eslint": "8.55.0", | ||
"eslint": "8.56.0", | ||
"eslint-plugin-header": "3.1.1", | ||
"eslint-plugin-import": "2.29.0", | ||
"eslint-plugin-import": "2.29.1", | ||
"husky": "8.0.3", | ||
@@ -47,3 +47,3 @@ "jsdoc-to-markdown": "8.0.0", | ||
"mocha-multi-reporters": "1.5.1", | ||
"semantic-release": "22.0.10" | ||
"semantic-release": "22.0.12" | ||
}, | ||
@@ -50,0 +50,0 @@ "lint-staged": { |
@@ -72,3 +72,3 @@ /* | ||
|| element.dataset.action || element.action; | ||
if (value && value.startsWith('https://')) { | ||
if (value && !value.startsWith('https://')) { | ||
// resolve relative links | ||
@@ -75,0 +75,0 @@ value = new URL(value, window.location).href; |
Sorry, the diff of this file is not supported yet
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
38057