Skip to content
Closed
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
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

- Bumped `qvac-registry-vcpkg` baseline to pick up onnxruntime port-version 4 with the CoreML fix

## [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
2 changes: 1 addition & 1 deletion packages/qvac-lib-infer-onnx/vcpkg-configuration.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"default-registry": {
"kind": "git",
"baseline": "0318b1c531f630be579f971400379cd73bc5f01e",
"baseline": "f648019903ff1ba008b055b4a602f012d1f83a65",
"repository": "https://github.com/tetherto/qvac-registry-vcpkg.git"
},
"registries": [
Expand Down
Loading