Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 5404916

Browse files
author
jenkins
committed
Automatically built release by Jenkins
1 parent 51abba3 commit 5404916

File tree

69 files changed

+894
-603
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+894
-603
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Release notes
22

3+
## 6.12.0
4+
5+
### What's New
6+
7+
- **Beta Feature: Second Page Passport Scanning**
8+
9+
- We've launched support for scanning and extracting data from the second page of passports for select countries - Slovenia, Ireland, and New Zealand.
10+
11+
- When BlinkID detects one of these passports, a UI message will guide the user to the second page. By default, this feature is disabled but can be enabled via the `scanPassportDataPageOnly` setting on the `BlinkIdMultiSideRecognizer`.
12+
If set to `false`, it will be required to scan the second page of certain passports. This feature is in beta, and your feedback is appreciated.
13+
14+
- USA Green Card - Enabled Data Match for the `Document Number` field, matching values from the VIZ (Visual Inspection Zone) and MRZ to further enhance extraction reliability.
15+
16+
### Bug Fixes
17+
18+
- Spain ID: Fixed an issue with indefinite expiry dates, ensuring consistent values between the MRZ and Visual Inspection Zone (VIZ).
19+
- Bulgaria ID: Improved parsing for indefinite expiry dates in the MRZ for better accuracy.
20+
- Netherlands ID & Norway Passport: Resolved issues with the `Personal ID number` field that were causing the data match feature to fail.
21+
- Chinese Passport: Enhanced reliability of extracted data with additional logic for the `Document Number` field.
22+
- German ID & Luxembourg ID: Adjusted name extraction logic to resolve issues with name separation, ensuring more consistent results.
23+
324
## 6.11.2
425

526
### Bug fixes

examples/blinkid-camera/javascript/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ function main()
3434
}
3535

3636
// 1. It's possible to obtain a free trial license key on microblink.com
37-
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPk4/w35CpJlWLLM4ZyECowefRDPjH5Dfxb3WGYIgK9h1rDN8s3WLDnmUgV5pwnhTXwfP6HtGUPepBvFm0A6KYBCcjK9N1Tz+1uS1dk7R10SMqKxkNcINyfyU52LdXvQCebuqxNs+VA0QGd5TzQTZ6mf9l6SmywUYNt6a86KpspRxPF3muGKaZcTgwGRxX/X2gzRXguPKYDiRaVsvXRnP5fBdzZmuCNEpURk3fl/jQwdrarvU3mfnU/q7MLYRJgDgJPf0RAARxeToKZB1ajGYuLE0KuReGyCJ8KjXV2VKknK3yVcbNUmznhHRuyb5STMFf9zPKDyYYnk=";
37+
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPk4/w35CpJlWK/M5Z1YHOnAbZvRrJQKA5yeWBULBxIcgKxSKZZenkTa3VXgWP+U6fELGxMVguNB+zd2yh6PkZ4g/xBeGxvDHQKnTQXeC6FsbwHjNayCLQD+YCouBvUVE9/v7mxFJ378Nps2V2H8+6rqKGy5PSu+//8wRx53wUQx9g1hiL2gaAi4BUoMb5bOG38S9gXkKbl57B0qxg/oOYx7MbgsegZuGY7R4mQTmA7yTCyl1tfAohlGKaYUS9c8M++Xx/I97BI8TTAPLpCJW0BupNMwQrpVAd1F/ea7PikhgxMy+4ui2UisI2KMl6VXUSBYjDDasjEc=";
3838

3939
if (window.location.hostname === "blinkid.github.io")
4040
{
41-
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9hPYYlTvZbRmaDvoDhnbWmMmERsza0dbcQRfYfJc+PiExpo+ZxiF5Iht7BYFPffxJF2oj9NBsQudAdwf5NwMmSUA2oblr598cmW3l4vcKr48JVQeAmJAlcTDC6Ditlemmyu4vVSjTqovd3CPhjFezsefzgGp0FOdzXCLv29wEqreSkSQp7v3c+tKvBxSNtFkf8PWUe/9jkiHd/j9414oUZEMSE+PacACuOX163OmD6cYF2EkUqi8ot+hwJM5GVWF/w1vJcmAdUW4QRhqH91oI9obOhAUe3ruHV3aTgK2yAUs+2CjyOH54wlhOGaYmmRQYjtSMcZqqjvQ==";
41+
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9hPYYlTvZbRmaE/oHh+yvgYVF3LtUbM9eAVi3e9cLmZWMbNF4v7LEBQd6jt8APNyxZoBq5cBff+9bpcWuts7Uy8rBda/pQtaCK9QnAs9EnaLiQjg5IWBaVJ51jF9lWguu5vLR78OX5VNhw12RUSJRE+hthq/XGJHxGvYP/9M1pXoZkoI1+sPf4mpJ6GSsdKUMWbbaRVYQotdPetRRzlmjuiv8ryAWyX51KYsTOG0eYZrgQrJ44Bn4lqVI1FLEziE0f7RvjMTkNQNYwOyMbQviVSe9XGuDDJNlh9xp1nDY/QJQM2NqOKgf16D0yMRRiTisIj51yj+Yv1Q==";
4242
}
4343

