chore: release v0.38.2#238
Conversation
WalkthroughThis PR performs a minor version bump from 0.38.1 to 0.38.2 across all package.json files in the monorepo and updates the qwen-code Docker image tag in the root and CLI packages' sandbox configuration. ChangesMonorepo Version Bump
Possibly Related PRs
🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 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)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@package.json`:
- Line 23: The package.json entry for sandboxImageUri references a non-existent
Docker image tag ("sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.38.2"); verify
that the image is published and the tag is correct and accessible, then update
sandboxImageUri to a valid, published image (or revert to the last-known-good
tag) so the runtime can pull the image; ensure the new value uses the correct
registry host, repository and tag and re-run a pull to confirm availability
before committing.
🪄 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: dfaea873-35ab-4b1e-a863-8bff20fe1341
⛔ 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.38.1" | ||
| "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.38.2" |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Check if the Docker image ghcr.io/qwenlm/qwen-code:0.38.2 exists
echo "Checking if Docker image ghcr.io/qwenlm/qwen-code:0.38.2 exists..."
# Try to pull the manifest without downloading the image
docker manifest inspect ghcr.io/qwenlm/qwen-code:0.38.2 > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "✓ Docker image ghcr.io/qwenlm/qwen-code:0.38.2 exists"
docker manifest inspect ghcr.io/qwenlm/qwen-code:0.38.2 | grep -E '(schemaVersion|mediaType|platform)' | head -10
else
echo "✗ Docker image ghcr.io/qwenlm/qwen-code:0.38.2 not found"
exit 1
fiRepository: protoLabsAI/protoCLI
Length of output: 188
Docker image does not exist. Cannot approve this change.
The referenced Docker image ghcr.io/qwenlm/qwen-code:0.38.2 is not available in the registry. Verify that:
- The image has been published to the registry
- The tag
0.38.2is correct - The registry is accessible
The sandboxImageUri should only reference an available image to prevent runtime failures.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@package.json` at line 23, The package.json entry for sandboxImageUri
references a non-existent Docker image tag ("sandboxImageUri":
"ghcr.io/qwenlm/qwen-code:0.38.2"); verify that the image is published and the
tag is correct and accessible, then update sandboxImageUri to a valid, published
image (or revert to the last-known-good tag) so the runtime can pull the image;
ensure the new value uses the correct registry host, repository and tag and
re-run a pull to confirm availability before committing.
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.38.2 (patch).
Summary by CodeRabbit