@rudderstack/analytics-js 3.11.17 → 3.13.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 +19 -0
- package/dist/npm/index.d.cts +6 -0
- package/dist/npm/index.d.mts +6 -0
- package/dist/npm/legacy/bundled/cjs/index.cjs +294 -259
- package/dist/npm/legacy/bundled/esm/index.mjs +294 -259
- package/dist/npm/legacy/bundled/umd/index.js +294 -259
- package/dist/npm/legacy/cjs/index.cjs +294 -259
- package/dist/npm/legacy/content-script/cjs/index.cjs +289 -254
- package/dist/npm/legacy/content-script/esm/index.mjs +289 -254
- package/dist/npm/legacy/content-script/umd/index.js +289 -254
- package/dist/npm/legacy/esm/index.mjs +294 -259
- package/dist/npm/legacy/umd/index.js +294 -259
- package/dist/npm/modern/bundled/cjs/index.cjs +69 -34
- package/dist/npm/modern/bundled/esm/index.mjs +69 -34
- package/dist/npm/modern/bundled/umd/index.js +69 -34
- package/dist/npm/modern/cjs/index.cjs +60 -25
- package/dist/npm/modern/content-script/cjs/index.cjs +69 -34
- package/dist/npm/modern/content-script/esm/index.mjs +69 -34
- package/dist/npm/modern/content-script/umd/index.js +69 -34
- package/dist/npm/modern/esm/index.mjs +60 -25
- package/dist/npm/modern/umd/index.js +60 -25
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,25 @@
|
|
2
2
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
4
4
|
|
5
|
+
## [3.13.0](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.12.0...@rudderstack/analytics-js@3.13.0) (2025-01-28)
|
6
|
+
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
* lock plugins and integrations versions for npm package ([#2020](https://github.com/rudderlabs/rudder-sdk-js/issues/2020)) ([447e524](https://github.com/rudderlabs/rudder-sdk-js/commit/447e524dd1ee5782e6d7a8e834c03c57ebf3c196))
|
11
|
+
|
12
|
+
## [3.12.0](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.11.17...@rudderstack/analytics-js@3.12.0) (2025-01-24)
|
13
|
+
|
14
|
+
### Dependency Updates
|
15
|
+
|
16
|
+
* `@rudderstack/analytics-js-cookies` updated to version `0.4.19`
|
17
|
+
* `@rudderstack/analytics-js-common` updated to version `3.15.0`
|
18
|
+
* `@rudderstack/analytics-js-plugins` updated to version `3.6.22`
|
19
|
+
|
20
|
+
### Features
|
21
|
+
|
22
|
+
* lock plugins and integrations version by default ([#1956](https://github.com/rudderlabs/rudder-sdk-js/issues/1956)) ([45e716e](https://github.com/rudderlabs/rudder-sdk-js/commit/45e716e6df3d6e665c25aa907531adb746961d50))
|
23
|
+
|
5
24
|
## [3.11.17](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.11.16...@rudderstack/analytics-js@3.11.17) (2025-01-03)
|
6
25
|
|
7
26
|
### Dependency Updates
|
package/dist/npm/index.d.cts
CHANGED
@@ -259,7 +259,13 @@ type LoadOptions = {
|
|
259
259
|
anonymousIdOptions?: AnonymousIdOptions;
|
260
260
|
setCookieDomain?: string;
|
261
261
|
sameSiteCookie?: CookieSameSite;
|
262
|
+
/**
|
263
|
+
* @deprecated Integrations version are locked by default. We do not recommend using this option.
|
264
|
+
*/
|
262
265
|
lockIntegrationsVersion?: boolean;
|
266
|
+
/**
|
267
|
+
* @deprecated Plugins version are locked by default. We do not recommend using this option.
|
268
|
+
*/
|
263
269
|
lockPluginsVersion?: boolean;
|
264
270
|
polyfillIfRequired?: boolean;
|
265
271
|
onLoaded?: OnLoadedCallback;
|
package/dist/npm/index.d.mts
CHANGED
@@ -259,7 +259,13 @@ type LoadOptions = {
|
|
259
259
|
anonymousIdOptions?: AnonymousIdOptions;
|
260
260
|
setCookieDomain?: string;
|
261
261
|
sameSiteCookie?: CookieSameSite;
|
262
|
+
/**
|
263
|
+
* @deprecated Integrations version are locked by default. We do not recommend using this option.
|
264
|
+
*/
|
262
265
|
lockIntegrationsVersion?: boolean;
|
266
|
+
/**
|
267
|
+
* @deprecated Plugins version are locked by default. We do not recommend using this option.
|
268
|
+
*/
|
263
269
|
lockPluginsVersion?: boolean;
|
264
270
|
polyfillIfRequired?: boolean;
|
265
271
|
onLoaded?: OnLoadedCallback;
|