mindee 5.0.0.rc1 → 5.0.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +42 -0
- data/lib/mindee/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c130d39c720927dbf32f427f50e3b6e64f43573a419adcae4b2c24b88825ceda
|
|
4
|
+
data.tar.gz: 11bea996953560479ccfec44fac65ed77ac83b45be0ceb64458d1e019fc3604d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc9f76a7449ce3a9f9d99ff2cc03c545d5aadff3a088e817b34e2fb280ba1807b9bb8d1edfba3612e5929a7f51e9e4e007fe4f20bce4d4ba69c246aca3137ef3
|
|
7
|
+
data.tar.gz: 134e8286afd4e28a54a3523a9e691bb2ede3a631684d1640023badcdf758801b1b1a6eac4af6eddefe64d28f8659163feb05806024a5c6d33575c5bd002b8f2e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# Mindee Ruby API Library Changelog
|
|
2
2
|
|
|
3
|
+
## v5.0.0 - 2026-04-20
|
|
4
|
+
### ¡Breaking Changes!
|
|
5
|
+
* :boom: :recycle: update V1 & V2 syntaxes to match other SDKs
|
|
6
|
+
* :recycle: move V1 client to V1 module
|
|
7
|
+
* :recycle: move V2 client to V2 module
|
|
8
|
+
* :recycle: move legacy products to 'V1' module
|
|
9
|
+
* :recycle: add parsing and extraction to v1 module
|
|
10
|
+
* :recycle: move V1 HTTP to V1 module
|
|
11
|
+
* :recycle: move V2 HTTP module to V2 namespace
|
|
12
|
+
* :recycle: move data schema to extraction parameters namespace
|
|
13
|
+
* :arrow_up: :boom: drop support for ruby < 3.2
|
|
14
|
+
* :recycle: :boom: change raw_http attribute in responses to be actual json strings
|
|
15
|
+
* :recycle: :boom: make logging configurable and default output to stderr
|
|
16
|
+
* :recycle: :boom: remove useless `PDFExtractor` module
|
|
17
|
+
* :recycle: :boom: change `Errors` module to `Error`
|
|
18
|
+
* :recycle: :boom: change Ocr modules and classes to OCR to keep consistency
|
|
19
|
+
* :recycle: :boom: change `FileOperation` module name to `FileOperations`
|
|
20
|
+
* :recycle: :boom: change `Dependency` module name to `Dependencies`
|
|
21
|
+
* :boom: remove support for the following V1 products:
|
|
22
|
+
* :coffin: US Bank Check V1
|
|
23
|
+
* :coffin: Bill of Lading V1
|
|
24
|
+
* :coffin: Business Card V1
|
|
25
|
+
* :coffin: FR Carte Grise V1
|
|
26
|
+
* :coffin: Delivery Notes V1
|
|
27
|
+
* :coffin: Driver License V1
|
|
28
|
+
* :coffin: FR Energy Bill V1
|
|
29
|
+
* :coffin: Nutrition Facts V1
|
|
30
|
+
### Changes
|
|
31
|
+
* :sparkles: :arrow_up: add support for mindee-lite gem
|
|
32
|
+
* :sparkles: add support for crop operation
|
|
33
|
+
* :sparkles: add support for split operation
|
|
34
|
+
* :sparkles: add support for model search
|
|
35
|
+
* :sparkles: add support for V2 CLI
|
|
36
|
+
* :wrench: :arrow_up: add better tooling and pre-commit hook
|
|
37
|
+
* :arrow_up: and bump all dependencies
|
|
38
|
+
### Fixes
|
|
39
|
+
* :wrench: fix many typing issues
|
|
40
|
+
* :bug: fix webhook IDs not sending properly
|
|
41
|
+
* :bug: fix miscellaneous issues leading to saved `ExtractedPDF` instances having invalid names
|
|
42
|
+
* :recycle: fix miscellaneous typing issues relating to `ExtractedPDF` and `ExtractedImage` classes
|
|
43
|
+
|
|
44
|
+
|
|
3
45
|
## v5.0.0.rc1 - 2026-04-15
|
|
4
46
|
### ¡Breaking Changes!
|
|
5
47
|
* :recycle: :boom: change `FileOperation` module name to `FileOperations`
|
data/lib/mindee/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mindee
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.0
|
|
4
|
+
version: 5.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mindee, SA
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|
|
@@ -706,9 +706,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
706
706
|
version: '3.2'
|
|
707
707
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
708
708
|
requirements:
|
|
709
|
-
- - "
|
|
709
|
+
- - ">="
|
|
710
710
|
- !ruby/object:Gem::Version
|
|
711
|
-
version:
|
|
711
|
+
version: '0'
|
|
712
712
|
requirements: []
|
|
713
713
|
rubygems_version: 3.4.19
|
|
714
714
|
signing_key:
|