@copilotkit/react-core 0.0.0-main-20260220223427 → 0.0.0-main-20260403195251

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.
Files changed (186) hide show
  1. package/CHANGELOG.md +540 -71
  2. package/dist/copilotkit-BK_zLoVm.mjs +7661 -0
  3. package/dist/copilotkit-BK_zLoVm.mjs.map +1 -0
  4. package/dist/copilotkit-BYNyIuE7.d.cts +2208 -0
  5. package/dist/copilotkit-BYNyIuE7.d.cts.map +1 -0
  6. package/dist/copilotkit-BYNyIuE7.d.ts +2208 -0
  7. package/dist/copilotkit-BYNyIuE7.d.ts.map +1 -0
  8. package/dist/copilotkit-CDZGGOIB.cjs +8074 -0
  9. package/dist/copilotkit-CDZGGOIB.cjs.map +1 -0
  10. package/dist/copilotkit-rBCfdqIo.d.mts +2208 -0
  11. package/dist/copilotkit-rBCfdqIo.d.mts.map +1 -0
  12. package/dist/index.cjs +166 -2200
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.d.cts +14 -674
  15. package/dist/index.d.cts.map +1 -1
  16. package/dist/index.d.mts +14 -674
  17. package/dist/index.d.mts.map +1 -1
  18. package/dist/index.d.ts +667 -0
  19. package/dist/index.d.ts.map +1 -0
  20. package/dist/index.mjs +119 -2124
  21. package/dist/index.mjs.map +1 -1
  22. package/dist/index.umd.js +2252 -230
  23. package/dist/index.umd.js.map +1 -1
  24. package/dist/v2/index.cjs +78 -6
  25. package/dist/v2/index.css +1 -2
  26. package/dist/v2/index.d.cts +6 -2
  27. package/dist/v2/index.d.mts +6 -2
  28. package/dist/v2/index.d.ts +6 -0
  29. package/dist/v2/index.mjs +8 -3
  30. package/dist/v2/index.umd.js +7786 -12
  31. package/dist/v2/index.umd.js.map +1 -0
  32. package/package.json +66 -39
  33. package/scripts/scope-preflight.mjs +100 -0
  34. package/src/components/CopilotListeners.tsx +2 -6
  35. package/src/components/copilot-provider/__tests__/copilot-messages-key.test.tsx +92 -0
  36. package/src/components/copilot-provider/copilot-messages.tsx +1 -1
  37. package/src/components/copilot-provider/copilotkit-props.tsx +1 -1
  38. package/src/components/copilot-provider/copilotkit.tsx +120 -68
  39. package/src/context/copilot-messages-context.tsx +1 -1
  40. package/src/hooks/__tests__/use-coagent-config.test.ts +2 -2
  41. package/src/hooks/__tests__/use-coagent-state-render.e2e.test.tsx +5 -6
  42. package/src/hooks/__tests__/use-copilot-chat-internal-connect.test.tsx +242 -0
  43. package/src/hooks/__tests__/use-frontend-tool-available.test.tsx +1 -1
  44. package/src/hooks/__tests__/use-frontend-tool-remount.e2e.test.tsx +4 -4
  45. package/src/hooks/index.ts +0 -1
  46. package/src/hooks/use-agent-nodename.ts +1 -1
  47. package/src/hooks/use-coagent-state-render-bridge.tsx +1 -4
  48. package/src/hooks/use-coagent.ts +1 -1
  49. package/src/hooks/use-configure-chat-suggestions.tsx +2 -2
  50. package/src/hooks/use-copilot-chat-suggestions.tsx +2 -2
  51. package/src/hooks/use-copilot-chat_internal.ts +73 -13
  52. package/src/hooks/use-copilot-readable.ts +1 -1
  53. package/src/hooks/use-frontend-tool.ts +2 -2
  54. package/src/hooks/use-human-in-the-loop.ts +2 -2
  55. package/src/hooks/use-langgraph-interrupt.ts +95 -38
  56. package/src/hooks/use-lazy-tool-renderer.tsx +1 -1
  57. package/src/hooks/use-render-tool-call.ts +1 -1
  58. package/src/lib/copilot-task.ts +1 -1
  59. package/src/setupTests.ts +18 -14
  60. package/src/types/interrupt-action.ts +5 -0
  61. package/src/v2/__tests__/A2UIMessageRenderer.test.tsx +176 -0
  62. package/src/v2/__tests__/globalSetup.ts +14 -0
  63. package/src/v2/__tests__/setup.ts +93 -0
  64. package/src/v2/__tests__/utils/test-helpers.tsx +503 -0
  65. package/src/v2/a2ui/A2UIMessageRenderer.tsx +206 -0
  66. package/src/v2/components/CopilotKitInspector.tsx +50 -0
  67. package/src/v2/components/MCPAppsActivityRenderer.tsx +785 -0
  68. package/src/v2/components/WildcardToolCallRender.tsx +86 -0
  69. package/src/v2/components/__tests__/license-warning-banner.test.tsx +46 -0
  70. package/src/v2/components/chat/CopilotChat.tsx +433 -0
  71. package/src/v2/components/chat/CopilotChatAssistantMessage.tsx +375 -0
  72. package/src/v2/components/chat/CopilotChatAudioRecorder.tsx +350 -0
  73. package/src/v2/components/chat/CopilotChatInput.tsx +1302 -0
  74. package/src/v2/components/chat/CopilotChatMessageView.tsx +561 -0
  75. package/src/v2/components/chat/CopilotChatReasoningMessage.tsx +252 -0
  76. package/src/v2/components/chat/CopilotChatSuggestionPill.tsx +59 -0
  77. package/src/v2/components/chat/CopilotChatSuggestionView.tsx +133 -0
  78. package/src/v2/components/chat/CopilotChatToggleButton.tsx +171 -0
  79. package/src/v2/components/chat/CopilotChatToolCallsView.tsx +40 -0
  80. package/src/v2/components/chat/CopilotChatUserMessage.tsx +388 -0
  81. package/src/v2/components/chat/CopilotChatView.tsx +598 -0
  82. package/src/v2/components/chat/CopilotModalHeader.tsx +129 -0
  83. package/src/v2/components/chat/CopilotPopup.tsx +81 -0
  84. package/src/v2/components/chat/CopilotPopupView.tsx +317 -0
  85. package/src/v2/components/chat/CopilotSidebar.tsx +76 -0
  86. package/src/v2/components/chat/CopilotSidebarView.tsx +255 -0
  87. package/src/v2/components/chat/__tests__/CopilotChat.e2e.test.tsx +1113 -0
  88. package/src/v2/components/chat/__tests__/CopilotChat.onError.test.tsx +73 -0
  89. package/src/v2/components/chat/__tests__/CopilotChat.slots.e2e.test.tsx +432 -0
  90. package/src/v2/components/chat/__tests__/CopilotChatActivityRendering.e2e.test.tsx +150 -0
  91. package/src/v2/components/chat/__tests__/CopilotChatAssistantMessage.slots.e2e.test.tsx +624 -0
  92. package/src/v2/components/chat/__tests__/CopilotChatAssistantMessage.test.tsx +702 -0
  93. package/src/v2/components/chat/__tests__/CopilotChatCssClasses.test.tsx +107 -0
  94. package/src/v2/components/chat/__tests__/CopilotChatInput.slots.e2e.test.tsx +929 -0
  95. package/src/v2/components/chat/__tests__/CopilotChatInput.test.tsx +986 -0
  96. package/src/v2/components/chat/__tests__/CopilotChatMessageView.slots.e2e.test.tsx +1004 -0
  97. package/src/v2/components/chat/__tests__/CopilotChatMessageView.test.tsx +169 -0
  98. package/src/v2/components/chat/__tests__/CopilotChatSuggestionView.slots.e2e.test.tsx +530 -0
  99. package/src/v2/components/chat/__tests__/CopilotChatToolRendering.e2e.test.tsx +785 -0
  100. package/src/v2/components/chat/__tests__/CopilotChatToolRerenders.e2e.test.tsx +2416 -0
  101. package/src/v2/components/chat/__tests__/CopilotChatUserMessage.slots.e2e.test.tsx +621 -0
  102. package/src/v2/components/chat/__tests__/CopilotChatView.onClick.e2e.test.tsx +853 -0
  103. package/src/v2/components/chat/__tests__/CopilotChatView.slots.e2e.test.tsx +1050 -0
  104. package/src/v2/components/chat/__tests__/CopilotModalHeader.slots.e2e.test.tsx +484 -0
  105. package/src/v2/components/chat/__tests__/CopilotPopupView.slots.e2e.test.tsx +612 -0
  106. package/src/v2/components/chat/__tests__/CopilotSidebarView.slots.e2e.test.tsx +502 -0
  107. package/src/v2/components/chat/__tests__/MCPAppsActivityRenderer.e2e.test.tsx +1027 -0
  108. package/src/v2/components/chat/__tests__/setup.ts +1 -0
  109. package/src/v2/components/chat/index.ts +79 -0
  110. package/src/v2/components/index.ts +7 -0
  111. package/src/v2/components/license-warning-banner.tsx +198 -0
  112. package/src/v2/components/ui/button.tsx +123 -0
  113. package/src/v2/components/ui/dropdown-menu.tsx +258 -0
  114. package/src/v2/components/ui/tooltip.tsx +60 -0
  115. package/src/v2/hooks/__tests__/standard-schema-types.test.tsx +152 -0
  116. package/src/v2/hooks/__tests__/standard-schema.test.tsx +282 -0
  117. package/src/v2/hooks/__tests__/use-agent-context-timing.e2e.test.tsx +140 -0
  118. package/src/v2/hooks/__tests__/use-agent-context.test.tsx +401 -0
  119. package/src/v2/hooks/__tests__/use-agent-error-state.test.tsx +44 -0
  120. package/src/v2/hooks/__tests__/use-agent-stability.test.tsx +205 -0
  121. package/src/v2/hooks/__tests__/use-agent-thread-isolation.test.tsx +327 -0
  122. package/src/v2/hooks/__tests__/use-agent-throttle.test.tsx +728 -0
  123. package/src/v2/hooks/__tests__/use-agent.e2e.test.tsx +159 -0
  124. package/src/v2/hooks/__tests__/use-component.test.tsx +123 -0
  125. package/src/v2/hooks/__tests__/use-configure-suggestions.e2e.test.tsx +696 -0
  126. package/src/v2/hooks/__tests__/use-default-render-tool.test.tsx +153 -0
  127. package/src/v2/hooks/__tests__/use-frontend-tool-available.test.tsx +167 -0
  128. package/src/v2/hooks/__tests__/use-frontend-tool.e2e.test.tsx +2148 -0
  129. package/src/v2/hooks/__tests__/use-human-in-the-loop.e2e.test.tsx +1261 -0
  130. package/src/v2/hooks/__tests__/use-interrupt.test.tsx +397 -0
  131. package/src/v2/hooks/__tests__/use-katex-styles.test.tsx +56 -0
  132. package/src/v2/hooks/__tests__/use-keyboard-height.test.tsx +192 -0
  133. package/src/v2/hooks/__tests__/use-render-tool.test.tsx +259 -0
  134. package/src/v2/hooks/__tests__/use-suggestions.e2e.test.tsx +524 -0
  135. package/src/v2/hooks/__tests__/use-threads.test.tsx +433 -0
  136. package/src/v2/hooks/__tests__/zod-regression.test.tsx +311 -0
  137. package/src/v2/hooks/index.ts +18 -0
  138. package/src/v2/hooks/use-agent-context.tsx +45 -0
  139. package/src/v2/hooks/use-agent.tsx +358 -0
  140. package/src/v2/hooks/use-component.tsx +89 -0
  141. package/src/v2/hooks/use-configure-suggestions.tsx +187 -0
  142. package/src/v2/hooks/use-default-render-tool.tsx +254 -0
  143. package/src/v2/hooks/use-frontend-tool.tsx +43 -0
  144. package/src/v2/hooks/use-human-in-the-loop.tsx +81 -0
  145. package/src/v2/hooks/use-interrupt.tsx +305 -0
  146. package/src/v2/hooks/use-keyboard-height.tsx +67 -0
  147. package/src/v2/hooks/use-render-activity-message.tsx +73 -0
  148. package/src/v2/hooks/use-render-custom-messages.tsx +98 -0
  149. package/src/v2/hooks/use-render-tool-call.tsx +175 -0
  150. package/src/v2/hooks/use-render-tool.tsx +181 -0
  151. package/src/v2/hooks/use-suggestions.tsx +91 -0
  152. package/src/v2/hooks/use-threads.tsx +256 -0
  153. package/src/v2/hooks/useKatexStyles.ts +27 -0
  154. package/src/v2/index.css +1 -1
  155. package/src/v2/index.ts +21 -2
  156. package/src/v2/lib/__tests__/completePartialMarkdown.test.ts +495 -0
  157. package/src/v2/lib/__tests__/renderSlot.test.tsx +588 -0
  158. package/src/v2/lib/react-core.ts +156 -0
  159. package/src/v2/lib/slots.tsx +143 -0
  160. package/src/v2/lib/transcription-client.ts +184 -0
  161. package/src/v2/lib/utils.ts +8 -0
  162. package/src/v2/providers/CopilotChatConfigurationProvider.tsx +162 -0
  163. package/src/v2/providers/CopilotKitProvider.tsx +600 -0
  164. package/src/v2/providers/__tests__/CopilotChatConfigurationProvider.test.tsx +546 -0
  165. package/src/v2/providers/__tests__/CopilotKitProvider.license.test.tsx +101 -0
  166. package/src/v2/providers/__tests__/CopilotKitProvider.onError.test.tsx +69 -0
  167. package/src/v2/providers/__tests__/CopilotKitProvider.renderCustomMessages.e2e.test.tsx +881 -0
  168. package/src/v2/providers/__tests__/CopilotKitProvider.stability.test.tsx +740 -0
  169. package/src/v2/providers/__tests__/CopilotKitProvider.test.tsx +642 -0
  170. package/src/v2/providers/__tests__/CopilotKitProvider.wildcard.test.tsx +294 -0
  171. package/src/v2/providers/index.ts +14 -0
  172. package/src/v2/styles/globals.css +231 -0
  173. package/src/v2/types/__tests__/defineToolCallRenderer.test.tsx +525 -0
  174. package/src/v2/types/defineToolCallRenderer.ts +65 -0
  175. package/src/v2/types/frontend-tool.ts +8 -0
  176. package/src/v2/types/human-in-the-loop.ts +33 -0
  177. package/src/v2/types/index.ts +7 -0
  178. package/src/v2/types/interrupt.ts +15 -0
  179. package/src/v2/types/react-activity-message-renderer.ts +27 -0
  180. package/src/v2/types/react-custom-message-renderer.ts +17 -0
  181. package/src/v2/types/react-tool-call-renderer.ts +32 -0
  182. package/tsdown.config.ts +34 -10
  183. package/vitest.config.mjs +4 -3
  184. package/LICENSE +0 -21
  185. package/dist/v2/index.css.map +0 -1
  186. package/src/hooks/use-langgraph-interrupt-render.ts +0 -147
