Paul Gauthier (aider)
e370b7aba3
feat: refactor docker build and release into its own workflow
...
BREAKING CHANGE: update tag regex to match semver pattern `v[0-9]+.[0-9]+.[0-9]+`
This change separates the concerns of PyPI release and Docker image release into two separate workflows. The original `release.yml` file has been renamed to `PyPI Release` and now only handles the PyPI package release. A new `docker-release.yml` file has been created to handle the Docker image build and push.
Both workflows are now triggered on tags matching the semver pattern `v[0-9]+.[0-9]+.[0-9]+`, which corresponds to tags like `vX.Y.Z`. The Docker-related steps have been moved from the original workflow to the new Docker-specific workflow.
This change ensures that both PyPI and Docker releases are triggered on the same semver-compliant tag pattern, while separating the concerns of the two release processes.
2024-07-31 09:09:15 -03:00
Paul Gauthier
199e25fc16
feat(prompts): Add Conventional Commits guidelines to commit message prompt
2024-07-31 09:06:31 -03:00
Paul Gauthier
e1a9fd69e6
Implement playwright installation with dependencies and use system python executable.
2024-07-31 08:53:21 -03:00
Paul Gauthier
c7884c94f6
Add support for more file types in the blame script
2024-07-31 08:50:49 -03:00
Paul Gauthier
6888b07ea0
Add support for Dockerfiles in the blame script
2024-07-30 20:46:20 -03:00
Paul Gauthier
266f58416c
copy
2024-07-30 20:44:29 -03:00
Paul Gauthier
d1e385dea1
Added playwright to aider-full image
2024-07-30 20:44:17 -03:00
Paul Gauthier (aider)
41772ccef6
Ensure ChatSummary has at least one model available and use the first model's max input tokens for summarization
2024-07-30 20:37:30 -03:00
Paul Gauthier (aider)
4fded189f8
Build multi-stage Docker images for core "aider" and full "aider-full" versions
2024-07-30 17:11:12 -03:00
Paul Gauthier
bf4d87d66f
Updated HISTORY
2024-07-30 17:06:05 -03:00
Paul Gauthier
fb8afa5228
blame for .scm files too
2024-07-30 17:04:38 -03:00
Paul Gauthier
1677f7ede8
Do general autocomplete if /cmd doesn't have its own
2024-07-30 16:43:29 -03:00
Paul Gauthier (aider)
5d0ba54e07
Refactor get_completions
method to extract command completion logic into a separate function
2024-07-30 16:36:13 -03:00
Paul Gauthier
59ad370611
Improve linter error handling by replacing invalid characters and adding error handling for subprocess.
2024-07-30 15:21:01 -03:00
Paul Gauthier
a84cad4a59
Add encoding and error handling to subprocess call in Commands class
2024-07-30 15:19:38 -03:00
Paul Gauthier (aider)
9b129a7f03
Update the subprocess calls to use the specified encoding.
2024-07-30 15:18:51 -03:00
Paul Gauthier
9c406cd176
Add linting for all dirty files in the repository
2024-07-30 15:09:41 -03:00
Paul Gauthier (aider)
07780326b4
Use more efficient method to get all dirty files in cmd_lint
2024-07-30 15:09:04 -03:00
Paul Gauthier
5f9275a3c2
Add dirty tracked files to the list of files to lint
2024-07-30 15:09:03 -03:00
Paul Gauthier
4a3ea08b49
Add OCaml test case for repomap
2024-07-30 15:03:54 -03:00
Paul Gauthier (aider)
795467f206
Update the OCaml tags file to follow the same pattern as the Python tags file.
2024-07-30 15:02:52 -03:00
Paul Gauthier
d24a5feab4
Update the OCaml tags query to improve module and function handling
2024-07-30 15:00:58 -03:00
Paul Gauthier
e6883e1072
Simpler added_files reply message
2024-07-30 14:56:38 -03:00
Paul Gauthier
3dd150608d
copy
2024-07-30 12:31:27 -03:00
Paul Gauthier
e2fb2466a9
Improve linter support and repo map coverage for various programming languages.
2024-07-30 12:30:29 -03:00
Paul Gauthier (aider)
74201dd733
Add two new columns to the get_supported_languages_md
function: Repo map and Linter, and check the existence of the SCM file and linter support for each language.
2024-07-30 12:26:01 -03:00
Paul Gauthier (aider)
bcd802b6e9
Add retry support for litellm.InternalServerError
in the send_with_retries
function in aider/sendchat.py
.
2024-07-30 12:23:41 -03:00
Paul Gauthier (aider)
cba53bfc22
Add retry support for litellm.InternalServerError
2024-07-30 12:23:33 -03:00
Paul Gauthier
9706002769
Auto commit before lint/test/etc
2024-07-30 12:19:32 -03:00
Paul Gauthier (aider)
0980985338
Add fallback to second model when first model fails in ChatSummary
2024-07-30 12:16:32 -03:00
Paul Gauthier (aider)
963420d16f
Initialize ChatSummary with main and weak models
2024-07-30 12:04:31 -03:00
Paul Gauthier (aider)
4fe8cca0e9
Fix ChatSummary
to take a list of models and work down the list until one succeeds.
2024-07-30 11:57:36 -03:00
Paul Gauthier
2e4de1a0d3
Add support for multiple models in ChatSummary class
2024-07-30 11:57:34 -03:00
Paul Gauthier
3c04850339
move cog/author to end of leaderboard, was preventing it from showing in nav
2024-07-30 10:33:09 -03:00
Paul Gauthier
7c50e5d7af
drop dangling comma
2024-07-30 10:29:40 -03:00
Paul Gauthier
d1bce18899
updated blame.yml with full data
2024-07-30 10:23:17 -03:00
Paul Gauthier (aider)
3ee30a62de
Update aider_lines field to aider_total in blame.md
2024-07-30 10:22:25 -03:00
Paul Gauthier (aider)
16eadba5e5
Modify process_all_tags_since
function to include all data for each tag pair in --all
output
2024-07-30 10:16:38 -03:00
Paul Gauthier (aider)
7d5e666ea7
Make the start tag an optional positional argument and use the latest vX.Y.0 tag if no start tag is provided.
2024-07-30 10:14:58 -03:00
Paul Gauthier (aider)
b9b04052c7
Modify the test to check if the linter was called with a filename string whose Path().name matches the expected filename.
2024-07-30 10:10:39 -03:00
Paul Gauthier
33d9f46e25
Add unit test to verify cmd_lint calls linter with correct filename
2024-07-30 10:10:37 -03:00
Paul Gauthier (aider)
167abdf851
Remove unused imports in linter.py
2024-07-29 20:29:14 -03:00
Paul Gauthier
5edce8ae1b
Add linter output to the dump for debugging
2024-07-29 20:28:43 -03:00
Paul Gauthier (aider)
9c24d41d41
Remove unused cost_report
variable in calculate_and_show_tokens_and_cost
method
2024-07-29 17:32:03 -03:00
Paul Gauthier
384a5f2ea5
Update Coder class to use absolute file names instead of relative file names
2024-07-29 17:31:54 -03:00
Paul Gauthier (aider)
122eb8834a
Normalize file paths to resolve symbolic links in macOS when comparing absolute file names between coders.
2024-07-29 17:26:14 -03:00
Paul Gauthier
7baa4a802e
Add test to ensure abs_fnames contain unique and correct paths
2024-07-29 17:26:12 -03:00
Paul Gauthier (aider)
78e7b0b922
Use a more specific assertion method in the test case
2024-07-29 17:17:50 -03:00
Paul Gauthier (aider)
d4f5330f55
Fix typo in assertion for "I ran this command"
2024-07-29 17:17:31 -03:00
Paul Gauthier
11facfe4d5
Add test for cmd_run method to handle unbound local error
2024-07-29 17:17:29 -03:00