Skip to content

Commit bc7c7b2

Browse files
author
RN SDK Release User
committed
v15.4.1 release
1 parent af18769 commit bc7c7b2

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Future version
99

10+
## [15.4.1] - 2026-01-29
11+
12+
### Fixed:
13+
14+
- Fixed `onTokenGenerated` callback not providing the biometric token on iOS when using custom encrypted biometric token storage, which prevented the token from being stored and caused subsequent Authentication to fail
15+
1016
## [15.4.0] - 2026-01-06
1117

1218
### Changed:

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
<meta-data
1010
android:name="onfido_integration_version"
11-
android:value="15.4.0" />
11+
android:value="15.4.1" />
1212
</application>
1313
</manifest>

ios/EncryptedBiometricTokenHandlerReceiver.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ extension EncryptedBiometricTokenHandlerReceiver: EncryptedBiometricTokenHandler
3838
func onTokenGenerated(customerUserHash: String, encryptedBiometricToken: String) {
3939
let dictionary = [
4040
"customerUserHash" : customerUserHash,
41-
"encryptedBiometricToken" : encryptedBiometricToken
41+
"biometricToken" : encryptedBiometricToken
4242
]
4343
onTokenGeneratedCallback?(dictionary)
4444
}

ios/PluginMetadata.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ - (instancetype)init
1313
self = [super init];
1414
if (self) {
1515
_pluginPlatform = @"react-native";
16-
_pluginVersion = @"15.4.0";
16+
_pluginVersion = @"15.4.1";
1717
}
1818
return self;
1919
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@onfido/react-native-sdk",
33
"title": "React Native Onfido Sdk",
4-
"version": "15.4.0",
4+
"version": "15.4.1",
55
"description": "Onfido React Native SDK",
66
"main": "index.ts",
77
"scripts": {

0 commit comments

Comments
 (0)