Skip to content
This repository was archived by the owner on Mar 12, 2026. It is now read-only.

Update CopilotKit dependencies to v1.53.0#11

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/copilotkit-dependencies
Open

Update CopilotKit dependencies to v1.53.0#11
renovate[bot] wants to merge 1 commit intomainfrom
renovate/copilotkit-dependencies

Conversation

@renovate
Copy link
Copy Markdown
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.53.0 age confidence
@copilotkit/react-textarea 1.3.11.53.0 age confidence
@copilotkit/react-ui 1.3.11.53.0 age confidence
@copilotkit/runtime 1.3.11.53.0 age confidence
@copilotkit/shared 1.3.11.53.0 age confidence

Release Notes

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

v1.53.0

Compare Source

v1.52.1

Compare Source

v1.52.0

Compare Source

v1.51.4

Compare Source

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

v1.51.3

Compare Source

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

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

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
Copy Markdown

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 33c43fd to aaee57f Compare December 14, 2024 19:04
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from aaee57f to e13b111 Compare January 6, 2025 13:38
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.4.7 Update CopilotKit dependencies to v1.4.8 Jan 6, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from e13b111 to ec5bfa1 Compare January 8, 2025 14:28
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.4.8 Update CopilotKit dependencies to v1.5.0 Jan 8, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from ec5bfa1 to 01e8069 Compare January 9, 2025 22:34
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.0 Update CopilotKit dependencies to v1.5.5 Jan 9, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 01e8069 to a841f13 Compare January 10, 2025 02:09
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.5 Update CopilotKit dependencies to v1.5.11 Jan 10, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from a841f13 to 8de6319 Compare January 21, 2025 08:35
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.11 Update CopilotKit dependencies to v1.5.12 Jan 21, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 8de6319 to 8606657 Compare January 21, 2025 21:23
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.12 Update CopilotKit dependencies to v1.5.13 Jan 21, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 8606657 to 325440f Compare January 27, 2025 21:40
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.13 Update CopilotKit dependencies to v1.5.14 Jan 27, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 325440f to 11d7049 Compare February 8, 2025 01:43
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.14 Update CopilotKit dependencies to v1.5.15 Feb 8, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 11d7049 to 11a06cc Compare February 11, 2025 20:32
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.15 Update CopilotKit dependencies to v1.5.16 Feb 11, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 11a06cc to a004508 Compare February 12, 2025 02:02
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.16 Update CopilotKit dependencies to v1.5.17 Feb 12, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from a004508 to fa639e5 Compare February 12, 2025 23:43
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.17 Update CopilotKit dependencies to v1.5.18 Feb 12, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from fa639e5 to 9751f59 Compare February 13, 2025 23:53
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.18 Update CopilotKit dependencies to v1.5.19 Feb 13, 2025
@renovate renovate bot force-pushed the renovate/copilotkit-dependencies branch from 9751f59 to 60aa2d3 Compare February 14, 2025 18:23
@renovate renovate bot changed the title Update CopilotKit dependencies to v1.5.19 Update CopilotKit dependencies to v1.5.20 Feb 14, 2025
@renovate
Copy link
Copy Markdown
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: copilotkit-demo@0.1.0
npm error Found: @langchain/core@0.1.63
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/community@0.0.29
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/runtime@1.53.0
npm error node_modules/@copilotkit/runtime
npm error   @copilotkit/runtime@"1.53.0" 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-03-06T02_12_48_392Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-03-06T02_12_48_392Z-debug-0.log

@changeset-bot
Copy link
Copy Markdown

changeset-bot bot commented Jan 13, 2026

⚠️ No Changeset found

Latest commit: b4371ba

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

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants