Skip to content

Commit 5aa41be

Browse files
committed
release: v0.4.12
Bumps burrito to zig-0.16.0 branch (fixes EPIPE and pr diff 404 in Burrito binaries) and drops the app-side PipeSafeShell workaround.
1 parent 6fbc91e commit 5aa41be

12 files changed

Lines changed: 44 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ All notable changes to `ado` will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.4.12] - 2026-06-27
9+
10+
### Fixed
11+
12+
- **Broken pipe (EPIPE) and `ado prs diff ... --file <path>` 404 errors in
13+
Burrito binaries.** Root cause was a bug in the upstream Burrito Zig
14+
wrapper: `-elixir ansi_enabled true` and `-s elixir start_cli` were
15+
passed as single argv entries with embedded spaces, which `erlexec`
16+
forwarded to `beam.smp` as-is. The BEAM's `erl_start` couldn't parse
17+
them and hung in `__select`. Fixed upstream in
18+
[burrito-elixir/burrito#225](https://github.com/burrito-elixir/burrito/pull/225)
19+
by splitting them into separate argv entries and switching from
20+
`std.process.replace` to `spawn + wait` (required for Zig 0.16.0 on
21+
macOS arm64). No app-side changes needed — bumping burrito is enough.
22+
23+
### Changed
24+
25+
- **burrito upgraded** to the `zig-0.16.0` branch (`0f9761b`), which
26+
includes the Zig 0.16.0 compatibility layer and the arg-splitting fix
27+
above.
28+
29+
### Removed
30+
31+
- **App-side EPIPE workaround** (`PipeSafeShell` module and bypass in
32+
`AdoCli.CLI.run/1`) — no longer needed now that the Burrito wrapper
33+
flushes stdout correctly.
34+
835
## [0.4.11] - 2026-06-24
936

1037
### Fixed

github-page/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ <h2>Other install methods</h2>
227227
<div class="card">
228228
<h3>📥 Download binary</h3>
229229
<p>Grab the platform-specific binary and put it on your <code>$PATH</code>.</p>
230-
<pre><code>curl -L -o ado https://github.com/gilbertwong96/ado_cli/releases/latest/download/ado-0.4.11-macos-aarch64
230+
<pre><code>curl -L -o ado https://github.com/gilbertwong96/ado_cli/releases/latest/download/ado-0.4.12-macos-aarch64
231231
chmod +x ado &amp;&amp; sudo mv ado /usr/local/bin/</code></pre>
232-
<p class="hint">Replace <code>ado-0.4.11-macos-aarch64</code> with the binary for your platform (see the <a href="https://github.com/gilbertwong96/ado_cli/releases/latest">release page</a>).</p>
232+
<p class="hint">Replace <code>ado-0.4.12-macos-aarch64</code> with the binary for your platform (see the <a href="https://github.com/gilbertwong96/ado_cli/releases/latest">release page</a>).</p>
233233
</div>
234234
<div class="card">
235235
<h3>🔨 Build from source</h3>

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule AdoCli.MixProject do
44
def project do
55
[
66
app: :ado_cli,
7-
version: "0.4.11",
7+
version: "0.4.12",
88
elixir: "~> 1.20",
99
start_permanent: Mix.env() == :prod,
1010
deps: deps(),

npm/@gilbertwong1996-ado-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gilbertwong1996/ado-darwin-arm64",
3-
"version": "0.4.11",
3+
"version": "0.4.12",
44
"description": "ado binary for macOS Apple Silicon (arm64)",
55
"license": "Apache-2.0",
66
"repository": {

npm/@gilbertwong1996-ado-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gilbertwong1996/ado-darwin-x64",
3-
"version": "0.4.11",
3+
"version": "0.4.12",
44
"description": "ado binary for macOS Intel (x86_64)",
55
"license": "Apache-2.0",
66
"repository": {

npm/@gilbertwong1996-ado-linux-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gilbertwong1996/ado-linux-arm64",
3-
"version": "0.4.11",
3+
"version": "0.4.12",
44
"description": "ado binary for Linux ARM64 (aarch64)",
55
"license": "Apache-2.0",
66
"repository": {

npm/@gilbertwong1996-ado-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gilbertwong1996/ado-linux-x64",
3-
"version": "0.4.11",
3+
"version": "0.4.12",
44
"description": "ado binary for Linux x86_64",
55
"license": "Apache-2.0",
66
"repository": {

npm/@gilbertwong1996-ado-win32-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gilbertwong1996/ado-win32-x64",
3-
"version": "0.4.11",
3+
"version": "0.4.12",
44
"description": "ado binary for Windows x86_64",
55
"license": "Apache-2.0",
66
"repository": {

npm/@gilbertwong1996-ado/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gilbertwong1996/ado",
3-
"version": "0.4.11",
3+
"version": "0.4.12",
44
"description": "AI-native Azure DevOps CLI — structured JSON output, embedded skills for LLM agents, single-file cross-platform binary.",
55
"license": "Apache-2.0",
66
"homepage": "https://github.com/gilbertwong96/ado_cli",
@@ -37,10 +37,10 @@
3737
"node": ">=18"
3838
},
3939
"optionalDependencies": {
40-
"@gilbertwong1996/ado-darwin-arm64": "0.4.11",
41-
"@gilbertwong1996/ado-darwin-x64": "0.4.11",
42-
"@gilbertwong1996/ado-linux-arm64": "0.4.11",
43-
"@gilbertwong1996/ado-linux-x64": "0.4.11",
44-
"@gilbertwong1996/ado-win32-x64": "0.4.11"
40+
"@gilbertwong1996/ado-darwin-arm64": "0.4.12",
41+
"@gilbertwong1996/ado-darwin-x64": "0.4.12",
42+
"@gilbertwong1996/ado-linux-arm64": "0.4.12",
43+
"@gilbertwong1996/ado-linux-x64": "0.4.12",
44+
"@gilbertwong1996/ado-win32-x64": "0.4.12"
4545
}
4646
}

priv/skills/ado-auth/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: ado-auth
33
description: "Authenticate ado: PAT (CI-friendly), browser OAuth (AAD + MSA), device code (headless), env vars, self-hosted server"
4-
version: "0.4.11"
4+
version: "0.4.12"
55
commands:
66
- ado login
77
- ado login --method device

0 commit comments

Comments
 (0)