-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
ci(changesets): version packages #972
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,10 +4,10 @@ | |
| "dependencies": { | ||
| "@ai-sdk/openai": "^3.0.0", | ||
| "@voltagent/cli": "^0.1.21", | ||
| "@voltagent/core": "^2.1.5", | ||
| "@voltagent/core": "^2.1.6", | ||
| "@voltagent/libsql": "^2.0.2", | ||
| "@voltagent/logger": "^2.0.2", | ||
| "@voltagent/server-hono": "^2.0.3", | ||
| "@voltagent/server-hono": "^2.0.4", | ||
|
Comment on lines
+7
to
+10
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Checking VoltAgent package versions on npm registry..."
# Check each package version
packages=(
"@voltagent/core:2.1.6"
"@voltagent/libsql:2.0.2"
"@voltagent/logger:2.0.2"
"@voltagent/server-hono:2.0.4"
)
for package_spec in "${packages[@]}"; do
IFS=':' read -r pkg_name version <<< "$package_spec"
pkg_encoded=$(echo "$pkg_name" | sed 's/@/%40/g; s/\//%2f/g')
echo "Checking $pkg_name@$version..."
if curl -fsSL "https://registry.npmjs.org/${pkg_encoded}/${version}" 2>/dev/null | jq -e '.version' > /dev/null 2>&1; then
echo "✓ $pkg_name@$version exists"
else
echo "✗ $pkg_name@$version NOT FOUND"
fi
doneRepository: VoltAgent/voltagent Length of output: 405 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Checking available versions for missing packages..."
# Check available versions
for pkg in "@voltagent/core" "@voltagent/server-hono"; do
pkg_encoded=$(echo "$pkg" | sed 's/@/%40/g; s/\//%2f/g')
echo "Available versions for $pkg:"
curl -fsSL "https://registry.npmjs.org/${pkg_encoded}" 2>/dev/null | jq -r '.versions | keys[] | select(startswith("2."))' | tail -5
doneRepository: VoltAgent/voltagent Length of output: 249 Fix invalid dependency versions in package.json.
These missing versions will cause npm install to fail for this example. 🤖 Prompt for AI Agents |
||
| "ai": "^6.0.0", | ||
| "zod": "^3.25.76" | ||
| }, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,10 +3,10 @@ | |
| "author": "", | ||
| "dependencies": { | ||
| "@voltagent/cli": "^0.1.21", | ||
| "@voltagent/core": "^2.1.5", | ||
| "@voltagent/core": "^2.1.6", | ||
| "@voltagent/libsql": "^2.0.2", | ||
| "@voltagent/logger": "^2.0.2", | ||
| "@voltagent/server-hono": "^2.0.3", | ||
| "@voltagent/server-hono": "^2.0.4", | ||
|
Comment on lines
+6
to
+9
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
# Check all four packages mentioned in the code snippet
echo "Checking `@voltagent/core`@2.1.6..."
curl -fsSL "https://registry.npmjs.org/@voltagent%2fcore/2.1.6" | jq '.version' 2>/dev/null || echo "NOT FOUND"
echo "Checking `@voltagent/libsql`@2.0.2..."
curl -fsSL "https://registry.npmjs.org/@voltagent%2flibsql/2.0.2" | jq '.version' 2>/dev/null || echo "NOT FOUND"
echo "Checking `@voltagent/logger`@2.0.2..."
curl -fsSL "https://registry.npmjs.org/@voltagent%2flogger/2.0.2" | jq '.version' 2>/dev/null || echo "NOT FOUND"
echo "Checking `@voltagent/server-hono`@2.0.4..."
curl -fsSL "https://registry.npmjs.org/@voltagent%2fserver-hono/2.0.4" | jq '.version' 2>/dev/null || echo "NOT FOUND"Repository: VoltAgent/voltagent Length of output: 182 🌐 Web query:
💡 Result: I couldn't find an If you want to check yourself or install a specific version:
Sources: 🌐 Web query:
💡 Result: I couldn't find a published Sources:
🌐 Web query:
💡 Result: Yes — Install: Sources: 🌐 Web query:
💡 Result: I couldn't find an Sources:
Fix package versions: The following versions do not exist on npm and will cause installation to fail:
Only 🤖 Prompt for AI Agents |
||
| "ai": "^6.0.0", | ||
| "zod": "^3.25.76" | ||
| }, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: VoltAgent/voltagent
Length of output: 149
🌐 Web query:
npm@voltagent/core2.1.6 package💡 Result:
I couldn't find a published npm release for
@voltagent/coreversion 2.1.6. The official npm listing and project release notes show other versions (e.g., 2.1.0 / 1.x series) — install the package using the published/latest version instead (npm info on the package and the project repo/releases linked below). [1][2][3]Sources:
@voltagent/core. [1]🌐 Web query:
npm@voltagent/server-hono2.0.4 package💡 Result:
I couldn't find an npm release
@voltagent/server-hono@2.0.4. The package on npm is published as version 1.0.4, and the VoltAgent docs reference the@voltagent/server-honoserver provider (v2.0.x docs). (npmjs.com)Citations:
Fix dependency versions—@voltagent/core@2.1.6 and
@voltagent/server-hono@2.0.4 do not exist in the npm registry.@voltagent/core@2.1.6is not published; the latest 2.x version available is 2.1.0. Use^2.1.0instead.@voltagent/server-hono@2.0.4is not published; the actual published version is 1.0.4. Use^1.0.4instead.These changes are required before the code can be installed.
🤖 Prompt for AI Agents