@getyoti/react-face-capture 2.3.2 → 2.5.0
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 +22 -0
- package/README.md +8 -8
- package/index.js +7 -7
- package/index.js.LICENSE.txt +1 -1
- package/package.json +1 -1
- package/vanilla/index.js +10 -10
- package/vanilla/index.js.LICENSE.txt +1 -1
- package/vanilla/index.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## v2.5.0
|
|
4
|
+
|
|
5
|
+
### New features
|
|
6
|
+
|
|
7
|
+
- Further enhancements to secure capture and injection attack detection.
|
|
8
|
+
|
|
9
|
+
### Fixes
|
|
10
|
+
|
|
11
|
+
- Made the camera load faster.
|
|
12
|
+
- Fixed an issue where loading timeout would not trigger under specific circumstances.
|
|
13
|
+
- Fixed a small misalignment with the icon in the user feedback.
|
|
14
|
+
|
|
15
|
+
## v2.4.0
|
|
16
|
+
|
|
17
|
+
### New features
|
|
18
|
+
|
|
19
|
+
- Further enhancements to secure capture and injection attack detection.
|
|
20
|
+
|
|
21
|
+
### Fixes
|
|
22
|
+
|
|
23
|
+
- Fix distorted layout on iOS devices.
|
|
24
|
+
|
|
3
25
|
## v2.3.2
|
|
4
26
|
|
|
5
27
|
### New features
|
package/README.md
CHANGED
|
@@ -24,12 +24,12 @@ The package depends on the following peer dependencies
|
|
|
24
24
|
|
|
25
25
|
| Browser | Versions |
|
|
26
26
|
| ------- | ------------------- |
|
|
27
|
-
| and_chr |
|
|
28
|
-
| chrome |
|
|
29
|
-
| edge |
|
|
30
|
-
| firefox |
|
|
31
|
-
| ios_saf |
|
|
32
|
-
| safari |
|
|
27
|
+
| and_chr | 131 |
|
|
28
|
+
| chrome | 132,131,130,129 |
|
|
29
|
+
| edge | 131,130 |
|
|
30
|
+
| firefox | 134,133,132,131 |
|
|
31
|
+
| ios_saf | 18.2,18.1,18.0 |
|
|
32
|
+
| safari | 18.2,18.1,18.0,17.6 |
|
|
33
33
|
|
|
34
34
|
</browserSupportTable>
|
|
35
35
|
|
|
@@ -355,6 +355,6 @@ that it does not need to resolve the dependency locally so this comment cannot
|
|
|
355
355
|
be removed before webpack builds the final javascript files for the web
|
|
356
356
|
application.
|
|
357
357
|
|
|
358
|
-
### iOS distorted layout
|
|
358
|
+
### iOS distorted layout (version < 2.4.0)
|
|
359
359
|
|
|
360
|
-
We are aware of a rare display issue on iOS devices which can make the video element appear distorted
|
|
360
|
+
We are aware of a rare display issue on iOS devices which can make the video element appear distorted in versions prior to 2.4.0. Refreshing or reloading will resolve this, and it should not happen often.
|