@assistant-ui/react-langgraph 0.6.10 → 0.6.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@assistant-ui/react-langgraph",
3
- "version": "0.6.10",
3
+ "version": "0.6.11",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {
@@ -18,9 +18,9 @@
18
18
  ],
19
19
  "sideEffects": false,
20
20
  "dependencies": {
21
- "assistant-stream": "^0.2.29",
22
- "uuid": "^11.1.0",
23
- "zod": "^4.0.17"
21
+ "assistant-stream": "^0.2.30",
22
+ "uuid": "^13.0.0",
23
+ "zod": "^4.1.11"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "@assistant-ui/react": "^0.11.20",
@@ -35,14 +35,14 @@
35
35
  "devDependencies": {
36
36
  "@testing-library/dom": "^10.4.1",
37
37
  "@testing-library/react": "^16.3.0",
38
- "@types/node": "^24.3.0",
39
- "@types/react": "^19.1.10",
40
- "@types/uuid": "^10.0.0",
38
+ "@types/node": "^24.5.2",
39
+ "@types/react": "^19.1.15",
40
+ "@types/uuid": "^11.0.0",
41
41
  "eslint": "^9",
42
- "eslint-config-next": "15.4.6",
43
- "jsdom": "^26.1.0",
42
+ "eslint-config-next": "15.5.4",
43
+ "jsdom": "^27.0.0",
44
44
  "react": "19.1.1",
45
- "tsx": "^4.20.4",
45
+ "tsx": "^4.20.6",
46
46
  "vitest": "^3.2.4",
47
47
  "@assistant-ui/react": "0.11.20",
48
48
  "@assistant-ui/x-buildutils": "0.0.1"
@@ -39,14 +39,15 @@ const customEvent = {
39
39
  };
40
40
 
41
41
  describe("useLangGraphRuntime", () => {
42
- const wrapperFactory =
43
- (runtime: AssistantRuntime) =>
44
- // eslint-disable-next-line react/display-name
45
- ({ children }: { children: ReactNode }) => (
42
+ const wrapperFactory = (runtime: AssistantRuntime) => {
43
+ const Wrapper = ({ children }: { children: ReactNode }) => (
46
44
  <AssistantRuntimeProvider runtime={runtime}>
47
45
  {children}
48
46
  </AssistantRuntimeProvider>
49
47
  );
48
+ Wrapper.displayName = "TestWrapper";
49
+ return Wrapper;
50
+ };
50
51
 
51
52
  it("should handle metadata events", async () => {
52
53
  const onMetadata = vi.fn();