Skip to content

Commit 91db950

Browse files
committed
Changes for v1.8.1
1 parent a36990a commit 91db950

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cordova-plugin-oracle-idm-auth 1.8.0
1+
# cordova-plugin-oracle-idm-auth 1.8.1
22

33
## About the cordova-plugin-oracle-idm-auth
44
The plugin provides authentication and authorization functionality for cordova based mobile applications,
@@ -10,6 +10,7 @@ The plugin is designed to handle multiple authentication flows in parallel.
1010
* Android 5.0 or later with Android System WebView v39.0.0.0.0 minimum.
1111
* Compatible with compile and target SDK versions of 27 and min SDK version of 21
1212
* iOS 10.3 and above.
13+
* For the apps being developed using cordova android platform version below 10.1.1 please make use of plugin version 1.7.0. Plugin versions higher to 1.7.0 supports cordova android platform version 10.1.1 and above.
1314

1415
### Installation
1516
Execute this command to install cordova-plugin-oracle-idm-auth into your cordova application.

RELEASENOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release Notes
22

3+
## 1.8.1 (7 Mar, 2022)
4+
* Suppressing the error thrown over iOS platform on click of DONE button in safari browser over remote authentication flow.
5+
36
## 1.8.0 (18 Feb, 2022)
47
* Replacing the deprecated packages with latest androidx pacakge.
58

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-oracle-idm-auth",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"description": "Provides authentication and authorization functionality using the Oracle IDM SDK, supporting standard protocols like Basic Auth, OAUTH, OpenID Connect and WebSSO.",
55
"cordova": {
66
"id": "cordova-plugin-oracle-idm-auth",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
77
xmlns:android="http://schemas.android.com/apk/res/android"
88
id="cordova-plugin-oracle-idm-auth"
9-
version="1.8.0">
9+
version="1.8.1">
1010
<name>cordova-plugin-oracle-idm-auth</name>
1111
<description>Provides authentication and authorization functionality using the Oracle IDM SDK, supporting standard protocols like Basic Auth, OAUTH, OpenID Connect and WebSSO</description>
1212
<keywords>cordova,idm,authentication,auth</keywords>

src/ios/src/IdmAuthentication.m

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -796,9 +796,6 @@ - (void)safariViewControllerDidFinish:(SFSafariViewController *)controller NS_AV
796796
return;
797797

798798
[self cleanUpExternalAuthViewState];
799-
800-
// If we reach here, that means the login process was not completed successfully.
801-
[self throwErrorCodeToLoginCallback:AUTHENTICATION_FAILED];
802799
}
803800

804801
@end

www/IdmAuthFlows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* The Universal Permissive License (UPL), Version 1.0
44
*/
55
/* jshint esversion: 6 */
6-
/* Plugin Version : 1.5.1 */
6+
/* Plugin Version : 1.8.1 */
77

88
/**
99
* @file {@link https://github.com/oracle/cordova-plugin-oracle-idm-auth|cordova-plugin-oracle-idm-auth}

0 commit comments

Comments
 (0)