Skip to content

cli==0.1.61

Choose a tag to compare

@github-actions github-actions released this 28 Nov 20:26
65172c2

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