| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| sbom.cdx.json | 2026-02-25 | 3.0 MB | |
| sbom.spdx.json | 2026-02-25 | 5.1 MB | |
| windows-arm64.exe | 2026-02-25 | 21.0 MB | |
| linux-arm64 | 2026-02-25 | 20.6 MB | |
| windows-amd64.exe | 2026-02-25 | 23.0 MB | |
| gh-aw-wasm-v0.50.3.tar.gz | 2026-02-25 | 4.3 MB | |
| linux-386 | 2026-02-25 | 21.6 MB | |
| linux-amd64 | 2026-02-25 | 22.3 MB | |
| linux-arm | 2026-02-25 | 21.5 MB | |
| checksums.txt | 2026-02-25 | 964 Bytes | |
| darwin-amd64 | 2026-02-25 | 22.7 MB | |
| darwin-arm64 | 2026-02-25 | 21.2 MB | |
| freebsd-386 | 2026-02-25 | 21.4 MB | |
| freebsd-amd64 | 2026-02-25 | 22.3 MB | |
| freebsd-arm64 | 2026-02-25 | 20.6 MB | |
| README.md | 2026-02-25 | 5.2 kB | |
| v0.50.3 source code.tar.gz | 2026-02-25 | 220.7 MB | |
| v0.50.3 source code.zip | 2026-02-25 | 222.6 MB | |
| Totals: 18 Items | 694.0 MB | 0 | |
🌟 Release Highlights
This release focuses on reliability and correctness improvements — fixing data races, MCP context management, safe-outputs permissions, and compiler diagnostics. Dependency and tooling updates keep everything fresh.
🐛 Bug Fixes & Improvements
-
add-commentnow emitspull-requests: writeby default — Previously, workflows usingadd-commentsafe-outputs would fail with "Resource not accessible by integration" when commenting on PRs because the compiler only emittedissues: write. The compiler now correctly emits bothissues: writeandpull-requests: write, and provides newissues/pull-requests/discussionsflags for fine-grained control. (#18318) -
Eliminated a
sync.Oncedata race in cache-clear functions — A concurrency bug that could cause non-deterministic behavior when clearing caches has been resolved. (#18280) -
MCP request context propagation fixed —
checkActorPermissionnow correctly receives the MCP request context, ensuring timeouts and cancellations propagate correctly throughout the permission-check call chain. (#18281) -
MCP inspector sub-contexts released promptly —
connectStdioMCPServerandconnectHTTPMCPServernow releaseWithTimeoutsub-contexts immediately after each sequential MCP operation rather than deferring, reducing timer resource hold time. (#18343) -
Preserved
ExitErrorin error chain —ExitErroris no longer dropped during run-workflow validation, enabling downstream error handling to correctly inspect exit codes. (#18282 via release notes)
✨ What's New
-
Schema path heuristic for misplaced frontmatter fields — When a field appears in the wrong location in a workflow's frontmatter, the compiler now suggests the correct schema path, making it much easier to diagnose configuration errors. (#18320)
-
Suppressed actionlint SC1003 false positives — Generated AWF shell commands no longer trigger spurious actionlint
SC1003warnings, reducing noise in CI linting output. (#18316) -
Cleaner footer install message — The workflow footer now links "agentic workflow" directly to the source URL and displays the install command in a formatted code block for better readability. (#18345)
🔧 Internal
- Refactored MCP error construction with a
newMCPErrorhelper, eliminating 30+ repeatedjsonrpc.Errorstruct literals across MCP tool files. (#18341) - Updated Claude Code
2.1.52 → 2.1.56and Copilot CLI0.0.415 → 0.0.417. (#18313) - Updated
golang.org/x/toolsfromv0.41.0tov0.42.0. (#18319)
🌍 Community Contributions
A huge thank you to the community members who reported issues resolved in this release:
@ViktorHoferfor gh aw compile does not add pull-requests: write to safe_outputs job when add-comment is configured (#18311)
For complete details, see CHANGELOG.
Generated by Release
What's Changed
- fix: preserve ExitError in error chain in run_workflow_validation.go by @Copilot in https://github.com/github/gh-aw/pull/18282
- Propagate MCP request context into checkActorPermission by @Copilot in https://github.com/github/gh-aw/pull/18281
- fix: eliminate sync.Once reset data race in cache-clear functions by @Copilot in https://github.com/github/gh-aw/pull/18280
- [docs] Update glossary - daily scan by @github-actions[bot] in https://github.com/github/gh-aw/pull/18308
- Suppress actionlint SC1003 false positives in generated AWF commands by @Copilot in https://github.com/github/gh-aw/pull/18316
- Update Claude Code 2.1.52→2.1.56 and Copilot CLI 0.0.415→0.0.417 by @Copilot in https://github.com/github/gh-aw/pull/18313
- deps: update golang.org/x/tools from v0.41.0 to v0.42.0 by @Copilot in https://github.com/github/gh-aw/pull/18319
- Add schema path heuristic to suggest correct location for misplaced frontmatter fields by @Copilot in https://github.com/github/gh-aw/pull/18320
- fix: update wasm golden fixtures to Copilot CLI 0.0.417 by @Copilot in https://github.com/github/gh-aw/pull/18331
- fix: add pull-requests:write to safe_outputs job for add-comment by @Copilot in https://github.com/github/gh-aw/pull/18318
- Release MCP inspector sub-contexts promptly after each operation by @Copilot in https://github.com/github/gh-aw/pull/18343
Full Changelog: https://github.com/github/gh-aw/compare/v0.50.2...v0.50.3