File tree Expand file tree Collapse file tree 6 files changed +27
-9
lines changed
src/main/java/com/mindee/product/us/w9 Expand file tree Collapse file tree 6 files changed +27
-9
lines changed Original file line number Diff line number Diff line change 66
77 # Allows to run this workflow manually from the Actions tab
88 workflow_dispatch :
9+
910jobs :
10- build :
11- name : Run Tests
11+ test_sample_code :
12+ name : Test Sample Code
1213 runs-on : ubuntu-latest
1314 strategy :
15+ max-parallel : 2
1416 matrix :
1517 java-version :
1618 - " 17"
Original file line number Diff line number Diff line change 11# Mindee Java API Library Changelog
22
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+
319## v4.3.0 - 2023-09-01
420### Changes
521* :sparkles : add cropper option
Original file line number Diff line number Diff line change 55
66 <groupId >com.mindee.sdk</groupId >
77 <artifactId >mindee-api-java</artifactId >
8- <version >4.3 .0</version >
8+ <version >4.4 .0</version >
99 <modelVersion >4.0.0</modelVersion >
1010 <name >Mindee Java Helper Library</name >
1111 <description >Java Library to call Mindee's Off-The-Shelf and Custom APIs</description >
225225 <dependency >
226226 <artifactId >pdfbox</artifactId >
227227 <groupId >org.apache.pdfbox</groupId >
228- <version >2.0.27 </version >
228+ <version >2.0.29 </version >
229229 </dependency >
230230 <dependency >
231231 <artifactId >jackson-databind</artifactId >
232232 <groupId >com.fasterxml.jackson.core</groupId >
233- <version >2.14.2 </version >
233+ <version >2.14.3 </version >
234234 </dependency >
235235 <dependency >
236236 <artifactId >jackson-datatype-jsr310</artifactId >
237237 <groupId >com.fasterxml.jackson.datatype</groupId >
238- <version >2.14.2 </version >
238+ <version >2.14.3 </version >
239239 </dependency >
240240 <dependency >
241241 <groupId >org.apache.httpcomponents.client5</groupId >
Original file line number Diff line number Diff line change 66import lombok .Getter ;
77
88/**
9- * The definition for US W9, API version 1.
9+ * The definition for W9, API version 1.
1010 */
1111@ Getter
1212@ JsonIgnoreProperties (ignoreUnknown = true )
Original file line number Diff line number Diff line change 77import lombok .Getter ;
88
99/**
10- * Document data for US W9, API version 1.
10+ * Document data for W9, API version 1.
1111 */
1212@ Getter
1313@ EqualsAndHashCode
Original file line number Diff line number Diff line change 99import lombok .Getter ;
1010
1111/**
12- * Page data for US W9, API version 1.
12+ * Page data for W9, API version 1.
1313 */
1414@ Getter
1515@ EqualsAndHashCode (callSuper = true )
You can’t perform that action at this time.
0 commit comments