Spaces:
Paused
Paused
icebear0828 Claude Opus 4.6 commited on
Commit ·
3838101
1
Parent(s): 5b8c195
docs: update changelog with dynamic model list & review fixes
Browse files- CHANGELOG.md +18 -0
CHANGELOG.md
CHANGED
|
@@ -8,6 +8,9 @@
|
|
| 8 |
|
| 9 |
### Added
|
| 10 |
|
|
|
|
|
|
|
|
|
|
| 11 |
- OpenCode 平台支持(`opencode.json` 配置文件)
|
| 12 |
- Vitest 测试框架(account-pool、codex-api、codex-event-extractor 单元测试)
|
| 13 |
- request-id 中间件注入全局请求链路 ID
|
|
@@ -15,8 +18,23 @@
|
|
| 15 |
|
| 16 |
### Changed
|
| 17 |
|
|
|
|
|
|
|
|
|
|
| 18 |
- `/health` 端点精简,仅返回 pool 摘要(total / active)
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
## [v0.8.0](https://github.com/icebear0828/codex-proxy/releases/tag/v0.8.0) - 2026-02-24
|
| 21 |
|
| 22 |
### Added
|
|
|
|
| 8 |
|
| 9 |
### Added
|
| 10 |
|
| 11 |
+
- 动态模型列表:后台从 Codex 后端自动获取模型目录,与静态 YAML 合并(`src/models/model-store.ts`、`src/models/model-fetcher.ts`)
|
| 12 |
+
- `/debug/models` 诊断端点,展示模型来源(static/backend)与刷新状态
|
| 13 |
+
- 完整 Codex 模型目录:GPT-5.3/5.2/5.1 全系列 base/high/mid/low/max/mini 变体(23 个静态模型)
|
| 14 |
- OpenCode 平台支持(`opencode.json` 配置文件)
|
| 15 |
- Vitest 测试框架(account-pool、codex-api、codex-event-extractor 单元测试)
|
| 16 |
- request-id 中间件注入全局请求链路 ID
|
|
|
|
| 18 |
|
| 19 |
### Changed
|
| 20 |
|
| 21 |
+
- 模型管理从纯静态 YAML 迁移至静态+动态混合架构(后端优先,YAML 兜底)
|
| 22 |
+
- 默认模型改为 `gpt-5.2-codex`
|
| 23 |
+
- Dashboard "Claude Code Quick Setup" 重命名为 "Anthropic SDK Setup"
|
| 24 |
- `/health` 端点精简,仅返回 pool 摘要(total / active)
|
| 25 |
|
| 26 |
+
### Fixed
|
| 27 |
+
|
| 28 |
+
- `getModels()` 死代码:`allModels` 作用域修复,消除不可达分支
|
| 29 |
+
- `reloadAllConfigs()` 异步 lazy import 改为同步直接导入,避免日志时序不准
|
| 30 |
+
- 模型合并 reasoning efforts 判断逻辑从 `length > 1` 改为显式标志
|
| 31 |
+
- `scheduleNext()` 添加 try/finally 防止异常中断刷新循环
|
| 32 |
+
- 未认证启动时抑制无意义的 warn 日志
|
| 33 |
+
- `getModelCatalog()` / `getModelAliases()` 返回浅拷贝,防止外部意外修改
|
| 34 |
+
- `ClaudeCodeSetup.tsx` 文件名与导出名不一致,重命名为 `AnthropicSetup.tsx`
|
| 35 |
+
- Dashboard 模型偏好从硬编码 `gpt-5.2-codex` 改为使用 `codex` 别名
|
| 36 |
+
- 构建脚本 `vite build --root web` 兼容性问题,改用 `npm run build:web`
|
| 37 |
+
|
| 38 |
## [v0.8.0](https://github.com/icebear0828/codex-proxy/releases/tag/v0.8.0) - 2026-02-24
|
| 39 |
|
| 40 |
### Added
|