@langchain/langgraph-cli 1.0.2 → 1.0.3
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 +8 -0
- package/dist/cli/dev.mjs +1 -1
- package/dist/docker/compose.mjs +1 -1
- package/dist/utils/config.mjs +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @langchain/langgraph-cli
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6cd8ecb: Remove Zod 3.x dependency constraint to allow Zod 4.x and avoid installing duplicate Zod packages
|
|
8
|
+
- Updated dependencies [6cd8ecb]
|
|
9
|
+
- @langchain/langgraph-api@1.0.3
|
|
10
|
+
|
|
3
11
|
## 1.0.2
|
|
4
12
|
|
|
5
13
|
### 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/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.3",
|
|
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.3",
|
|
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",
|