Skip to content

chore(deps): bump the copilotkit group with 3 updates#33

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/copilotkit-4924b6afd8
Open

chore(deps): bump the copilotkit group with 3 updates#33
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/copilotkit-4924b6afd8

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Bumps the copilotkit group with 3 updates: @copilotkit/runtime, @copilotkit/a2ui-renderer and @copilotkit/react-core.

Updates @copilotkit/runtime from 1.56.5 to 1.57.1

Commits
  • 8f4b7ad chore: release monorepo v1.57.1 (#4700)
  • 091790c docs(shell-docs): cutover content batch (quickstart CLI two-choice, AG-UI tab...
  • 5164ae3 chore: release monorepo v1.57.1
  • bb869af chore(deps): bump @​copilotkit/license-verifier to 0.4.0 (#4699)
  • 8fe276e chore(deps): bump @​copilotkit/license-verifier to 0.4.0
  • 59a8a71 docs(shell-docs): give quickstart CLI section two clear paths (interactive vs...
  • 60db1b7 feat(core): registerProxiedAgent — explicit multi-agent mounting against one ...
  • 61e4292 feat(runtime): configurable MCP server on BuiltInAgent (Bearer + per-call use...
  • 5dad3de Merge branch 'main' into lukas/cpk-7526-copilotkitruntimev2-configurable-mcp-...
  • b3463f8 fix(showcase/langgraph-python): copy manifest.yaml into runtime image (#4696)
  • Additional commits viewable in compare view

Updates @copilotkit/a2ui-renderer from 1.56.5 to 1.57.1

Release notes

Sourced from @​copilotkit/a2ui-renderer's releases.

v1.57.1

CopilotKit v1.57.1

A patch release on the 1.57 line. Adds @copilotkit/react-native for using CopilotKit hooks in React Native apps, ships registerProxiedAgent for mounting frontend tools/context against a single runtime agent, adds a per-call getHeaders resolver to BuiltInAgent's MCP server config, and auto-mounts the IntelligenceIndicator pill when intelligence is configured on the runtime.

Install

npm install @copilotkit/react-core@1.57.1 @copilotkit/react-ui@1.57.1 @copilotkit/runtime@1.57.1

Features

  • @copilotkit/react-native — New package for using CopilotKit in React Native apps. Ships a lightweight CopilotKitProvider (no DOM, CSS, Radix, Lit, or A2UI deps), an installStreamingFetch() XHR-based shim that gives response.body.getReader() support, and granular polyfills for ReadableStream, TextEncoder, crypto, DOMException, and window.location. All hooks (useAgent, useFrontendTool, useHumanInTheLoop, etc.) re-export directly from react-core over a shared context. Backed by an extraction of CopilotKitContext and useCopilotKit into a standalone @copilotkit/react-core/v2/context entry point so cross-platform consumers don't pull web-only deps via the barrel. (#3633)

    // index.js — entry point, before other imports
    import "@copilotkit/react-native/polyfills";
    import { installStreamingFetch } from "@copilotkit/react-native";
    installStreamingFetch();
    // App.tsx
    import { CopilotKitProvider, useAgent } from "@​copilotkit/react-native";

  • registerProxiedAgent in @copilotkit/core — New API for mounting a frontend-side agent (with frontend tools, context, render hooks) against a server-defined runtime agent. CopilotKitCore.registerProxiedAgent({ agentId, runtimeAgentId }) mints a ProxiedCopilotRuntimeAgent under a local registry id and routes its outbound HTTP requests (/agent/<id>/run, /connect, /stop) to the named runtime agent. Returns { agent, unregister } for useEffect cleanup. Throws on duplicate agentId (collisions with agents__unsafe_dev_only or another registerProxiedAgent are loud, not silent). Replaces the implicit per-thread agent cloning from earlier work, which has been reverted because it wiped agent state on tool calls — the registry now keeps a single agent per id. (#4629)

    const { copilotkit } = useCopilotKit();
    useEffect(() => {
      const { unregister } = copilotkit.registerProxiedAgent({
        agentId: "chat-1",         // local registry id (subscriber bookkeeping)
        runtimeAgentId: "default", // runtime id (URL routing only)
      });
      return unregister;
    }, [copilotkit]);
    // <CopilotChat agentId="chat-1" />
  • Configurable MCP server on BuiltInAgent@copilotkit/runtime/v2's BuiltInAgent MCP config now accepts an authToken (static Bearer shorthand) and a getHeaders resolver that runs on every outbound HTTP request — initialize, tools/list, tools/call, reconnects. The resolver receives MCPRequestContext (requestHeaders, input, mcpServerUrl) so headers can be derived per request rather than baked into the client config. The MCP layer now sits directly on @ai-sdk/mcp (MCPClient, MCPTransport, OAuthClientProvider, OAuthTokens, and UnauthorizedError re-exported from @copilotkit/runtime/v2); the agent module no longer imports @modelcontextprotocol/sdk directly. Side-effect fix: SSE static headers now reach the wire — the previous direct-SDK construction silently dropped them. (#4420)

    import {
      BuiltInAgent,
      INTELLIGENCE_USER_ID_HEADER,
    } from "@copilotkit/runtime/v2";
    new BuiltInAgent({
    model: "openai/gpt-4o",
    mcpServers: [{

... (truncated)

Commits

Updates @copilotkit/react-core from 1.56.5 to 1.57.1

Commits
  • 8f4b7ad chore: release monorepo v1.57.1 (#4700)
  • 091790c docs(shell-docs): cutover content batch (quickstart CLI two-choice, AG-UI tab...
  • 5164ae3 chore: release monorepo v1.57.1
  • bb869af chore(deps): bump @​copilotkit/license-verifier to 0.4.0 (#4699)
  • 8fe276e chore(deps): bump @​copilotkit/license-verifier to 0.4.0
  • 59a8a71 docs(shell-docs): give quickstart CLI section two clear paths (interactive vs...
  • 60db1b7 feat(core): registerProxiedAgent — explicit multi-agent mounting against one ...
  • 61e4292 feat(runtime): configurable MCP server on BuiltInAgent (Bearer + per-call use...
  • 5dad3de Merge branch 'main' into lukas/cpk-7526-copilotkitruntimev2-configurable-mcp-...
  • b3463f8 fix(showcase/langgraph-python): copy manifest.yaml into runtime image (#4696)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the copilotkit group with 3 updates: [@copilotkit/runtime](https://github.com/CopilotKit/CopilotKit), [@copilotkit/a2ui-renderer](https://github.com/CopilotKit/CopilotKit/tree/HEAD/packages/a2ui-renderer) and [@copilotkit/react-core](https://github.com/CopilotKit/CopilotKit).


Updates `@copilotkit/runtime` from 1.56.5 to 1.57.1
- [Release notes](https://github.com/CopilotKit/CopilotKit/releases)
- [Changelog](https://github.com/CopilotKit/CopilotKit/blob/main/changelog.txt)
- [Commits](CopilotKit/CopilotKit@v1.56.5...v1.57.1)

Updates `@copilotkit/a2ui-renderer` from 1.56.5 to 1.57.1
- [Release notes](https://github.com/CopilotKit/CopilotKit/releases)
- [Changelog](https://github.com/CopilotKit/CopilotKit/blob/main/packages/a2ui-renderer/CHANGELOG.md)
- [Commits](https://github.com/CopilotKit/CopilotKit/commits/v1.57.1/packages/a2ui-renderer)

Updates `@copilotkit/react-core` from 1.56.5 to 1.57.1
- [Release notes](https://github.com/CopilotKit/CopilotKit/releases)
- [Changelog](https://github.com/CopilotKit/CopilotKit/blob/main/changelog.txt)
- [Commits](CopilotKit/CopilotKit@v1.56.5...v1.57.1)

---
updated-dependencies:
- dependency-name: "@copilotkit/runtime"
  dependency-version: 1.57.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: copilotkit
- dependency-name: "@copilotkit/a2ui-renderer"
  dependency-version: 1.57.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: copilotkit
- dependency-name: "@copilotkit/react-core"
  dependency-version: 1.57.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: copilotkit
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants