What's wrong with this entry?
Anonymous. No account, no email.
What
A new environment variable that gives users explicit control over which SSL/TLS certificate stores Claude Code uses, replacing the less flexible --use-system-ca flag approach.
Usage
# Use both bundled and system certificates (default)
export CLAUDE_CODE_CERT_STORE=bundled,system
# Use only system certificates
export CLAUDE_CODE_CERT_STORE=system
# Use only bundled certificates
export CLAUDE_CODE_CERT_STORE=bundledDetails
- Accepts comma-separated values:
bundledand/orsystem - Defaults to
["bundled", "system"]when not set - Falls back to the
--use-system-ca/--use-openssl-caflags if the env var is not present - Unrecognized sources are logged as warnings and ignored
- The old
--use-system-caflag still works as a fallback
Evidence
Certificate store configuration (search for "CLAUDE_CODE_CERT_STORE")
Strings lifted out of the shipped bundle, so the claim above can be checked against them.