Technology·Stockholm ·
Aido 1.2.1 improves reliability by retrying transient AI provider errors
A patch release, surfaced by the tool's first external adopter, keeps code reviews running when an AI provider returns a temporary error instead of failing the whole command.
Aido, the open-source multi-provider AI assistant for GitHub code review, has released version 1.2.1. The patch release focuses on reliability, with fixes surfaced by live use on Aido's first external adopter.
Aido lets development teams review, summarize, explain, and document code by commenting on a pull request. It works with Gemini, ChatGPT, and Claude, and runs inside GitHub Actions on a team's own provider keys.
Retrying transient provider errors
AI provider calls now retry temporary failures with exponential backoff, covering the common HTTP status codes for rate limiting and service unavailability. Previously a single transient error, such as the 503 responses that Gemini's free tier can return under load, would abort an entire command. Retrying these blips makes every Aido command more dependable.
Reviews degrade gracefully
The review command makes two provider calls: one for the main review and a second for inline suggestions. Before this release, a temporary failure on the second call discarded the whole review, including the part that had already succeeded. Now the review still posts, with a note that inline suggestions were skipped and can be retried.
Aido's earlier "fail loudly" behavior is preserved: exhausted retries and genuine, non-transient errors still stop with a clear, actionable message rather than failing silently.
Version 1.2.1 is available now on GitHub. Remote installs upgrade by bumping the version tag in their workflow.
More press releases
Aido hardens its AI code-review Action against supply-chain and prompt-injection risks
A run of releases, 1.6.2 to 1.6.6, pins the tool's dependencies, closes shell and checkout injection paths, adds a prompt-injection guardrail, and documents a security posture for teams that run it on their own repositories.
Aido now supports any OpenAI-compatible model and adds a weekly digest of merged pull requests
Versions 1.5.0 and 1.6.0 of the open-source, multi-provider AI code-review tool for GitHub let teams point it at any OpenAI-compatible endpoint, including DeepSeek, Kimi, Grok, Mistral, OpenRouter, and self-hosted gateways, and add a scheduled summary of the pull requests merged each week.
Aido 1.4.2 restores compatibility with the latest Claude models
A patch release makes the sampling temperature opt-in, so the AI code-review tool's Claude commands work again on Anthropic's newest models, which no longer accept that parameter.