@langchain/langgraph-ui 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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @langchain/langgraph-ui
2
2
 
3
+ ## 1.0.4
4
+
5
+ ## 1.0.3
6
+
7
+ ### Patch Changes
8
+
9
+ - 6cd8ecb: Remove Zod 3.x dependency constraint to allow Zod 4.x and avoid installing duplicate Zod packages
10
+
3
11
  ## 1.0.2
4
12
 
5
13
  ## 1.0.1
package/dist/api.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { z } from "zod";
1
+ import { z } from "zod/v3";
2
2
  declare const ConfigSchema: z.ZodObject<{
3
3
  shared: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4
4
  }, "strip", z.ZodTypeAny, {
package/dist/api.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { z } from "zod";
1
+ import { z } from "zod/v3";
2
2
  import * as fs from "node:fs/promises";
3
3
  import * as path from "node:path";
4
4
  import * as bundler from "./bundler.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-ui",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "^18.19.0 || >=20.16.0"
@@ -31,7 +31,7 @@
31
31
  "commander": "^13.0.0",
32
32
  "esbuild": "^0.25.0",
33
33
  "esbuild-plugin-tailwindcss": "^2.0.1",
34
- "zod": "^3.23.8"
34
+ "zod": "^3.25.76 || ^4"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "^18.15.11",
@@ -39,6 +39,6 @@
39
39
  "@types/react-dom": "^19.0.3",
40
40
  "prettier": "^2.8.3",
41
41
  "typescript": "^4.9.5 || ^5.4.5",
42
- "vitest": "^3.1.2"
42
+ "vitest": "^3.2.4"
43
43
  }
44
44
  }