Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 13, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@copilotkit/react-core 1.8.12-next.41.51.3 age confidence
@copilotkit/react-ui 1.8.12-next.41.51.3 age confidence
@copilotkit/runtime 1.8.12-next.41.51.3 age confidence
@copilotkit/runtime-client-gql 1.8.12-next.41.51.3 age confidence

Release Notes

CopilotKit/CopilotKit (@​copilotkit/react-core)

v1.51.3

Compare Source

v1.51.2

Compare Source

@​copilotkit and @​copilotkitnext dependencies moved from peer dependencies to dependencies

v1.51.1

Add support for MCP Apps Middleware

v1.50.1

Compare Source

@​copilotkit/react-core
1.50.1
Patch Changes
@​copilotkit/react-ui
1.50.1
Patch Changes
@​copilotkit/sdk-js
1.50.1
Patch Changes
@​copilotkit/react-textarea
1.50.1
Patch Changes
@​copilotkit/runtime
1.50.1
Patch Changes
@​copilotkit/runtime-client-gql
1.50.1
Patch Changes
@​copilotkit/shared
1.50.1
Patch Changes
  • 80dffec: Updated the default model and API version for the Google GenAI adapter
@​copilotkit/react-core
1.50.1
Patch Changes
@​copilotkit/react-ui
1.50.1
Patch Changes
@​copilotkit/sdk-js
1.50.1
Patch Changes
@​copilotkit/react-textarea
1.50.1
Patch Changes
@​copilotkit/runtime
1.50.1
Patch Changes
@​copilotkit/runtime-client-gql
1.50.1
Patch Changes
@​copilotkit/shared
1.50.1
Patch Changes
  • 80dffec: Updated the default model and API version for the Google GenAI adapter

v1.50.0

Compare Source

CopilotKit v1.50.0 Release Notes

CopilotKit v1.50 is a major update. It includes many highly sought after new features, under the hood improvements and simplifications, and extensive improvements to existing core elements:

Backwards Compatibility

Everything you’re already using continues to work. v1.50 is fully backwards compatible with client code using v1.10. In fact, as a first step in this pre-release period, we would love for you to start with just rebuilding, and let us know if you run into any problems.

V2 interfaces

As we said above, all of the v1 (or unversioned) hooks continue to work with v1.50. To take advantage of new hooks you’ll use those marked as /v2 (shown below).

You can opt into any of the new developer interfaces or keep using the old ones. Mixing is allowed in the following configurations:

  • New Chat component + old hooks
  • Old components + new hooks
  • New v2 APIs are exposed under a subpath:
import { CopilotChat, useAgent } from "@​copilotkit/react-core/v2";
useAgent

The v2 hook useAgent is a proper superset of useCoAgent which gives more control over the agent connection, including:

Shared state
import { useAgent } from "@​copilotkit/react-core/v2";
const { agent } = useAgent({ agentId: "my-agent" });
agent.state
agent.setState
Time travel
import { useAgent } from "@​copilotkit/react-core/v2";
const { agent } = useAgent({ agentId: "my-agent" });
agent.setMessages()
Multi-agent execution
import { useAgent } from "@​copilotkit/react-core/v2";
const { agent: langgraph } = useAgent({ agentId: "langgraph" });
const { agent: pydantic } = useAgent({ agentId: "pydantic" });
[langgraph, pydantic].forEach((agent) => {
  agent.addMessage({ id: crypto.randomUUID(), role: "user", content: message });
  agent.runAgent();
});
Agent Mutual Awareness

You can even make agents aware of each other!

import { useAgent } from "@​copilotkit/react-core/v2";
const { agent: langgraph } = useAgent({ agentId: "langgraph" });
const { agent: pydantic } = useAgent({ agentId: "pydantic" });
langgraph.setMessages(pydantic.messages)
pydantic.setMessages(langgraph.messages)
Other Highlights
  • New runner with telemetry baked in, enabling better observability out of the box.
  • CopilotRuntime rerouting and v2 subpackage export to align with CopilotKit Next single-endpoint architecture.
  • Suggestions flow reworked: optional execution, improved availability, and added UI indicators (spinner) to show chat readiness.
  • Inspector enabled by default and stability improvements around LangChain integrations.
