Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2a7fb48

Browse files
committed
release: v0.3.0
1 parent 1dd810a commit 2a7fb48

5 files changed

Lines changed: 26 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.3.0] - 2026-05-18
6+
7+
### Features / 功能
8+
9+
- **23 个 Provider 预设**(原 7 个)— 新增 Google Gemini、xAI、Mistral、Groq、Together、Fireworks、Cerebras、Perplexity、Cohere、智谱 GLM、通义千问、硅基流动、火山引擎、百川、阶跃星辰、零一万物,选择类型自动填充 Base URL 和默认模型
10+
- **Gemini CLI 客户端支持** — 写入 `~/.gemini/.env`(GEMINI_API_KEY + GOOGLE_GEMINI_BASE_URL)+ `settings.json`(model + auth type),支持一键切换官方/AgentGate
11+
- **AtomCode 客户端支持** — 写入 `~/.atomcode/config.toml`(default_provider + providers 段),支持一键切换
12+
- **客户端总计 6 个**:Codex、Claude Code、OpenCode、Gemini CLI、AtomCode(新增 2 个)
13+
- **README SEO 重做** — 徽章(版本/Stars/下载量/License)、价值主张重写、快速导航链接、GitHub Topics 17 个、repo description 更新
14+
15+
### Bug Fixes / 修复
16+
17+
- **修复 Anthropic SSE 流断开不通知客户端** — 流错误、Claude API 错误、空内容流结束三种场景均发送 `response.failed` 事件
18+
- **修复 SSE 帧解析** — 兼容 `\r\n\r\n` 分帧和 `event:X`(无空格)格式
19+
- **修复识图后请求不切回原 Provider** — Vision 感知路由只检查最后一条用户消息
20+
- **修复 Gemini CLI 配置不生效** — 环境变量写入 `.env` 文件(非 settings.json 的 env 字段);auth type 设为 `gemini-api-key`(OAuth 模式忽略 .env)
21+
- **修复 AtomCode 报"未配置活跃 Provider"** — 加入 `default_provider` 顶层字段
22+
- **修复工具参数静默替换无日志** — 无效 JSON 参数替换为 `{}` 时打印警告日志
23+
- **统一 URL 构建逻辑**`adapter.rs``route_decision.rs` 共用 `smart_append_path()`
24+
25+
---
26+
527
## [0.2.2] - 2026-05-18
628

729
### Features / 功能

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "agentgate",
33
"private": true,
4-
"version": "0.2.2",
4+
"version": "0.3.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agentgate"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
description = "Local gateway for AI coding agents"
55
authors = ["dengmengmian"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "AgentGate",
4-
"version": "0.2.2",
4+
"version": "0.3.0",
55
"identifier": "com.mengmian.agentgate",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

0 commit comments

Comments
 (0)