-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): pull main into develop post release v3.54.0 (#1934)
- Loading branch information
Showing
24 changed files
with
138 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,20 @@ | |
|
||
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). | ||
|
||
## [3.11.0](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-21) | ||
|
||
|
||
### Features | ||
|
||
* snap extra parametrs pass ([#1921](https://github.com/rudderlabs/rudder-sdk-js/issues/1921)) ([0998d08](https://github.com/rudderlabs/rudder-sdk-js/commit/0998d081da3cfaaf0e999335384969ab77565230)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* adroll bugsnag issue ([#1929](https://github.com/rudderlabs/rudder-sdk-js/issues/1929)) ([18589f2](https://github.com/rudderlabs/rudder-sdk-js/commit/18589f2367038cc8c144d07f7dc38abbf10c5a08)) | ||
* ga4 allow zero ([#1915](https://github.com/rudderlabs/rudder-sdk-js/issues/1915)) ([9ebbab9](https://github.com/rudderlabs/rudder-sdk-js/commit/9ebbab92cfdaf12067138e065d726da312c507a5)) | ||
* googleAds bugsnag issue ([#1930](https://github.com/rudderlabs/rudder-sdk-js/issues/1930)) ([4c8a652](https://github.com/rudderlabs/rudder-sdk-js/commit/4c8a652276882ab3dd982976763bff8c58e5db3d)) | ||
|
||
## [3.10.6](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-19) | ||
|
||
### Dependency Updates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
## [3.10.6](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].5...@rudderstack/analytics-js-integrations@3.10.6) (2024-11-19) | ||
## [3.11.0](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].6...@rudderstack/analytics-js-integrations@3.11.0) (2024-11-21) | ||
|
||
### Dependency Updates | ||
|
||
* `@rudderstack/analytics-js-common` updated to version `3.14.1` | ||
### Features | ||
|
||
* snap extra parametrs pass ([#1921](https://github.com/rudderlabs/rudder-sdk-js/issues/1921)) ([0998d08](https://github.com/rudderlabs/rudder-sdk-js/commit/0998d081da3cfaaf0e999335384969ab77565230)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* adroll bugsnag issue ([#1929](https://github.com/rudderlabs/rudder-sdk-js/issues/1929)) ([18589f2](https://github.com/rudderlabs/rudder-sdk-js/commit/18589f2367038cc8c144d07f7dc38abbf10c5a08)) | ||
* ga4 allow zero ([#1915](https://github.com/rudderlabs/rudder-sdk-js/issues/1915)) ([9ebbab9](https://github.com/rudderlabs/rudder-sdk-js/commit/9ebbab92cfdaf12067138e065d726da312c507a5)) | ||
* googleAds bugsnag issue ([#1930](https://github.com/rudderlabs/rudder-sdk-js/issues/1930)) ([4c8a652](https://github.com/rudderlabs/rudder-sdk-js/commit/4c8a652276882ab3dd982976763bff8c58e5db3d)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,6 +143,7 @@ describe('SnapPixel', () => { | |
email: '[email protected]', | ||
firstName: 'John', | ||
city: 'San Francisco', | ||
age: '16' | ||
}, | ||
}, | ||
}, | ||
|
@@ -153,6 +154,50 @@ describe('SnapPixel', () => { | |
snapPixel.identify(rudderElement); | ||
|
||
// Verify only provided parameters are included | ||
expect(window.snaptr.mock.calls[1]).toEqual([ | ||
'init', | ||
'12345', | ||
{ | ||
user_email: '[email protected]', | ||
firstname: 'John', | ||
geo_city: 'San Francisco', | ||
age: '16' | ||
}, | ||
]); | ||
}); | ||
|
||
it('should skip age if in object format', () => { | ||
const destinationConfig = { | ||
pixelId: '12345', | ||
deduplicationKey: 'email', | ||
hashMethod: false, | ||
enableDeduplication: false, | ||
eventMappingFromConfig: false, | ||
}; | ||
|
||
const analytics = { | ||
logLevel: 'debug', | ||
getAnonymousId: () => 'ANONYMOUS_ID', | ||
}; | ||
|
||
const rudderElement = { | ||
message: { | ||
context: { | ||
traits: { | ||
email: '[email protected]', | ||
firstName: 'John', | ||
city: 'San Francisco', | ||
age: { | ||
a: 1, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}; | ||
const snapPixel = new SnapPixel(destinationConfig, analytics, destinationInfo); | ||
snapPixel.init(); | ||
snapPixel.identify(rudderElement); | ||
|
||
expect(window.snaptr.mock.calls[1]).toEqual([ | ||
'init', | ||
'12345', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,17 @@ | |
|
||
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). | ||
|
||
## [3.6.5](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-21) | ||
|
||
### Dependency Updates | ||
|
||
* `@rudderstack/analytics-js` updated to version `3.11.2` | ||
* `@rudderstack/analytics-js-cookies` updated to version `0.4.4` | ||
|
||
### Bug Fixes | ||
|
||
* exclude auth token ([15dc64c](https://github.com/rudderlabs/rudder-sdk-js/commit/15dc64ccfbac66fa33046abd88cb72c9b0ccb147)) | ||
|
||
## [3.6.4](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-19) | ||
|
||
### Dependency Updates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
## [3.6.4](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].3...@rudderstack/[email protected].4) (2024-11-19) | ||
## [3.6.5](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].4...@rudderstack/[email protected].5) (2024-11-21) | ||
|
||
### Dependency Updates | ||
|
||
* `@rudderstack/analytics-js-common` updated to version `3.14.1` | ||
* `@rudderstack/analytics-js` updated to version `3.11.0` | ||
* `@rudderstack/analytics-js-cookies` updated to version `0.4.3` | ||
* `@rudderstack/analytics-js` updated to version `3.11.2` | ||
* `@rudderstack/analytics-js-cookies` updated to version `0.4.4` | ||
|
||
### Bug Fixes | ||
|
||
* exclude auth token ([15dc64c](https://github.com/rudderlabs/rudder-sdk-js/commit/15dc64ccfbac66fa33046abd88cb72c9b0ccb147)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,9 +51,9 @@ | |
"github": { | ||
"executor": "@jscutlery/semver:github", | ||
"options": { | ||
"tag": "@rudderstack/[email protected].4", | ||
"title": "@rudderstack/[email protected].4", | ||
"discussion-category": "@rudderstack/[email protected].4", | ||
"tag": "@rudderstack/[email protected].5", | ||
"title": "@rudderstack/[email protected].5", | ||
"discussion-category": "@rudderstack/[email protected].5", | ||
"notesFile": "./packages/analytics-js-plugins/CHANGELOG_LATEST.md" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
|
||
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). | ||
|
||
## [3.11.2](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-21) | ||
|
||
### Dependency Updates | ||
|
||
* `@rudderstack/analytics-js-plugins` updated to version `3.6.4` | ||
## [3.11.1](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-19) | ||
|
||
### Dependency Updates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
## [3.11.1](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].0...@rudderstack/[email protected].1) (2024-11-19) | ||
## [3.11.2](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].1...@rudderstack/[email protected].2) (2024-11-21) | ||
|
||
### Dependency Updates | ||
|
||
* `@rudderstack/analytics-js-cookies` updated to version `0.4.4` | ||
* `@rudderstack/analytics-js-common` updated to version `3.14.1` | ||
* `@rudderstack/analytics-js-plugins` updated to version `3.6.4` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,9 +59,9 @@ | |
"github": { | ||
"executor": "@jscutlery/semver:github", | ||
"options": { | ||
"tag": "@rudderstack/[email protected].1", | ||
"title": "@rudderstack/[email protected].1", | ||
"discussion-category": "@rudderstack/[email protected].1", | ||
"tag": "@rudderstack/[email protected].2", | ||
"title": "@rudderstack/[email protected].2", | ||
"discussion-category": "@rudderstack/[email protected].2", | ||
"notesFile": "./packages/analytics-js/CHANGELOG_LATEST.md" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
|
||
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). | ||
|
||
## [3.0.45](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-21) | ||
|
||
### Dependency Updates | ||
|
||
* `@rudderstack/analytics-js` updated to version `3.11.2` | ||
## [3.0.44](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-19) | ||
|
||
### Dependency Updates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## [3.0.44](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].43...@rudderstack/[email protected].44) (2024-11-19) | ||
## [3.0.45](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].44...@rudderstack/[email protected].45) (2024-11-21) | ||
|
||
### Dependency Updates | ||
|
||
* `@rudderstack/analytics-js` updated to version `3.11.1` | ||
* `@rudderstack/analytics-js` updated to version `3.11.2` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,9 +51,9 @@ | |
"github": { | ||
"executor": "@jscutlery/semver:github", | ||
"options": { | ||
"tag": "@rudderstack/[email protected].44", | ||
"title": "@rudderstack/[email protected].44", | ||
"discussion-category": "@rudderstack/[email protected].44", | ||
"tag": "@rudderstack/[email protected].45", | ||
"title": "@rudderstack/[email protected].45", | ||
"discussion-category": "@rudderstack/[email protected].45", | ||
"notesFile": "./packages/loading-scripts/CHANGELOG_LATEST.md" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
|
||
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). | ||
|
||
## [3.1.36](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-21) | ||
|
||
### Dependency Updates | ||
|
||
* `@rudderstack/analytics-js` updated to version `3.11.2` | ||
## [3.1.35](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-19) | ||
|
||
### Dependency Updates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters