Skip to content

AdoCli v0.4.7

Choose a tag to compare

@github-actions github-actions released this 24 Jun 02:07
· 21 commits to main since this release
7b76487

AdoCli v0.4.7

Pre-built binaries for all supported platforms.

Platform Architecture Binary
Linux x86_64 ado-*-linux-x86_64
Linux aarch64 ado-*-linux-aarch64
macOS Apple Silicon ado-*-macos-aarch64
macOS Intel ado-*-macos-x86_64
Windows x86_64 ado-*-windows-x86_64.exe

Fixed

  • prs diff --file returned 404 for new files (2 fixes). Two related bugs:

    1. For files added in a PR (changeType add), the Azure DevOps /items API
      returns 404 when fetching content at the base commit. The diff pipeline
      now tolerates these 404s and uses empty content. Same for deleted files.
    2. The --file path argument (e.g. src/foo.ex) was sent directly to the
      API without a leading /, causing 404s even for existing files. The
      canonical API path from the change list is now used.
  • prs diff --unified dropped new and deleted files. The unified diff
    mode silently skipped files where the old or new content fetch failed.
    Now correctly includes new and deleted files in the output.

  • just bump did not update skill version frontmatter. The
    priv/skills/*/SKILL.md YAML headers were excluded from the bump script,
    requiring manual updates. They are now bumped in lockstep with mix.exs.

Changed

  • ado login --method device no longer requires --org. The org
    is auto-detected from the token, matching the browser flow behavior.
    ado login with no flags works for both browser and device code flows.

  • Login help text and skills updated to guide users toward the
    simplest workflow: ado login (no flags).

See README.md for
installation instructions.