LangChain v1.1.8 Release Notes

Minor update with dependency refreshes

Released: May 18, 2026 | Updated: May 22, 2026 at 9:33 PM

βœ… Minor Update

This is a minor maintenance release focused on dependency updates and model reference refreshes. No breaking changes. Safe to upgrade from v1.1.7 or earlier.

πŸ“¦ Key Changes

OpenAI Model References Refreshed

Stale OpenAI model references have been updated to current models. Deprecated gpt-3.5-turbo references removed.

Updated model references:

  • βœ… gpt-4o β€” Current flagship model
  • βœ… gpt-4o-mini β€” Fast, cost-effective option
  • ❌ gpt-3.5-turbo β€” Removed (deprecated)

Dependency Updates

Core dependencies updated for security and compatibility:

  • β†’ langsmith: Bumped to v0.8.0 (standard-tests)
  • β†’ urllib3: Updated to v2.7.0 (security patch)
  • β†’ langchain-core: Version bounds set for compatibility

Lockfile Updates

All dependency lockfiles refreshed to ensure consistent installations across different environments.

πŸ’‘ What This Means for You

βœ… Safe to Upgrade

No breaking changes. Your existing LangChain code will continue to work without modifications.

πŸ”„ Model Updates

If you're using OpenAI models, update your code to use gpt-4o or gpt-4o-mini instead of deprecated gpt-3.5-turbo.

πŸ”’ Security Improvements

Dependency updates include security patches for urllib3 and other core libraries.

⬆️ How to Update

Step 1: Update LangChain

pip install --upgrade langchain langchain-core

Step 2: Verify Installation

python -c "import langchain; print(langchain.__version__)"

Should output: 1.1.8

Step 3: Update Model References (If Needed)

If you're using OpenAI models, update your code:

Old (deprecated):

ChatOpenAI(model="gpt-3.5-turbo")

New (recommended):

ChatOpenAI(model="gpt-4o")

Related Releases

Official Resources

← Back to What's New Setup Guide β†’