Compare commits

..

1 Commits

Author SHA1 Message Date
github-actions[bot]
838a5cd11a chore(release): v0.2.0-nightly.20251108.3c01c715 2025-11-08 00:11:26 +00:00
7 changed files with 15 additions and 14 deletions

12
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@qwen-code/qwen-code",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@qwen-code/qwen-code",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"workspaces": [
"packages/*"
],
@@ -16024,7 +16024,7 @@
},
"packages/cli": {
"name": "@qwen-code/qwen-code",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"dependencies": {
"@google/genai": "1.16.0",
"@iarna/toml": "^2.2.5",
@@ -16139,7 +16139,7 @@
},
"packages/core": {
"name": "@qwen-code/qwen-code-core",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"hasInstallScript": true,
"dependencies": {
"@google/genai": "1.16.0",
@@ -16278,7 +16278,7 @@
},
"packages/test-utils": {
"name": "@qwen-code/qwen-code-test-utils",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"dev": true,
"license": "Apache-2.0",
"devDependencies": {
@@ -16290,7 +16290,7 @@
},
"packages/vscode-ide-companion": {
"name": "qwen-code-vscode-ide-companion",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"license": "LICENSE",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",

View File

@@ -1,6 +1,6 @@
{
"name": "@qwen-code/qwen-code",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"engines": {
"node": ">=20.0.0"
},
@@ -13,7 +13,7 @@
"url": "git+https://github.com/QwenLM/qwen-code.git"
},
"config": {
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.0-preview.0"
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.0-nightly.20251108.3c01c715"
},
"scripts": {
"start": "cross-env node scripts/start.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@qwen-code/qwen-code",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"description": "Qwen Code",
"repository": {
"type": "git",
@@ -25,7 +25,7 @@
"dist"
],
"config": {
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.0-preview.0"
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.0-nightly.20251108.3c01c715"
},
"dependencies": {
"@google/genai": "1.16.0",

View File

@@ -7,6 +7,7 @@
/* ACP defines a schema for a simple (experimental) JSON-RPC protocol that allows GUI applications to interact with agents. */
import { z } from 'zod';
import { EOL } from 'node:os';
import * as schema from './schema.js';
export * from './schema.js';
@@ -172,7 +173,7 @@ class Connection {
const decoder = new TextDecoder();
for await (const chunk of output) {
content += decoder.decode(chunk, { stream: true });
const lines = content.split('\n');
const lines = content.split(EOL);
content = lines.pop() || '';
for (const line of lines) {

View File

@@ -1,6 +1,6 @@
{
"name": "@qwen-code/qwen-code-core",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"description": "Qwen Code Core",
"repository": {
"type": "git",

View File

@@ -1,6 +1,6 @@
{
"name": "@qwen-code/qwen-code-test-utils",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"private": true,
"main": "src/index.ts",
"license": "Apache-2.0",

View File

@@ -2,7 +2,7 @@
"name": "qwen-code-vscode-ide-companion",
"displayName": "Qwen Code Companion",
"description": "Enable Qwen Code with direct access to your VS Code workspace.",
"version": "0.2.0-preview.0",
"version": "0.2.0-nightly.20251108.3c01c715",
"publisher": "qwenlm",
"icon": "assets/icon.png",
"repository": {