Compare commits

..

1 Commits

Author SHA1 Message Date
github-actions[bot]
8d2d02edd7 chore(release): v0.0.8-nightly.7 2025-08-22 00:11:14 +00:00
13 changed files with 38 additions and 66 deletions

View File

@@ -1,37 +1,26 @@
# Changelog
## 0.0.8
- Synced upstream `gemini-cli` to v0.1.19.
- Updated documentation branding from **Gemini CLI** to **Qwen Code**.
- Added multilingual docs links in `README.md`.
- Added deterministic cache control for the DashScope provider.
- Added option to choose a project-level or global save location.
- Limited `grep` results to 25 items by default.
- `grep` now respects `.geminiignore`.
- Miscellaneous improvements and bug fixes.
## 0.0.7
- Synced upstream `gemini-cli` to v0.1.18.
- Fixed MCP tools.
- Fixed Web Fetch tool.
- Fixed Web Search tool by switching from Google/Gemini to the Tavily API.
- Made tool calls tolerant of invalid-JSON parameters occasionally returned by the LLM.
- Prevented concurrent query submissions in rare cases.
- Corrected Qwen logger exit-handler setup.
- Separated static QR code and dynamic spinner components.
- Fix MCP tools
- Fix Web Fetch tool
- Fix Web Search tool, by replacing web search from Google/Gemini to Tavily API
- Fix: Compatible with occasional tool call parameters returned by LLM that are invalid JSON
- Fix: prevent concurrent query submissions on some rare cases
- Fix: incorrect qwen logger exit handler setup
- Fix: seperate static QR code and dynamic spin components
- Sync gemini-cli to v0.1.18
## 0.0.6
- Added usage statistics logging for Qwen integration.
- Made `/init` respect the configured context filename and aligned docs with `QWEN.md`.
- Fixed `EPERM` error when running `qwen --sandbox` on macOS.
- Fixed terminal flicker while waiting for login.
- Fixed `glm-4.5` model request error.
- Add usage statistics logging for Qwen integration
- Make `/init` command respect configured context filename and align docs with QWEN.md
- Fix EPERM error when run `qwen --sandbox` in macOS
- Fix terminal flicker when waiting for login
- Fix `glm-4.5` model request error
## 0.0.5
- Added Qwen OAuth login and up to 2,000 free requests per day.
- Synced upstream `gemini-cli` to v0.1.17.
- Added the `systemPromptMappings` configuration option.
- Support Qwen OAuth login and provide up to 2000 free requests per day
- Sync gemini-cli to v0.1.17
- Add systemPromptMappings Configuration Feature

View File

@@ -41,7 +41,7 @@ For security and isolation, Qwen Code can be run inside a container. This is the
You can run the published sandbox image directly. This is useful for environments where you only have Docker and want to run the CLI.
```bash
# Run the published sandbox image
docker run --rm -it ghcr.io/qwenlm/qwen-code:0.0.8
docker run --rm -it ghcr.io/qwenlm/qwen-code:0.0.7
```
- **Using the `--sandbox` flag:**
If you have Qwen Code installed locally (using the standard installation described above), you can instruct it to run inside the sandbox container.

