One change
Migrate to Claude Agent SDK
agent-sdk/migration-guide
Nearest release: v2.1.250, published under an hour before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.
agent-sdk/migration-guide Changed · +2 / -2 lines
from line 208
const isolatedResult = query({ prompt: "Hello", options: { - settingSources: [] // No filesystem settings loaded + settingSources: [] // Skip user, project, and local settings } });
from line 229
async def main(): async for message in query( prompt="Hello", - options=ClaudeAgentOptions(setting_sources=[]), # No filesystem settings loaded + options=ClaudeAgentOptions(setting_sources=[]), # Skip user, project, and local settings ): print(message)