v0.7.1 - fix attachment loading inside sandboxed preview/embed
Fixed
- Attached files (images, text, and any other type) embedded inside an artifact's own content (
<img src>, links, etc.) failed to load or open when viewed through the sandboxed preview/embed iframe (/api/v1/artifacts/:id/preview,/embed/:token), even though the exact same/af/:tokenURL worked fine opened directly in a browser tab. Two causes: theassetOriginthe artifact's Content-Security-Policy needs to allowmedia-src/font-srcfrom the file-serving origin was never actually passed by either route, and the sandboxed iframes were missing theallow-downloadstoken, which browsers require before letting a sandboxed frame initiate any file download (every non-image/video/audio/font attachment is always served asContent-Disposition: attachment).
Full changelog: https://github.com/emaxe/open-artifacts/blob/main/CHANGELOG.md#071---2026-09-13