Skip to content

Commit

Permalink
chore(release): 2.5.7 [skip ci]
Browse files Browse the repository at this point in the history
## [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))
  • Loading branch information
semantic-release-bot committed Sep 19, 2024
1 parent 29c598a commit d61dd35
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [2.5.7](https://github.com/adobe/aem-lib/compare/v2.5.6...v2.5.7) (2024-09-19)


### Bug Fixes

* **deps:** update dependency @adobe/helix-rum-js to v2.6.0 ([29c598a](https://github.com/adobe/aem-lib/commit/29c598a2e35c020ef937c7c74be5c05e68651fc2))

## [2.5.6](https://github.com/adobe/aem-lib/compare/v2.5.5...v2.5.6) (2024-09-18)


Expand Down
8 changes: 7 additions & 1 deletion dist/aem.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,13 @@ function sampleRUM(checkpoint, data) {
t: time,
...pingData,
});
const { href: url, origin } = new URL(`.rum/${weight}`, sampleRUM.collectBaseURL);
const urlParams = window.RUM_PARAMS
? `?${new URLSearchParams(window.RUM_PARAMS).toString()}`
: '';
const { href: url, origin } = new URL(
`.rum/${weight}${urlParams}`,
sampleRUM.collectBaseURL,
);
const body = origin === window.location.origin
? new Blob([rumData], { type: 'application/json' })
: rumData;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/aem-lib",
"version": "2.5.6",
"version": "2.5.7",
"description": "AEM Library",
"type": "module",
"scripts": {
Expand Down

0 comments on commit d61dd35

Please sign in to comment.