Skip to content

Commit 6646661

Browse files
author
RN SDK Release User
committed
v13.2.0 release
1 parent 7ca57d6 commit 6646661

File tree

11 files changed

+203
-192
lines changed

11 files changed

+203
-192
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [13.2.0] - 2024-09-10
9+
10+
### Changed:
11+
12+
- Updated underlying Onfido native SDK version:
13+
- iOS 30.6.x (up from 30.5.x)
14+
- Android 21.2.x (up from 21.1.x)
15+
816
## [13.1.0] - 2024-08-21
917

1018
### Changed:

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,9 @@ To configure NFC, include the `nfcOption` parameter with the three options below
259259

260260
## Initializing the SDK
261261

262+
> ⚠️ The following SDK initialization documentation applies to identity verification workflows orchestrated using Onfido Studio.
263+
> For integrations where the verification steps are manually defined and configured, please refer to the [Advanced flow customization](#advanced-flow-customization) section below.
264+
262265
The Reach Native SDK has multiple initialization and customization options that provide flexibility to your integration, while remaining easy to integrate.
263266

264267
### Defining a workflow

SampleApp/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ PODS:
1111
- ReactCommon/turbomodule/core (= 0.72.6)
1212
- fmt (6.2.1)
1313
- glog (0.3.5)
14-
- Onfido (30.5.0)
15-
- onfido-react-native-sdk (13.0.0):
16-
- Onfido (~> 30.5.0)
14+
- Onfido (30.6.0)
15+
- onfido-react-native-sdk (13.2.0):
16+
- Onfido (~> 30.6.0)
1717
- React
1818
- RCT-Folly (2021.07.22.00):
1919
- boost
@@ -529,8 +529,8 @@ SPEC CHECKSUMS:
529529
FBReactNativeSpec: 966f29e4e697de53a3b366355e8f57375c856ad9
530530
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
531531
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
532-
Onfido: 7349ac22e556eda20b7b360c06bdd29204580861
533-
onfido-react-native-sdk: 1f46e061e3b249d3231f1e369e9ea2540901c958
532+
Onfido: f6685954b34b248f18052b3e8cb5ef13938283dc
533+
onfido-react-native-sdk: 5b017fdef898816827661b6117cac3869f141852
534534
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
535535
RCTRequired: 28469809442eb4eb5528462705f7d852948c8a74
536536
RCTTypeSafety: e9c6c409fca2cc584e5b086862d562540cb38d29

SampleApp/yalc.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "v1",
33
"packages": {
44
"@onfido/react-native-sdk": {
5-
"signature": "53cc50894149d595a27b514f8f65db92",
5+
"signature": "a2fc7f7246fbd7864101f0c0684d0aaa",
66
"file": true
77
}
88
}

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def DEFAULT_COMPILE_SDK_VERSION = 34
1414
def DEFAULT_MIN_SDK_VERSION = 21
1515
def DEFAULT_TARGET_SDK_VERSION = 34
16-
def NATIVE_ANDROID_SDK_VERSION = "21.1.+"
16+
def NATIVE_ANDROID_SDK_VERSION = "21.2.+"
1717

1818
def safeExtGet(prop, fallback) {
1919
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback

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="13.1.0" />
11+
android:value="13.2.0" />
1212
</application>
1313
</manifest>

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 = @"13.1.0";
16+
_pluginVersion = @"13.2.0";
1717
}
1818
return self;
1919
}

ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : Flip
2727
# end
2828

2929
target 'OnfidoSdk' do
30-
pod 'Onfido', '~> 30.5.0'
30+
pod 'Onfido', '~> 30.6.0'
3131

3232
config = use_native_modules!
3333
use_react_native!(

0 commit comments

Comments
 (0)