-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Upgrade @copilotkit/react-ui from 1.5.18 to 1.8.9 #3
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-ui from 1.5.18 to 1.8.9. See this package in npm: @copilotkit/react-ui 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 GuideUpgraded the @copilotkit/react-ui dependency in the frontend to version 1.8.9 by updating package.json and regenerating lockfile to pull in the latest patch releases. Class Diagram: MCP Configuration Interface Updates in @copilotkit/react-ui v1.8.8classDiagram
direction LR
class CopilotKitProps {
-mcpEndpoints: string[]
+mcpServers: MCPServerConfig[]
}
class CopilotApiConfig {
-mcpEndpoints: string[]
+mcpServers: MCPServerConfig[]
}
class CopilotRuntimeConstructorParams {
-mcpEndpoints: string[]
+mcpServers: MCPServerConfig[]
}
class MCPServerConfig {
<<Interface>>
+endpoint: string
+apiKey: string
}
class UseCopilotChatReturn {
<<Interface>>
+mcpServers: MCPServerConfig[]
+setMcpServers(servers: MCPServerConfig[]): void
}
CopilotKitProps ..> MCPServerConfig : uses
CopilotApiConfig ..> MCPServerConfig : uses
CopilotRuntimeConstructorParams ..> MCPServerConfig : uses
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
Hello team! Gemini here, providing a summary for this pull request. This PR was automatically generated by Snyk to upgrade the @copilotkit/react-ui dependency from version 1.5.18 to 1.8.9. The primary goal is to keep our dependencies up-to-date, which helps in addressing potential security vulnerabilities and incorporating the latest features and bug fixes from the library. The upgrade spans 67 versions and includes changes released over the past month.
Highlights
- Dependency Upgrade: The core change is the upgrade of the
@copilotkit/react-uipackage from version1.5.18to1.8.9. - New Features: The upgraded versions introduce features such as image input support with multi-model compatibility (v1.8.7) and Model Context Protocol (MCP) support (v1.8.5).
- Bug Fixes and Refactors: Several bug fixes are included, addressing issues like duplicate messages on regenerate, MCP tool parameter extraction, and telemetry. A notable refactor in v1.8.8 renames
mcpEndpointstomcpServersfor consistency across the codebase. - Documentation Updates: The release notes indicate various documentation improvements and fixes across the included versions.
Changelog
- frontend/package.json
- Updated the version of
@copilotkit/react-uidependency from1.5.18to1.8.9. - This includes changes from versions 1.5.19 through 1.8.9, incorporating new features, bug fixes, and refactors as detailed in the release notes provided in the PR description.
- Updated the version of
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.
A package version leaps,
From old to new, the code keeps.
Bugs flee, features bloom,
Clearing out the dusty room,
Dependency health it reaps.
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 PR updates the '@copilotkit/react-ui' dependency in the frontend's package.json from version 1.5.18 to 1.8.9. The change is limited to dependency management and does not modify any application logic or scripts. The update may introduce new features, bug fixes, or improvements from the upstream package, potentially affecting UI components that depend on it. Changes
Sequence DiagramThis diagram shows the interactions between components: sequenceDiagram
title CopilotKit React UI Component Interaction Flow
actor User
participant ReactApp as "React Application"
participant CopilotProvider as "CopilotKit Provider"
participant ReactUI as "@copilotkit/react-ui v1.8.9"
participant ReactCore as "@copilotkit/react-core v1.5.18"
participant APIService as "Backend API Service"
Note over ReactUI: Updated from v1.5.18 to v1.8.9
User->>ReactApp: Interact with UI
ReactApp->>CopilotProvider: Initialize CopilotKit
CopilotProvider->>ReactCore: Set up core functionality
CopilotProvider->>ReactUI: Register UI components
alt User triggers copilot interaction
User->>ReactUI: Interact with copilot component
activate ReactUI
ReactUI->>ReactCore: Process user input
activate ReactCore
ReactCore->>APIService: Send request to backend
APIService-->>ReactCore: Return response
ReactCore-->>ReactUI: Format response data
ReactUI-->>User: Display AI-assisted content
deactivate ReactCore
deactivate ReactUI
end
Note over ReactUI: v1.8.9 may include new features, bug fixes, or performance improvements compared to v1.5.18
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 Snyk PR upgrades @copilotkit/react-ui from 1.5.18 to 1.8.9, which is a significant jump of 67 versions. While keeping dependencies up-to-date is crucial, this particular upgrade requires careful attention to ensure compatibility with other @copilotkit packages, specifically @copilotkit/react-core.
The release notes for @copilotkit/react-ui@1.8.9 indicate that it depends on @copilotkit/react-core@1.8.9. However, this PR does not update @copilotkit/react-core, which remains at 1.5.18. This version mismatch is a primary concern and needs to be addressed.
Additionally, the release notes for version 1.8.8 (included in this upgrade) mention a significant refactor: mcpEndpoints was renamed to mcpServers, affecting API signatures in CopilotKitProps, CopilotApiConfig, CopilotRuntimeConstructorParams, and the useCopilotChat hook. While backward compatibility for properties.mcpEndpoints is mentioned, thorough testing of any integrations using these APIs is highly recommended to ensure the application continues to function as expected.
Summary of Findings
- Dependency Version Mismatch:
@copilotkit/react-uihas been upgraded to1.8.9. According to its release notes, this version depends on@copilotkit/react-core@1.8.9. However,@copilotkit/react-corein thepackage.jsonremains at1.5.18. This mismatch is critical and can lead to runtime issues. - Potential Breaking API Changes: The upgraded CopilotKit version (specifically 1.8.8, which is part of the 1.8.9 release) includes a refactor renaming
mcpEndpointstomcpServers. This change affects API signatures. Although backward compatibility is mentioned in the release notes, this change requires thorough testing to ensure no regressions. - Lockfile Update: After addressing the
@copilotkit/react-coreversion inpackage.json, thepnpm-lock.yamlfile will need to be regenerated by runningpnpm install.
Merge Readiness
This PR, generated by Snyk, aims to upgrade @copilotkit/react-ui. However, a critical issue has been identified: the upgraded @copilotkit/react-ui@1.8.9 depends on @copilotkit/react-core@1.8.9, but the project's @copilotkit/react-core is still at 1.5.18. This version mismatch must be addressed by updating @copilotkit/react-core in package.json and then regenerating the pnpm-lock.yaml file to prevent potential runtime errors or build failures.
Furthermore, the upgrade spans 67 versions and includes significant changes, such as the renaming of mcpEndpoints to mcpServers in version 1.8.8. While backward compatibility is mentioned for this specific change, the substantial nature of the upgrade necessitates thorough end-to-end testing of all functionalities relying on CopilotKit components and hooks.
Due to the critical dependency mismatch, I recommend that this PR not be merged until @copilotkit/react-core is also updated to a compatible version, the lock file is correctly updated, and comprehensive testing is performed to confirm application stability and functionality. As an AI, I am not authorized to approve pull requests; these changes should be reviewed and approved by the appropriate team members before merging.
| "dependencies": { | ||
| "@copilotkit/react-core": "1.5.18", | ||
| "@copilotkit/react-ui": "1.5.18", | ||
| "@copilotkit/react-ui": "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 upgrade to @copilotkit/react-ui@1.8.9 is a substantial jump (67 versions). The release notes for @copilotkit/react-ui@1.8.9 (and its transitive dependencies like @copilotkit/react-textarea@1.8.9) state that they depend on @copilotkit/react-core@1.8.9.
Currently, @copilotkit/react-core (line 14) is at version 1.5.18:
// frontend/package.json
13: "dependencies": {
14: "@copilotkit/react-core": "1.5.18",
15: "@copilotkit/react-ui": "1.8.9",
...This version mismatch between @copilotkit/react-ui and its core dependency @copilotkit/react-core could lead to runtime errors, unexpected behavior, or build issues due to API incompatibilities.
It's highly recommended to also upgrade @copilotkit/react-core to 1.8.9 (or the latest compatible version) in conjunction with this change to ensure compatibility and stability. After updating package.json, please remember to run pnpm install to update the pnpm-lock.yaml file accordingly.
Could you please address this by either updating this PR or creating a new one to include the @copilotkit/react-core upgrade?
Additionally, please note that version 1.8.8 of CopilotKit (included in this upgrade) introduced a refactor renaming mcpEndpoints to mcpServers. While backward compatibility is mentioned in the release notes, thorough testing of any related integrations is advised.
Snyk has created this PR to upgrade @copilotkit/react-ui 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-ui
-
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-ui 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.