Skip to content

Commit

Permalink
Release 14.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 20, 2024
1 parent 79e91da commit 07c0fae
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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


Expand Down
1 change: 1 addition & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 07c0fae

Please sign in to comment.