@langchain/langgraph-cli 0.0.50 → 0.0.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @langchain/langgraph-cli
2
2
 
3
+ ## 0.0.52
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [030698f]
8
+ - @langchain/langgraph-api@0.0.52
9
+
10
+ ## 0.0.51
11
+
12
+ ### Patch Changes
13
+
14
+ - 11319f7: fix(cli): allow node_version: 22 when pulling and building image
15
+ - @langchain/langgraph-api@0.0.51
16
+
3
17
  ## 0.0.50
4
18
 
5
19
  ### Patch Changes
@@ -55,7 +55,7 @@ const DEFAULT_PYTHON_VERSION = "3.11";
55
55
  const DEFAULT_NODE_VERSION = "20";
56
56
  const PYTHON_EXTENSIONS = [".py", ".pyx", ".pyd", ".pyi"];
57
57
  const PythonVersionSchema = z.union([z.literal("3.11"), z.literal("3.12")]);
58
- const NodeVersionSchema = z.literal("20");
58
+ const NodeVersionSchema = z.union([z.literal("20"), z.literal("22")]);
59
59
  const PythonConfigSchema = BaseConfigSchema.merge(z.object({
60
60
  pip_config_file: z.string().optional(),
61
61
  dependencies: z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-cli",
3
- "version": "0.0.50",
3
+ "version": "0.0.52",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "^18.19.0 || >=20.16.0"
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@babel/code-frame": "^7.26.2",
35
35
  "@commander-js/extra-typings": "^13.0.0",
36
- "@langchain/langgraph-api": "0.0.50",
36
+ "@langchain/langgraph-api": "0.0.52",
37
37
  "chokidar": "^4.0.3",
38
38
  "commander": "^13.0.0",
39
39
  "dedent": "^1.5.3",