package/CHANGELOG.md CHANGED
@@ -1,27 +1,472 @@
1
1
  # ui
2
2
 
3
- ## 0.0.0-main-20260220223427
3
+ ## 0.0.0-main-20260403195251
4
+
5
+ ### Minor Changes
6
+
7
+ - 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
8
+
9
+ ### Patch Changes
10
+
11
+ - 0f6a61c: fix: add React keys to CopilotMessages children to suppress "unique key prop" warning
12
+ - 1ceb963: fix: respect defaultOpen={false} in CopilotSidebar and CopilotPopup
13
+ - 1ceb963: fix: race condition in RunHandler.runAgent() causes dropped runs
14
+ - 1ceb963: fix: address scroll bar styling when using mouse-wheel
15
+ - 53e5669: Fix multiple CopilotChat components with different threadIds sharing message state. The useAgent hook now creates per-thread agent clones when threadId is provided, ensuring each chat instance maintains isolated messages and state.
16
+ - 52a9322: Fixing license warnings, barrel export and typing
17
+ - c341ed2: chore: kick CI to verify publish pipeline
18
+ - Updated dependencies [1ceb963]
19
+ - Updated dependencies [1ceb963]
20
+ - Updated dependencies [52a9322]
21
+ - Updated dependencies [1ceb963]
22
+ - @copilotkit/a2ui-renderer@0.0.0-main-20260403195251
23
+ - @copilotkit/core@0.0.0-main-20260403195251
24
+ - @copilotkit/runtime-client-gql@0.0.0-main-20260403195251
25
+ - @copilotkit/shared@0.0.0-main-20260403195251
26
+ - @copilotkit/web-inspector@0.0.0-main-20260403195251
27
+
28
+ ## 1.55.0-next.8
29
+
30
+ ### Patch Changes
31
+
32
+ - 0f6a61c: fix: add React keys to CopilotMessages children to suppress "unique key prop" warning
33
+ - 53e5669: Fix multiple CopilotChat components with different threadIds sharing message state. The useAgent hook now creates per-thread agent clones when threadId is provided, ensuring each chat instance maintains isolated messages and state.
34
+ - @copilotkit/a2ui-renderer@1.55.0-next.8
35
+ - @copilotkit/core@1.55.0-next.8
36
+ - @copilotkit/runtime-client-gql@1.55.0-next.8
37
+ - @copilotkit/shared@1.55.0-next.8
38
+ - @copilotkit/web-inspector@1.55.0-next.8
39
+
40
+ ## 1.55.0-next.7
41
+
42
+ ### Minor Changes
43
+
44
+ - 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
45
+
46
+ ### Patch Changes
47
+
48
+ - Updated dependencies [1ceb963]
49
+ - @copilotkit/a2ui-renderer@1.55.0-next.7
50
+ - @copilotkit/core@1.55.0-next.7
51
+ - @copilotkit/runtime-client-gql@1.55.0-next.7
52
+ - @copilotkit/shared@1.55.0-next.7
53
+ - @copilotkit/web-inspector@1.55.0-next.7
54
+
55
+ ## 1.54.1-next.6
56
+
57
+ ### Patch Changes
58
+
59
+ - Updated dependencies [13584d0]
60
+ - @copilotkitnext/react@1.54.1-next.6
61
+ - @copilotkit/runtime-client-gql@1.54.1-next.6
62
+ - @copilotkit/shared@1.54.1-next.6
63
+ - @copilotkitnext/core@1.54.1-next.6
64
+
65
+ ## 1.54.1-next.5
66
+
67
+ ### Patch Changes
68
+
69
+ - @copilotkit/runtime-client-gql@1.54.1-next.5
70
+ - @copilotkit/shared@1.54.1-next.5
71
+ - @copilotkitnext/core@1.54.1-next.5
72
+ - @copilotkitnext/react@1.54.1-next.5
73
+
74
+ ## 1.54.1-next.4
75
+
76
+ ### Patch Changes
77
+
78
+ - 8113dba: fix: race condition in RunHandler.runAgent() causes dropped runs
79
+ - Updated dependencies [8113dba]
80
+ - @copilotkitnext/core@1.54.1-next.4
81
+ - @copilotkitnext/react@1.54.1-next.4
82
+ - @copilotkit/runtime-client-gql@1.54.1-next.4
83
+ - @copilotkit/shared@1.54.1-next.4
84
+
85
+ ## 1.54.1-next.3
86
+
87
+ ### Patch Changes
88
+
89
+ - Updated dependencies [9e6a09f]
90
+ - @copilotkitnext/react@1.54.1-next.3
91
+ - @copilotkit/runtime-client-gql@1.54.1-next.3
92
+ - @copilotkit/shared@1.54.1-next.3
93
+ - @copilotkitnext/core@1.54.1-next.3
94
+
95
+ ## 1.54.1-next.2
96
+
97
+ ### Patch Changes
98
+
99
+ - @copilotkit/runtime-client-gql@1.54.1-next.2
100
+ - @copilotkit/shared@1.54.1-next.2
101
+ - @copilotkitnext/core@1.54.1-next.2
102
+ - @copilotkitnext/react@1.54.1-next.2
103
+
104
+ ## 1.54.1-next.1
105
+
106
+ ### Patch Changes
107
+
108
+ - Updated dependencies [d423001]
109
+ - @copilotkitnext/core@1.54.1-next.1
110
+ - @copilotkitnext/react@1.54.1-next.1
111
+ - @copilotkit/runtime-client-gql@1.54.1-next.1
112
+ - @copilotkit/shared@1.54.1-next.1
113
+
114
+ ## 1.54.1-next.0
115
+
116
+ ### Patch Changes
117
+
118
+ - @copilotkit/runtime-client-gql@1.54.1-next.0
119
+ - @copilotkit/shared@1.54.1-next.0
120
+ - @copilotkitnext/core@1.54.1-next.0
121
+ - @copilotkitnext/react@1.54.1-next.0
122
+
123
+ ## 1.54.0
124
+
125
+ ### Minor Changes
126
+
127
+ - fa0d1cd: Add support for Standard Schema (instead of just Zod)
128
+
129
+ ### Patch Changes
130
+
131
+ - c80498e: feat(core): add copilotkit.runTool() for programmatic tool execution
132
+ - af11b1e: Fixed hook render registrations lost under React Strict Mode.
133
+ - Updated dependencies [eb1e0bf]
134
+ - Updated dependencies [3780c6a]
135
+ - Updated dependencies [6e0cddf]
136
+ - Updated dependencies [fa0d1cd]
137
+ - Updated dependencies [c80498e]
138
+ - Updated dependencies [d746e4f]
139
+ - Updated dependencies [f1571ef]
140
+ - @copilotkitnext/core@1.54.0
141
+ - @copilotkitnext/react@1.54.0
142
+ - @copilotkit/runtime-client-gql@1.54.0
143
+ - @copilotkit/shared@1.54.0
144
+
145
+ ## 1.54.0-next.9
146
+
147
+ ### Patch Changes
148
+
149
+ - Updated dependencies [3780c6a]
150
+ - @copilotkitnext/core@1.54.0-next.9
151
+ - @copilotkitnext/react@1.54.0-next.9
152
+ - @copilotkit/runtime-client-gql@1.54.0-next.9
153
+ - @copilotkit/shared@1.54.0-next.9
154
+
155
+ ## 1.54.0-next.8
156
+
157
+ ### Patch Changes
158
+
159
+ - Updated dependencies [f1571ef]
160
+ - @copilotkitnext/core@1.54.0-next.8
161
+ - @copilotkitnext/react@1.54.0-next.8
162
+ - @copilotkit/runtime-client-gql@1.54.0-next.8
163
+ - @copilotkit/shared@1.54.0-next.8
164
+
165
+ ## 1.54.0-next.7
166
+
167
+ ### Patch Changes
168
+
169
+ - Updated dependencies [eb1e0bf]
170
+ - @copilotkitnext/core@1.54.0-next.7
171
+ - @copilotkitnext/react@1.54.0-next.7
172
+ - @copilotkit/runtime-client-gql@1.54.0-next.7
173
+ - @copilotkit/shared@1.54.0-next.7
174
+
175
+ ## 1.54.0-next.6
176
+
177
+ ### Patch Changes
178
+
179
+ - c80498e: feat(core): add copilotkit.runTool() for programmatic tool execution
180
+ - Updated dependencies [c80498e]
181
+ - @copilotkitnext/core@1.54.0-next.6
182
+ - @copilotkitnext/react@1.54.0-next.6
183
+ - @copilotkit/runtime-client-gql@1.54.0-next.6
184
+ - @copilotkit/shared@1.54.0-next.6
185
+
186
+ ## 1.54.0-next.5
187
+
188
+ ### Patch Changes
189
+
190
+ - @copilotkitnext/react@1.54.0-next.5
191
+ - @copilotkit/runtime-client-gql@1.54.0-next.5
192
+ - @copilotkit/shared@1.54.0-next.5
193
+ - @copilotkitnext/core@1.54.0-next.5
194
+
195
+ ## 1.54.0-next.4
196
+
197
+ ### Patch Changes
198
+
199
+ - af11b1e: Fixed hook render registrations lost under React Strict Mode.
200
+ - @copilotkit/runtime-client-gql@1.54.0-next.4
201
+ - @copilotkit/shared@1.54.0-next.4
202
+ - @copilotkitnext/core@1.54.0-next.4
203
+ - @copilotkitnext/react@1.54.0-next.4
204
+
205
+ ## 1.54.0-next.3
206
+
207
+ ### Minor Changes
208
+
209
+ - fa0d1cd: Add support for Standard Schema (instead of just Zod)
210
+
211
+ ### Patch Changes
212
+
213
+ - Updated dependencies [fa0d1cd]
214
+ - @copilotkitnext/react@1.54.0-next.3
215
+ - @copilotkit/runtime-client-gql@1.54.0-next.3
216
+ - @copilotkit/shared@1.54.0-next.3
217
+ - @copilotkitnext/core@1.54.0-next.3
218
+
219
+ ## 1.53.1-next.2
220
+
221
+ ### Patch Changes
222
+
223
+ - Updated dependencies [d746e4f]
224
+ - @copilotkit/react@1.53.1-next.2
225
+ - @copilotkit/runtime-client-gql@1.53.1-next.2
226
+ - @copilotkit/shared@1.53.1-next.2
227
+ - @copilotkit/core@1.53.1-next.2
228
+
229
+ ## 1.53.1-next.1
230
+
231
+ ### Patch Changes
232
+
233
+ - @copilotkit/runtime-client-gql@1.53.1-next.1
234
+ - @copilotkit/shared@1.53.1-next.1
235
+ - @copilotkit/core@1.53.1-next.1
236
+ - @copilotkit/react@1.53.1-next.1
237
+
238
+ ## 1.53.1-next.0
239
+
240
+ ### Patch Changes
241
+
242
+ - Updated dependencies [6e0cddf]
243
+ - @copilotkit/react@1.53.1-next.0
244
+ - @copilotkit/runtime-client-gql@1.53.1-next.0
245
+ - @copilotkit/shared@1.53.1-next.0
246
+ - @copilotkit/core@1.53.1-next.0
247
+
248
+ ## 1.53.0
249
+
250
+ ### Patch Changes
251
+
252
+ - 1510f64: feat: enable mcp and a2ui middleware directly from copilotkit runtime
253
+ - f1eaa4c: Fixing a regression with setModalOpen
254
+ - ac31331: - Prevents error propagating out of CPK when an agent runtime is defined but not reachable
255
+ - Adds an onError callback to CopilotChat and CopilotKitProvider
256
+ - Updated dependencies [1510f64]
257
+ - Updated dependencies [bf1fc6f]
258
+ - @copilotkit/shared@1.53.0
259
+ - @copilotkit/core@1.53.0
260
+ - @copilotkit/react@1.53.0
261
+ - @copilotkit/runtime-client-gql@1.53.0
262
+
263
+ ## 1.53.0-next.6
264
+
265
+ ### Patch Changes
266
+
267
+ - @copilotkit/runtime-client-gql@1.53.0-next.6
268
+ - @copilotkit/shared@1.53.0-next.6
269
+ - @copilotkit/core@1.53.0-next.6
270
+ - @copilotkit/react@1.53.0-next.6
271
+
272
+ ## 1.53.0-next.5
273
+
274
+ ### Patch Changes
275
+
276
+ - @copilotkit/runtime-client-gql@1.53.0-next.5
277
+ - @copilotkit/shared@1.53.0-next.5
278
+ - @copilotkit/core@1.53.0-next.5
279
+ - @copilotkit/react@1.53.0-next.5
280
+
281
+ ## 1.52.2-next.4
282
+
283
+ ### Patch Changes
284
+
285
+ - ac31331: - Prevents error propagating out of CPK when an agent runtime is defined but not reachable
286
+ - Adds an onError callback to CopilotChat and CopilotKitProvider
287
+ - @copilotkit/runtime-client-gql@1.52.2-next.4
288
+ - @copilotkit/shared@1.52.2-next.4
289
+ - @copilotkit/core@1.52.2-next.4
290
+ - @copilotkit/react@1.52.2-next.4
291
+
292
+ ## 1.52.2-next.3
293
+
294
+ ### Patch Changes
295
+
296
+ - 1510f64: feat: enable mcp and a2ui middleware directly from copilotkit runtime
297
+ - Updated dependencies [1510f64]
298
+ - @copilotkit/shared@1.52.2-next.3
299
+ - @copilotkit/core@1.52.2-next.3
300
+ - @copilotkit/react@1.52.2-next.3
301
+ - @copilotkit/runtime-client-gql@1.52.2-next.3
302
+
303
+ ## 1.52.2-next.2
304
+
305
+ ### Patch Changes
306
+
307
+ - @copilotkit/runtime-client-gql@1.52.2-next.2
308
+ - @copilotkit/shared@1.52.2-next.2
309
+ - @copilotkit/core@1.52.2-next.2
310
+ - @copilotkit/react@1.52.2-next.2
311
+
312
+ ## 1.52.2-next.1
313
+
314
+ ### Patch Changes
315
+
316
+ - Updated dependencies [bf1fc6f]
317
+ - @copilotkit/shared@1.52.2-next.1
318
+ - @copilotkit/runtime-client-gql@1.52.2-next.1
319
+ - @copilotkit/core@1.52.2-next.1
320
+ - @copilotkit/react@1.52.2-next.1
321
+
322
+ ## 1.52.2-next.0
323
+
324
+ ### Patch Changes
325
+
326
+ - f1eaa4c: Fixing a regression with setModalOpen
327
+ - @copilotkit/runtime-client-gql@1.52.2-next.0
328
+ - @copilotkit/shared@1.52.2-next.0
329
+ - @copilotkit/core@1.52.2-next.0
330
+ - @copilotkit/react@1.52.2-next.0
331
+
332
+ ## 1.52.1
333
+
334
+ ### Patch Changes
335
+
336
+ - b555ac4: fix(react-core): allow overriding useSingleEndpoint in CopilotKit provider
337
+
338
+ The V1 `<CopilotKit>` provider previously hardcoded `useSingleEndpoint={true}` when wrapping the V2 provider, preventing users from opting into REST transport mode. The prop is now passed through from user config, defaulting to `true` to preserve backward compatibility.
339
+
340
+ - Updated dependencies [bbdf67d]
341
+ - @copilotkit/react@1.52.1
342
+ - @copilotkit/runtime-client-gql@1.52.1
343
+ - @copilotkit/shared@1.52.1
344
+ - @copilotkit/core@1.52.1
345
+
346
+ ## 1.52.1-next.1
347
+
348
+ ### Patch Changes
349
+
350
+ - b555ac4: fix(react-core): allow overriding useSingleEndpoint in CopilotKit provider
351
+
352
+ The V1 `<CopilotKit>` provider previously hardcoded `useSingleEndpoint={true}` when wrapping the V2 provider, preventing users from opting into REST transport mode. The prop is now passed through from user config, defaulting to `true` to preserve backward compatibility.
353
+
354
+ - @copilotkit/runtime-client-gql@1.52.1-next.1
355
+ - @copilotkit/shared@1.52.1-next.1
356
+ - @copilotkit/core@1.52.1-next.1
357
+ - @copilotkit/react@1.52.1-next.1
358
+
359
+ ## 1.52.1-next.0
360
+
361
+ ### Patch Changes
362
+
363
+ - Updated dependencies [bbdf67d]
364
+ - @copilotkit/react@1.52.1-next.0
365
+ - @copilotkit/runtime-client-gql@1.52.1-next.0
366
+ - @copilotkit/shared@1.52.1-next.0
367
+ - @copilotkit/core@1.52.1-next.0
368
+
369
+ ## 1.52.0
370
+
371
+ ### Minor Changes
372
+
373
+ - 6dd6c84: Adding new v2 features:
374
+
375
+ - useComponent
376
+ - useRenderTool
377
+ - useDefaultRenderTool
378
+
379
+ Also, fixing issues with styles not being
380
+ properly scoped for tailwind.
4
381
 
5
382
  ### Patch Changes
6
383
 
384
+ - d77f347: Added in the useInterrupt hook
385
+ - 2007f8b: feat: useComponent improvements
7
386
  - ef0f539: Add reasoning support and default components for reasoning messages
8
387
  - 412965a: Introducing available prop to useFrontendTool()
388
+ - 5f941db: Prevent CPK styles from polluting user app
9
389
  - Updated dependencies [593859f]
390
+ - Updated dependencies [d77f347]
391
+ - Updated dependencies [2007f8b]
10
392
  - Updated dependencies [ef0f539]
11
- - @copilotkitnext/react@0.0.0-main-20260220223427
12
- - @copilotkit/shared@0.0.0-main-20260220223427
13
- - @copilotkitnext/core@0.0.0-main-20260220223427
14
- - @copilotkit/runtime-client-gql@0.0.0-main-20260220223427
393
+ - Updated dependencies [942d397]
394
+ - @copilotkit/react@1.52.0
395
+ - @copilotkit/core@1.52.0
396
+ - @copilotkit/shared@1.52.0
397
+ - @copilotkit/runtime-client-gql@1.52.0
398
+
399
+ ## 1.52.0-next.8
400
+
401
+ ### Patch Changes
402
+
403
+ - Updated dependencies [942d397]
404
+ - @copilotkit/react@1.52.0-next.8
405
+ - @copilotkit/runtime-client-gql@1.52.0-next.8
406
+ - @copilotkit/shared@1.52.0-next.8
407
+ - @copilotkit/core@1.52.0-next.8
408
+
409
+ ## 1.52.0-next.7
410
+
411
+ ### Patch Changes
412
+
413
+ - d77f347: Added in the useInterrupt hook
414
+ - Updated dependencies [d77f347]
415
+ - @copilotkit/react@1.52.0-next.7
416
+ - @copilotkit/core@1.52.0-next.7
417
+ - @copilotkit/runtime-client-gql@1.52.0-next.7
418
+ - @copilotkit/shared@1.52.0-next.7
419
+
420
+ ## 1.52.0-next.6
421
+
422
+ ### Patch Changes
423
+
424
+ - 2007f8b: feat: useComponent improvements
425
+ - 5f941db: Prevent CPK styles from polluting user app
426
+ - Updated dependencies [2007f8b]
427
+ - @copilotkit/react@1.52.0-next.6
428
+ - @copilotkit/runtime-client-gql@1.52.0-next.6
429
+ - @copilotkit/shared@1.52.0-next.6
430
+ - @copilotkit/core@1.52.0-next.6
431
+
432
+ ## 1.52.0-next.5
433
+
434
+ ### Minor Changes
435
+
436
+ - 6dd6c84: Adding new v2 features:
437
+
438
+ - useComponent
439
+ - useRenderTool
440
+ - useDefaultRenderTool
441
+
442
+ Also, fixing issues with styles not being
443
+ properly scoped for tailwind.
444
+
445
+ ### Patch Changes
446
+
447
+ - @copilotkit/runtime-client-gql@1.52.0-next.5
448
+ - @copilotkit/shared@1.52.0-next.5
449
+ - @copilotkit/core@1.52.0-next.5
450
+ - @copilotkit/react@1.52.0-next.5
451
+
452
+ ## 1.51.5-next.4
453
+
454
+ ### Patch Changes
455
+
456
+ - @copilotkit/runtime-client-gql@1.51.5-next.4
457
+ - @copilotkit/shared@1.51.5-next.4
458
+ - @copilotkit/core@1.51.5-next.4
459
+ - @copilotkit/react@1.51.5-next.4
15
460
 
16
461
  ## 1.51.5-next.3
17
462
 
18
463
  ### Patch Changes
19
464
 
20
465
  - Updated dependencies [593859f]
21
- - @copilotkitnext/react@1.51.5-next.3
466
+ - @copilotkit/react@1.51.5-next.3
22
467
  - @copilotkit/runtime-client-gql@1.51.5-next.3
23
468
  - @copilotkit/shared@1.51.5-next.3
24
- - @copilotkitnext/core@1.51.5-next.3
469
+ - @copilotkit/core@1.51.5-next.3
25
470
 
26
471
  ## 1.51.5-next.2
27
472
 
@@ -29,8 +474,8 @@
29
474
 
30
475
  - @copilotkit/runtime-client-gql@1.51.5-next.2
31
476
  - @copilotkit/shared@1.51.5-next.2
32
- - @copilotkitnext/core@1.51.5-next.2
33
- - @copilotkitnext/react@1.51.5-next.2
477
+ - @copilotkit/core@1.51.5-next.2
478
+ - @copilotkit/react@1.51.5-next.2
34
479
 
35
480
  ## 1.51.5-next.1
36
481
 
@@ -39,8 +484,8 @@
39
484
  - 412965a: Introducing available prop to useFrontendTool()
40
485
  - @copilotkit/runtime-client-gql@1.51.5-next.1
41
486
  - @copilotkit/shared@1.51.5-next.1
42
- - @copilotkitnext/core@1.51.5-next.1
43
- - @copilotkitnext/react@1.51.5-next.1
487
+ - @copilotkit/core@1.51.5-next.1
488
+ - @copilotkit/react@1.51.5-next.1
44
489
 
45
490
  ## 1.51.5-next.0
46
491
 
@@ -49,8 +494,8 @@
49
494
  - ef0f539: Add reasoning support and default components for reasoning messages
50
495
  - Updated dependencies [ef0f539]
51
496
  - @copilotkit/shared@1.51.5-next.0
52
- - @copilotkitnext/react@1.51.5-next.0
53
- - @copilotkitnext/core@1.51.5-next.0
497
+ - @copilotkit/react@1.51.5-next.0
498
+ - @copilotkit/core@1.51.5-next.0
54
499
  - @copilotkit/runtime-client-gql@1.51.5-next.0
55
500
 
56
501
  ## 1.51.4
@@ -64,8 +509,8 @@
64
509
  - 6b7d8ef: feat(react): apply resource CSP domains to MCP Apps sandbox iframe
65
510
  - Updated dependencies [c998f30]
66
511
  - Updated dependencies [a3090d5]
67
- - @copilotkitnext/core@1.51.4
68
- - @copilotkitnext/react@1.51.4
512
+ - @copilotkit/core@1.51.4
513
+ - @copilotkit/react@1.51.4
69
514
  - @copilotkit/runtime-client-gql@1.51.4
70
515
  - @copilotkit/shared@1.51.4
71
516
 
@@ -76,8 +521,8 @@
76
521
  - 9bc868d: Frontend tools integration with core in Angular package
77
522
  - @copilotkit/runtime-client-gql@1.51.4-next.8
78
523
  - @copilotkit/shared@1.51.4-next.8
79
- - @copilotkitnext/core@1.51.4-next.8
80
- - @copilotkitnext/react@1.51.4-next.8
524
+ - @copilotkit/core@1.51.4-next.8
525
+ - @copilotkit/react@1.51.4-next.8
81
526
 
82
527
  ## 1.51.4-next.7
83
528
 
@@ -86,8 +531,8 @@
86
531
  - 6b7d8ef: feat(react): apply resource CSP domains to MCP Apps sandbox iframe
87
532
  - @copilotkit/runtime-client-gql@1.51.4-next.7
88
533
  - @copilotkit/shared@1.51.4-next.7
89
- - @copilotkitnext/core@1.51.4-next.7
90
- - @copilotkitnext/react@1.51.4-next.7
534
+ - @copilotkit/core@1.51.4-next.7
535
+ - @copilotkit/react@1.51.4-next.7
91
536
 
92
537
  ## 1.51.4-next.6
93
538
 
@@ -95,8 +540,8 @@
95
540
 
96
541
  - @copilotkit/runtime-client-gql@1.51.4-next.6
97
542
  - @copilotkit/shared@1.51.4-next.6
98
- - @copilotkitnext/core@1.51.4-next.6
99
- - @copilotkitnext/react@1.51.4-next.6
543
+ - @copilotkit/core@1.51.4-next.6
544
+ - @copilotkit/react@1.51.4-next.6
100
545
 
101
546
  ## 1.51.4-next.5
102
547
 
@@ -104,8 +549,8 @@
104
549
 
105
550
  - @copilotkit/runtime-client-gql@1.51.4-next.5
106
551
  - @copilotkit/shared@1.51.4-next.5
107
- - @copilotkitnext/core@1.51.4-next.5
108
- - @copilotkitnext/react@1.51.4-next.5
552
+ - @copilotkit/core@1.51.4-next.5
553
+ - @copilotkit/react@1.51.4-next.5
109
554
 
110
555
  ## 1.51.4-next.4
111
556
 
@@ -113,8 +558,8 @@
113
558
 
114
559
  - c998f30: fix(core): prevent tool call results from leaking into wrong thread on thread switch
115
560
  - Updated dependencies [c998f30]
116
- - @copilotkitnext/core@1.51.4-next.4
117
- - @copilotkitnext/react@1.51.4-next.4
561
+ - @copilotkit/core@1.51.4-next.4
562
+ - @copilotkit/react@1.51.4-next.4
118
563
  - @copilotkit/runtime-client-gql@1.51.4-next.4
119
564
  - @copilotkit/shared@1.51.4-next.4
120
565
 
@@ -124,10 +569,10 @@
124
569
 
125
570
  - 6b9c60e: fix: add dependencies to fix stale state of regenerate method
126
571
  - Updated dependencies [a3090d5]
127
- - @copilotkitnext/react@1.51.4-next.3
572
+ - @copilotkit/react@1.51.4-next.3
128
573
  - @copilotkit/runtime-client-gql@1.51.4-next.3
129
574
  - @copilotkit/shared@1.51.4-next.3
130
- - @copilotkitnext/core@1.51.4-next.3
575
+ - @copilotkit/core@1.51.4-next.3
131
576
 
132
577
  ## 1.51.4-next.2
133
578
 
@@ -135,8 +580,8 @@
135
580
 
136
581
  - @copilotkit/runtime-client-gql@1.51.4-next.2
137
582
  - @copilotkit/shared@1.51.4-next.2
138
- - @copilotkitnext/core@1.51.4-next.2
139
- - @copilotkitnext/react@1.51.4-next.2
583
+ - @copilotkit/core@1.51.4-next.2
584
+ - @copilotkit/react@1.51.4-next.2
140
585
 
141
586
  ## 1.51.4-next.1
142
587
 
@@ -145,8 +590,8 @@
145
590
  - 12ee574: v2 UI improvements
146
591
  - @copilotkit/runtime-client-gql@1.51.4-next.1
147
592
  - @copilotkit/shared@1.51.4-next.1
148
- - @copilotkitnext/core@1.51.4-next.1
149
- - @copilotkitnext/react@1.51.4-next.1
593
+ - @copilotkit/core@1.51.4-next.1
594
+ - @copilotkit/react@1.51.4-next.1
150
595
 
151
596
  ## 1.51.4-next.0
152
597
 
@@ -154,8 +599,8 @@
154
599
 
155
600
  - @copilotkit/runtime-client-gql@1.51.4-next.0
156
601
  - @copilotkit/shared@1.51.4-next.0
157
- - @copilotkitnext/core@1.51.4-next.0
158
- - @copilotkitnext/react@1.51.4-next.0
602
+ - @copilotkit/core@1.51.4-next.0
603
+ - @copilotkit/react@1.51.4-next.0
159
604
 
160
605
  ## 1.51.3
161
606
 
@@ -169,8 +614,8 @@
169
614
  - Updated dependencies [d36fc1e]
170
615
  - @copilotkit/shared@1.51.3
171
616
  - @copilotkit/runtime-client-gql@1.51.3
172
- - @copilotkitnext/react@1.51.3
173
- - @copilotkitnext/core@1.51.3
617
+ - @copilotkit/react@1.51.3
618
+ - @copilotkit/core@1.51.3
174
619
 
175
620
  ## 1.51.3-next.8
176
621
 
@@ -180,8 +625,8 @@
180
625
  - Updated dependencies [d36fc1e]
181
626
  - @copilotkit/runtime-client-gql@1.51.3-next.8
182
627
  - @copilotkit/shared@1.51.3-next.8
183
- - @copilotkitnext/react@1.51.3-next.8
184
- - @copilotkitnext/core@1.51.3-next.8
628
+ - @copilotkit/react@1.51.3-next.8
629
+ - @copilotkit/core@1.51.3-next.8
185
630
 
186
631
  ## 1.51.3-next.7
187
632
 
@@ -190,8 +635,8 @@
190
635
  - 3f00a01: Fix issue causing onSubmitMessage to fire after agent response
191
636
  - @copilotkit/runtime-client-gql@1.51.3-next.7
192
637
  - @copilotkit/shared@1.51.3-next.7
193
- - @copilotkitnext/core@1.51.3-next.7
194
- - @copilotkitnext/react@1.51.3-next.7
638
+ - @copilotkit/core@1.51.3-next.7
639
+ - @copilotkit/react@1.51.3-next.7
195
640
 
196
641
  ## 1.51.3-next.6
197
642
 
@@ -199,8 +644,8 @@
199
644
 
200
645
  - @copilotkit/runtime-client-gql@1.51.3-next.6
201
646
  - @copilotkit/shared@1.51.3-next.6
202
- - @copilotkitnext/core@1.51.3-next.6
203
- - @copilotkitnext/react@1.51.3-next.6
647
+ - @copilotkit/core@1.51.3-next.6
648
+ - @copilotkit/react@1.51.3-next.6
204
649
 
205
650
  ## 1.51.3-next.5
206
651
 
@@ -209,8 +654,8 @@
209
654
  - e89fe98: fix(v1.x): address issue causing onSubmitMessage to fire after agent response
210
655
  - @copilotkit/runtime-client-gql@1.51.3-next.5
211
656
  - @copilotkit/shared@1.51.3-next.5
212
- - @copilotkitnext/core@1.51.3-next.5
213
- - @copilotkitnext/react@1.51.3-next.5
657
+ - @copilotkit/core@1.51.3-next.5
658
+ - @copilotkit/react@1.51.3-next.5
214
659
 
215
660
  ## 1.51.3-next.4
216
661
 
@@ -218,8 +663,8 @@
218
663
 
219
664
  - @copilotkit/runtime-client-gql@1.51.3-next.4
220
665
  - @copilotkit/shared@1.51.3-next.4
221
- - @copilotkitnext/core@1.51.3-next.4
222
- - @copilotkitnext/react@1.51.3-next.4
666
+ - @copilotkit/core@1.51.3-next.4
667
+ - @copilotkit/react@1.51.3-next.4
223
668
 
224
669
  ## 1.51.3-next.3
225
670
 
@@ -229,8 +674,8 @@
229
674
  - Updated dependencies [d655e75]
230
675
  - @copilotkit/shared@1.51.3-next.3
231
676
  - @copilotkit/runtime-client-gql@1.51.3-next.3
232
- - @copilotkitnext/core@1.51.3-next.3
233
- - @copilotkitnext/react@1.51.3-next.3
677
+ - @copilotkit/core@1.51.3-next.3
678
+ - @copilotkit/react@1.51.3-next.3
234
679
 
235
680
  ## 1.51.3-next.2
236
681
 
@@ -238,8 +683,8 @@
238
683
 
239
684
  - @copilotkit/runtime-client-gql@1.51.3-next.2
240
685
  - @copilotkit/shared@1.51.3-next.2
241
- - @copilotkitnext/core@1.51.3-next.2
242
- - @copilotkitnext/react@1.51.3-next.2
686
+ - @copilotkit/core@1.51.3-next.2
687
+ - @copilotkit/react@1.51.3-next.2
243
688
 
244
689
  ## 1.51.3-next.1
245
690
 
@@ -247,8 +692,8 @@
247
692
 
248
693
  - @copilotkit/runtime-client-gql@1.51.3-next.1
249
694
  - @copilotkit/shared@1.51.3-next.1
250
- - @copilotkitnext/core@1.51.3-next.1
251
- - @copilotkitnext/react@1.51.3-next.1
695
+ - @copilotkit/core@1.51.3-next.1
696
+ - @copilotkit/react@1.51.3-next.1
252
697
 
253
698
  ## 1.51.3-next.0
254
699
 
@@ -256,8 +701,8 @@
256
701
 
257
702
  - @copilotkit/runtime-client-gql@1.51.3-next.0
258
703
  - @copilotkit/shared@1.51.3-next.0
259
- - @copilotkitnext/core@1.51.3-next.0
260
- - @copilotkitnext/react@1.51.3-next.0
704
+ - @copilotkit/core@1.51.3-next.0
705
+ - @copilotkit/react@1.51.3-next.0
261
706
 
262
707
  ## 1.51.2
263
708
 
@@ -268,8 +713,8 @@
268
713
  - Updated dependencies [e59d23f]
269
714
  - Updated dependencies [e59d23f]
270
715
  - @copilotkit/runtime-client-gql@1.51.2
271
- - @copilotkitnext/react@1.51.2
272
- - @copilotkitnext/core@1.51.2
716
+ - @copilotkit/react@1.51.2
717
+ - @copilotkit/core@1.51.2
273
718
  - @copilotkit/shared@1.51.2
274
719
 
275
720
  ## 1.51.2-next.1
@@ -281,8 +726,8 @@
281
726
  - Updated dependencies [e59d23f]
282
727
  - Updated dependencies [e59d23f]
283
728
  - @copilotkit/runtime-client-gql@1.51.2-next.1
284
- - @copilotkitnext/react@1.51.2-next.1
285
- - @copilotkitnext/core@1.51.2-next.1
729
+ - @copilotkit/react@1.51.2-next.1
730
+ - @copilotkit/core@1.51.2-next.1
286
731
  - @copilotkit/shared@1.51.2-next.1
287
732
 
288
733
  ## 1.51.2-next.0
@@ -291,8 +736,8 @@
291
736
 
292
737
  - @copilotkit/runtime-client-gql@1.51.2-next.0
293
738
  - @copilotkit/shared@1.51.2-next.0
294
- - @copilotkitnext/core@1.51.2-next.0
295
- - @copilotkitnext/react@1.51.2-next.0
739
+ - @copilotkit/core@1.51.2-next.0
740
+ - @copilotkit/react@1.51.2-next.0
296
741
 
297
742
  ## 1.51.1
298
743
 
@@ -300,10 +745,10 @@
300
745
 
301
746
  - 329653b: Add support for MCP Apps Middleware
302
747
  - Updated dependencies [329653b]
303
- - @copilotkitnext/react@1.51.1
748
+ - @copilotkit/react@1.51.1
304
749
  - @copilotkit/runtime-client-gql@1.51.1
305
750
  - @copilotkit/shared@1.51.1
306
- - @copilotkitnext/core@1.51.1
751
+ - @copilotkit/core@1.51.1
307
752
 
308
753
  ## 1.51.0
309
754
 
@@ -314,8 +759,8 @@
314
759
  - Updated dependencies [2afd4e3]
315
760
  - @copilotkit/runtime-client-gql@1.51.0
316
761
  - @copilotkit/shared@1.51.0
317
- - @copilotkitnext/react@1.51.0
318
- - @copilotkitnext/core@1.51.0
762
+ - @copilotkit/react@1.51.0
763
+ - @copilotkit/core@1.51.0
319
764
 
320
765
  ## 1.51.0-next.4
321
766
 
@@ -323,8 +768,8 @@
323
768
 
324
769
  - @copilotkit/runtime-client-gql@1.51.0-next.4
325
770
  - @copilotkit/shared@1.51.0-next.4
326
- - @copilotkitnext/core@1.51.0-next.4
327
- - @copilotkitnext/react@1.51.0-next.4
771
+ - @copilotkit/core@1.51.0-next.4
772
+ - @copilotkit/react@1.51.0-next.4
328
773
 
329
774
  ## 1.51.0-next.3
330
775
 
@@ -332,8 +777,8 @@
332
777
 
333
778
  - @copilotkit/runtime-client-gql@1.51.0-next.3
334
779
  - @copilotkit/shared@1.51.0-next.3
335
- - @copilotkitnext/core@1.51.0-next.3
336
- - @copilotkitnext/react@1.51.0-next.3
780
+ - @copilotkit/core@1.51.0-next.3
781
+ - @copilotkit/react@1.51.0-next.3
337
782
 
338
783
  ## 1.51.0-next.2
339
784
 
@@ -342,8 +787,8 @@
342
787
  - Updated dependencies [2afd4e3]
343
788
  - @copilotkit/shared@1.51.0-next.2
344
789
  - @copilotkit/runtime-client-gql@1.51.0-next.2
345
- - @copilotkitnext/core@1.51.0-next.2
346
- - @copilotkitnext/react@1.51.0-next.2
790
+ - @copilotkit/core@1.51.0-next.2
791
+ - @copilotkit/react@1.51.0-next.2
347
792
 
348
793
  ## 1.51.0-next.1
349
794
 
@@ -351,8 +796,8 @@
351
796
 
352
797
  - @copilotkit/runtime-client-gql@1.51.0-next.1
353
798
  - @copilotkit/shared@1.51.0-next.1
354
- - @copilotkitnext/core@1.51.0-next.1
355
- - @copilotkitnext/react@1.51.0-next.1
799
+ - @copilotkit/core@1.51.0-next.1
800
+ - @copilotkit/react@1.51.0-next.1
356
801
 
357
802
  ## 1.50.2-next.0
358
803
 
@@ -966,12 +1411,14 @@
966
1411
  agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.
967
1412
 
968
1413
  As such, the following features have been updated to be completely functional with Headless UI.
1414
+
969
1415
  - Generative UI
970
1416
  - Suggestions
971
1417
  - Agentic Generative UI
972
1418
  - Interrupts
973
1419
 
974
1420
  In addition, a variety of QOL changes have been made.
1421
+
975
1422
  - New AG-UI based message types
976
1423
  - Inline code rendering is fixed
977
1424
 
@@ -983,15 +1430,19 @@
983
1430
  - 6d1de58: - fix: address issues that would cause headless UI breaking changes in the next release
984
1431
 
985
1432
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1433
+
986
1434
  - fix: more fixes addressing breaking changes in new Headless UI
987
1435
 
988
1436
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1437
+
989
1438
  - chore: address linting issues
990
1439
 
991
1440
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1441
+
992
1442
  - chore: fixing branding and docs
993
1443
 
994
1444
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1445
+
995
1446
  - chore: more docs fixing
996
1447
 
997
1448
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
@@ -1033,15 +1484,19 @@
1033
1484
  - 6d1de58: - fix: address issues that would cause headless UI breaking changes in the next release
1034
1485
 
1035
1486
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1487
+
1036
1488
  - fix: more fixes addressing breaking changes in new Headless UI
1037
1489
 
1038
1490
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1491
+
1039
1492
  - chore: address linting issues
1040
1493
 
1041
1494
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1495
+
1042
1496
  - chore: fixing branding and docs
1043
1497
 
1044
1498
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1499
+
1045
1500
  - chore: more docs fixing
1046
1501
 
1047
1502
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
@@ -1126,12 +1581,14 @@
1126
1581
  agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.
1127
1582
 
1128
1583
  As such, the following features have been updated to be completely functional with Headless UI.
1584
+
1129
1585
  - Generative UI
1130
1586
  - Suggestions
1131
1587
  - Agentic Generative UI
1132
1588
  - Interrupts
1133
1589
 
1134
1590
  In addition, a variety of QOL changes have been made.
1591
+
1135
1592
  - New AG-UI based message types
1136
1593
  - Inline code rendering is fixed
1137
1594
 
@@ -1197,6 +1654,7 @@
1197
1654
  - 3f8c575: - fix: use time travel for regeneration of messages
1198
1655
  - fix: use a better cutoff for regeneration request
1199
1656
  - fac89c2: - refactor: rename onTrace to onError throughout codebase
1657
+
1200
1658
  - Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
1201
1659
 
1202
1660
  - e1de032: - fix: synchronously execute renderAndWaitForResponse
@@ -1289,6 +1747,7 @@
1289
1747
  works with any combination of action given much more freedom when asking for user input.
1290
1748
 
1291
1749
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1750
+
1292
1751
  - @copilotkit/runtime-client-gql@1.9.2-next.20
1293
1752
  - @copilotkit/shared@1.9.2-next.20
1294
1753
 
@@ -1304,6 +1763,7 @@
1304
1763
  ### Patch Changes
1305
1764
 
1306
1765
  - fac89c2: - refactor: rename onTrace to onError throughout codebase
1766
+
1307
1767
  - Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
1308
1768
 
1309
1769
  - Updated dependencies [fac89c2]
@@ -1800,9 +2260,11 @@
1800
2260
  - c0d3261: - full AWP support
1801
2261
 
1802
2262
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2263
+
1803
2264
  - refactor: address linter issues with the new pages
1804
2265
 
1805
2266
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2267
+
1806
2268
  - Merge branch 'mme/acp' into mme/mastra
1807
2269
  - add sse example
1808
2270
  - Create small-turkeys-agree.md
@@ -1828,9 +2290,11 @@
1828
2290
  - c0d3261: - full AWP support
1829
2291
 
1830
2292
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2293
+
1831
2294
  - refactor: address linter issues with the new pages
1832
2295
 
1833
2296
  Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2297
+
1834
2298
  - Merge branch 'mme/acp' into mme/mastra
1835
2299
  - add sse example
1836
2300
  - Create small-turkeys-agree.md
@@ -2945,6 +3409,7 @@
2945
3409
  - e16d95e: New prerelease
2946
3410
  - 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
2947
3411
  - CopilotKit Core:
3412
+
2948
3413
  - Improved error messages and overall logs
2949
3414
  - `useCopilotAction.renderAndAwait` renamed to `.renderAndAwaitForResponse` (backwards compatible, will be deprecated in the future)
2950
3415
  - Improved scrolling behavior. It is now possible to scroll up during LLM response generation
@@ -2952,6 +3417,7 @@
2952
3417
  - Updated interfaces for better developer ergonomics
2953
3418
 
2954
3419
  CoAgents:
3420
+
2955
3421
  - Renamed `remoteActions` to `remoteEndpoints` (backwards compatible, will be deprecated in the future)
2956
3422
  - Support for LangGraph Platform in Remote Endpoints
2957
3423
  - LangGraph JS Support for CoAgents (locally via `langgraph dev`, `langgraph up` or deployed to LangGraph Platform)
@@ -2959,6 +3425,7 @@
2959
3425
  - Enhanced state management and message handling
2960
3426
 
2961
3427
  CopilotKid Back-end SDK:
3428
+
2962
3429
  - Released a whole-new `@copilotkit/sdk-js` for building agents with LangGraph JS Support
2963
3430
 
2964
3431
  - 8d0144f: bump
@@ -3333,6 +3800,7 @@ CopilotKid Back-end SDK:
3333
3800
  ### Patch Changes
3334
3801
 
3335
3802
  - inject minified css in bundle
3803
+
3336
3804
  - removes the need to import `styles.css` manually
3337
3805
  - empty `styles.css` included in the build for backwards compatibility
3338
3806
  - uses tsup's `injectStyles` with `postcss` to bundle and minify the CSS, then inject it as a style tag
@@ -3483,6 +3951,7 @@ CopilotKid Back-end SDK:
3483
3951
  ### Major Changes
3484
3952
 
3485
3953
  - b6a4b6eb: V1.0 Release Candidate
3954
+
3486
3955
  - A robust new protocol between the frontend and the Copilot Runtime
3487
3956
  - Support for Copilot Cloud
3488
3957
  - Generative UI