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.1.61
Summary of Changes
Added --wait-for-client option to dev command to pause server startup until a debugger client connects (PR #2573)
Changed how store configuration is handled in Docker environments, using a dedicated environment variable LANGGRAPH_STORE instead of embedding store config inside LANGGRAPH_CONFIG (PR #2573)
Updated langgraph-api dependency from 0.0.5 to 0.0.6
Detailed Changes
CLI Command dev
Added a new --wait-for-client flag that, when used with --debug-port, makes the server wait for a debugger client to connect before starting up (PR #2573)
Improved handling of store configuration by passing it directly to run_server rather than embedding it in a general config object (PR #2573)
Docker Configuration
Changed how store configuration is passed to Docker environments, using the dedicated environment variable LANGGRAPH_STORE instead of LANGGRAPH_CONFIG (PR #2573)
This change affects both Python and Node.js Docker environments generated by the CLI
The new approach is more explicit about the purpose of the configuration