react-native-persona 2.0.2 → 2.1.2
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 +30 -2
- package/RNPersonaInquiry.podspec +1 -1
- package/android/build.gradle +1 -1
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,14 +7,42 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
|
|
8
8
|
## Unreleased
|
|
9
9
|
|
|
10
|
+
## [v2.1.2] - 2021-12-17
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Upgrade to iOS Inquiry SDK 2.1.2
|
|
15
|
+
- Upgrade to Android Inquiry SDK 2.1.1
|
|
16
|
+
|
|
17
|
+
## [v2.1.1] - 2021-12-02
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Upgrade to iOS Inquiry SDK 2.1.1
|
|
22
|
+
|
|
23
|
+
## [v2.1.0] - 2021-11-18
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- Upgrade to iOS Inquiry SDK 2.1.0
|
|
28
|
+
- Upgrade to Android Inquiry SDK 2.1.0
|
|
29
|
+
|
|
30
|
+
## [v2.0.3] - 2021-10-14
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- Upgrade to Android Inquiry SDK 2.0.2
|
|
35
|
+
|
|
10
36
|
## [v2.0.2] - 2021-09-09
|
|
11
37
|
|
|
12
38
|
### Fixed
|
|
39
|
+
|
|
13
40
|
- Re-added missing compiled JavaScript files
|
|
14
41
|
|
|
15
42
|
## [v2.0.1] - 2021-09-08
|
|
16
43
|
|
|
17
44
|
### Changed
|
|
45
|
+
|
|
18
46
|
- Upgrade to iOS Inquiry SDK 2.0.1
|
|
19
47
|
|
|
20
48
|
## [v2.0.0] - 2021-08-26
|
|
@@ -27,8 +55,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
27
55
|
|
|
28
56
|
- Upgrade to iOS Inquiry SDK 2.0.0
|
|
29
57
|
- Upgrade to Android Inquiry SDK 2.0.0
|
|
30
|
-
- `onSuccess` and `onFailure` callbacks are now represented by `onComplete` with a `status` of "completed" or "failed" (
|
|
31
|
-
be customizable in the future)
|
|
58
|
+
- `onSuccess` and `onFailure` callbacks are now represented by `onComplete` with a `status` of "completed" or "failed" (
|
|
59
|
+
though can be customizable in the future)
|
|
32
60
|
- Support Inquiry templates prefixed with `itmpl_` instead of `tmpl_`
|
|
33
61
|
- `Attributes` returned in the `Success` response are now in the `Complete`'s `fields` response
|
|
34
62
|
- `accessToken` has been renamed to `sessionToken` on the Inquiry builder
|
package/RNPersonaInquiry.podspec
CHANGED
package/android/build.gradle
CHANGED
|
@@ -79,7 +79,7 @@ dependencies {
|
|
|
79
79
|
implementation 'com.facebook.react:react-native:+' // From node_modules
|
|
80
80
|
|
|
81
81
|
// NOTE: After updating, please update the `sdkVersions.android` in example/package.json
|
|
82
|
-
implementation 'com.withpersona.sdk:inquiry:2.
|
|
82
|
+
implementation 'com.withpersona.sdk:inquiry:2.1.1'
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
def configureReactNativePom(def pom) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-persona",
|
|
3
3
|
"title": "React Native Persona",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.1.2",
|
|
5
5
|
"description": "Launch a mobile native implementation of the Persona inquiry flow from React Native.",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
"README.md"
|
|
27
27
|
],
|
|
28
28
|
"keywords": [
|
|
29
|
-
"react-native"
|
|
29
|
+
"react-native",
|
|
30
|
+
"persona",
|
|
31
|
+
"idv"
|
|
30
32
|
],
|
|
31
33
|
"author": {
|
|
32
34
|
"name": "Persona Identities, Inc.",
|
|
@@ -59,7 +61,7 @@
|
|
|
59
61
|
"cosmiconfig": "^6.0.0",
|
|
60
62
|
"inquirer": "^7.1.0",
|
|
61
63
|
"minimist": "^1.2.5",
|
|
62
|
-
"object-path": "^0.11.
|
|
64
|
+
"object-path": "^0.11.8",
|
|
63
65
|
"pkg-up": "^3.1.0",
|
|
64
66
|
"xmlbuilder2": "^2.1.2"
|
|
65
67
|
}
|