LangChain AI Updates: May 12, 2026
1. LangGraph 1.2.0 lands with durable error handling and StateGraph defaults
LangChain. The headline 1.2.0 release adds a durable error-handler resume that persists across host crashes, plus a new set_node_defaults() method on StateGraph for sharing config across nodes without boilerplate. It also bumps langchain-core to 1.4.0 and graduates the previously alpha delta-channel APIs to beta in the official line, signaling the streaming-checkpoint path is stable enough to start building on. Source
2. Checkpoint stack gets snapshot forcing and streaming history walks
LangChain. The coordinated langgraph-checkpoint 4.1.0, langgraph-checkpoint-sqlite 3.1.0, and langgraph-checkpoint-postgres 3.1.0 releases force a delta-channel snapshot once a graph exceeds a configurable supersteps-since-last-snapshot threshold, bounding replay cost for long-running agents. SQLite now overrides get_delta_channel_history with a streaming walk instead of materializing the full history, which matters for local dev loops over multi-thousand-step traces. Source
3. langgraph-prebuilt 1.1.0 and CLI 0.4.26 ship alongside the core bump
LangChain. langgraph-prebuilt 1.1.0 promotes the 1.1.0a2 alpha line to official, aligning the prebuilt React-style agent with the new langchain-core 1.4.0 baseline, and langgraph-cli 0.4.26 follows so langgraph dev and deploy flows stay in lockstep. If you pin LangGraph in a monorepo, this is the day to bump all four packages together — mismatched checkpoint and core versions are the most common source of post-upgrade replay failures. Source