File tree 6 files changed +27
-9
lines changed
src/main/java/com/mindee/product/us/w9
6 files changed +27
-9
lines changed Original file line number Diff line number Diff line change 6
6
7
7
# Allows to run this workflow manually from the Actions tab
8
8
workflow_dispatch :
9
+
9
10
jobs :
10
- build :
11
- name : Run Tests
11
+ test_sample_code :
12
+ name : Test Sample Code
12
13
runs-on : ubuntu-latest
13
14
strategy :
15
+ max-parallel : 2
14
16
matrix :
15
17
java-version :
16
18
- " 17"
Original file line number Diff line number Diff line change 1
1
# Mindee Java API Library Changelog
2
2
3
+ ## v4.4.0 - 2023-09-23
4
+ ### Changes
5
+ * :sparkles : add barcode reader v1
6
+ * :sparkles : add support for FR ID card v2
7
+ * :sparkles : add support for cropper v1
8
+ * :sparkles : add error code in HTTP exceptions
9
+ * :sparkles : add raw response string in response object
10
+ * :sparkles : add built-in async call polling
11
+ * :sparkles : add multi receipts detector v1
12
+ * :sparkles : better HTTP error printing
13
+
14
+ ### Fixes
15
+ * :bug : fix minor spacing issue when printing lists
16
+ * :bug : take line height tolerance into account when evaluating fields
17
+
18
+
3
19
## v4.3.0 - 2023-09-01
4
20
### Changes
5
21
* :sparkles : add cropper option
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.mindee.sdk</groupId >
7
7
<artifactId >mindee-api-java</artifactId >
8
- <version >4.3 .0</version >
8
+ <version >4.4 .0</version >
9
9
<modelVersion >4.0.0</modelVersion >
10
10
<name >Mindee Java Helper Library</name >
11
11
<description >Java Library to call Mindee's Off-The-Shelf and Custom APIs</description >
225
225
<dependency >
226
226
<artifactId >pdfbox</artifactId >
227
227
<groupId >org.apache.pdfbox</groupId >
228
- <version >2.0.27 </version >
228
+ <version >2.0.29 </version >
229
229
</dependency >
230
230
<dependency >
231
231
<artifactId >jackson-databind</artifactId >
232
232
<groupId >com.fasterxml.jackson.core</groupId >
233
- <version >2.14.2 </version >
233
+ <version >2.14.3 </version >
234
234
</dependency >
235
235
<dependency >
236
236
<artifactId >jackson-datatype-jsr310</artifactId >
237
237
<groupId >com.fasterxml.jackson.datatype</groupId >
238
- <version >2.14.2 </version >
238
+ <version >2.14.3 </version >
239
239
</dependency >
240
240
<dependency >
241
241
<groupId >org.apache.httpcomponents.client5</groupId >
Original file line number Diff line number Diff line change 6
6
import lombok .Getter ;
7
7
8
8
/**
9
- * The definition for US W9, API version 1.
9
+ * The definition for W9, API version 1.
10
10
*/
11
11
@ Getter
12
12
@ JsonIgnoreProperties (ignoreUnknown = true )
Original file line number Diff line number Diff line change 7
7
import lombok .Getter ;
8
8
9
9
/**
10
- * Document data for US W9, API version 1.
10
+ * Document data for W9, API version 1.
11
11
*/
12
12
@ Getter
13
13
@ EqualsAndHashCode
Original file line number Diff line number Diff line change 9
9
import lombok .Getter ;
10
10
11
11
/**
12
- * Page data for US W9, API version 1.
12
+ * Page data for W9, API version 1.
13
13
*/
14
14
@ Getter
15
15
@ EqualsAndHashCode (callSuper = true )
You can’t perform that action at this time.
0 commit comments