12
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@qwen-code/qwen-code",
"version": "0.0.8",
"version": "0.0.8-nightly.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@qwen-code/qwen-code",
"version": "0.0.8",
"version": "0.0.8-nightly.7",
"workspaces": [
"packages/*"
],
@@ -11758,7 +11758,7 @@
},
"packages/cli": {
"name": "@qwen-code/qwen-code",
"version": "0.0.8",
"version": "0.0.8-nightly.7",
"dependencies": {
"@google/genai": "1.9.0",
"@iarna/toml": "^2.2.5",
@@ -11963,7 +11963,7 @@
},
"packages/core": {
"name": "@qwen-code/qwen-code-core",
"version": "0.0.8",
"version": "0.0.8-nightly.7",
"dependencies": {
"@google/genai": "1.9.0",
"@modelcontextprotocol/sdk": "^1.11.0",
@@ -12114,7 +12114,7 @@
},
"packages/test-utils": {
"name": "@qwen-code/qwen-code-test-utils",
"version": "0.0.8",
"version": "0.0.8-nightly.7",
"license": "Apache-2.0",
"devDependencies": {
"typescript": "^5.3.3"
@@ -12125,7 +12125,7 @@
},
"packages/vscode-ide-companion": {
"name": "qwen-code-vscode-ide-companion",
"version": "0.0.8",
"version": "0.0.8-nightly.7",
"license": "LICENSE",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",

View File

@@ -1,6 +1,6 @@
{
"name": "@qwen-code/qwen-code",
"version": "0.0.8",
"version": "0.0.8-nightly.7",
"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.0.8"
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.8-nightly.7"
},
"scripts": {
"start": "node scripts/start.js",

View File

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

View File

@@ -35,7 +35,7 @@ describe('docsCommand', () => {
throw new Error('docsCommand must have an action.');
}
const docsUrl = 'https://qwenlm.github.io/qwen-code-docs/en';
const docsUrl = 'https://github.com/QwenLM/qwen-code';
await docsCommand.action(mockContext, '');
@@ -57,7 +57,7 @@ describe('docsCommand', () => {
// Simulate a sandbox environment
process.env.SANDBOX = 'gemini-sandbox';
const docsUrl = 'https://qwenlm.github.io/qwen-code-docs/en';
const docsUrl = 'https://github.com/QwenLM/qwen-code';
await docsCommand.action(mockContext, '');
@@ -80,7 +80,7 @@ describe('docsCommand', () => {
// Simulate the specific 'sandbox-exec' environment
process.env.SANDBOX = 'sandbox-exec';
const docsUrl = 'https://qwenlm.github.io/qwen-code-docs/en';
const docsUrl = 'https://github.com/QwenLM/qwen-code';
await docsCommand.action(mockContext, '');

View File

@@ -18,7 +18,7 @@ export const docsCommand: SlashCommand = {
description: 'open full Qwen Code documentation in your browser',
kind: CommandKind.BUILT_IN,
action: async (context: CommandContext): Promise<void> => {
const docsUrl = 'https://qwenlm.github.io/qwen-code-docs/en';
const docsUrl = 'https://github.com/QwenLM/qwen-code';
if (process.env.SANDBOX && process.env.SANDBOX !== 'sandbox-exec') {
context.ui.addItem(

View File

@@ -1,6 +1,6 @@
{
"name": "@qwen-code/qwen-code-core",
"version": "0.0.8",
"version": "0.0.8-nightly.7",
"description": "Qwen Code Core",
"repository": {
"type": "git",

View File

@@ -485,24 +485,7 @@ export class GeminiClient {
}
}
// Prevent context updates from being sent while a tool call is
// waiting for a response. The Qwen API requires that a functionResponse
// part from the user immediately follows a functionCall part from the model
// in the conversation history . The IDE context is not discarded; it will
// be included in the next regular message sent to the model.
const history = this.getHistory();
const lastMessage =
history.length > 0 ? history[history.length - 1] : undefined;
const hasPendingToolCall =
!!lastMessage &&
lastMessage.role === 'model' &&
(lastMessage.parts?.some((p) => 'functionCall' in p) || false);
if (
this.config.getIdeModeFeature() &&
this.config.getIdeMode() &&
!hasPendingToolCall
) {
if (this.config.getIdeModeFeature() && this.config.getIdeMode()) {
const { contextParts, newIdeContext } = this.getIdeContextParts(
this.forceFullIdeContext || this.getHistory().length === 0,
);

View File

@@ -129,7 +129,6 @@ export class OpenAIContentGenerator implements ContentGenerator {
: isDashScopeProvider
? {
'X-DashScope-CacheControl': 'enable',
'X-DashScope-UserAgent': userAgent,
}
: {}),
};

View File

@@ -5,6 +5,7 @@
*/
import { BaseTool, Icon, ToolResult } from './tools.js';
import { Type } from '@google/genai';
import { SchemaValidator } from '../utils/schemaValidator.js';
import { getErrorMessage } from '../utils/errors.js';
import { Config } from '../config/config.js';
@@ -56,10 +57,10 @@ export class WebSearchTool extends BaseTool<
'Performs a web search using the Tavily API and returns a concise answer with sources. Requires the TAVILY_API_KEY environment variable.',
Icon.Globe,
{
type: 'object',
type: Type.OBJECT,
properties: {
query: {
type: 'string',
type: Type.STRING,
description: 'The search query to find information on the web.',
},
},

View File

@@ -1,6 +1,6 @@
{
"name": "@qwen-code/qwen-code-test-utils",
"version": "0.0.8",
"version": "0.0.8-nightly.7",
"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.0.8",
"version": "0.0.8-nightly.7",
"publisher": "qwenlm",
"icon": "assets/icon.png",
"repository": {