@rudderstack/analytics-js 3.7.18 → 3.8.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 CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [3.8.0](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.7.19...@rudderstack/analytics-js@3.8.0) (2024-10-21)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `@rudderstack/analytics-js-cookies` updated to version `0.3.12`
10
+ * `@rudderstack/analytics-js-common` updated to version `3.10.0`
11
+ * `@rudderstack/analytics-js-plugins` updated to version `3.5.0`
12
+
13
+ ### Features
14
+
15
+ * iubenda consent manager plugin ([#1809](https://github.com/rudderlabs/rudder-sdk-js/issues/1809)) ([7ea300c](https://github.com/rudderlabs/rudder-sdk-js/commit/7ea300c61ead9cc094c3f1985e0ef3165b0fcb59))
16
+
17
+ ## [3.7.19](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.7.18...@rudderstack/analytics-js@3.7.19) (2024-10-18)
18
+
19
+ ### Dependency Updates
20
+
21
+ * `@rudderstack/analytics-js-cookies` updated to version `0.3.11`
22
+ * `@rudderstack/analytics-js-common` updated to version `3.9.5`
23
+ * `@rudderstack/analytics-js-plugins` updated to version `3.4.19`
24
+
25
+ ### Bug Fixes
26
+
27
+ * harmless change in the core sdk package ([5c34b04](https://github.com/rudderlabs/rudder-sdk-js/commit/5c34b0453041a0dc1b8a7dc55eb0c884d16d0598))
28
+
5
29
  ## [3.7.18](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/analytics-js@3.7.17...@rudderstack/analytics-js@3.7.18) (2024-10-17)
6
30
 
7
31
  ### Dependency Updates
package/README.md CHANGED
@@ -7,6 +7,7 @@
7
7
  <br />
8
8
  <caption>The Customer Data Platform for Developers</caption>
9
9
  </p>
10
+
10
11
  <p align="center">
11
12
  <b>
12
13
  <a href="https://rudderstack.com">Website</a>
@@ -125,9 +125,9 @@ interface IPluginsManager {
125
125
  invokeSingle<T = any>(extPoint?: string, ...args: any[]): Nullable<T>;
126
126
  register(plugins: ExtensionPlugin[]): void;
127
127
  }
128
- type PluginName = 'BeaconQueue' | 'Bugsnag' | 'CustomConsentManager' | 'DeviceModeDestinations' | 'DeviceModeTransformation' | 'ErrorReporting' | 'ExternalAnonymousId' | 'GoogleLinker' | 'KetchConsentManager' | 'NativeDestinationQueue' | 'OneTrustConsentManager' | 'StorageEncryption' | 'StorageEncryptionLegacy' | 'StorageMigrator' | 'XhrQueue';
128
+ type PluginName = 'BeaconQueue' | 'Bugsnag' | 'CustomConsentManager' | 'DeviceModeDestinations' | 'DeviceModeTransformation' | 'ErrorReporting' | 'ExternalAnonymousId' | 'GoogleLinker' | 'IubendaConsentManager' | 'KetchConsentManager' | 'NativeDestinationQueue' | 'OneTrustConsentManager' | 'StorageEncryption' | 'StorageEncryptionLegacy' | 'StorageMigrator' | 'XhrQueue';
129
129
 
130
- type ConsentManagementProvider = 'oneTrust' | 'ketch' | 'custom';
130
+ type ConsentManagementProvider = 'iubenda' | 'oneTrust' | 'ketch' | 'custom';
131
131
  type Consents = string[];
132
132
  type ConsentManagementOptions = {
133
133
  enabled?: boolean;
@@ -125,9 +125,9 @@ interface IPluginsManager {
125
125
  invokeSingle<T = any>(extPoint?: string, ...args: any[]): Nullable<T>;
126
126
  register(plugins: ExtensionPlugin[]): void;
127
127
  }
128
- type PluginName = 'BeaconQueue' | 'Bugsnag' | 'CustomConsentManager' | 'DeviceModeDestinations' | 'DeviceModeTransformation' | 'ErrorReporting' | 'ExternalAnonymousId' | 'GoogleLinker' | 'KetchConsentManager' | 'NativeDestinationQueue' | 'OneTrustConsentManager' | 'StorageEncryption' | 'StorageEncryptionLegacy' | 'StorageMigrator' | 'XhrQueue';
128
+ type PluginName = 'BeaconQueue' | 'Bugsnag' | 'CustomConsentManager' | 'DeviceModeDestinations' | 'DeviceModeTransformation' | 'ErrorReporting' | 'ExternalAnonymousId' | 'GoogleLinker' | 'IubendaConsentManager' | 'KetchConsentManager' | 'NativeDestinationQueue' | 'OneTrustConsentManager' | 'StorageEncryption' | 'StorageEncryptionLegacy' | 'StorageMigrator' | 'XhrQueue';
129
129
 
130
- type ConsentManagementProvider = 'oneTrust' | 'ketch' | 'custom';
130
+ type ConsentManagementProvider = 'iubenda' | 'oneTrust' | 'ketch' | 'custom';
131
131
  type Consents = string[];
132
132
  type ConsentManagementOptions = {
133
133
  enabled?: boolean;