Published
Jun 11, 2026 · 13:24 UTC
New
- When you run
tuist test or tuist build inside GitHub Actions, the CLI now writes the Tuist Run Report to the job summary. This shows test, failed test, and build results inline in the Actions run, even for merge-queue runs that do not receive the usual pull-request comment. The summary is rendered automatically from data already available locally and includes a link to the full dashboard run.
Fixed
- Generated projects no longer create duplicate flat root-level file references for
xcconfig and Info.plist files that live inside a buildable folder. They now use the same Xcode 16-style anchored references that Xcode writes natively, keeping the project navigator tidy.
- You can now include a file from one target’s buildable folder into another target with the new additive exception form:
.exception(target: "OtherTarget", included: ["Shared.swift"]). This avoids creating extra standalone file references and keeps the file shown once inside the folder.
- Pinned the SwifterPM dependency to a specific revision to resolve a CLI binary regression that introduced Swift runtime compatibility library expectations on CI.