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: 2 additions & 2 deletions .github/workflows/on-pr-qvac-lib-infer-onnx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

- name: Verify that yaml files are formatted
id: yamlfmt
uses: ./.github/actions/yamlfmt
uses: tetherto/qvac/.github/actions/yamlfmt@0bbdca93da303a0b1634ba14a89cec085621078d
continue-on-error: true
Comment thread
GustavoA1604 marked this conversation as resolved.

- name: Check for disallowed dependencies
Expand All @@ -118,7 +118,7 @@ jobs:
- name: Run JavaScript tests
id: run_js_tests
continue-on-error: true
uses: ./.github/actions/run-lint-and-unit-tests
uses: tetherto/qvac/.github/actions/run-lint-and-unit-tests@0bbdca93da303a0b1634ba14a89cec085621078d
with:
gpr-token: ${{ secrets.GITHUB_TOKEN }}
pat-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
10 changes: 10 additions & 0 deletions packages/qvac-lib-infer-onnx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [0.14.1] - 2026-04-21

### Fixed

- Patched ONNX Runtime 1.24.2 CoreML EP to fix `!model_path.empty()` crash when loading models with external data files (`.onnx_data` / `.onnx.data`) on macOS/iOS. Root cause: `TensorProtoWithExternalDataToTensorProto` passed the full model file path instead of its parent directory to `ReadExternalDataForTensor`. Backport of [microsoft/onnxruntime#28062](https://github.com/microsoft/onnxruntime/pull/28062). Upstream issue: [microsoft/onnxruntime#28005](https://github.com/microsoft/onnxruntime/issues/28005).

### Changed

- Pinned onnxruntime dependency to `>= 1.24.2#5` in `vcpkg.json` to pick up the CoreML fix from `qvac-registry-vcpkg`.

## [0.14.0] - 2026-03-30

### Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/qvac-lib-infer-onnx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qvac/onnx",
"version": "0.14.0",
"version": "0.14.1",
"description": "Bare addon for ONNX Runtime session management",
"addon": true,
"engines": {
Expand Down
12 changes: 8 additions & 4 deletions packages/qvac-lib-infer-onnx/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,26 @@
"dependencies": [
{
"name": "onnxruntime",
"platform": "!(android | osx | ios | windows)"
"platform": "!(android | osx | ios | windows)",
"version>=": "1.24.2#5"
},
{
"name": "onnxruntime",
"features": ["dml-ep"],
"platform": "windows"
"platform": "windows",
"version>=": "1.24.2#5"
},
{
"name": "onnxruntime",
"features": ["nnapi-ep"],
"platform": "android"
"platform": "android",
"version>=": "1.24.2#5"
},
{
"name": "onnxruntime",
"features": ["coreml-ep"],
"platform": "osx | ios"
"platform": "osx | ios",
"version>=": "1.24.2#5"
},
{
"name": "qvac-lint-cpp",
Expand Down
Loading