4444
// 2. Create instance of SDK load settings with your license key

examples/blinkid-camera/javascript/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ <h1 id="msg">Loading...</h1>
2424
</body>
2525

2626
<!-- Keep in mind that the jsDelivr CDN is used for demonstration, it's not intended to be used in production! -->
27-
<script src="https://cdn.jsdelivr.net/npm/@microblink/blinkid-in-browser-sdk@6.11.2/dist/blinkid-sdk.js"></script>
27+
<script src="https://cdn.jsdelivr.net/npm/@microblink/blinkid-in-browser-sdk@6.12.0/dist/blinkid-sdk.js"></script>
2828
<script src="app.js"></script>
2929
</html>

examples/blinkid-camera/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"typescript": "^3.9.5"
2020
},
2121
"dependencies": {
22-
"@microblink/blinkid-in-browser-sdk": "~6.11.2"
22+
"@microblink/blinkid-in-browser-sdk": "~6.12.0"
2323
}
2424
}

examples/blinkid-camera/typescript/src/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function main() {
3333
}
3434

3535
// 1. It's possible to obtain a free trial license key on microblink.com
36-
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPk4/w35CpJlWLLM4ZyECowefRDPjH5Dfxb3WGYIgK9h1rDN8s3WLDnmUgV5pwnhTXwfP6HtGUPepBvFm0A6KYBCcjK9N1Tz+1uS1dk7R10SMqKxkNcINyfyU52LdXvQCebuqxNs+VA0QGd5TzQTZ6mf9l6SmywUYNt6a86KpspRxPF3muGKaZcTgwGRxX/X2gzRXguPKYDiRaVsvXRnP5fBdzZmuCNEpURk3fl/jQwdrarvU3mfnU/q7MLYRJgDgJPf0RAARxeToKZB1ajGYuLE0KuReGyCJ8KjXV2VKknK3yVcbNUmznhHRuyb5STMFf9zPKDyYYnk=";
36+
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPk4/w35CpJlWK/M5Z1YHOnAbZvRrJQKA5yeWBULBxIcgKxSKZZenkTa3VXgWP+U6fELGxMVguNB+zd2yh6PkZ4g/xBeGxvDHQKnTQXeC6FsbwHjNayCLQD+YCouBvUVE9/v7mxFJ378Nps2V2H8+6rqKGy5PSu+//8wRx53wUQx9g1hiL2gaAi4BUoMb5bOG38S9gXkKbl57B0qxg/oOYx7MbgsegZuGY7R4mQTmA7yTCyl1tfAohlGKaYUS9c8M++Xx/I97BI8TTAPLpCJW0BupNMwQrpVAd1F/ea7PikhgxMy+4ui2UisI2KMl6VXUSBYjDDasjEc=";
3737

3838
// 2. Create instance of SDK load settings with your license key
3939
const loadSettings = new BlinkIDSDK.WasmSDKLoadSettings(licenseKey);

examples/blinkid-file/javascript/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ function main()
3030
}
3131

3232
// 1. It's possible to obtain a free trial license key on microblink.com
33-
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPk4/w35CpJlWLLM4ZyECowefRDPjH5Dfxb3WGYIgK9h1rDN8s3WLDnmUgV5pwnhTXwfP6HtGUPepBvFm0A6KYBCcjK9N1Tz+1uS1dk7R10SMqKxkNcINyfyU52LdXvQCebuqxNs+VA0QGd5TzQTZ6mf9l6SmywUYNt6a86KpspRxPF3muGKaZcTgwGRxX/X2gzRXguPKYDiRaVsvXRnP5fBdzZmuCNEpURk3fl/jQwdrarvU3mfnU/q7MLYRJgDgJPf0RAARxeToKZB1ajGYuLE0KuReGyCJ8KjXV2VKknK3yVcbNUmznhHRuyb5STMFf9zPKDyYYnk=";
33+
let licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPk4/w35CpJlWK/M5Z1YHOnAbZvRrJQKA5yeWBULBxIcgKxSKZZenkTa3VXgWP+U6fELGxMVguNB+zd2yh6PkZ4g/xBeGxvDHQKnTQXeC6FsbwHjNayCLQD+YCouBvUVE9/v7mxFJ378Nps2V2H8+6rqKGy5PSu+//8wRx53wUQx9g1hiL2gaAi4BUoMb5bOG38S9gXkKbl57B0qxg/oOYx7MbgsegZuGY7R4mQTmA7yTCyl1tfAohlGKaYUS9c8M++Xx/I97BI8TTAPLpCJW0BupNMwQrpVAd1F/ea7PikhgxMy+4ui2UisI2KMl6VXUSBYjDDasjEc=";
3434

