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
4 changes: 2 additions & 2 deletions samples/js-menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
"license": "ISC",
"dependencies": {
"@genkit-ai/ai": "^0.5.0",
"@genkit-ai/core": "^0.5.0",
"@genkit-ai/core": "^0.9.1",
"@genkit-ai/dotprompt": "^0.5.0",
"@genkit-ai/flow": "^0.5.0",
"@genkit-ai/dev-local-vectorstore": "^0.5.0",
"@genkit-ai/firebase": "^0.5.0",
"@genkit-ai/firebase": "^0.9.1",
Comment on lines +19 to +23
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

Updating @genkit-ai/core and @genkit-ai/firebase is correct for fixing the vulnerabilities, but this introduces a significant version mismatch with other @genkit-ai/* packages, which remain on ^0.5.0. Such inconsistencies in a framework like Genkit often lead to runtime errors or build failures.

To ensure compatibility and stability, all @genkit-ai/* packages should be on the same version. I recommend updating the following packages to ^0.9.1:

  • @genkit-ai/ai
  • @genkit-ai/dotprompt
  • @genkit-ai/flow
  • @genkit-ai/dev-local-vectorstore
  • @genkit-ai/evaluator
  • @genkit-ai/vertexai
  • genkit (in devDependencies)

"@genkit-ai/evaluator": "^0.5.0",
"@genkit-ai/vertexai": "^0.5.0",
"zod": "^3.22.4"
Expand Down