Skip to content

Commit 21fb097

Browse files
authored
🔖 version 4.4.0 (#128)
1 parent b7a8db0 commit 21fb097

File tree

6 files changed

+27
-9
lines changed

6 files changed

+27
-9
lines changed

.github/workflows/test-code-samples.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ on:
66

77
# Allows to run this workflow manually from the Actions tab
88
workflow_dispatch:
9+
910
jobs:
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"

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
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

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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>
@@ -225,17 +225,17 @@
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>

src/main/java/com/mindee/product/us/w9/W9V1.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import 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)

src/main/java/com/mindee/product/us/w9/W9V1Document.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import 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

src/main/java/com/mindee/product/us/w9/W9V1Page.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import 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)

0 commit comments

Comments
 (0)