update libraries for latest support and fix bad merge with recipe (#7486)

This commit is contained in:
Zane
2026-02-24 10:44:50 -08:00
committed by GitHub
parent a6e9ba6f56
commit 20166906a5
4 changed files with 530 additions and 1141 deletions
+507 -1121
View File
File diff suppressed because it is too large Load Diff
+19 -19
View File
@@ -44,7 +44,7 @@
"dependencies": {
"goose-acp-types": "file:../acp",
"@mcp-ui/client": "^6.1.0",
"@modelcontextprotocol/ext-apps": "^1.0.1",
"@modelcontextprotocol/ext-apps": "^1.1.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
@@ -56,7 +56,7 @@
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/themes": "^3.3.0",
"@tanstack/react-form": "^1.28.0",
"@tanstack/react-form": "^1.28.3",
"@types/react-router-dom": "^5.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
@@ -64,22 +64,22 @@
"cors": "^2.8.6",
"cronstrue": "^3.12.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.4",
"dotenv": "^17.3.1",
"electron-log": "^5.4.3",
"electron-squirrel-startup": "^1.0.1",
"electron-updater": "^6.7.3",
"electron-updater": "^6.8.3",
"electron-window-state": "^5.0.3",
"express": "^5.2.1",
"framer-motion": "^12.29.0",
"katex": "^0.16.28",
"framer-motion": "^12.34.3",
"katex": "^0.16.33",
"lodash": "^4.17.23",
"lucide-react": "^0.563.0",
"lucide-react": "^0.575.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.0",
"react-router-dom": "^7.13.1",
"react-select": "^5.10.2",
"react-syntax-highlighter": "^16.1.0",
"react-toastify": "^11.0.5",
@@ -90,7 +90,7 @@
"shell-quote": "^1.8.3",
"split-type": "^0.3.4",
"swr": "^2.4.0",
"tailwind-merge": "^3.4.0",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"unist-util-visit": "^5.1.0",
@@ -110,42 +110,42 @@
"@electron/fuses": "^1.8.0",
"@electron/remote": "^2.1.3",
"@eslint/js": "^9.39.2",
"@hey-api/openapi-ts": "^0.92.3",
"@modelcontextprotocol/sdk": "^1.26.0",
"@hey-api/openapi-ts": "^0.93.0",
"@modelcontextprotocol/sdk": "^1.27.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/cors": "^2.8.19",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/express": "^5.0.6",
"@types/lodash": "^4.17.23",
"@types/lodash": "^4.17.24",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/shell-quote": "^1.7.5",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.24",
"electron": "^40.4.0",
"electron": "^40.6.0",
"electron-devtools-installer": "^4.0.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"knip": "^5.83.1",
"jsdom": "^28.1.0",
"knip": "^5.85.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
+1
View File
@@ -66,6 +66,7 @@ export interface RequestOptions<
}>,
Pick<
ServerSentEventsOptions<TData>,
| 'onRequest'
| 'onSseError'
| 'onSseEvent'
| 'sseDefaultRetryDelay'
@@ -156,7 +156,9 @@ export default function RecipesView() {
setView('pair', {
disableAnimation: true,
resumeSessionId: session.id,
initialMessage: recipe.prompt ? { msg: recipe.prompt, images: [] } : undefined,
initialMessage: session.recipe?.prompt
? { msg: session.recipe.prompt, images: [] }
: undefined,
});
} catch (error) {
console.error('Failed to load recipe:', error);