Skip to content

Commit a742501

Browse files
committed
release: v0.4.11
1 parent e3e0528 commit a742501

12 files changed

Lines changed: 31 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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.11] - 2026-06-24
9+
10+
### Fixed
11+
12+
- **`ado prs diff ... --unified | head -n 220` failed in Burrito binaries
13+
with "Failed to write log message to stdout, trying stderr".** The root
14+
cause was a Burrito wrapper bug: CLI args were joined with spaces into
15+
the `ADO_ARGS` env var, which broke args containing spaces (e.g. project
16+
names like `"Employee Management"`). The workaround in the Burrito fork
17+
has been removed upstream — args now flow via native argv (after
18+
`-extra`) and reach the BEAM through `:init.get_plain_arguments/0`.
19+
`ado_cli` updated to match. Verified: quoted args parse correctly and
20+
piping to `head` works in both escript and Burrito binaries.
21+
822
## [0.4.10] - 2026-06-24
923

1024
### Added

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.10-macos-aarch64
230+
<pre><code>curl -L -o ado https://github.com/gilbertwong96/ado_cli/releases/latest/download/ado-0.4.11-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.10-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.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>
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.10",
7+
version: "0.4.11",
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.10",
3+
"version": "0.4.11",
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.10",
3+
"version": "0.4.11",
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.10",
3+
"version": "0.4.11",
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.10",
3+
"version": "0.4.11",
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.10",
3+
"version": "0.4.11",
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.10",
3+
"version": "0.4.11",
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.10",
41-
"@gilbertwong1996/ado-darwin-x64": "0.4.10",
42-
"@gilbertwong1996/ado-linux-arm64": "0.4.10",
43-
"@gilbertwong1996/ado-linux-x64": "0.4.10",
44-
"@gilbertwong1996/ado-win32-x64": "0.4.10"
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"
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.10"
4+
version: "0.4.11"
55
commands:
66
- ado login
77
- ado login --method device

0 commit comments

Comments
 (0)