mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-18 02:25:00 +00:00
Merge branch 'main' into mixpanel
This commit is contained in:
commit
068fb38a5d
181 changed files with 141428 additions and 1961 deletions
|
@ -6,20 +6,277 @@ highlight_image: /assets/blame.jpg
|
|||
description: Release notes and stats on aider writing its own code.
|
||||
---
|
||||
|
||||
# Release history
|
||||
|
||||
{% include blame.md %}
|
||||
|
||||
<!--[[[cog
|
||||
# This page is a copy of HISTORY.md, adding the front matter above.
|
||||
text = open("HISTORY.md").read()
|
||||
text = text.replace("# Release history", "")
|
||||
cog.out(text)
|
||||
]]]-->
|
||||
|
||||
# Release history
|
||||
|
||||
|
||||
### main branch
|
||||
|
||||
- Load and save aider slash-commands to files:
|
||||
- `/save <fname>` command will make a file of `/add` and `/read-only` commands that recreate the current file context in the chat.
|
||||
- `/load <fname>` will replay the commands in the file.
|
||||
- You can use `/load` to run any arbitrary set of slash-commands, not just `/add` and `/read-only`.
|
||||
- Use `--load <fname>` to run a list of commands on launch, before the interactive chat begins.
|
||||
- Aider follows litellm's `supports_vision` attribute to enable image support for models.
|
||||
- Bugfix for when diff mode flexibly handles the model using the wrong filename.
|
||||
- Displays filenames in sorted order for `/add` and `/read-only`.
|
||||
- New `--no-fancy-input` switch disables prompt toolkit input, now still available with `--no-pretty`.
|
||||
- Properly support all o1 models, regardless of provider.
|
||||
- Improved handling of API errors, especially when accessing the weak model.
|
||||
|
||||
### Aider v0.60.1
|
||||
|
||||
- Enable image support for Sonnet 10/22.
|
||||
- Display filenames in sorted order.
|
||||
|
||||
### Aider v0.60.0
|
||||
|
||||
- Full support for Sonnet 10/22, the new SOTA model on aider's code editing benchmark.
|
||||
- Aider uses Sonnet 10/22 by default.
|
||||
- Improved formatting of added and read-only files above chat prompt, by @jbellis.
|
||||
- Improved support for o1 models by more flexibly parsing their nonconforming code edit replies.
|
||||
- Corrected diff edit format prompt that only the first match is replaced.
|
||||
- Stronger whole edit format prompt asking for clean file names.
|
||||
- Now offers to add `.env` to the `.gitignore` file.
|
||||
- Ships with a small model metadata json file to handle models not yet updated in litellm.
|
||||
- Model settings for o1 models on azure.
|
||||
- Bugfix to properly include URLs in `/help` RAG results.
|
||||
- Aider wrote 49% of the code in this release.
|
||||
|
||||
### Aider v0.59.1
|
||||
|
||||
- Check for obsolete `yes: true` in yaml config, show helpful error.
|
||||
- Model settings for openrouter/anthropic/claude-3.5-sonnet:beta
|
||||
|
||||
### Aider v0.59.0
|
||||
|
||||
- Improvements to `/read-only`:
|
||||
- Now supports shell-style auto-complete of the full file system.
|
||||
- Still auto-completes the full paths of the repo files like `/add`.
|
||||
- Now supports globs like `src/**/*.py`
|
||||
- Renamed `--yes` to `--yes-always`.
|
||||
- Now uses `AIDER_YES_ALWAYS` env var and `yes-always:` yaml key.
|
||||
- Existing YAML and .env files will need to be updated.
|
||||
- Can still abbreviate to `--yes` on the command line.
|
||||
- Config file now uses standard YAML list syntax with ` - list entries`, one per line.
|
||||
- `/settings` now includes the same announcement lines that would print at launch.
|
||||
- Sanity checks the `--editor-model` on launch now, same as main and weak models.
|
||||
- Added `--skip-sanity-check-repo` switch to speedup launch in large repos.
|
||||
- Bugfix so architect mode handles Control-C properly.
|
||||
- Repo-map is deterministic now, with improved caching logic.
|
||||
- Improved commit message prompt.
|
||||
- Aider wrote 77% of the code in this release.
|
||||
|
||||
### Aider v0.58.1
|
||||
|
||||
- Fixed bug where cache warming pings caused subsequent user messages to trigger a tight loop of LLM requests.
|
||||
|
||||
### Aider v0.58.0
|
||||
|
||||
- [Use a pair of Architect/Editor models for improved coding](https://aider.chat/2024/09/26/architect.html)
|
||||
- Use a strong reasoning model like o1-preview as your Architect.
|
||||
- Use a cheaper, faster model like gpt-4o as your Editor.
|
||||
- New `--o1-preview` and `--o1-mini` shortcuts.
|
||||
- Support for new Gemini 002 models.
|
||||
- Better support for Qwen 2.5 models.
|
||||
- Many confirmation questions can be skipped for the rest of the session with "(D)on't ask again" response.
|
||||
- Autocomplete for `/read-only` supports the entire filesystem.
|
||||
- New settings for completion menu colors.
|
||||
- New `/copy` command to copy the last LLM response to the clipboard.
|
||||
- Renamed `/clipboard` to `/paste`.
|
||||
- Will now follow HTTP redirects when scraping urls.
|
||||
- New `--voice-format` switch to send voice audio as wav/mp3/webm, by @mbailey.
|
||||
- ModelSettings takes `extra_params` dict to specify any extras to pass to `litellm.completion()`.
|
||||
- Support for cursor shapes when in vim mode.
|
||||
- Numerous bug fixes.
|
||||
- Aider wrote 53% of the code in this release.
|
||||
|
||||
### Aider v0.57.1
|
||||
|
||||
- Fixed dependency conflict between aider-chat[help] and [playwright].
|
||||
|
||||
### Aider v0.57.0
|
||||
|
||||
- Support for OpenAI o1 models:
|
||||
- o1-preview now works well with diff edit format.
|
||||
- o1-preview with diff now matches SOTA leaderboard result with whole edit format.
|
||||
- `aider --model o1-mini`
|
||||
- `aider --model o1-preview`
|
||||
- On Windows, `/run` correctly uses PowerShell or cmd.exe.
|
||||
- Support for new 08-2024 Cohere models, by @jalammar.
|
||||
- Can now recursively add directories with `/read-only`.
|
||||
- User input prompts now fall back to simple `input()` if `--no-pretty` or a Windows console is not available.
|
||||
- Improved sanity check of git repo on startup.
|
||||
- Improvements to prompt cache chunking strategy.
|
||||
- Removed "No changes made to git tracked files".
|
||||
- Numerous bug fixes for corner case crashes.
|
||||
- Updated all dependency versions.
|
||||
- Aider wrote 70% of the code in this release.
|
||||
|
||||
### Aider v0.56.0
|
||||
|
||||
- Enables prompt caching for Sonnet via OpenRouter by @fry69
|
||||
- Enables 8k output tokens for Sonnet via VertexAI and DeepSeek V2.5.
|
||||
- New `/report` command to open your browser with a pre-populated GitHub Issue.
|
||||
- New `--chat-language` switch to set the spoken language.
|
||||
- Now `--[no-]suggest-shell-commands` controls both prompting for and offering to execute shell commands.
|
||||
- Check key imports on launch, provide helpful error message if dependencies aren't available.
|
||||
- Renamed `--models` to `--list-models` by @fry69.
|
||||
- Numerous bug fixes for corner case crashes.
|
||||
- Aider wrote 56% of the code in this release.
|
||||
|
||||
### Aider v0.55.0
|
||||
|
||||
- Only print the pip command when self updating on Windows, without running it.
|
||||
- Converted many error messages to warning messages.
|
||||
- Added `--tool-warning-color` setting.
|
||||
- Blanket catch and handle git errors in any `/command`.
|
||||
- Catch and handle glob errors in `/add`, errors writing files.
|
||||
- Disabled built in linter for typescript.
|
||||
- Catch and handle terminals which don't support pretty output.
|
||||
- Catch and handle playwright and pandoc errors.
|
||||
- Catch `/voice` transcription exceptions, show the WAV file so the user can recover it.
|
||||
- Aider wrote 53% of the code in this release.
|
||||
|
||||
### Aider v0.54.12
|
||||
|
||||
- Switched to `vX.Y.Z.dev` version naming.
|
||||
|
||||
### Aider v0.54.11
|
||||
|
||||
- Improved printed pip command output on Windows.
|
||||
|
||||
### Aider v0.54.10
|
||||
|
||||
- Bugfix to test command in platform info.
|
||||
|
||||
### Aider v0.54.9
|
||||
|
||||
- Include important devops files in the repomap.
|
||||
- Print quoted pip install commands to the user.
|
||||
- Adopt setuptools_scm to provide dev versions with git hashes.
|
||||
- Share active test and lint commands with the LLM.
|
||||
- Catch and handle most errors creating new files, reading existing files.
|
||||
- Catch and handle most git errors.
|
||||
- Added --verbose debug output for shell commands.
|
||||
|
||||
### Aider v0.54.8
|
||||
|
||||
- Startup QOL improvements:
|
||||
- Sanity check the git repo and exit gracefully on problems.
|
||||
- Pause for confirmation after model sanity check to allow user to review warnings.
|
||||
- Bug fix for shell commands on Windows.
|
||||
- Do not fuzzy match filenames when LLM is creating a new file, by @ozapinq
|
||||
- Numerous corner case bug fixes submitted via new crash report -> GitHub Issue feature.
|
||||
- Crash reports now include python version, OS, etc.
|
||||
|
||||
### Aider v0.54.7
|
||||
|
||||
- Offer to submit a GitHub issue pre-filled with uncaught exception info.
|
||||
- Bugfix for infinite output.
|
||||
|
||||
### Aider v0.54.6
|
||||
|
||||
- New `/settings` command to show active settings.
|
||||
- Only show cache warming status update if `--verbose`.
|
||||
|
||||
### Aider v0.54.5
|
||||
|
||||
- Bugfix for shell commands on Windows.
|
||||
- Refuse to make git repo in $HOME, warn user.
|
||||
- Don't ask again in current session about a file the user has said not to add to the chat.
|
||||
- Added `--update` as an alias for `--upgrade`.
|
||||
|
||||
### Aider v0.54.4
|
||||
|
||||
- Bugfix to completions for `/model` command.
|
||||
- Bugfix: revert home dir special case.
|
||||
|
||||
### Aider v0.54.3
|
||||
|
||||
- Dependency `watchdog<5` for docker image.
|
||||
|
||||
### Aider v0.54.2
|
||||
|
||||
- When users launch aider in their home dir, help them find/create a repo in a subdir.
|
||||
- Added missing `pexpect` dependency.
|
||||
|
||||
### Aider v0.54.0
|
||||
|
||||
- Added model settings for `gemini/gemini-1.5-pro-exp-0827` and `gemini/gemini-1.5-flash-exp-0827`.
|
||||
- Shell and `/run` commands can now be interactive in environments where a pty is available.
|
||||
- Optionally share output of suggested shell commands back to the LLM.
|
||||
- New `--[no-]suggest-shell-commands` switch to configure shell commands.
|
||||
- Performance improvements for autocomplete in large/mono repos.
|
||||
- New `--upgrade` switch to install latest version of aider from pypi.
|
||||
- Bugfix to `--show-prompt`.
|
||||
- Disabled automatic reply to the LLM on `/undo` for all models.
|
||||
- Removed pager from `/web` output.
|
||||
- Aider wrote 64% of the code in this release.
|
||||
|
||||
### Aider v0.53.0
|
||||
|
||||
- [Keep your prompt cache from expiring](https://aider.chat/docs/usage/caching.html#preventing-cache-expiration) with `--cache-keepalive-pings`.
|
||||
- Pings the API every 5min to keep the cache warm.
|
||||
- You can now bulk accept/reject a series of add url and run shell confirmations.
|
||||
- Improved matching of filenames from S/R blocks with files in chat.
|
||||
- Stronger prompting for Sonnet to make edits in code chat mode.
|
||||
- Stronger prompting for the LLM to specify full file paths.
|
||||
- Improved shell command prompting.
|
||||
- Weak model now uses `extra_headers`, to support Anthropic beta features.
|
||||
- New `--install-main-branch` to update to the latest dev version of aider.
|
||||
- Improved error messages on attempt to add not-git subdir to chat.
|
||||
- Show model metadata info on `--verbose`.
|
||||
- Improved warnings when LLMs env variables aren't set.
|
||||
- Bugfix to windows filenames which contain `\_`.
|
||||
- Aider wrote 59% of the code in this release.
|
||||
|
||||
### Aider v0.52.1
|
||||
|
||||
- Bugfix for NameError when applying edits.
|
||||
|
||||
### Aider v0.52.0
|
||||
|
||||
- Aider now offers to run shell commands:
|
||||
- Launch a browser to view updated html/css/js.
|
||||
- Install new dependencies.
|
||||
- Run DB migrations.
|
||||
- Run the program to exercise changes.
|
||||
- Run new test cases.
|
||||
- `/read` and `/drop` now expand `~` to the home dir.
|
||||
- Show the active chat mode at aider prompt.
|
||||
- New `/reset` command to `/drop` files and `/clear` chat history.
|
||||
- New `--map-multiplier-no-files` to control repo map size multiplier when no files are in the chat.
|
||||
- Reduced default multiplier to 2.
|
||||
- Bugfixes and improvements to auto commit sequencing.
|
||||
- Improved formatting of token reports and confirmation dialogs.
|
||||
- Default OpenAI model is now `gpt-4o-2024-08-06`.
|
||||
- Bumped dependencies to pickup litellm bugfixes.
|
||||
- Aider wrote 68% of the code in this release.
|
||||
|
||||
### Aider v0.51.0
|
||||
|
||||
- Prompt caching for Anthropic models with `--cache-prompts`.
|
||||
- Caches the system prompt, repo map and `/read-only` files.
|
||||
- Repo map recomputes less often in large/mono repos or when caching enabled.
|
||||
- Use `--map-refresh <always|files|manual|auto>` to configure.
|
||||
- Improved cost estimate logic for caching.
|
||||
- Improved editing performance on Jupyter Notebook `.ipynb` files.
|
||||
- Work around litellm tokenizer bug for images.
|
||||
- Show which config yaml file is loaded with `--verbose`.
|
||||
- Bumped dependency versions.
|
||||
- Bugfix: properly load `.aider.models.metadata.json` data.
|
||||
- Bugfix: Using `--msg /ask ...` caused an exception.
|
||||
- Bugfix: litellm tokenizer bug for images.
|
||||
- Aider wrote 56% of the code in this release.
|
||||
|
||||
### Aider v0.50.1
|
||||
|
||||
|
@ -507,7 +764,7 @@ cog.out(text)
|
|||
### Aider v0.14.0
|
||||
|
||||
- [Support for Claude2 and other LLMs via OpenRouter](https://aider.chat/docs/faq.html#accessing-other-llms-with-openrouter) by @joshuavial
|
||||
- Documentation for [running the aider benchmarking suite](https://github.com/paul-gauthier/aider/tree/main/benchmark)
|
||||
- Documentation for [running the aider benchmarking suite](https://github.com/Aider-AI/aider/tree/main/benchmark)
|
||||
- Aider now requires Python >= 3.9
|
||||
|
||||
|
||||
|
@ -552,7 +809,7 @@ cog.out(text)
|
|||
|
||||
- Added `/git` command to run git from inside aider chats.
|
||||
- Use Meta-ENTER (Esc+ENTER in some environments) to enter multiline chat messages.
|
||||
- Create a `.gitignore` with `.aider*` to prevent users from accidentaly adding aider files to git.
|
||||
- Create a `.gitignore` with `.aider*` to prevent users from accidentally adding aider files to git.
|
||||
- Check pypi for newer versions and notify user.
|
||||
- Updated keyboard interrupt logic so that 2 ^C in 2 seconds always forces aider to exit.
|
||||
- Provide GPT with detailed error if it makes a bad edit block, ask for a retry.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue