@langchain/langgraph-cli 1.0.3 → 1.1.0
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 +17 -0
- package/dist/cli/dev.python.mjs +3 -2
- package/dist/cli/docker.mjs +1 -1
- package/dist/cli/up.mjs +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @langchain/langgraph-cli
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c71b92b: Updated the uv version to latest 0.9.11. Fixed error fixed EXDEV: cross-device link when using Python adapter
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- @langchain/langgraph-api@1.1.0
|
|
12
|
+
|
|
13
|
+
## 1.0.4
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [b9be526]
|
|
18
|
+
- @langchain/langgraph-api@1.0.4
|
|
19
|
+
|
|
3
20
|
## 1.0.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/cli/dev.python.mjs
CHANGED
|
@@ -9,7 +9,7 @@ import zipExtract from "extract-zip";
|
|
|
9
9
|
import { logger } from "../utils/logging.mjs";
|
|
10
10
|
import { assembleLocalDeps } from "../docker/docker.mjs";
|
|
11
11
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
12
|
-
const UV_VERSION = "0.
|
|
12
|
+
const UV_VERSION = "0.9.11";
|
|
13
13
|
const UV_BINARY_CACHE = path.join(__dirname, ".uv", UV_VERSION);
|
|
14
14
|
function getPlatformInfo() {
|
|
15
15
|
const platform = os.platform();
|
|
@@ -77,7 +77,8 @@ async function downloadAndExtract(url, destPath, info) {
|
|
|
77
77
|
sourceBinaryPath = path.resolve(sourceBinaryPath, info.binaryName);
|
|
78
78
|
// Move binary to cache directory
|
|
79
79
|
const targetBinaryPath = path.join(destPath, info.binaryName);
|
|
80
|
-
|
|
80
|
+
// Just copy the file directly (it's a single executable, not a directory)
|
|
81
|
+
await fs.copyFile(sourceBinaryPath, targetBinaryPath);
|
|
81
82
|
await fs.chmod(targetBinaryPath, 0o755);
|
|
82
83
|
return targetBinaryPath;
|
|
83
84
|
}
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/langgraph-cli",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
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.1.0",
|
|
37
37
|
"chokidar": "^4.0.3",
|
|
38
38
|
"commander": "^13.0.0",
|
|
39
39
|
"create-langgraph": "1.0.0",
|
|
@@ -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
|
}
|