@rudderstack/analytics-js 3.11.16 → 3.12.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +19 -0
- package/LICENSE.md +6 -6
- package/dist/npm/index.d.cts +6 -0
- package/dist/npm/index.d.mts +6 -0
- package/dist/npm/legacy/bundled/cjs/index.cjs +384 -341
- package/dist/npm/legacy/bundled/esm/index.mjs +384 -341
- package/dist/npm/legacy/bundled/umd/index.js +384 -341
- package/dist/npm/legacy/cjs/index.cjs +384 -341
- package/dist/npm/legacy/content-script/cjs/index.cjs +379 -336
- package/dist/npm/legacy/content-script/esm/index.mjs +379 -336
- package/dist/npm/legacy/content-script/umd/index.js +379 -336
- package/dist/npm/legacy/esm/index.mjs +384 -341
- package/dist/npm/legacy/umd/index.js +384 -341
- package/dist/npm/modern/bundled/cjs/index.cjs +156 -119
- package/dist/npm/modern/bundled/esm/index.mjs +156 -119
- package/dist/npm/modern/bundled/umd/index.js +156 -119
- package/dist/npm/modern/cjs/index.cjs +64 -27
- package/dist/npm/modern/content-script/cjs/index.cjs +156 -119
- package/dist/npm/modern/content-script/esm/index.mjs +156 -119
- package/dist/npm/modern/content-script/umd/index.js +156 -119
- package/dist/npm/modern/esm/index.mjs +64 -27
- package/dist/npm/modern/umd/index.js +64 -27
- 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.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)
|
6
|
+
|
7
|
+
### Dependency Updates
|
8
|
+
|
9
|
+
* `@rudderstack/analytics-js-cookies` updated to version `0.4.19`
|
10
|
+
* `@rudderstack/analytics-js-common` updated to version `3.15.0`
|
11
|
+
* `@rudderstack/analytics-js-plugins` updated to version `3.6.22`
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
* 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))
|
16
|
+
|
17
|
+
## [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)
|
18
|
+
|
19
|
+
### Dependency Updates
|
20
|
+
|
21
|
+
* `@rudderstack/analytics-js-cookies` updated to version `0.4.18`
|
22
|
+
* `@rudderstack/analytics-js-common` updated to version `3.14.15`
|
23
|
+
* `@rudderstack/analytics-js-plugins` updated to version `3.6.21`
|
5
24
|
## [3.11.16](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.11.15...@rudderstack/analytics-js@3.11.16) (2024-12-17)
|
6
25
|
|
7
26
|
### Dependency Updates
|
package/LICENSE.md
CHANGED
@@ -40,14 +40,14 @@ As far as the law allows, the software comes as is, without any warranty or cond
|
|
40
40
|
|
41
41
|
## Definitions
|
42
42
|
|
43
|
-
The
|
43
|
+
The _licensor_ is the entity offering these terms, and the _software_ is the software the licensor makes available under these terms, including any portion of it.
|
44
44
|
|
45
|
-
|
45
|
+
_you_ refers to the individual or entity agreeing to these terms.
|
46
46
|
|
47
|
-
|
47
|
+
_your company_ is any legal entity, sole proprietorship, or other kind of organization that you work for, plus all organizations that have control over, are under the control of, or are under common control with that organization. _control_ means ownership of substantially all the assets of an entity, or the power to direct its management and policies by vote, contract, or otherwise. Control can be direct or indirect.
|
48
48
|
|
49
|
-
|
49
|
+
_your licenses_ are all the licenses granted to you for the software under these terms.
|
50
50
|
|
51
|
-
|
51
|
+
_use_ means anything you do with the software requiring one of your licenses.
|
52
52
|
|
53
|
-
|
53
|
+
_trademark_ means trademarks, service marks, and similar rights.
|
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;
|