Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/_test-units.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
cache: "npm"

- name: Set up Poppler on ubuntu
run: sudo apt install -y poppler-utils
run: |
sudo apt-get update
sudo apt-get install -y poppler-utils

- name: Install Node.js dependencies
run: npm ci
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## v4.29.0-rc4 - 2025-07-29
### Changes
* :sparkles: add support for page count & mime type + fix syntaxes
* :recycle: update internal field syntaxes to match other SDKs
* :recycle: upgrade toString() display for most fields
* :recycle: fix internals & upgrade tests


## v4.29.0-rc3 - 2025-07-25
### Changes
* :sparkles: add support for URL input source
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mindee",
"version": "4.29.0-rc3",
"version": "4.29.0-rc4",
"description": "Mindee Client Library for Node.js",
"main": "src/index.js",
"bin": "bin/mindee.js",
Expand Down
Loading