Migrate standalone apps to oakapp-base 1.3.0 - #856
Draft
michalvankodev wants to merge 3 commits into
Draft
Conversation
michalvankodev
force-pushed
the
misc/update-base-image
branch
2 times, most recently
from
August 12, 2026 17:45
596eec4 to
1efe66b
Compare
michalvankodev
force-pushed
the
misc/update-base-image
branch
from
August 12, 2026 17:46
1efe66b to
c9b655f
Compare
michalvankodev
marked this pull request as ready for review
August 12, 2026 17:52
klemen1999
reviewed
Aug 13, 2026
Comment on lines
+19
to
+23
| [env] | ||
| WEBRTC__DC_MESSAGE__ORDERED = "false" | ||
| WEBRTC__DC_MESSAGE__MAX_RETRANSMITS = "0" | ||
| WEBRTC__DC_MESSAGE__QUEUE_POLICY = "lossy_drop_new" | ||
|
|
Collaborator
There was a problem hiding this comment.
So this is now always required for every example using oakapp-base 1.3 image? Should we maybe have default values that are already set to this in that case so one doesn't have to always set it in the oakapp tomls manually?
Collaborator
Author
There was a problem hiding this comment.
I was thinking about this as well. I will recommend these settings as "default" but for the period of time to consider the new protocol "stable" we've decided to make lossy type "opt in" and preserve the previous non-lossy as one that is established.
michalvankodev
marked this pull request as draft
August 14, 2026 09:24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
luxonis/oakapp-base1.3.0 image family.Base-image migration
Updates the affected Python examples to
luxonis/oakapp-base:1.3.0, the C++ example to1.3.0-cpp, and the Python 3.11 frontend examples to1.3.0-py311. Associated frontend lockfiles are regenerated for the updated package graph.Visualizer frontend packages
Update the direct
@luxonis/depthai-viewer-commonand@luxonis/depthai-pipeline-libdependencies from 3.7.6 to 3.8.3 for every standalone custom frontend:Frontend build reliability
For Data Collection, DINO Tracking, Focused Vision, Object Volume Measurement 3D, P2P Measurement, People Demographics and Sentiment Analysis, and QR Tiling:
@floating-ui/dom@1.8.0,@sentry/browser@8.55.2, anddate-fns@2.30.0dependencies required by transitive Luxonis frontend packages;reactandreact-domaligned to the direct React 19 versions, preventing a nested ReactDOM 18/React 19 mismatch;maxParallelFileOps: 8to avoidEMFILE: too many open filesin the OAK build container.P2P Measurement additionally accepts a nullable
RefObjectinClickCatcher, fixing its TypeScript build error.DINO Tracking correction
FastSAM parser output now feeds the mask-selection and outline paths. Its pipeline type is
dai.Buffer, while the runtime message remainsdai.SegmentationMask; the host node handles that contract explicitly.Validation
npm install && npm run buildsequentially for all ten updated frontends with the 3.8.3 package pair; all builds pass.node_modules,dist, and generatedstyled-systemdirectories after every frontend build; no generated frontend artifacts remain.oakctl app run . --detach --invalidateto an OAK4-S R1 (RVC4, serial221646362).CAM_B/CAM_Care absent. A stereo-capable device is required for functional verification.dev-app-test.mdis intentionally excluded from this PR.Data Collection snap crash fix
Data Collection's snapping host node used the obsolete
SnapData(file_name=..., frame=..., detections=...)constructor. Withdepthai-nodes==0.5.0, triggering a snap raisedTypeError: SnapData.__init__() got an unexpected keyword argument 'file_name'inside a DepthAI host-node callback, which aborted the backend and dropped the stream.The producer now creates a
dai.FileGroup, adds the image/detections pair withaddImageDetectionsPair(...), and passes it asSnapData(file_group=...). The changed Python module passespython3 -m py_compile.