rudder-sdk-js 2.25.0 → 2.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -1
- package/index.d.ts +2 -0
- package/index.es.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/service-worker/index.es.js +1 -1
- package/service-worker/index.js +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,8 +2,27 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
4
4
|
|
5
|
-
## [2.
|
5
|
+
## [2.27.0](https://github.com/rudderlabs/rudder-sdk-js/compare/v2.26.0...v2.27.0) (2023-03-14)
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
* **braze:** handle undefined products ([#940](https://github.com/rudderlabs/rudder-sdk-js/issues/940)) ([b32a074](https://github.com/rudderlabs/rudder-sdk-js/commit/b32a074f2cde42f0dd4b5c8297ed272bd9be88c6))
|
10
|
+
* client_id mapping for ga4 ([#925](https://github.com/rudderlabs/rudder-sdk-js/issues/925)) ([a48cdff](https://github.com/rudderlabs/rudder-sdk-js/commit/a48cdff9259d5a91d2199e5e2936fb2b98b407fd))
|
11
|
+
* duplicate page views being sent to ga4 ([#923](https://github.com/rudderlabs/rudder-sdk-js/issues/923)) ([9a5ca33](https://github.com/rudderlabs/rudder-sdk-js/commit/9a5ca3311d58e8525c0b30c31cfaa71cbb3c7f9c))
|
12
|
+
* duplicate userid sent to ga4 ([#927](https://github.com/rudderlabs/rudder-sdk-js/issues/927)) ([1dd3f37](https://github.com/rudderlabs/rudder-sdk-js/commit/1dd3f3753815ccc39a0c358171b68d911cf3c488))
|
13
|
+
* ga4 device mode debug_view ([#921](https://github.com/rudderlabs/rudder-sdk-js/issues/921)) ([733ea81](https://github.com/rudderlabs/rudder-sdk-js/commit/733ea81236e1ccf45eb37f95e0d604517cce9cb7))
|
14
|
+
* type declaration of onLoaded callback loadOption ([#945](https://github.com/rudderlabs/rudder-sdk-js/issues/945)) ([1a78d6d](https://github.com/rudderlabs/rudder-sdk-js/commit/1a78d6d02709e3f133a38d4b01f4bb062eefa9ba))
|
15
|
+
* traits are not being sent to ga4 group call ([#929](https://github.com/rudderlabs/rudder-sdk-js/issues/929)) ([66bdc64](https://github.com/rudderlabs/rudder-sdk-js/commit/66bdc64a72ba6ec525172d4ac7b33752259c80a5))
|
16
|
+
|
17
|
+
## [2.26.0](https://github.com/rudderlabs/rudder-sdk-js/compare/v2.25.0...v2.26.0) (2023-03-02)
|
6
18
|
|
19
|
+
### Features
|
20
|
+
|
21
|
+
* onetrust for cloud mode events ([#902](https://github.com/rudderlabs/rudder-sdk-js/issues/902)) ([aa67af8](https://github.com/rudderlabs/rudder-sdk-js/commit/aa67af83bc3292e6e877c66bf0778e0e609911c0))
|
22
|
+
* onLoaded callback option ([#916](https://github.com/rudderlabs/rudder-sdk-js/issues/916)) ([e7e3a2b](https://github.com/rudderlabs/rudder-sdk-js/commit/e7e3a2b6f20cc152a0bb90e82f6dfb434abbe554))
|
23
|
+
* user agent client hint info added in context ([#918](https://github.com/rudderlabs/rudder-sdk-js/issues/918)) ([82a71ae](https://github.com/rudderlabs/rudder-sdk-js/commit/82a71ae21a5593abc49600af8b83f6649caac007))
|
24
|
+
|
25
|
+
## [2.25.0](https://github.com/rudderlabs/rudder-sdk-js/compare/v2.24.0...v2.25.0) (2023-02-20)
|
7
26
|
|
8
27
|
### Features
|
9
28
|
|
package/index.d.ts
CHANGED
@@ -102,6 +102,8 @@ declare module 'rudder-sdk-js' {
|
|
102
102
|
// Controls whether the SDK should polyfill unsupported browser API's if they are detected as missing
|
103
103
|
// Defaults to true
|
104
104
|
polyfillIfRequired?: boolean;
|
105
|
+
uaChTrackLevel?: 'none' | 'default' | 'full';
|
106
|
+
onLoaded?: (analytics: any) => void;
|
105
107
|
}
|
106
108
|
|
107
109
|
/**
|