Shared / Infrastructure
  • Added telemetry-enabled runner and refreshed dependency stack to latest vNext.
  • Improved LangChain stability and dependency resolution; minor fixes across packages.
  • Introduced rerouting CopilotRuntime and telemetry fix for the 1.50 runtime.
Runtime
  • Ported legacy endpoint creators to 2.0; runtime v2 exported as subpackage.
  • Updated tool assignment logic (merge fixes) and removed redundant agent instantiation.
  • Node HTTP integration now uses Hono directly; providers treeshaken and optional by default.
  • Agents now unpack/set as promises to avoid startup delays; runtime uses CopilotNext single endpoint.
React Core
  • Predictive state updates and setters fixed; better sync of back-and-forth state including initial state.
  • Coagent state renders enabled; interrupt renders re-enabled and queued to avoid races.
  • Suggestions improvements: availability fix, added support in 1.5, spinner indicator, and route to CopilotKitNext implementation.
  • Context handling hardened (no infinite resets, string-only context values, custom converters allowed); tool-call result args fixed; agent name resolved from provider props.
  • V2 styles exported; dependencies adjusted.
React UI
  • Suggestions support added to 1.5 UI with repeatable interrupts and spinner readiness indicator.
  • Default Messages font color now honors --copilot-kit-primary-color.
  • General dependency and stability fixes inherited from React Core/Runtime.
React Textarea
  • Textarea now routes to the CopilotKitNext implementation; inherits suggestions/runtime fixes via dependencies.
Runtime Client (GQL)
  • Aligns with telemetry-enabled runner, inspector enablement, suggestion refactors, and dependency updates from shared/runtime.
SDK JS
  • Allows LangGraph 1.0 and adopts telemetry runner, LangChain stability tweaks, and inspector enablement.
General Quality
  • Lint/format cleanup, minor fixes, and dependency bumps across all packages to ensure consistency for 1.50.0.

v1.10.6

Compare Source

@​copilotkit/react-core
1.10.6
Patch Changes
@​copilotkit/react-ui
1.10.6
Patch Changes
@​copilotkit/sdk-js
1.10.6
Patch Changes
@​copilotkit/react-textarea
1.10.6
Patch Changes
@​copilotkit/runtime
1.10.6
Patch Changes
@​copilotkit/runtime-client-gql
1.10.6
Patch Changes
@​copilotkit/shared
1.10.6
Patch Changes
  • e0dd5d5: - feat: allow additional config in direct to llm actions
@​copilotkit/react-core
1.10.6
Patch Changes
@​copilotkit/react-ui
1.10.6
Patch Changes
@​copilotkit/sdk-js
1.10.6
Patch Changes
@​copilotkit/react-textarea
1.10.6
Patch Changes
@​copilotkit/runtime
1.10.6
Patch Changes
@​copilotkit/runtime-client-gql
1.10.6
Patch Changes
@​copilotkit/shared
1.10.6
Patch Changes
  • e0dd5d5: - feat: allow additional config in direct to llm actions

v1.10.5

Compare Source

@​copilotkit/react-core
1.10.5
Patch Changes
@​copilotkit/react-ui
1.10.5
Patch Changes
@​copilotkit/sdk-js
1.10.5
Patch Changes
@​copilotkit/react-textarea
1.10.5
Patch Changes
@​copilotkit/runtime
1.10.5
Patch Changes
  • b7bc3a0: - feat: pass copilot readable context to agui agents
  • f199c94: - feat: update agui packages
  • 7467f97: - feat: add stop generation callback and call abort agui agent
  • e730369: - feat: use latest agui langgraph package
    • feat: use latest agui fastapi langgraph package and dependencies
  • c9e32b0: - fix: upgrade agui langgraph version
  • 23fe6a1: - chore: publish python sdk using latest agui
