Skip to content

Commit 8323d0e

Browse files
committed
Release: 2.24.2
1 parent 3056a2c commit 8323d0e

File tree

9 files changed

+566
-2727
lines changed

9 files changed

+566
-2727
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[Release Notes](https://docs.usercentrics.com/cmp_in_app_sdk/latest/about/history/)
22

3-
### 2.24.0Oct 31, 2025
4-
## React Native
5-
* Added Fabric renderer compatibility
3+
### 2.24.2Dec 5, 2025
4+
## Improvement
5+
* Fix react native issues
66

77
### 2.24.1 – Oct 31, 2025
88
## Improvement
@@ -11,6 +11,10 @@
1111
* Special Features Section: Added support for the new Special Features/Purposes section.
1212
* Fix issue where the SDK failed to initialize offline.
1313

14+
### 2.24.0 – Oct 31, 2025
15+
## React Native
16+
* Added Fabric renderer compatibility
17+
1418
### 2.23.3 – Oct 6, 2025
1519
## React Native
1620
* Updated React Native to 0.79.6 to support 16 KB page sizes

android/build-legacy.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
def usercentrics_version = "2.24.1"
1+
def usercentrics_version = "2.24.2"
22
version usercentrics_version
33

44
buildscript {

android/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val usercentricsVersion = "2.24.1"
1+
val usercentricsVersion = "2.24.2"
22
val reactNativeVersion = "+"
33

44
fun BooleanProperty(name: String): Boolean {

android/src/androidTest/java/com/usercentrics/reactnative/RNUsercentricsModuleTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ class RNUsercentricsModuleTest {
517517
val usercentricsSDK = mockk<UsercentricsSDK>()
518518
every {
519519
usercentricsSDK.denyAllForTCF(
520-
any(), any()
520+
any(), any(), any()
521521
)
522522
}.returns(GetConsentsMock.fakeWithData)
523523

@@ -531,7 +531,7 @@ class RNUsercentricsModuleTest {
531531

532532
verify(exactly = 1) {
533533
usercentricsSDK.denyAllForTCF(
534-
TCFDecisionUILayer.FIRST_LAYER, UsercentricsConsentType.EXPLICIT
534+
TCFDecisionUILayer.FIRST_LAYER, UsercentricsConsentType.EXPLICIT, emptyList()
535535
)
536536
}
537537

android/src/main/java/com/usercentrics/reactnative/RNUsercentricsModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ internal class RNUsercentricsModule(
152152
override fun denyAllForTCF(fromLayer: Int, consentType: Int, promise: Promise) {
153153
promise.resolve(
154154
usercentricsProxy.instance.denyAllForTCF(
155-
TCFDecisionUILayer.values()[fromLayer], UsercentricsConsentType.values()[consentType]
155+
TCFDecisionUILayer.values()[fromLayer], UsercentricsConsentType.values()[consentType], emptyList()
156156
).toWritableArray()
157157
)
158158
}

ios/Manager/UsercentricsManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ final class UsercentricsManagerImplementation: UsercentricsManager {
113113
}
114114

115115
func denyAllForTCF(fromLayer: TCFDecisionUILayer, consentType: UsercentricsConsentType) -> [UsercentricsServiceConsent] {
116-
return UsercentricsCore.shared.denyAllForTCF(fromLayer: fromLayer, consentType: consentType)
116+
return UsercentricsCore.shared.denyAllForTCF(fromLayer: fromLayer, consentType: consentType, unsavedPurposeLIDecisions: [])
117117
}
118118

119119
func denyAll(consentType: UsercentricsConsentType) -> [UsercentricsServiceConsent] {

0 commit comments

Comments
 (0)