Skip to content

Commit

Permalink
v13.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
RN SDK Release User committed Sep 17, 2024
1 parent 7ca57d6 commit 6646661
Show file tree
Hide file tree
Showing 11 changed files with 203 additions and 192 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [13.2.0] - 2024-09-10

### Changed:

- Updated underlying Onfido native SDK version:
- iOS 30.6.x (up from 30.5.x)
- Android 21.2.x (up from 21.1.x)

## [13.1.0] - 2024-08-21

### Changed:
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,9 @@ To configure NFC, include the `nfcOption` parameter with the three options below

## Initializing the SDK

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

### Defining a workflow
Expand Down
10 changes: 5 additions & 5 deletions SampleApp/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ PODS:
- ReactCommon/turbomodule/core (= 0.72.6)
- fmt (6.2.1)
- glog (0.3.5)
- Onfido (30.5.0)
- onfido-react-native-sdk (13.0.0):
- Onfido (~> 30.5.0)
- Onfido (30.6.0)
- onfido-react-native-sdk (13.2.0):
- Onfido (~> 30.6.0)
- React
- RCT-Folly (2021.07.22.00):
- boost
Expand Down Expand Up @@ -529,8 +529,8 @@ SPEC CHECKSUMS:
FBReactNativeSpec: 966f29e4e697de53a3b366355e8f57375c856ad9
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
Onfido: 7349ac22e556eda20b7b360c06bdd29204580861
onfido-react-native-sdk: 1f46e061e3b249d3231f1e369e9ea2540901c958
Onfido: f6685954b34b248f18052b3e8cb5ef13938283dc
onfido-react-native-sdk: 5b017fdef898816827661b6117cac3869f141852
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
RCTRequired: 28469809442eb4eb5528462705f7d852948c8a74
RCTTypeSafety: e9c6c409fca2cc584e5b086862d562540cb38d29
Expand Down
2 changes: 1 addition & 1 deletion SampleApp/yalc.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "v1",
"packages": {
"@onfido/react-native-sdk": {
"signature": "53cc50894149d595a27b514f8f65db92",
"signature": "a2fc7f7246fbd7864101f0c0684d0aaa",
"file": true
}
}
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def DEFAULT_COMPILE_SDK_VERSION = 34
def DEFAULT_MIN_SDK_VERSION = 21
def DEFAULT_TARGET_SDK_VERSION = 34
def NATIVE_ANDROID_SDK_VERSION = "21.1.+"
def NATIVE_ANDROID_SDK_VERSION = "21.2.+"

def safeExtGet(prop, fallback) {
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

<meta-data
android:name="onfido_integration_version"
android:value="13.1.0" />
android:value="13.2.0" />
</application>
</manifest>
2 changes: 1 addition & 1 deletion ios/PluginMetadata.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ - (instancetype)init
self = [super init];
if (self) {
_pluginPlatform = @"react-native";
_pluginVersion = @"13.1.0";
_pluginVersion = @"13.2.0";
}
return self;
}
Expand Down
2 changes: 1 addition & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : Flip
# end

target 'OnfidoSdk' do
pod 'Onfido', '~> 30.5.0'
pod 'Onfido', '~> 30.6.0'

config = use_native_modules!
use_react_native!(
Expand Down
Loading

0 comments on commit 6646661

Please sign in to comment.