@rudderstack/analytics-js 3.0.0-beta.15 → 3.0.0-beta.16
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +14 -0
- package/dist/npm/index.d.ts +2 -1
- package/dist/npm/legacy/cjs/index.js +95 -90
- package/dist/npm/legacy/esm/index.js +95 -90
- package/dist/npm/legacy/umd/index.js +95 -90
- package/dist/npm/modern/bundled/cjs/index.js +15 -10
- package/dist/npm/modern/bundled/esm/index.js +15 -10
- package/dist/npm/modern/bundled/umd/index.js +15 -10
- package/dist/npm/modern/cjs/index.js +14 -9
- package/dist/npm/modern/esm/index.js +14 -9
- package/dist/npm/modern/umd/index.js +14 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,20 @@
|
|
2
2
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
4
4
|
|
5
|
+
## [3.0.0-beta.16](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.0.0-beta.15...@rudderstack/analytics-js@3.0.0-beta.16) (2023-12-01)
|
6
|
+
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
* **analytics-js-loading-scripts:** add loading snippet version in event context ([#1483](https://github.com/rudderlabs/rudder-sdk-js/issues/1483)) ([4873cbc](https://github.com/rudderlabs/rudder-sdk-js/commit/4873cbc183879c0c1825cf939a53b6cf570cdf4e))
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* initialisation of bugsnag in chrome extension ([#1516](https://github.com/rudderlabs/rudder-sdk-js/issues/1516)) ([af970c9](https://github.com/rudderlabs/rudder-sdk-js/commit/af970c94ad45c50fcbbca0d0e7597fdefa08b154))
|
16
|
+
* multiple onReady invocation ([#1522](https://github.com/rudderlabs/rudder-sdk-js/issues/1522)) ([bf3b09b](https://github.com/rudderlabs/rudder-sdk-js/commit/bf3b09bef82eaf13f34bd538a080fd9f5e557e78))
|
17
|
+
* update polyfill list and add version ([#1518](https://github.com/rudderlabs/rudder-sdk-js/issues/1518)) ([653d58e](https://github.com/rudderlabs/rudder-sdk-js/commit/653d58e782c7449c7f7afe851665a59912287750))
|
18
|
+
|
5
19
|
## [3.0.0-beta.15](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.0.0-beta.14...@rudderstack/analytics-js@3.0.0-beta.15) (2023-11-13)
|
6
20
|
|
7
21
|
|
package/dist/npm/index.d.ts
CHANGED
@@ -1134,6 +1134,7 @@ type AppInfo = {
|
|
1134
1134
|
type LibraryInfo = {
|
1135
1135
|
readonly name: string;
|
1136
1136
|
readonly version: string;
|
1137
|
+
readonly snippetVersion?: string;
|
1137
1138
|
};
|
1138
1139
|
type OSInfo = {
|
1139
1140
|
readonly name: string;
|
@@ -1149,7 +1150,7 @@ type ScreenInfo = {
|
|
1149
1150
|
|
1150
1151
|
type BufferedEvent = any[];
|
1151
1152
|
|
1152
|
-
type LifecycleStatus = 'mounted' | 'browserCapabilitiesReady' | 'configured' | 'pluginsLoading' | 'pluginsReady' | 'initialized' | 'loaded' | 'destinationsLoading' | 'destinationsReady' | 'ready';
|
1153
|
+
type LifecycleStatus = 'mounted' | 'browserCapabilitiesReady' | 'configured' | 'pluginsLoading' | 'pluginsReady' | 'initialized' | 'loaded' | 'destinationsLoading' | 'destinationsReady' | 'ready' | 'readyExecuted';
|
1153
1154
|
|
1154
1155
|
type SessionInfo = {
|
1155
1156
|
autoTrack?: boolean;
|