Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.101 Home All releases olderv2.1.100 v2.1.104newer
Claude Code v2.1.101

CLAUDE_CODE_CERT_STORE Environment Variable

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=bundled
Details
  • Accepts comma-separated values: bundled and/or system
  • Defaults to ["bundled", "system"] when not set
  • Falls back to the --use-system-ca / --use-openssl-ca flags if the env var is not present
  • Unrecognized sources are logged as warnings and ignored
  • The old --use-system-ca flag 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.

See this entry in the whole of v2.1.101 →