@langchain/langgraph-cli 1.0.2 → 1.0.4
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 +15 -0
- package/dist/cli/dev.mjs +1 -1
- package/dist/cli/docker.mjs +1 -1
- package/dist/cli/up.mjs +1 -1
- package/dist/docker/compose.mjs +1 -1
- package/dist/utils/config.mjs +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @langchain/langgraph-cli
|
|
2
2
|
|
|
3
|
+
## 1.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b9be526]
|
|
8
|
+
- @langchain/langgraph-api@1.0.4
|
|
9
|
+
|
|
10
|
+
## 1.0.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 6cd8ecb: Remove Zod 3.x dependency constraint to allow Zod 4.x and avoid installing duplicate Zod packages
|
|
15
|
+
- Updated dependencies [6cd8ecb]
|
|
16
|
+
- @langchain/langgraph-api@1.0.3
|
|
17
|
+
|
|
3
18
|
## 1.0.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/cli/dev.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import * as path from "node:path";
|
|
|
2
2
|
import * as fs from "node:fs/promises";
|
|
3
3
|
import { parse, populate } from "dotenv";
|
|
4
4
|
import { watch } from "chokidar";
|
|
5
|
-
import { z } from "zod";
|
|
5
|
+
import { z } from "zod/v3";
|
|
6
6
|
import open from "open";
|
|
7
7
|
import { startCloudflareTunnel } from "./cloudflare.mjs";
|
|
8
8
|
import { createIpcServer } from "./utils/ipc/server.mjs";
|
package/dist/cli/docker.mjs
CHANGED
|
@@ -104,7 +104,7 @@ builder
|
|
|
104
104
|
await fs.writeFile(envPath, dedent `
|
|
105
105
|
# Uncomment the following line to add your LangSmith API key
|
|
106
106
|
# LANGSMITH_API_KEY=your-api-key
|
|
107
|
-
# Or if you have a
|
|
107
|
+
# Or if you have a LangSmith Deployment license key, then uncomment the following line:
|
|
108
108
|
# LANGGRAPH_CLOUD_LICENSE_KEY=your-license-key
|
|
109
109
|
# Add any other environment variables go below...
|
|
110
110
|
`);
|
package/dist/cli/up.mjs
CHANGED
|
@@ -56,7 +56,7 @@ builder
|
|
|
56
56
|
.action(async (params) => {
|
|
57
57
|
logger.info("Starting LangGraph API server...");
|
|
58
58
|
logger.warn(dedent `
|
|
59
|
-
For local dev, requires env var LANGSMITH_API_KEY with access to
|
|
59
|
+
For local dev, requires env var LANGSMITH_API_KEY with access to LangSmith Deployment.
|
|
60
60
|
For production use, requires a license key in env var LANGGRAPH_CLOUD_LICENSE_KEY.
|
|
61
61
|
`);
|
|
62
62
|
const configPath = await getProjectPath(params.config);
|
package/dist/docker/compose.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { $ } from "execa";
|
|
2
2
|
import * as yaml from "yaml";
|
|
3
|
-
import { z } from "zod";
|
|
3
|
+
import { z } from "zod/v3";
|
|
4
4
|
import { getExecaOptions } from "./shell.mjs";
|
|
5
5
|
export const DEFAULT_POSTGRES_URI = "postgres://postgres:postgres@langgraph-postgres:5432/postgres?sslmode=disable";
|
|
6
6
|
const REDIS = {
|
package/dist/utils/config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/langgraph-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
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": "1.0.
|
|
36
|
+
"@langchain/langgraph-api": "1.0.4",
|
|
37
37
|
"chokidar": "^4.0.3",
|
|
38
38
|
"commander": "^13.0.0",
|
|
39
39
|
"create-langgraph": "1.0.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"winston": "^3.17.0",
|
|
51
51
|
"winston-console-format": "^1.0.8",
|
|
52
52
|
"yaml": "^2.7.0",
|
|
53
|
-
"zod": "^3.
|
|
53
|
+
"zod": "^3.25.76 || ^4"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/babel__code-frame": "^7.0.6",
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
"prettier": "^2.8.3",
|
|
59
59
|
"tsx": "^4.19.3",
|
|
60
60
|
"typescript": "^4.9.5 || ^5.4.5",
|
|
61
|
-
"vitest": "^3.
|
|
61
|
+
"vitest": "^3.2.4"
|
|
62
62
|
}
|
|
63
63
|
}
|