# Claude Code v1.0.2 Changelog
Changes
Breaking Changes
2 itemsNone
Model Token Limit Updates #
- Removed Opus model-specific token limit: The function that determines token limits for different Claude models no longer includes a special case for Opus models. Previously, Opus models had a 4096 token limit, but now they will use the default 20,000 token limit.
This means when using Claude Code with Opus models, you can now include much longer contexts in your requests - up to 20,000 tokens instead of the previous 4,096 token limit.
Internal Improvements #
- Optimized imports: Refactored Node.js imports to be more specific:
- Changed from importing the entire
node:processmodule to importing only thecwd(current working directory) function - Changed from importing the entire
streammodule to importing only thePassThroughclass
These changes improve code efficiency by reducing unnecessary imports and making the codebase more modular.