Skip to content

Commit c00440e

Browse files
committed
release: v0.5.0
1 parent 1287e2f commit c00440e

12 files changed

Lines changed: 44 additions & 26 deletions

File tree

CHANGELOG.md

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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-
## [Unreleased]
8+
## [0.5.0] - 2026-07-22
99

1010
### Added
1111

@@ -14,16 +14,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
(fzf-style) matching, case-insensitive. Filtering is client-side
1515
since the Azure DevOps reviewers API returns all reviewers for a PR.
1616

17+
- **`ado-cli` skill restructured into reference files.** The 540-line
18+
SKILL.md is now a lean 284-line overview + 7 topic-focused reference
19+
files (`references/prs.md`, `references/repos.md`, etc.) readable
20+
via `ado skills read ado-cli/references/prs.md`.
21+
1722
### Fixed
1823

19-
- **EPIPE hang in Burrito binaries when piping to `head`/`less`.**
20-
When stdout was piped to a command that exits early (e.g.
21-
`ado schema | head -5`), the BEAM's standard_io group leader crashed
22-
on EPIPE and the VM hung indefinitely trying to flush IO during
23-
shutdown. Burrito's `child.wait()` blocked forever. Fixed in the
24-
forked Burrito Zig wrapper: child stdout is now piped through the
25-
wrapper process, and when the downstream pipe breaks (EPIPE), the
26-
child is killed immediately.
24+
- **EPIPE hang when piping to `head`/`less`.** When stdout was piped to
25+
a command that exits early (e.g. `ado schema | head -5`), the BEAM's
26+
standard_io group leader crashed on EPIPE and the VM hung indefinitely
27+
trying to flush IO during shutdown. Fixed in two places:
28+
- **Burrito binaries:** The forked Burrito Zig wrapper now pipes child
29+
stdout through itself. When the downstream pipe breaks (EPIPE), the
30+
copy thread kills the BEAM child immediately.
31+
- **Escripts:** `CLI.run/1` catches the `ErlangError` (`:terminated`)
32+
and halts with `flush:false`, avoiding the `Writer crashed (epipe)`
33+
stack trace.
2734

2835
- **Switching auth methods no longer leaves stale credentials in the
2936
config file.** Previously `ConfigFile.save/1` merged new config over
@@ -40,6 +47,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4047
without an explicit `--method`. Passing `--method` still overrides
4148
the inference.
4249

50+
### Changed
51+
52+
- **`ado-ci` skill download URLs updated** to use version-agnostic
53+
`latest/download/` links instead of pinned `ado-0.4.3-*` filenames.
54+
55+
- **`ado-auth` skill pitfalls table cleaned up** — removed 4 historical
56+
bug-fix rows (v0.4.2/v0.4.3 fixes) that are no longer actionable.
57+
58+
- **burrito upgraded** to `30be1e1` (zig-0.16.0 branch), which includes
59+
the EPIPE pipe-copy fix above.
60+
4361
## [0.4.12] - 2026-06-27
4462

4563
### 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.12-macos-aarch64
230+
<pre><code>curl -L -o ado https://github.com/gilbertwong96/ado_cli/releases/latest/download/ado-0.5.0-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.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>
232+
<p class="hint">Replace <code>ado-0.5.0-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.12",
7+
version: "0.5.0",
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.12",
3+
"version": "0.5.0",
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.12",
3+
"version": "0.5.0",
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.12",
3+
"version": "0.5.0",
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.12",
3+
"version": "0.5.0",
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.12",
3+
"version": "0.5.0",
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.12",
3+
"version": "0.5.0",
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.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"
40+
"@gilbertwong1996/ado-darwin-arm64": "0.5.0",
41+
"@gilbertwong1996/ado-darwin-x64": "0.5.0",
42+
"@gilbertwong1996/ado-linux-arm64": "0.5.0",
43+
"@gilbertwong1996/ado-linux-x64": "0.5.0",
44+
"@gilbertwong1996/ado-win32-x64": "0.5.0"
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.12"
4+
version: "0.5.0"
55
commands:
66
- ado login
77
- ado login --method device

0 commit comments

Comments
 (0)