Skip to content

Commit d61dd35

Browse files
chore(release): 2.5.7 [skip ci]
## [2.5.7](v2.5.6...v2.5.7) (2024-09-19) ### Bug Fixes * **deps:** update dependency @adobe/helix-rum-js to v2.6.0 ([29c598a](29c598a))
1 parent 29c598a commit d61dd35

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [2.5.7](https://github.com/adobe/aem-lib/compare/v2.5.6...v2.5.7) (2024-09-19)
2+
3+
4+
### Bug Fixes
5+
6+
* **deps:** update dependency @adobe/helix-rum-js to v2.6.0 ([29c598a](https://github.com/adobe/aem-lib/commit/29c598a2e35c020ef937c7c74be5c05e68651fc2))
7+
18
## [2.5.6](https://github.com/adobe/aem-lib/compare/v2.5.5...v2.5.6) (2024-09-18)
29

310

dist/aem.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,13 @@ function sampleRUM(checkpoint, data) {
8080
t: time,
8181
...pingData,
8282
});
83-
const { href: url, origin } = new URL(`.rum/${weight}`, sampleRUM.collectBaseURL);
83+
const urlParams = window.RUM_PARAMS
84+
? `?${new URLSearchParams(window.RUM_PARAMS).toString()}`
85+
: '';
86+
const { href: url, origin } = new URL(
87+
`.rum/${weight}${urlParams}`,
88+
sampleRUM.collectBaseURL,
89+
);
8490
const body = origin === window.location.origin
8591
? new Blob([rumData], { type: 'application/json' })
8692
: rumData;

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/aem-lib",
3-
"version": "2.5.6",
3+
"version": "2.5.7",
44
"description": "AEM Library",
55
"type": "module",
66
"scripts": {

0 commit comments

Comments
 (0)