Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
1a6e48a
:recycle: completely separate v1 and v2 code
sebastianMindee Feb 17, 2026
2f8eb2e
:boom: :recycle: Update syntaxes in V2 to accomodate for generics
sebastianMindee Feb 20, 2026
9cc2f07
:sparkles: add crop & job info for products
sebastianMindee Feb 23, 2026
dcdbc9d
:recycle: completely rehaul system to preserve types
sebastianMindee Feb 23, 2026
0f251b7
:sparkles: add support for classification
sebastianMindee Feb 24, 2026
a54b6af
:sparkles: add support for Ocr
sebastianMindee Feb 24, 2026
761116a
:sparkles: add support for split product
sebastianMindee Feb 24, 2026
bf41971
easier v2 product tests
ianardee Feb 25, 2026
6f83cd5
test samples
ianardee Mar 2, 2026
7e3aeac
fix syntaxes + add tests
sebastianMindee Mar 6, 2026
3a6ee58
fix smoke tests
sebastianMindee Mar 6, 2026
2027efd
fix smoke tests
sebastianMindee Mar 7, 2026
787f791
add imports to code samples again
sebastianMindee Mar 7, 2026
851b169
:sparkles: add support for V2 in CLI
sebastianMindee Mar 9, 2026
e0ffecb
temp
sebastianMindee Mar 11, 2026
e33c081
fix rebase + update syntax
sebastianMindee Mar 11, 2026
d06a3d9
finish CLI (no tests)
sebastianMindee Mar 12, 2026
6b89d15
fix lint
sebastianMindee Mar 12, 2026
1a2f628
tidy up
sebastianMindee Mar 13, 2026
770dada
add tests
sebastianMindee Mar 13, 2026
0c72dae
add search models test
sebastianMindee Mar 13, 2026
fdecbbd
fix test
sebastianMindee Mar 13, 2026
eb0c177
make tests go a bit faster
sebastianMindee Mar 13, 2026
3a8c13e
fix env vars
sebastianMindee Mar 13, 2026
b643b6c
disable event logging for windows
sebastianMindee Mar 13, 2026
22dc775
fix windows logging
sebastianMindee Mar 13, 2026
9f0cc2c
fix?
sebastianMindee Mar 13, 2026
2b27979
fix windows CI
sebastianMindee Mar 13, 2026
849db69
fix again?
sebastianMindee Mar 15, 2026
4db750a
fix 472/48
sebastianMindee Mar 15, 2026
1bc43b7
address suggestions
sebastianMindee Mar 16, 2026
e67a925
:recycle: update CI
sebastianMindee Mar 16, 2026
fd0bff2
fix version for integration tests
sebastianMindee Mar 16, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/_publish-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
dotnet-version: '10.0.x'

- name: Restore strong-name key from secret
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ concurrency:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
dotnet-version: '10.0.x'

- name: Build
run: dotnet build "src" --configuration Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
dotnet-version: '10.0.x'

- name: Install dotnet-format tool
run: dotnet tool install -g dotnet-format
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/_test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
max-parallel: 4
matrix:
os_config:
- os: "ubuntu-22.04"
- os: "ubuntu-24.04"
rid: "linux-x64"
# - os: "macos-latest"
# rid: "osx-x64"
- os: "macos-latest"
rid: "osx-x64"
- os: "windows-latest"
rid: "win-x64"
dotnet:
Expand All @@ -49,7 +49,6 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
10.0.x

Expand Down Expand Up @@ -77,11 +76,11 @@ jobs:
dotnet publish -f ${{ matrix.dotnet }} -c Release -r ${{ matrix.os_config.rid }} --self-contained true -p:PublishSingleFile=true -o ./bin/Release/${{ matrix.dotnet }}/${{ matrix.os_config.rid }}

- name: Test V1 CLI
shell: bash
shell: sh
run: |
./tests/test_v1_cli.sh ./tests/resources/file_types/pdf/blank_1.pdf ${{ matrix.dotnet }} ${{ matrix.os_config.rid }}

- name: Test V2 CLI
shell: bash
shell: sh
run: |
./tests/test_v2_cli.sh ./tests/resources/file_types/pdf/blank_1.pdf ${{ matrix.dotnet }} ${{ matrix.os_config.rid }}
11 changes: 4 additions & 7 deletions .github/workflows/_test-integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@ jobs:
max-parallel: 4
matrix:
os:
- "ubuntu-22.04"
# needs looking into
# - "macos-14"
- "ubuntu-24.04"
- "macos-15"
dotnet-version:
- "net6.0"
- "net8.0"
- "net10.0"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -40,7 +39,6 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
10.0.x

Expand Down Expand Up @@ -68,7 +66,7 @@ jobs:
dotnet-version:
- "net472"
- "net48"
- "net6.0"
- "net8.0"
- "net10.0"
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -80,7 +78,6 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
10.0.x

Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/_test-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
max-parallel: 3
matrix:
os:
- "ubuntu-22.04"
- "ubuntu-24.04"
dotnet:
- "net6.0"
- "net8.0"
- "net10.0"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -36,7 +36,6 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
10.0.x

Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/_test-units.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
strategy:
matrix:
os:
- "ubuntu-22.04"
- "ubuntu-24.04"
# needs looking into
# - "macos-14"
- "macos-15"
dotnet:
- "net6.0"
- "net8.0"
Expand Down Expand Up @@ -65,7 +65,6 @@ jobs:
id: setup-step
with:
dotnet-version: |
6.0.x
8.0.x
10.0.x

Expand Down
Loading