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/prompts/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.10",
"@genkit-ai/core": "^0.5.10",
"@genkit-ai/core": "^0.9.1",

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

While this change upgrades @genkit-ai/core to fix a security vulnerability, it's likely to introduce breaking changes. The other @genkit-ai/* packages are still on version ^0.5.10, which may not be compatible with @genkit-ai/core@^0.9.1.

Since this is a significant version jump (from 0.5.x to 0.9.x), which often includes breaking changes for 0.x libraries, it's highly recommended to update all @genkit-ai packages to maintain compatibility and prevent potential build or runtime errors.

I suggest updating all related packages to a consistent and compatible version. For example:

"dependencies": {
  "@genkit-ai/ai": "^0.9.1",
  "@genkit-ai/core": "^0.9.1",
  "@genkit-ai/dotprompt": "^0.9.1",
  "@genkit-ai/flow": "^0.9.1",
  "@genkit-ai/googleai": "^0.9.1",
  ...
}

Please verify the latest compatible versions for these packages and update them accordingly.

"@genkit-ai/dotprompt": "^0.5.10",
"@genkit-ai/flow": "^0.5.10",
"@genkit-ai/googleai": "^0.5.10",
Expand Down