Skip to content

Commit

Permalink
Update for release 13.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 17, 2024
1 parent b8099af commit bf5320e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
4 changes: 4 additions & 0 deletions BASE_32_VERSION_MAPPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,7 @@
| FW | 13.5.1 | 2023-10-12 | |
| FX | 13.6.0 | 2023-10-20 | |
| FY | 13.6.1 | 2023-10-24 | |
| FZ | 13.7.0 | 2023-11-08 | |
| GA | 13.8.0 | 2024-01-02 | |
| GB | 13.8.1 | 2024-01-17 | |
| GC | 13.7.1 | 2024-01-17 | |
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ This project adheres to the Node [default version scheme](https://docs.npmjs.com

### Changed

## [13.6.1] - 2023-10-24
## [13.7.1] - 2024-01-17

### Fixed

- Removed check for audio permission in webview.

## [13.7.0] - 2023-12-01

### Changed

Expand Down Expand Up @@ -1652,8 +1658,9 @@ Install with `npm install [email protected]`

- NPM (commonjs2) style of importing the library now works

[next-version]: https://github.com/onfido/onfido-sdk-ui/compare/13.6.1...development
[13.6.1]: https://github.com/onfido/onfido-sdk-ui/compare/13.6.0...13.6.1
[next-version]: https://github.com/onfido/onfido-sdk-ui/compare/13.7.1...development
[13.7.1]: https://github.com/onfido/onfido-sdk-ui/compare/13.7.0...13.7.1
[13.7.0]: https://github.com/onfido/onfido-sdk-ui/compare/13.6.0...13.7.0
[13.6.0]: https://github.com/onfido/onfido-sdk-ui/compare/13.5.1...13.6.0
[13.5.1]: https://github.com/onfido/onfido-sdk-ui/compare/13.5.0...13.5.1
[13.5.0]: https://github.com/onfido/onfido-sdk-ui/compare/13.4.0...13.5.0
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,17 @@ Callback that fires when an error occurs. The callback returns the following err
}
```

- `permissions_unavailable`

`permissions_unavailable` will be returned if the SDK was unable to access or request the necessary permissions. This may occur when the web SDK is loaded within a webview or other custom browsers.

```javascript
{
type: "permissions_unavailable",
message: "Unable to retrieve or access required user permissions"
}
```

### `onUserExit {Function} optional`

Callback that fires when the user abandons the flow without completing it.
Expand Down Expand Up @@ -1049,6 +1060,10 @@ If embedded inside a cross-origin iframe, the SDK may fail to access the camera

Onfido Web SDK versions <13.0.0 have a parameter named `uploadFallback` that can be set on both the document step and the face step. This parameter allowed clients to present end-users with a file input capability during the SDK flow. This client-side optional parameter has been removed in Web SDK 13 and above to enhance security which means users will not have the option to upload files during the SDK flow. However, file upload can be enabled as an option for end-users as a backend configuration if requested through the Onfido Support Team.

#### Permissions issues when using the web SDK in a webview

For recommendations and code samples on how to embed the Onfido web SDK in a webview, please refer to the guide [Using the Onfido web SDK in a webview](https://developers.onfido.com/guide/sdk-webview-guide) available on Developer Hub.

### Support

Should you encounter any technical issues during integration, please contact Onfido's Customer Support team via [email](mailto:[email protected]), including the word ISSUE: at the start of the subject line.
Expand Down

0 comments on commit bf5320e

Please sign in to comment.