@langchain/langgraph-cli 0.0.49 → 0.0.51
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 +14 -0
- package/dist/cli/build.mjs +1 -0
- package/dist/utils/config.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @langchain/langgraph-cli
|
|
2
2
|
|
|
3
|
+
## 0.0.51
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 11319f7: fix(cli): allow node_version: 22 when pulling and building image
|
|
8
|
+
- @langchain/langgraph-api@0.0.51
|
|
9
|
+
|
|
10
|
+
## 0.0.50
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 337b419: fix(cli): enable correct passthrough of docker build args
|
|
15
|
+
- @langchain/langgraph-api@0.0.50
|
|
16
|
+
|
|
3
17
|
## 0.0.49
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/cli/build.mjs
CHANGED
|
@@ -22,6 +22,7 @@ builder
|
|
|
22
22
|
.option("--no-pull", "Running the server with locally-built images. By default LangGraph will pull the latest images from the registry")
|
|
23
23
|
.argument("[args...]")
|
|
24
24
|
.passThroughOptions()
|
|
25
|
+
.allowUnknownOption()
|
|
25
26
|
.exitOverride((error) => gracefulExit(error.exitCode))
|
|
26
27
|
.hook("preAction", withAnalytics((command) => ({
|
|
27
28
|
config: command.opts().config !== process.cwd(),
|
package/dist/utils/config.mjs
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "0.0.51",
|
|
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.
|
|
36
|
+
"@langchain/langgraph-api": "0.0.51",
|
|
37
37
|
"chokidar": "^4.0.3",
|
|
38
38
|
"commander": "^13.0.0",
|
|
39
39
|
"dedent": "^1.5.3",
|