Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@protolabsai/proto",
"version": "0.38.1",
"version": "0.38.2",
"publishConfig": {
"access": "public"
},
Expand All @@ -20,7 +20,7 @@
"url": "https://github.com/protoLabsAI/protoCLI/issues"
},
"config": {
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.38.1"
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.38.2"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 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
fi

Repository: 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.2 is 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.

},
"scripts": {
"start": "cross-env node scripts/start.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@protolabs/proto",
"version": "0.38.1",
"version": "0.38.2",
"description": "proto",
"repository": {
"type": "git",
Expand Down Expand Up @@ -37,7 +37,7 @@
"dist"
],
"config": {
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.38.1"
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.38.2"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.14.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qwen-code/qwen-code-core",
"version": "0.38.1",
"version": "0.38.2",
"description": "proto core",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qwen-code/qwen-code-test-utils",
"version": "0.38.1",
"version": "0.38.2",
"private": true,
"main": "src/index.ts",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qwen-code/web-templates",
"version": "0.38.1",
"version": "0.38.2",
"description": "Web templates bundled as embeddable JS/CSS strings",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/webui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qwen-code/webui",
"version": "0.38.1",
"version": "0.38.2",
"description": "Shared UI components for proto packages",
"type": "module",
"main": "./dist/index.cjs",
Expand Down
Loading