chore: release v0.26.25#159
Conversation
WalkthroughThis pull request performs a version bump across the monorepo. The root package version is updated from 0.26.24 to 0.26.25, with the sandbox container image URI updated to reference the corresponding 0.26.25 image. All workspace packages are bumped from 0.26.23 to 0.26.24. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Review rate limit: 4/5 reviews remaining, refill in 12 minutes. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@package.json`:
- Around line 22-24: Update the workspace package version or the sandbox image
to keep them consistent: either bump the package "@protolabs/proto" to version
"0.26.25" (update its package.json version field and any relevant
changelog/lockfile) or change the root "config.sandboxImageUri" value back to
"ghcr.io/qwenlm/qwen-code:0.26.24" so it matches the current "@protolabs/proto"
release; ensure whichever you choose is reflected everywhere the package/version
is referenced (package.json of "@protolabs/proto", workspace manifests, and
lockfiles) so workspace versioning remains consistent.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: c710081a-add9-4092-86e6-2531c9cc00b4
⛔ Files ignored due to path filters (1)
package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (6)
package.jsonpackages/cli/package.jsonpackages/core/package.jsonpackages/test-utils/package.jsonpackages/web-templates/package.jsonpackages/webui/package.json
| "config": { | ||
| "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.26.24" | ||
| "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.26.25" | ||
| }, |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Read-only verification: confirm version skew scheme across workspaces.
set -euo pipefail
ROOT_VERSION="$(node -p "require('./package.json').version")"
echo "Root version: ${ROOT_VERSION}"
ROOT_SBOX="$(node -p "require('./package.json').config?.sandboxImageUri ?? ''")"
echo "Root sandboxImageUri: ${ROOT_SBOX}"
# Collect workspace versions
node - <<'NODE'
import fs from 'fs';
import path from 'path';
const root = process.cwd();
const rootPkg = JSON.parse(fs.readFileSync(path.join(root,'package.json'),'utf8'));
const workspaces = rootPkg.workspaces || [];
const patterns = workspaces[0]?.split?.(',') ? workspaces : workspaces; // tolerant
// repo uses ["packages/*"] in this file; hardcode minimal resolution to avoid glob libraries
const base = path.join(root, 'packages');
const entries = fs.existsSync(base) ? fs.readdirSync(base, { withFileTypes: true }) : [];
const versions = [];
for (const e of entries) {
if (!e.isDirectory()) continue;
const pkgPath = path.join(base, e.name, 'package.json');
if (!fs.existsSync(pkgPath)) continue;
const pkg = JSON.parse(fs.readFileSync(pkgPath,'utf8'));
versions.push({ name: pkg.name, version: pkg.version, sandboxImageUri: pkg.config?.sandboxImageUri ?? null });
}
console.log("Workspace packages (name/version/sandboxImageUri):");
for (const v of versions) {
console.log(`${v.name} ${v.version} sandboxImageUri=${v.sandboxImageUri}`);
}
NODERepository: protoLabsAI/protoCLI
Length of output: 526
Resolve workspace package version consistency: @protolabs/proto has version 0.26.24 but sandboxImageUri points to 0.26.25.
The root config.sandboxImageUri is set to 0.26.25, and the @protolabs/proto workspace package has the same sandboxImageUri value. However, @protolabs/proto is still at version 0.26.24. Either bump @protolabs/proto to 0.26.25 or downgrade its sandboxImageUri to match the release it's part of. Other workspace packages do not define sandboxImageUri, so they are unaffected.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@package.json` around lines 22 - 24, Update the workspace package version or
the sandbox image to keep them consistent: either bump the package
"@protolabs/proto" to version "0.26.25" (update its package.json version field
and any relevant changelog/lockfile) or change the root "config.sandboxImageUri"
value back to "ghcr.io/qwenlm/qwen-code:0.26.24" so it matches the current
"@protolabs/proto" release; ensure whichever you choose is reflected everywhere
the package/version is referenced (package.json of "@protolabs/proto", workspace
manifests, and lockfiles) so workspace versioning remains consistent.
Code Coverage Summary
CLI Package - Full Text ReportCore Package - Full Text ReportFor detailed HTML reports, please see the 'coverage-reports-22.x-ubuntu-latest' artifact from the main CI run. |
Automated version bump to v0.26.25 (patch).
Summary by CodeRabbit