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-coffee-shop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"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",
"genkitx-chromadb": "^0.5.0",
"@genkit-ai/dev-local-vectorstore": "^0.5.0",
"@genkit-ai/firebase": "^0.5.0",
"@genkit-ai/firebase": "^0.9.1",
"@genkit-ai/googleai": "^0.5.0",
"genkitx-ollama": "^0.5.0",
"genkitx-pinecone": "^0.5.0",
Comment on lines 18 to 27
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 updates @genkit-ai/core and @genkit-ai/firebase but leaves other @genkit-ai/* packages at an older version. Mixing versions of packages within the same framework (e.g., @genkit-ai/core@^0.9.1 with @genkit-ai/ai@^0.5.0) can lead to incompatibilities and runtime errors. It's crucial to keep all framework-related packages in sync.

Please update all @genkit-ai/* and genkitx-* dependencies to ^0.9.1.

Additionally, other @genkit-ai/* packages not visible in this diff view (like @genkit-ai/evaluator and @genkit-ai/vertexai) and the genkit CLI in devDependencies should also be updated to the corresponding version for consistency.

Suggested change
"@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",
"genkitx-chromadb": "^0.5.0",
"@genkit-ai/dev-local-vectorstore": "^0.5.0",
"@genkit-ai/firebase": "^0.5.0",
"@genkit-ai/firebase": "^0.9.1",
"@genkit-ai/googleai": "^0.5.0",
"genkitx-ollama": "^0.5.0",
"genkitx-pinecone": "^0.5.0",
"@genkit-ai/ai": "^0.9.1",
"@genkit-ai/core": "^0.9.1",
"@genkit-ai/dotprompt": "^0.9.1",
"@genkit-ai/flow": "^0.9.1",
"genkitx-chromadb": "^0.9.1",
"@genkit-ai/dev-local-vectorstore": "^0.9.1",
"@genkit-ai/firebase": "^0.9.1",
"@genkit-ai/googleai": "^0.9.1",
"genkitx-ollama": "^0.9.1",
"genkitx-pinecone": "^0.9.1",

Expand Down