You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
langgraph-cli 0.2.1
Summary of Changes
Added pip cleanup after installations to reduce Docker image size (#4208)
Added safeguards to prevent user dependencies from overwriting langgraph-api packages (#4237)
Updated to use langgraph-api 0.1.0 and added langgraph-runtime-inmem dependency (#4213)
Changed dependency markers to make certain packages available outside the "inmem" extra (#4213)
Detailed Changes
Config Module
Added PIP_CLEANUP_LINES to remove pip, setuptools, and wheel after all installations are complete in Docker containers (#4208)
Enhanced PIP_CLEANUP_LINES with commands that ensure the langgraph-api directories exist and aren't accidentally overwritten by user dependencies (#4237)
Creates directories for langgraph_api, langgraph_runtime, and langgraph_license modules
Reinstalls the API package with --no-deps to restore any overwritten files
Dependencies
Updated langgraph-api from 0.0.42 to 0.1.0 (#4213)
Added langgraph-runtime-inmem 0.0.1 as a new dependency (#4213)
Added langgraph-sdk as an explicit dependency (#4213)
Relaxed cryptography dependency constraint from ">=43.0.3,<44.0.0" to ">=42.0.0,<45.0" (#4213)
Modified dependency markers to make packages like anyio, httpx, and orjson available to Python 3.11+ installations even without the "inmem" extra (#4213)