Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/chatbot/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"license": "ISC",
"dependencies": {
"@genkit-ai/ai": "^0.5.8",
"@genkit-ai/core": "^0.5.8",
"@genkit-ai/core": "^0.9.12",
"@genkit-ai/dotprompt": "^0.5.8",
"@genkit-ai/flow": "^0.5.8",
"@genkit-ai/vertexai": "^0.5.8",
Comment on lines 16 to 20
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

This PR upgrades @genkit-ai/core but leaves other @genkit-ai/* packages on an older version. The @genkit-ai/* packages are developed together and are expected to be on compatible versions. A large version jump for just the core package from 0.5.x to 0.9.x will likely introduce breaking API changes that will cause the application to fail at runtime. To ensure compatibility, all related @genkit-ai/* packages should be upgraded together.

Suggested change
"@genkit-ai/ai": "^0.5.8",
"@genkit-ai/core": "^0.5.8",
"@genkit-ai/core": "^0.9.12",
"@genkit-ai/dotprompt": "^0.5.8",
"@genkit-ai/flow": "^0.5.8",
"@genkit-ai/vertexai": "^0.5.8",
"@genkit-ai/ai": "^0.9.12",
"@genkit-ai/core": "^0.9.12",
"@genkit-ai/dotprompt": "^0.9.12",
"@genkit-ai/flow": "^0.9.12",
"@genkit-ai/vertexai": "^0.9.12",

Expand Down