Skip to content

Commit 44eb0da

Browse files
committed
release: v0.4.10
1 parent ba4e86e commit 44eb0da

12 files changed

Lines changed: 33 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ 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.10] - 2026-06-24
9+
10+
### Added
11+
12+
- **`--end-line` for multi-line codeblock comments.** `ado prs comments add`
13+
now supports `--line START --end-line END` to comment on a range of
14+
lines instead of a single line. The `threadContext` spans from
15+
`rightFileStart` to `rightFileEnd` with different line numbers.
16+
17+
### Fixed
18+
19+
- **Inline comments showed "file no longer exists" warning.** The `filePath`
20+
in `threadContext` was missing a leading `/`, causing Azure DevOps to not
21+
set `changeTrackingId`. The `ensure_leading_slash/1` helper now normalizes
22+
user input automatically — both `src/foo.ex` and `/src/foo.ex` work.
23+
824
## [0.4.9] - 2026-06-24
925

1026
### Added

github-page/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,9 @@ <h2>Other install methods</h2>
228228
<div class="card">
229229
<h3>📥 Download binary</h3>
230230
<p>Grab the platform-specific binary and put it on your <code>$PATH</code>.</p>
231-
<pre><code>curl -L -o ado https://github.com/gilbertwong96/ado_cli/releases/latest/download/ado-0.4.9-macos-aarch64
231+
<pre><code>curl -L -o ado https://github.com/gilbertwong96/ado_cli/releases/latest/download/ado-0.4.10-macos-aarch64
232232
chmod +x ado &amp;&amp; sudo mv ado /usr/local/bin/</code></pre>
233-
<p class="hint">Replace <code>ado-0.4.9-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>
233+
<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>
234234
</div>
235235
<div class="card">
236236
<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.9",
7+
version: "0.4.10",
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.9",
3+
"version": "0.4.10",
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.9",
3+
"version": "0.4.10",
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.9",
3+
"version": "0.4.10",
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.9",
3+
"version": "0.4.10",
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.9",
3+
"version": "0.4.10",
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.9",
3+
"version": "0.4.10",
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.9",
41-
"@gilbertwong1996/ado-darwin-x64": "0.4.9",
42-
"@gilbertwong1996/ado-linux-arm64": "0.4.9",
43-
"@gilbertwong1996/ado-linux-x64": "0.4.9",
44-
"@gilbertwong1996/ado-win32-x64": "0.4.9"
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"
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.9"
4+
version: "0.4.10"
55
commands:
66
- ado login
77
- ado login --method device

0 commit comments

Comments
 (0)