3535
if (window.location.hostname === "blinkid.github.io")
3636
{
37-
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9hPYYlTvZbRmaDvoDhnbWmMmERsza0dbcQRfYfJc+PiExpo+ZxiF5Iht7BYFPffxJF2oj9NBsQudAdwf5NwMmSUA2oblr598cmW3l4vcKr48JVQeAmJAlcTDC6Ditlemmyu4vVSjTqovd3CPhjFezsefzgGp0FOdzXCLv29wEqreSkSQp7v3c+tKvBxSNtFkf8PWUe/9jkiHd/j9414oUZEMSE+PacACuOX163OmD6cYF2EkUqi8ot+hwJM5GVWF/w1vJcmAdUW4QRhqH91oI9obOhAUe3ruHV3aTgK2yAUs+2CjyOH54wlhOGaYmmRQYjtSMcZqqjvQ==";
37+
licenseKey = "sRwAAAYRYmxpbmtpZC5naXRodWIuaW+qBF9hPYYlTvZbRmaE/oHh+yvgYVF3LtUbM9eAVi3e9cLmZWMbNF4v7LEBQd6jt8APNyxZoBq5cBff+9bpcWuts7Uy8rBda/pQtaCK9QnAs9EnaLiQjg5IWBaVJ51jF9lWguu5vLR78OX5VNhw12RUSJRE+hthq/XGJHxGvYP/9M1pXoZkoI1+sPf4mpJ6GSsdKUMWbbaRVYQotdPetRRzlmjuiv8ryAWyX51KYsTOG0eYZrgQrJ44Bn4lqVI1FLEziE0f7RvjMTkNQNYwOyMbQviVSe9XGuDDJNlh9xp1nDY/QJQM2NqOKgf16D0yMRRiTisIj51yj+Yv1Q==";
3838
}
3939

4040
// 2. Create instance of SDK load settings with your license key

examples/blinkid-file/javascript/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ <h1>Processing...</h1>
2323
</body>
2424

2525
<!-- Keep in mind that the jsDelivr CDN is used for demonstration, it's not intended to be used in production! -->
26-
<script src="https://cdn.jsdelivr.net/npm/@microblink/blinkid-in-browser-sdk@6.11.2/dist/blinkid-sdk.js"></script>
26+
<script src="https://cdn.jsdelivr.net/npm/@microblink/blinkid-in-browser-sdk@6.12.0/dist/blinkid-sdk.js"></script>
2727
<script src="app.js"></script>
2828
</html>

examples/blinkid-file/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"typescript": "^3.9.5"
2020
},
2121
"dependencies": {
22-
"@microblink/blinkid-in-browser-sdk": "~6.11.2"
22+
"@microblink/blinkid-in-browser-sdk": "~6.12.0"
2323
}
2424
}

examples/blinkid-file/typescript/src/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function main() {
2929
}
3030

3131
// 1. It's possible to obtain a free trial license key on microblink.com
32-
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPk4/w35CpJlWLLM4ZyECowefRDPjH5Dfxb3WGYIgK9h1rDN8s3WLDnmUgV5pwnhTXwfP6HtGUPepBvFm0A6KYBCcjK9N1Tz+1uS1dk7R10SMqKxkNcINyfyU52LdXvQCebuqxNs+VA0QGd5TzQTZ6mf9l6SmywUYNt6a86KpspRxPF3muGKaZcTgwGRxX/X2gzRXguPKYDiRaVsvXRnP5fBdzZmuCNEpURk3fl/jQwdrarvU3mfnU/q7MLYRJgDgJPf0RAARxeToKZB1ajGYuLE0KuReGyCJ8KjXV2VKknK3yVcbNUmznhHRuyb5STMFf9zPKDyYYnk=";
32+
const licenseKey = "sRwAAAYJbG9jYWxob3N0r/lOPk4/w35CpJlWK/M5Z1YHOnAbZvRrJQKA5yeWBULBxIcgKxSKZZenkTa3VXgWP+U6fELGxMVguNB+zd2yh6PkZ4g/xBeGxvDHQKnTQXeC6FsbwHjNayCLQD+YCouBvUVE9/v7mxFJ378Nps2V2H8+6rqKGy5PSu+//8wRx53wUQx9g1hiL2gaAi4BUoMb5bOG38S9gXkKbl57B0qxg/oOYx7MbgsegZuGY7R4mQTmA7yTCyl1tfAohlGKaYUS9c8M++Xx/I97BI8TTAPLpCJW0BupNMwQrpVAd1F/ea7PikhgxMy+4ui2UisI2KMl6VXUSBYjDDasjEc=";
3333

3434
// 2. Create instance of SDK load settings with your license key
3535
const loadSettings = new BlinkIDSDK.WasmSDKLoadSettings(licenseKey);

examples/getting-started/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"vite": "^5.3.1"
1313
},
1414
"dependencies": {
15-
"@microblink/blinkid-in-browser-sdk": "~6.11.2"
15+
"@microblink/blinkid-in-browser-sdk": "~6.12.0"
1616
}
1717
}

0 commit comments

Comments
 (0)