@​copilotkit/runtime-client-gql
1.10.5
Patch Changes
@​copilotkit/shared
1.10.5
@​copilotkit/react-core
1.10.5
Patch Changes
@​copilotkit/react-ui
1.10.5
Patch Changes
@​copilotkit/sdk-js
1.10.5
Patch Changes
@​copilotkit/react-textarea
1.10.5
Patch Changes
@​copilotkit/runtime
1.10.5
Patch Changes
  • b7bc3a0: - feat: pass copilot readable context to agui agents
  • f199c94: - feat: update agui packages
  • 7467f97: - feat: add stop generation callback and call abort agui agent
  • e730369: - feat: use latest agui langgraph package
    • feat: use latest agui fastapi langgraph package and dependencies
  • c9e32b0: - fix: upgrade agui langgraph version
  • 23fe6a1: - chore: publish python sdk using latest agui
@​copilotkit/runtime-client-gql
1.10.5
Patch Changes
@​copilotkit/shared
1.10.5

v1.10.4

Compare Source

@​copilotkit/react-core
1.10.4
Patch Changes
@​copilotkit/react-ui
1.10.4
Patch Changes
@​copilotkit/sdk-js
1.10.4
Patch Changes
@​copilotkit/react-textarea
1.10.4
Patch Changes
@​copilotkit/runtime
1.10.4
Patch Changes
@​copilotkit/runtime-client-gql
1.10.4
Patch Changes
@​copilotkit/shared
1.10.4
Patch Changes
  • a640d8e: - feat: update latest agui langgraph for subgraphs support
    • feat: update latest agui core packages
@​copilotkit/react-core
1.10.4
Patch Changes
@​copilotkit/react-ui
1.10.4
Patch Changes
@​copilotkit/sdk-js
1.10.4
Patch Changes
@​copilotkit/react-textarea
1.10.4
Patch Changes
@​copilotkit/runtime
1.10.4
Patch Changes
@​copilotkit/runtime-client-gql
1.10.4
Patch Changes
@​copilotkit/shared
1.10.4
Patch Changes
  • a640d8e: - feat: update latest agui langgraph for subgraphs support
    • feat: update latest agui core packages

v1.10.3

Compare Source

@​copilotkit/react-core
1.10.3
Patch Changes
@​copilotkit/react-ui
1.10.3
Patch Changes
@​copilotkit/sdk-js
1.10.3
Patch Changes
  • f566562: - fix: allow dependents to decide langgraph version by using peer dependencies
    • fix: adjust sdk to accept two forms of actions from agui
  • Updated dependencies [ea74047]
@​copilotkit/react-textarea
1.10.3
Patch Changes
@​copilotkit/runtime
1.10.3
Patch Changes
  • ea74047: - fix: surface run errors from agui
  • a7bb2f0: - fix: fix how node names are read to support newer langgraph versions
  • 21e12af: - feat: send streamSubgraphs forwarded prop to AGUI
  • Updated dependencies [ea74047]
@​copilotkit/runtime-client-gql
1.10.3
Patch Changes
@​copilotkit/shared
1.10.3
Patch Changes
  • ea74047: - fix: surface run errors from agui
@​copilotkit/react-core
1.10.3
Patch Changes
@​copilotkit/react-ui
1.10.3
Patch Changes
@​copilotkit/sdk-js
1.10.3
Patch Changes
  • f566562: - fix: allow dependents to decide langgraph version by using peer dependencies
    • fix: adjust sdk to accept two forms of actions from agui
  • Updated dependencies [ea74047]
@​copilotkit/react-textarea
1.10.3
Patch Changes
@​copilotkit/runtime
1.10.3
Patch Changes
  • ea74047: - fix: surface run errors from agui
  • a7bb2f0: - fix: fix how node names are read to support newer langgraph versions
  • 21e12af: - feat: send streamSubgraphs forwarded prop to AGUI
  • Updated dependencies [ea74047]
