fix: pass --no-verify-ssl to version check, fix SSL_VERIFY, add AIDER_TAGS_CACHE_DIR - #5177
Open
superShen0916 wants to merge 2 commits into
Open
fix: pass --no-verify-ssl to version check, fix SSL_VERIFY, add AIDER_TAGS_CACHE_DIR#5177superShen0916 wants to merge 2 commits into
superShen0916 wants to merge 2 commits into
Conversation
Pass --no-verify-ssl through version checks and set SSL_VERIFY=false for LiteLLM compatibility. Add AIDER_TAGS_CACHE_DIR support for relocating the repo-map tags cache, with focused regression coverage for both behaviors. Fixes Aider-AI#664 Fixes Aider-AI#2325 Signed-off-by: superShen0916 <superShen0916@users.noreply.github.com>
superShen0916
force-pushed
the
fix/ssl-verify-version-check
branch
from
May 30, 2026 11:03
8113492 to
2935d27
Compare
superShen0916
force-pushed
the
fix/ssl-verify-version-check
branch
from
September 3, 2026 15:36
e23d09b to
2bdb195
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Three focused fixes for enterprise and custom-environment users:
--no-verify-sslto the PyPI version check (Fixes Add an option to skip SSL verification for users behind firewalls #664).SSL_VERIFYenvironment variable tofalseinstead of an empty string.AIDER_TAGS_CACHE_DIRfor relocating.aider.tags.cache.v3outside the repository (Fixes [Feature Request] User-defined location for .aider.tags.cache.v3 #2325).Default behavior is unchanged when these options are not used.
Changes
aider/versioncheck.py: acceptverify_ssland pass it torequests.get.aider/main.py: forward the CLI setting to version checks and configure LiteLLM consistently.aider/repomap.py: resolve the tags-cache path fromAIDER_TAGS_CACHE_DIRwhen set.Test plan
python -m pytest -q --timeout=60 tests/basic/test_ssl_verification.py tests/basic/test_repomap.py::TestRepoMap::test_get_tags_cache_dir_respects_env— 4 passed.python -m compileall -qon all changed Python files — passed.flake8on all changed Python files — passed.Risk
Low. The changes only affect explicitly configured SSL verification and tags-cache paths.