@langchain/langgraph-cli 1.0.4 → 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 +10 -0
- package/dist/cli/dev.python.mjs +3 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
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
|
+
|
|
3
13
|
## 1.0.4
|
|
4
14
|
|
|
5
15
|
### 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/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",
|