Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 1, 2024

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@copilotkit/react-core 1.3.11.50.1 age confidence
@copilotkit/react-textarea 1.3.11.50.1 age confidence
@copilotkit/react-ui 1.3.11.50.1 age confidence
@copilotkit/runtime 1.3.11.50.1 age confidence
@copilotkit/shared 1.3.11.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
[@​copilot

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 Oct 1, 2024
@vercel
Copy link

vercel bot commented Oct 1, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
presentation-demo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 10, 2024 3:58pm

@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 2236e21 to 15dd30b Compare October 9, 2024 18:56
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.2 Update CopilotKit dependencies to v1.3.3 Oct 9, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 15dd30b to daf6115 Compare October 10, 2024 15:56
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.3 Update CopilotKit dependencies to v1.3.4 Oct 10, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from daf6115 to 7898bbf Compare October 15, 2024 14:01
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.4 Update CopilotKit dependencies to v1.3.5 Oct 15, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 7898bbf to e5e73d1 Compare October 18, 2024 16:39
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.5 Update CopilotKit dependencies to v1.3.6 Oct 18, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from e5e73d1 to 6f032e0 Compare October 30, 2024 20:13
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.6 Update CopilotKit dependencies to v1.3.7 Oct 30, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 6f032e0 to cc723a2 Compare November 1, 2024 22:42
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.7 Update CopilotKit dependencies to v1.3.8 Nov 1, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from cc723a2 to 00458f5 Compare November 2, 2024 07:17
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.8 Update CopilotKit dependencies to v1.3.9 Nov 2, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 00458f5 to 57b710c Compare November 3, 2024 00:31
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.9 Update CopilotKit dependencies to v1.3.10 Nov 3, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 57b710c to 78f7e5e Compare November 3, 2024 03:55
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.10 Update CopilotKit dependencies to v1.3.11 Nov 3, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 78f7e5e to cc5b384 Compare November 7, 2024 17:07
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.11 Update CopilotKit dependencies to v1.3.12 Nov 7, 2024
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.12 Update CopilotKit dependencies to v1.3.13 Nov 12, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch 2 times, most recently from fd93d5a to 51b8ed8 Compare November 13, 2024 17:41
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.3.13 Update CopilotKit dependencies to v1.3.15 Nov 13, 2024
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 51b8ed8 to da0264e Compare December 6, 2024 22:32
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from b5822d5 to 69b9431 Compare August 7, 2025 21:21
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.9.3 Update CopilotKit dependencies Aug 7, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 69b9431 to 19d3ada Compare August 8, 2025 00:40
@renovate renovate bot changed the title Update CopilotKit dependencies Update CopilotKit dependencies to v1.10.0 Aug 8, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 19d3ada to 9993a9a Compare August 9, 2025 01:19
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.10.0 Update CopilotKit dependencies to v1.10.1 Aug 9, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch 3 times, most recently from ab4fb71 to f9e6bbf Compare August 15, 2025 01:05
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.10.1 Update CopilotKit dependencies to v1.10.2 Aug 15, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from f9e6bbf to 2a29174 Compare August 19, 2025 17:46
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 2a29174 to f2835a4 Compare August 31, 2025 11:25
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.10.2 Update CopilotKit dependencies to v1.10.3 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from f2835a4 to 325a671 Compare September 9, 2025 01:42
@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 2 times, most recently from c2bd7a9 to ae7fdd2 Compare September 30, 2025 09:36
@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 ae7fdd2 to 4897e13 Compare October 9, 2025 23:29
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.10.5 Update CopilotKit dependencies to v1.10.6 Oct 9, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 4897e13 to e9212d3 Compare October 21, 2025 11:15
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from e9212d3 to 244ed67 Compare November 11, 2025 01:10
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 244ed67 to b8b6731 Compare November 18, 2025 10:47
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from b8b6731 to 33ca016 Compare December 3, 2025 17:00
@renovate
Copy link
Contributor Author

renovate bot commented Dec 3, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: [email protected]
npm error Found: @langchain/[email protected]
npm error node_modules/@langchain/core
npm error   @langchain/core@"^0.1.29" from the root project
npm error   @langchain/core@"~0.1.29" from @langchain/[email protected]
npm error   node_modules/@langchain/community
npm error     @langchain/community@"^0.0.29" from the root project
npm error
npm error Could not resolve dependency:
npm error peer @langchain/core@">=0.3.66" from @copilotkit/[email protected]
npm error node_modules/@copilotkit/runtime
npm error   @copilotkit/runtime@"1.50.1" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-01-08T19_31_14_803Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-01-08T19_31_14_803Z-debug-0.log

@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 33ca016 to 84841ee Compare December 11, 2025 09:32
@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 84841ee to 8981969 Compare December 18, 2025 00:56
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.50.0 Update CopilotKit dependencies to v1.50.1 Dec 18, 2025
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