chore: release v0.27.0#164
Conversation
WalkthroughVersion bump release updating all package manifests from 0.26.24/0.26.25 to 0.27.0 across the monorepo. The root package.json also updates the Docker sandbox image URI reference to the corresponding 0.27.0 tag. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 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)
Review rate limit: 3/5 reviews remaining, refill in 20 minutes and 24 seconds. Comment |
There was a problem hiding this comment.
🧹 Nitpick comments (1)
packages/webui/package.json (1)
3-3: ⚡ Quick winAdd an explicit Node 20+ engine constraint in this manifest.
This package lacks
engines.node, so it doesn’t enforce the repo runtime baseline at install time.Proposed change
{ "name": "@qwen-code/webui", "version": "0.27.0", @@ "author": "Qwen Team", - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=20" + } }As per coding guidelines,
package.json: "Use Node.js 20+ as the runtime environment".🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@packages/webui/package.json` at line 3, Add an explicit Node 20+ engine constraint in package.json by adding an "engines" field with "node": ">=20" (e.g., alongside the existing "version": "0.27.0") so installs enforce the repo runtime baseline; update the package manifest (packages/webui/package.json) to include this engines.node requirement.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Nitpick comments:
In `@packages/webui/package.json`:
- Line 3: Add an explicit Node 20+ engine constraint in package.json by adding
an "engines" field with "node": ">=20" (e.g., alongside the existing "version":
"0.27.0") so installs enforce the repo runtime baseline; update the package
manifest (packages/webui/package.json) to include this engines.node requirement.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: d8b275ee-f5b7-4f93-b7bc-a0e26f612501
⛔ 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
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.27.0 (minor).
Summary by CodeRabbit