v0.81.2
🧪 Experiments Updated
The reports
experiment now supports generating reports
As part of delivering #3628 , the reports experiment has been updated to support CSV report generation.
When the reports experiment is enabled, and the --report-file
argument is passed to a run --all
/ run --graph
/ stack run
command, Terragrunt will generate a CSV report of the run in addition to the summary that is emitted by default.
The report summary looks like this:
Name,Started,Ended,Result,Reason,Cause
first-exclude,2025-06-05T16:28:41-04:00,2025-06-05T16:28:41-04:00,excluded,exclude block,
second-exclude,2025-06-05T16:28:41-04:00,2025-06-05T16:28:41-04:00,excluded,exclude block,
first-failure,2025-06-05T16:28:41-04:00,2025-06-05T16:28:42-04:00,failed,run error,
first-success,2025-06-05T16:28:41-04:00,2025-06-05T16:28:41-04:00,succeeded,,
second-failure,2025-06-05T16:28:41-04:00,2025-06-05T16:28:42-04:00,failed,run error,
second-success,2025-06-05T16:28:41-04:00,2025-06-05T16:28:41-04:00,succeeded,,
second-early-exit,2025-06-05T16:28:42-04:00,2025-06-05T16:28:42-04:00,early exit,run error,
first-early-exit,2025-06-05T16:28:42-04:00,2025-06-05T16:28:42-04:00,early exit,run error,
That report offers details on the outcome of each run in the Run Queue.
For more information, read the documentation on the Run Report.
What's Changed
- fix: Avoid installing D2 in Vercel by @yhakbar in #4404
- feat: Allow users to save reports during runs by @yhakbar in #4396
Full Changelog: v0.81.1...v0.81.2