Subscribe: Our changelog includes an RSS feed that can integrate with Slack, email, Discord bots like Readybot or RSS Feeds to Discord Bot, and other subscription tools.
Jan 14, 2026
v1.1.0
@langchain/langgraph
Introducing StateSchema - a cleaner, library-agnostic way to define graph state that works with any Standard Schema-compliant validation library.Standard JSON Schema support
LangGraph now supports Standard JSON Schema, an open specification implemented by Zod 4, Valibot, ArkType, and other schema libraries. This means you can use your preferred validation library without lock-in:New state value primitives
- ReducedValue: Define fields with custom reducers for accumulating values. Supports separate input and output schemas for type-safe reducer inputs.
- UntrackedValue: Define transient state that exists during execution but is never checkpointed - useful for database connections, caches, or runtime-only configuration.
- MessagesValue: A prebuilt
ReducedValuefor chat messages with the standard messages reducer.
Type helper exports
New exported type utilities for typing functions outside the graph builder:GraphNode<Schema, Nodes?, Config?>- Type node functions with full inferenceConditionalEdgeRouter<Schema, Nodes?>- Type conditional edge routers
Annotation and zod-based API continues to work unchanged - StateSchema is an additional option for those who prefer schema-first definitions.Learn more about StateSchema
See the full documentation for defining graph state with StateSchema, ReducedValue, and UntrackedValue.
Learn about type utilities
Use GraphNode and ConditionalEdgeRouter to type functions outside the graph builder.
Dec 12, 2025
v1.2.0
langchain
- Structured output: Added ability to manually set
strictmode when usingproviderStrategyfor structured output.
@langchain/openai
- New provider built-in tools: Support for file search, web search, code interpreter, image generation, computer use, shell, and MCP connector tools.
- Content moderation: New
moderateContentoption onChatOpenAIfor detecting and handling unsafe content. - Prefer responses API for GPT-5.2 Pro model.
v1.3.0
@langchain/anthropic
- New provider built-in tools: Support for text editor, web fetch, computer use, tool search, and MCP toolset tools.
- Exposed
ChatAnthropicInputtype for improved type safety.
v1.1.0
@langchain/ollama
- Native structured outputs: Added support for native structured output via
withStructuredOutput. - Support for custom
baseUrlconfiguration.
v1.0.0
@langchain/community
- Jira document loader updated to use v3 API.
- LanceDB: Added
similaritySearch()andsimilaritySearchWithScore()support. - Elasticsearch hybrid search support.
- New
GoogleCalendarDeleteTool. - Various bug fixes for LlamaCppEmbeddings, PrismaVectorStore, IBM WatsonX, and security improvements.
Other packages
- @langchain/xai: Native Live Search support.
- @langchain/tavily: Added Tavily’s research endpoint.
- @langchain/mongodb: New MongoDB LLM cache.
- @langchain/mcp-adapters: Added
onConnectionErroroption. - @langchain/google-common:
jsonSchemamethod support inwithStructuredOutput. - @langchain/core: Security fixes, better subgraph nesting in Mermaid graphs, UUID7 for run IDs.
Nov 25, 2025
v1.1.0
- Model profiles: Chat models now expose supported features and capabilities through a
.profilegetter. These data are derived from models.dev, an open source project providing model capability data. - Model retry middleware: New middleware for automatically retrying failed model calls with configurable exponential backoff, improving agent reliability.
- Content moderation middleware: OpenAI content moderation middleware for detecting and handling unsafe content in agent interactions. Supports checking user input, model output, and tool results.
- Summarization middleware: Updated to support flexible trigger points using model profiles for context-aware summarization.
- Structured output:
ProviderStrategysupport (native structured output) can now be inferred from model profiles. SystemMessageforcreateAgent: Support for passingSystemMessageinstances directly tocreateAgent’ssystemPromptparameter and a newconcatmethod for extending system messages. Enables advanced features like cache control and structured content blocks.- Dynamic system prompt middleware: Return values from
dynamicSystemPromptMiddlewareare now purely additive. When returning aSystemMessageorstring, they are merged with existing system messages rather than replacing them, making it easier to compose multiple middleware that modify the prompt. - Compatibility improvements: Fixed error handling for Zod v4 validation errors in structured output and tool schemas, ensuring detailed error messages are properly displayed.
Oct 20, 2025
v1.0.0
langchain
langgraph
If you encounter any issues or have feedback, please open an issue so we can improve. To view v0.x documentation, go to the archived content.