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.50.1 age confidence
@copilotkit/react-ui 1.8.12-next.41.50.1 age confidence
@copilotkit/runtime 1.8.12-next.41.50.1 age confidence
@copilotkit/runtime-client-gql 1.8.12-next.41.50.1 age confidence

Release Notes

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

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
@​copilotkit/runtime
1.10.2
Patch Changes
@​copilotkit/runtime-client-gql
1.10.2
Patch Changes
@​copilotkit/shared
1.10.2


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 Review Updated (UTC)
example-todos-app-final Ready Ready Preview, Comment Jan 8, 2026 8:40pm

@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 force-pushed the renovate/copilotkit-dependencies branch from 56f7892 to 9a72dbe Compare September 9, 2025 01:56
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.10.3 Update CopilotKit dependencies to v1.10.4 Sep 9, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 9a72dbe to 59c1efb Compare September 25, 2025 14:07
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 59c1efb to 3cff3de Compare September 30, 2025 06:29
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.10.4 Update CopilotKit dependencies to v1.10.5 Sep 30, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 3cff3de to 2f689cf Compare October 10, 2025 01:58
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.10.5 Update CopilotKit dependencies to v1.10.6 Oct 10, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 2f689cf to 29f746e Compare October 21, 2025 16:53
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 29f746e to ac195a5 Compare November 10, 2025 17:10
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from ac195a5 to f0df868 Compare November 18, 2025 22:14
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from f0df868 to a723c6f Compare December 3, 2025 18:09
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from a723c6f to 4548cc7 Compare December 11, 2025 08:54
@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
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.

1 participant