@​copilotkit/runtime-client-gql
1.10.3
Patch Changes
@​copilotkit/shared
1.10.3
Patch Changes
  • ea74047: - fix: surface run errors from agui

v1.10.2

Compare Source

@​copilotkit/react-core
1.10.2
Patch Changes
@​copilotkit/react-ui
1.10.2
Patch Changes
@​copilotkit/sdk-js
1.10.2
Patch Changes
@​copilotkit/react-textarea
1.10.2
Patch Changes
@​copilotkit/runtime
1.10.2
Patch Changes
@​copilotkit/runtime-client-gql
1.10.2
Patch Changes
@​copilotkit/shared
1.10.2
@​copilotkit/react-core
1.10.2
Patch Changes
@​copilotkit/react-ui
1.10.2
Patch Changes
@​copilotkit/sdk-js
1.10.2
Patch Changes
@​copilotkit/react-textarea
1.10.2
Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the copilotkit label Feb 13, 2025
@vercel
Copy link

vercel bot commented Feb 13, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
example-todos-app-final Ready Ready Preview, Comment Jan 29, 2026 8:51pm

Request Review

@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from d4a0dfa to cdbb788 Compare February 14, 2025 18:33
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.19 Update CopilotKit dependencies to v1.5.20 Feb 14, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from cdbb788 to abc84f9 Compare February 27, 2025 19:53
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.20 Update CopilotKit dependencies to v1.6.0 Feb 27, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from abc84f9 to 15af84a Compare March 11, 2025 12:09
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 15af84a to 420ed4c Compare March 11, 2025 22:29
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.6.0 Update CopilotKit dependencies to v1.7.0 Mar 11, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 420ed4c to 3ab8192 Compare March 12, 2025 02:26
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.7.0 Update CopilotKit dependencies to v1.7.1 Mar 12, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 3ab8192 to e788b11 Compare March 13, 2025 16:04
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from e788b11 to e800a2b Compare March 17, 2025 18:51
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from e800a2b to c983b68 Compare March 25, 2025 22:19
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.7.1 Update CopilotKit dependencies to v1.8.0 Mar 25, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from c983b68 to ddaad37 Compare March 26, 2025 03:30
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.8.0 Update CopilotKit dependencies to v1.8.1 Mar 26, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from ddaad37 to 2a44a6a Compare March 26, 2025 19:09
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.8.1 Update CopilotKit dependencies to v1.8.2 Mar 26, 2025
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.10.6 Update CopilotKit dependencies to v1.50.0 Dec 11, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 4548cc7 to c47c9e1 Compare December 17, 2025 21:56
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.50.0 Update CopilotKit dependencies to v1.50.1 Dec 17, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from c47c9e1 to f878d5f Compare December 31, 2025 15:44
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from f878d5f to cc29f14 Compare January 8, 2026 20:39
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from cc29f14 to 8d7b8aa Compare January 13, 2026 18:04
@changeset-bot
Copy link

changeset-bot bot commented Jan 13, 2026

⚠️ No Changeset found

Latest commit: 70ca5d3

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot changed the title Update CopilotKit dependencies to v1.50.1 Update CopilotKit dependencies Jan 13, 2026
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 8d7b8aa to 99e06ba Compare January 13, 2026 21:49
@renovate renovate bot changed the title Update CopilotKit dependencies Update CopilotKit dependencies to v1.51.0 Jan 13, 2026
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 99e06ba to 85cb291 Compare January 15, 2026 02:45
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.51.0 Update CopilotKit dependencies to v1.51.1 Jan 15, 2026
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 85cb291 to 40bee87 Compare January 15, 2026 18:15
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.51.1 Update CopilotKit dependencies to v1.51.2 Jan 15, 2026
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 40bee87 to 234b998 Compare January 19, 2026 14:52
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 234b998 to 2aa29da Compare January 23, 2026 17:43
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 2aa29da to 70ca5d3 Compare January 29, 2026 20:49
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.51.2 Update CopilotKit dependencies to v1.51.3 Jan 29, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants