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

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