@rudderstack/analytics-js 3.11.15 → 3.11.17
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +20 -0
- package/LICENSE.md +6 -6
- package/dist/npm/index.d.cts +1 -1
- package/dist/npm/index.d.mts +1 -1
- package/dist/npm/legacy/bundled/cjs/index.cjs +102 -94
- package/dist/npm/legacy/bundled/esm/index.mjs +102 -94
- package/dist/npm/legacy/bundled/umd/index.js +102 -94
- package/dist/npm/legacy/cjs/index.cjs +102 -94
- package/dist/npm/legacy/content-script/cjs/index.cjs +99 -92
- package/dist/npm/legacy/content-script/esm/index.mjs +99 -92
- package/dist/npm/legacy/content-script/umd/index.js +99 -92
- package/dist/npm/legacy/esm/index.mjs +102 -94
- package/dist/npm/legacy/umd/index.js +102 -94
- package/dist/npm/modern/bundled/cjs/index.cjs +95 -93
- package/dist/npm/modern/bundled/esm/index.mjs +95 -93
- package/dist/npm/modern/bundled/umd/index.js +95 -93
- package/dist/npm/modern/cjs/index.cjs +6 -6
- package/dist/npm/modern/content-script/cjs/index.cjs +93 -92
- package/dist/npm/modern/content-script/esm/index.mjs +93 -92
- package/dist/npm/modern/content-script/umd/index.js +93 -92
- package/dist/npm/modern/esm/index.mjs +6 -6
- package/dist/npm/modern/umd/index.js +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,26 @@
|
|
2
2
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
4
4
|
|
5
|
+
## [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
|
+
|
7
|
+
### Dependency Updates
|
8
|
+
|
9
|
+
* `@rudderstack/analytics-js-cookies` updated to version `0.4.18`
|
10
|
+
* `@rudderstack/analytics-js-common` updated to version `3.14.15`
|
11
|
+
* `@rudderstack/analytics-js-plugins` updated to version `3.6.21`
|
12
|
+
## [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)
|
13
|
+
|
14
|
+
### Dependency Updates
|
15
|
+
|
16
|
+
* `@rudderstack/analytics-js-cookies` updated to version `0.4.17`
|
17
|
+
* `@rudderstack/analytics-js-common` updated to version `3.14.14`
|
18
|
+
* `@rudderstack/analytics-js-plugins` updated to version `3.6.20`
|
19
|
+
|
20
|
+
### Bug Fixes
|
21
|
+
|
22
|
+
* remove circular dependency in packages ([#1973](https://github.com/rudderlabs/rudder-sdk-js/issues/1973)) ([e525496](https://github.com/rudderlabs/rudder-sdk-js/commit/e5254964310c2c73baaf4d0655c3e4025c5e7d2b))
|
23
|
+
* separator and make changes in bugsnag plugin ([b69347c](https://github.com/rudderlabs/rudder-sdk-js/commit/b69347cd9bbf3a395b2f557f8219287900ceca5a))
|
24
|
+
|
5
25
|
## [3.11.15](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.11.14...@rudderstack/analytics-js@3.11.15) (2024-12-06)
|
6
26
|
|
7
27
|
### 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
@@ -97,7 +97,7 @@ interface ExtensionPlugin {
|
|
97
97
|
name: string;
|
98
98
|
initialize?: (state?: any) => void;
|
99
99
|
deps?: string[];
|
100
|
-
[key: string]: string | (() => void) | ExtensionPoint | ((...args: any[]) => unknown
|
100
|
+
[key: string]: string | (() => void) | ExtensionPoint | ((...args: any[]) => unknown) | string[] | undefined;
|
101
101
|
}
|
102
102
|
type PluginEngineConfig = {
|
103
103
|
throws?: boolean | RegExp;
|
package/dist/npm/index.d.mts
CHANGED
@@ -97,7 +97,7 @@ interface ExtensionPlugin {
|
|
97
97
|
name: string;
|
98
98
|
initialize?: (state?: any) => void;
|
99
99
|
deps?: string[];
|
100
|
-
[key: string]: string | (() => void) | ExtensionPoint | ((...args: any[]) => unknown
|
100
|
+
[key: string]: string | (() => void) | ExtensionPoint | ((...args: any[]) => unknown) | string[] | undefined;
|
101
101
|
}
|
102
102
|
type PluginEngineConfig = {
|
103
103
|
throws?: boolean | RegExp;
|