-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Upgrade @copilotkit/react-core from 1.5.18 to 1.8.9 #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Snyk has created this PR to upgrade @copilotkit/react-core from 1.5.18 to 1.8.9. See this package in npm: @copilotkit/react-core See this project in Snyk: https://app.snyk.io/org/kevin-VHPfrm5LbiySgmBihWDW9y/project/e13b946d-ccfb-4502-82af-15dad7231cf0?utm_source=github&utm_medium=referral&page=upgrade-pr
|
|
Reviewer's GuideThis PR updates the @copilotkit/react-core package in the frontend to the latest patch release (1.8.9), ensuring you get the newest bug fixes and improvements by modifying the manifest and lockfile. Class Diagram: MCP Configuration Interface Changes in @copilotkit/react-core v1.8.8classDiagram
direction LR
class MCPServerConfig {
+String endpoint
+String apiKey (optional)
}
class CopilotKitProps {
-any mcpEndpoints (deprecated)
+MCPServerConfig[] mcpServers
}
CopilotKitProps ..> MCPServerConfig : uses
class CopilotApiConfig {
-any mcpEndpoints (deprecated)
+MCPServerConfig[] mcpServers
}
CopilotApiConfig ..> MCPServerConfig : uses
class CopilotRuntimeConstructorParams {
-any mcpEndpoints (deprecated)
+MCPServerConfig[] mcpServers
}
CopilotRuntimeConstructorParams ..> MCPServerConfig : uses
class UseCopilotChatReturn {
+MCPServerConfig[] mcpServers
+setMcpServers(servers: MCPServerConfig[]): void
}
UseCopilotChatReturn ..> MCPServerConfig : uses
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Important Review skippedIgnore keyword(s) in the title. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @KB01111, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
Summary of Changes
As gemini-code-assist, I have reviewed this pull request and compiled the following summary. This PR, automatically generated by Snyk, aims to upgrade the @copilotkit/react-core dependency from version 1.5.18 to 1.8.9. This is a significant jump across 67 versions and includes numerous updates, bug fixes, and new features as detailed in the release notes provided by Snyk. The primary goal is to keep the project's dependencies current, which helps in addressing potential vulnerabilities and incorporating the latest improvements from the library.
Highlights
- Dependency Upgrade: Upgraded the
@copilotkit/react-coredependency from version 1.5.18 to 1.8.9, incorporating changes from 67 intermediate versions. - New Features Included: The upgrade brings in features such as Model Context Protocol (MCP) support (v1.8.5) and image input capabilities with multi-model compatibility (v1.8.7).
- API and Refactor Changes: Includes refactors like renaming
mcpEndpointstomcpServers(v1.8.8) and various bug fixes related to tool parameter extraction and message streaming.
Changelog
- frontend/package.json
- Updated
@copilotkit/react-coredependency version from1.5.18to1.8.9.
- Updated
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.
| Feature | Command | Description |
|---|---|---|
| Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
| Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
| Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
| Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
New version arrives,
Sixty-seven steps forward,
Code now shines so bright.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
WalkthroughThis pull request updates the @copilotkit/react-core dependency in the frontend's package.json from version 1.5.18 to 1.8.9. The change is limited to this single dependency update, with no modifications to other dependencies, scripts, or application logic. The update is intended to incorporate the latest features, bug fixes, or improvements from the newer version of @copilotkit/react-core, potentially affecting components that rely on this package. Changes
Sequence DiagramThis diagram shows the interactions between components: sequenceDiagram
title @copilotkit/react-core Package Update (1.5.18 → 1.8.9)
actor User
participant App as "Frontend Application"
participant CopilotKit as "@copilotkit/react-core v1.8.9"
participant ReactUI as "@copilotkit/react-ui v1.5.18"
participant Backend as "Backend Services"
Note over CopilotKit: Updated from v1.5.18 to v1.8.9
User->>App: Interacts with application
App->>CopilotKit: Initialize Copilot features
activate CopilotKit
App->>ReactUI: Render UI components
activate ReactUI
alt User triggers Copilot functionality
User->>App: Request AI assistance
App->>CopilotKit: Process user request
CopilotKit->>Backend: Send API request
Backend-->>CopilotKit: Return response data
CopilotKit->>ReactUI: Update UI with AI response
ReactUI-->>User: Display AI-generated content
end
Note over CopilotKit: Version update may include:
Note over CopilotKit: - Bug fixes
Note over CopilotKit: - Performance improvements
Note over CopilotKit: - New features
Note over CopilotKit: - API changes
deactivate ReactUI
deactivate CopilotKit
Note for WindsurfPlease change the default marketplace provider to the following in the windsurf settings:Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts belowEmoji Descriptions:
Interact with the Bot:
Also you can trigger various commands with the bot by doing The current supported commands are
More commands to be added soon. |
|
LGTM 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request, automatically generated by Snyk, upgrades @copilotkit/react-core from version 1.5.18 to 1.8.9. This is a significant jump of 67 versions.
While keeping dependencies up-to-date is crucial, there are a couple of important points to consider with this upgrade:
-
Critical Issue: The
@copilotkit/react-uipackage, a frequent companion to@copilotkit/react-core, has not been upgraded and remains at version1.5.18. Given the large version change in@copilotkit/react-core, it's highly probable that@copilotkit/react-uialso needs to be upgraded to a compatible version (likely1.8.9as per the CopilotKit release notes) to prevent runtime errors and ensure compatibility. This is addressed in a specific review comment. -
Potential High-Severity Issue (MCP Agent Configuration): The release notes for
@copilotkit/react-core(specifically version 1.8.8) mention a refactor frommcpEndpointstomcpServersand the introduction of a newMCPServerConfiginterface that uses anendpointproperty. Your currentcoagents-provider.tsxdefines aServerConfigusing aurlproperty for the MCP agent. While backward compatibility is mentioned forproperties.mcpEndpoints(likely at theCopilotKitcomponent prop level), it's crucial to verify if this compatibility extends to the agent'smcp_configstructure withinuseCoAgent. If the upgraded core library now strictly expects anendpointproperty in this context, the MCP agent might not function correctly. This requires thorough testing after the@copilotkit/react-uiversion is aligned.
Due to the critical nature of the version mismatch, changes are requested. It's also recommended to perform comprehensive testing across all features utilizing CopilotKit functionalities after addressing the versioning, paying special attention to the MCP agent's behavior.
Summary of Findings
- Dependency Version Mismatch: The
@copilotkit/react-uipackage (version1.5.18) was not upgraded alongside@copilotkit/react-core(upgraded to1.8.9). This is likely to cause compatibility issues and has been flagged as a critical issue in a review comment onfrontend/package.json. - Potential MCP Agent Configuration Breakage: The upgrade to
@copilotkit/react-core@1.8.9includes changes to MCP (Model Context Protocol) server configuration (refactor frommcpEndpointstomcpServers, newMCPServerConfigwithendpointproperty in v1.8.8). The currentmcp-agentconfiguration incoagents-provider.tsxuses aurlproperty. This might conflict with the new version if backward compatibility doesn't cover this specific agent state configuration. This is a potential high-severity issue that needs thorough testing. A specific comment was not made as the relevant code incoagents-provider.tsxis not part of the diff.
Merge Readiness
This pull request has a critical issue that needs to be addressed before it can be considered for merging. Specifically, the @copilotkit/react-ui package must be upgraded to a version compatible with @copilotkit/react-core@1.8.9 (likely 1.8.9).
Additionally, due to the significant version jump (67 versions) and changes in the library (such as MCP server configuration), thorough end-to-end testing is essential after the versions are aligned. Particular attention should be paid to the functionality of the MCP agent.
As an AI, I am not authorized to approve pull requests. Please ensure these concerns are addressed and the changes are reviewed by other team members before merging.
| }, | ||
| "dependencies": { | ||
| "@copilotkit/react-core": "1.5.18", | ||
| "@copilotkit/react-core": "1.8.9", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR upgrades @copilotkit/react-core from 1.5.18 to 1.8.9, which is a substantial update.
However, the related package @copilotkit/react-ui (on line 15) remains at version 1.5.18. These two packages are typically versioned in tandem. For instance, the release notes for @copilotkit/react-core@1.8.9 indicate that @copilotkit/react-ui@1.8.9 is the corresponding version.
Using mismatched versions like this can lead to compatibility issues, runtime errors, or unexpected behavior. Could you please also upgrade @copilotkit/react-ui to version 1.8.9 to ensure compatibility with the new @copilotkit/react-core version?
Snyk has created this PR to upgrade @copilotkit/react-core from 1.5.18 to 1.8.9.
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
The recommended version is 67 versions ahead of your current version.
The recommended version was released a month ago.
Release notes
Package name: @copilotkit/react-core
-
1.8.9 - 2025-04-25
- @ copilotkit/runtime-client-gql@1.8.9
- @ copilotkit/shared@1.8.9
- @ copilotkit/runtime-client-gql@1.8.9
- @ copilotkit/react-core@1.8.9
- @ copilotkit/shared@1.8.9
- @ copilotkit/shared@1.8.9
- @ copilotkit/runtime-client-gql@1.8.9
- @ copilotkit/react-core@1.8.9
- @ copilotkit/shared@1.8.9
- f81a526: - Fix MCP tool schema structure to match interface requirements
- add utils
- @ copilotkit/shared@1.8.9
- @ copilotkit/shared@1.8.9
- @ copilotkit/runtime-client-gql@1.8.9
- @ copilotkit/shared@1.8.9
- @ copilotkit/runtime-client-gql@1.8.9
- @ copilotkit/react-core@1.8.9
- @ copilotkit/shared@1.8.9
- @ copilotkit/shared@1.8.9
- @ copilotkit/runtime-client-gql@1.8.9
- @ copilotkit/react-core@1.8.9
- @ copilotkit/shared@1.8.9
- f81a526: - Fix MCP tool schema structure to match interface requirements
- add utils
- @ copilotkit/shared@1.8.9
- @ copilotkit/shared@1.8.9
-
1.8.9-next.0 - 2025-04-25
-
1.8.8 - 2025-04-25
- Added standard starter for no agent frameworks (#1715)
- Fixed MCP tool parameter extraction to handle full tool objects (#1716, #1718)
- Fixed parse MCP tool params bug (#1716)
- Renamed
- Applied consistently across the codebase
- Affects API signatures in multiple components and interfaces
- Updated
- Added new interface
- Updated
- Added backward compatibility for
- Enhanced handling of MCP server configurations with improved deduplication logic
- Added more robust state management for MCP server configurations
- Implemented priority ordering where request-specific endpoints override base endpoints
- Updated reference documentation in MDX files to reflect the new property names
- Updated version to 1.8.8
- Demo/research canvas updates (#1707, #1709, #1711)
-
1.8.8-next.1 - 2025-04-25
-
1.8.8-next.0 - 2025-04-25
-
1.8.7 - 2025-04-22
- Added image input support with multi-model compatibility and paste functionality (@ suhasdeshpande, @ mnutt)
- Removed memory saver (#1690) (@ suhasdeshpande)
- Fixed telemetry by adding sampleWeight to support accurate volume estimation (#1690) (@ suhasdeshpande)
- Updated dependency copilotkit to v0.1.44 (#1684)
- Updated copilotkit examples to v1.8.6 (#1687)
- Fixed predictive state updates documentation for JavaScript agent (#1649) (@ ranst91)
- Added checkpointer to all graph of feature viewer (#1686) (@ ranst91)
- Updated GitHub workflow to not run preview on main branch (#1621) (@ suhasdeshpande)
-
1.8.7-next.0 - 2025-04-17
-
1.8.6 - 2025-04-16
- 7a04bd1: - fix: fix how results are communicated back on interrupt
- fix: do not allow followup for interrupt actions
- chore: improve TS docs for interrupt
- @ copilotkit/runtime-client-gql@1.8.6
- @ copilotkit/shared@1.8.6
- Updated dependencies [7a04bd1]
- @ copilotkit/react-core@1.8.6
- @ copilotkit/runtime-client-gql@1.8.6
- @ copilotkit/shared@1.8.6
- 7a04bd1: - fix: fix how results are communicated back on interrupt
- fix: do not allow followup for interrupt actions
- chore: improve TS docs for interrupt
- @ copilotkit/shared@1.8.6
- Updated dependencies [7a04bd1]
- @ copilotkit/react-core@1.8.6
- @ copilotkit/runtime-client-gql@1.8.6
- @ copilotkit/shared@1.8.6
- 7a04bd1: - fix: fix how results are communicated back on interrupt
- fix: do not allow followup for interrupt actions
- chore: improve TS docs for interrupt
- @ copilotkit/shared@1.8.6
- @ copilotkit/shared@1.8.6
- 7a04bd1: - fix: fix how results are communicated back on interrupt
- fix: do not allow followup for interrupt actions
- chore: improve TS docs for interrupt
- @ copilotkit/runtime-client-gql@1.8.6
- @ copilotkit/shared@1.8.6
- Updated dependencies [7a04bd1]
- @ copilotkit/react-core@1.8.6
- @ copilotkit/runtime-client-gql@1.8.6
- @ copilotkit/shared@1.8.6
- 7a04bd1: - fix: fix how results are communicated back on interrupt
- fix: do not allow followup for interrupt actions
- chore: improve TS docs for interrupt
- @ copilotkit/shared@1.8.6
- Updated dependencies [7a04bd1]
- @ copilotkit/react-core@1.8.6
- @ copilotkit/runtime-client-gql@1.8.6
- @ copilotkit/shared@1.8.6
- 7a04bd1: - fix: fix how results are communicated back on interrupt
- fix: do not allow followup for interrupt actions
- chore: improve TS docs for interrupt
- @ copilotkit/shared@1.8.6
- @ copilotkit/shared@1.8.6
-
1.8.6-next.0 - 2025-04-16
-
1.8.5 - 2025-04-11
- Add Model Context Protocol (MCP) support (#1625)
- Add powered-by-copilotkit watermark (#1626)
- Add new generic langgraph block in the registry (#1636)
- Make generic langgraph more agnostic between copilotcloud and standard langgraph (#1658)
- Fix duplicate messages on regenerate (#1613)
- Fix for every component that has default, make prop optional (#1605)
- Handle langgraph client specific errors when running lgc stream (#1653)
- Improve message streaming gotcha guide (#1657)
- Overhaul landing page (#1623)
- Remove old event (#1624)
- Add troubleshooting section for streamed messages disappearing (#1640)
- Explain removal of watermark in docs (#1641)
- Add section for font customization (#1647)
- Update loading-message-history.mdx (#1661)
- Add static llms.txt file (#1658)
- Add rename llms.txt => llms-full.txt and summarize llms.txt (#1659)
- Document conditionals and handler for interrupt (#1614)
- Fix documentation for tool based predictive state updates (#1632)
- Fix node interrupt doc setup code (#1633)
- Fix step glitch in predictive state doc (#1637)
- Add callout in router mode doc to exit agent workflow (#1635)
- Add state to main step for interrupt doc (#1634)
- Add new RB2B ID to docs site (#1651)
- Update wfcms for our examples (#1650)
- Fix the code snippet (#1653)
- Exit case fixes (#1654)
- Use 1.8.4 official release in demo viewer (#1665)
- Exit out of pre (#1666)
- Refactor demo-viewer: normal NextJS pages and update generation (#1610)
- Update README.md
- Bump sdk-python version (#1660)
- Add external package (#1663)
-
1.8.5-next.5 - 2025-04-11
-
1.8.5-next.4 - 2025-04-10
-
1.8.5-next.3 - 2025-04-09
-
1.8.5-next.2 - 2025-04-08
-
1.8.5-next.1 - 2025-04-04
-
1.8.5-next.0 - 2025-03-31
-
1.8.4 - 2025-03-28
- 4e28414: - use new interface properly
- Updated dependencies [f363760]
- @ copilotkit/shared@1.8.4
- @ copilotkit/runtime-client-gql@1.8.4
- 0846462: - fix: remove styles corresponding to OS dark theme
- fc11455: - fix: focus on text area when clicking in input box
- Updated dependencies [f363760]
- Updated dependencies [4e28414]
- @ copilotkit/shared@1.8.4
- @ copilotkit/react-core@1.8.4
- @ copilotkit/runtime-client-gql@1.8.4
- Updated dependencies [f363760]
- @ copilotkit/shared@1.8.4
- Updated dependencies [f363760]
- Updated dependencies [4e28414]
- @ copilotkit/shared@1.8.4
- @ copilotkit/react-core@1.8.4
- @ copilotkit/runtime-client-gql@1.8.4
- e652aac: - feat: add support for langgraph config schema
- f363760: - fix: when unable to find specified agent, show what's available
- Updated dependencies [f363760]
- @ copilotkit/shared@1.8.4
- Updated dependencies [f363760]
- @ copilotkit/shared@1.8.4
- f363760: - fix: when unable to find specified agent, show what's available
- 4e28414: - use new interface properly
- Updated dependencies [f363760]
- @ copilotkit/shared@1.8.4
- @ copilotkit/runtime-client-gql@1.8.4
- 0846462: - fix: remove styles corresponding to OS dark theme
- fc11455: - fix: focus on text area when clicking in input box
- Updated dependencies [f363760]
- Updated dependencies [4e28414]
- @ copilotkit/shared@1.8.4
- @ copilotkit/react-core@1.8.4
- @ copilotkit/runtime-client-gql@1.8.4
- Updated dependencies [f363760]
- @ copilotkit/shared@1.8.4
- Updated dependencies [f363760]
- Updated dependencies [4e28414]
- @ copilotkit/shared@1.8.4
- @ copilotkit/react-core@1.8.4
- @ copilotkit/runtime-client-gql@1.8.4
- e652aac: - feat: add support for langgraph config schema
- f363760: - fix: when unable to find specified agent, show what's available
- Updated dependencies [f363760]
- @ copilotkit/shared@1.8.4
- Updated dependencies [f363760]
- @ copilotkit/shared@1.8.4
- f363760: - fix: when unable to find specified agent, show what's available
-
1.8.4-next.4 - 2025-03-28
-
1.8.4-next.3 - 2025-03-28
-
1.8.4-next.2 - 2025-03-28
-
1.8.4-next.1 - 2025-03-28
-
1.8.4-next.0 - 2025-03-28
-
1.8.3 - 2025-03-27
-
1.8.3-next.0 - 2025-03-27
-
1.8.2 - 2025-03-26
-
1.8.2-next.4 - 2025-03-27
-
1.8.2-next.3 - 2025-03-27
-
1.8.2-next.2 - 2025-03-26
-
1.8.2-next.1 - 2025-03-26
-
1.8.2-next.0 - 2025-03-26
-
1.8.1 - 2025-03-25
-
1.8.1-next.1 - 2025-03-25
-
1.8.1-next.0 - 2025-03-25
-
1.8.0 - 2025-03-25
-
1.8.0-next.8 - 2025-03-25
-
1.8.0-next.7 - 2025-03-25
-
1.8.0-next.6 - 2025-03-25
-
1.8.0-next.5 - 2025-03-25
-
1.8.0-next.4 - 2025-03-24
-
1.8.0-next.3 - 2025-03-21
-
1.7.2-next.2 - 2025-03-20
-
1.7.2-next.1 - 2025-03-19
-
1.7.2-next.0 - 2025-03-14
-
1.7.1 - 2025-03-12
-
1.7.1-next.0 - 2025-03-11
-
1.7.0 - 2025-03-11
-
1.7.0-next.1 - 2025-03-11
-
1.7.0-next.0 - 2025-02-28
-
1.6.0 - 2025-02-27
-
1.6.0-next.12 - 2025-02-27
-
1.6.0-next.11 - 2025-02-25
-
1.6.0-next.10 - 2025-02-25
-
1.6.0-next.9 - 2025-02-24
-
1.6.0-next.8 - 2025-02-24
-
1.6.0-next.7 - 2025-02-21
-
1.6.0-next.6 - 2025-02-20
-
1.6.0-next.5 - 2025-02-20
-
1.6.0-next.4 - 2025-02-19
-
1.6.0-next.3 - 2025-02-18
-
1.6.0-next.2 - 2025-02-18
-
1.6.0-next.1 - 2025-02-17
-
1.6.0-next.0 - 2025-02-17
-
1.5.20 - 2025-02-14
-
1.5.20-next.0 - 2025-02-14
-
1.5.19 - 2025-02-13
-
1.5.19-next.1 - 2025-02-13
-
1.5.19-next.0 - 2025-02-13
-
1.5.18 - 2025-02-12
from @copilotkit/react-core GitHub release notes@ copilotkit/react-core
1.8.9
Patch Changes
@ copilotkit/react-ui
1.8.9
Patch Changes
@ copilotkit/sdk-js
1.8.9
Patch Changes
@ copilotkit/react-textarea
1.8.9
Patch Changes
@ copilotkit/runtime
1.8.9
Patch Changes
@ copilotkit/runtime-client-gql
1.8.9
Patch Changes
@ copilotkit/shared
1.8.9
@ copilotkit/react-core
1.8.9
Patch Changes
@ copilotkit/react-ui
1.8.9
Patch Changes
@ copilotkit/sdk-js
1.8.9
Patch Changes
@ copilotkit/react-textarea
1.8.9
Patch Changes
@ copilotkit/runtime
1.8.9
Patch Changes
@ copilotkit/runtime-client-gql
1.8.9
Patch Changes
@ copilotkit/shared
1.8.9
CopilotKit Changelog - v1.8.8
Features
Bug Fixes
Refactors
mcpEndpointstomcpServersfor naming consistencyCopilotKitProps,CopilotApiConfig, andCopilotRuntimeConstructorParamsinterfacesMCPServerConfigwithendpointand optionalapiKeypropertiesuseCopilotChatreturn interface to exposemcpServersandsetMcpServersmethodsproperties.mcpEndpointsOther Changes
Changelog
1.8.7 (April 22, 2025)
Features 🚀
Bug Fixes 🐛
Dependencies 📦
Documentation 📚
Development Workflow 🛠️
@ copilotkit/react-core
1.8.6
Patch Changes
@ copilotkit/react-ui
1.8.6
Patch Changes
@ copilotkit/sdk-js
1.8.6
Patch Changes
@ copilotkit/react-textarea
1.8.6
Patch Changes
@ copilotkit/runtime
1.8.6
Patch Changes
@ copilotkit/runtime-client-gql
1.8.6
Patch Changes
@ copilotkit/shared
1.8.6
@ copilotkit/react-core
1.8.6
Patch Changes
@ copilotkit/react-ui
1.8.6
Patch Changes
@ copilotkit/sdk-js
1.8.6
Patch Changes
@ copilotkit/react-textarea
1.8.6
Patch Changes
@ copilotkit/runtime
1.8.6
Patch Changes
@ copilotkit/runtime-client-gql
1.8.6
Patch Changes
@ copilotkit/shared
1.8.6
Features
Bug Fixes
Documentation
Other Changes
@ copilotkit/react-core
1.8.4
Patch Changes
@ copilotkit/react-ui
1.8.4
Patch Changes
@ copilotkit/sdk-js
1.8.4
Patch Changes
@ copilotkit/react-textarea
1.8.4
Patch Changes
@ copilotkit/runtime
1.8.4
Patch Changes
@ copilotkit/runtime-client-gql
1.8.4
Patch Changes
@ copilotkit/shared
1.8.4
Patch Changes
@ copilotkit/react-core
1.8.4
Patch Changes
@ copilotkit/react-ui
1.8.4
Patch Changes
@ copilotkit/sdk-js
1.8.4
Patch Changes
@ copilotkit/react-textarea
1.8.4
Patch Changes
@ copilotkit/runtime
1.8.4
Patch Changes
@ copilotkit/runtime-client-gql
1.8.4
Patch Changes
@ copilotkit/shared
1.8.4
Patch Changes
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.
For more information:
Summary by Sourcery
Build:
EntelligenceAI PR Summary
This PR updates a frontend dependency to a newer version.