Skip to content

cli==0.1.72

Choose a tag to compare

@github-actions github-actions released this 19 Feb 16:55
4875973

langgraph-cli 0.1.72

Summary of Changes

  • Added support for Docker build contexts to handle local dependencies in parent directories, improving project organization flexibility (#3472)
  • Fixed Docker information format string to be compatible with more Docker versions (#3479)
  • Added HTTP server configuration options, including custom app mounting and CORS settings (#3505)

Detailed Changes

Docker Build Context Support

  • Enhanced the build system to correctly handle local dependencies located in parent directories through additional build contexts
  • Improved path resolution and normalization for dependencies
  • Added unique naming for container packages to avoid conflicts
  • Added helpful messages when building with additional contexts
  • Fixed requirements.txt handling for dependencies in non-standard locations

Docker Compatibility

  • Fixed the Docker info command format from json to {{json .}} for better compatibility across Docker versions

HTTP Configuration

  • Added new configuration options for HTTP server customization:
    • Support for mounting custom Starlette/FastAPI apps via the http.app config option
    • Options to disable specific API routes (assistants, threads, runs, store)
    • Cross-Origin Resource Sharing (CORS) configuration support
  • Added proper environment variable passing of HTTP configuration
  • Included a reference example app with middleware and context handling
  • Added path resolution for HTTP app imports, similar to graph paths