From 07c0faed66727bc021635ba90a985dbf0fbb2a80 Mon Sep 17 00:00:00 2001 From: GitHub Action <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 10:14:36 +0000 Subject: [PATCH] Release 14.21.0 --- CHANGELOG.md | 7 +++++++ MIGRATION.md | 1 + README.md | 8 +++++--- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1e14a985..907a98347 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## v14.21.0 - 2024-03-20 + +* Fix: typescript types missing SdkParameters + +## 14.20.1 - 2024-03-12 + + ## v14.20.1 - 2024-03-12 diff --git a/MIGRATION.md b/MIGRATION.md index d31f4be9e..c37a365cd 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -6,6 +6,7 @@ This documents the breaking changes between the Web SDK v13.7.0 and the Web SDK - The "split bundle" library will no longer be available on `npm`. Please use the default `npm` package instead. - The separate `style.css` import is no longer required as the Onfido stylesheet is included in the main library. +- The import changed from `import { init } from 'onfido-sdk-ui'` to `import { Onfido } from 'onfido-sdk-ui'` ## Visual & Flow changes diff --git a/README.md b/README.md index 074abed45..178464410 100644 --- a/README.md +++ b/README.md @@ -84,10 +84,10 @@ The library can also be invoked directly within an object or component: ```javascript // ES6 module import -import { init } from 'onfido-sdk-ui' +import { Onfido } from 'onfido-sdk-ui' // commonjs style require -var Onfido = require('onfido-sdk-ui') +var Onfido = require('onfido-sdk-ui').Onfido ``` The CSS style will be included inline with the JS code when the library is imported. @@ -1575,7 +1575,9 @@ Should you encounter any technical issues during integration, please contact Onf Alternatively, you can search the support documentation available via the customer experience portal, [public.support.onfido.com](http://public.support.onfido.com). -Previous versions of the SDK will be supported for a month after a new major version release. Note that when the support period has expired for an SDK version, no bug fixes will be provided, but the SDK will keep functioning (until further notice). +We recommend you update your SDK to the latest version release as frequently as possible. Customers on newer versions of the Onfido SDK consistently see better performance across user onboarding and fraud mitigation, so we strongly advise keeping your SDK integration up-to-date. + +You can review our full SDK versioning policy [here](https://developers.onfido.com/guide/sdk-version-releases). ### Licence Information