1. 24 Feb, 2026 6 commits
    • erio's avatar
      fix: distinguish client disconnection from upstream retry failure · 0dacdf48
      erio authored
      Before this change, when a client disconnected mid-request, the error
      message was "Upstream request failed after retries", which is misleading
      and pollutes error logs. Now we check context.Err() to return a more
      accurate "Client disconnected" message for both Claude and Gemini
      forward paths.
      0dacdf48
    • shaw's avatar
      fix: 修复 CI 集成测试因 context deadline exceeded 未被跳过而失败 · 7be5e173
      shaw authored
      skipIfExternalServiceUnavailable 检查了 "timeout" 但 Go 的
      context.DeadlineExceeded 错误信息是 "context deadline exceeded",
      不包含 "timeout" 子串,导致外部服务不可达时测试直接失败而非跳过。
      7be5e173
    • shaw's avatar
      fix: 修复 antigravity UserAgent 重构遗留的编译错误和测试不匹配 · e435a46d
      shaw authored
      - oauth.go: GetUserAgent() 缺少闭合大括号导致语法错误
      - client_test.go/oauth_test.go: UserAgent 变量已重构为 GetUserAgent(),更新测试引用
      - model_rate_limit_test.go: gemini-3-pro-preview 映射目标已更新为 gemini-3.1-pro-high,同步测试
      e435a46d
    • shaw's avatar
      fix: 幂等测试使用哈希值避免超出 VARCHAR(64) 限制 · 492b852a
      shaw authored
      idempotency_key_hash 和 request_fingerprint 列为 VARCHAR(64),
      而 uniqueTestValue 生成的字符串含完整测试名可能超过 64 字符。
      新增 hashedTestValue 辅助函数对测试值做 SHA-256 哈希,
      与生产逻辑一致且严格符合列宽限制。
      492b852a
    • shaw's avatar
      fix: 移除重复的 ptrTime 函数声明修复编译错误 · 8a137405
      shaw authored
      idempotency_repo_integration_test.go 中的 ptrTime 与
      scheduler_cache.go 中的声明冲突,导致 repository 包测试构建失败。
      8a137405
    • shaw's avatar
      fix: 修复日志重复输出及清理冗余迁移逻辑 · 980fc960
      shaw authored
      - logger: sinkCore 包装 tee core 时绕过了子 core 的 Check 级别过滤,
        导致每条日志同时写入 stdout 和 stderr,表现为启动日志重复显示。
        修复为正确委托 Check 给内部 tee core,sinkCore.Write 仅负责 sink 转发。
      - migration 054: 移除冗余的遗留列回填逻辑,migration 009 已完成数据迁移,
        直接删除遗留列即可。
      980fc960
  2. 23 Feb, 2026 5 commits
  3. 22 Feb, 2026 7 commits
  4. 21 Feb, 2026 5 commits
  5. 20 Feb, 2026 3 commits
  6. 19 Feb, 2026 10 commits
  7. 18 Feb, 2026 3 commits
  8. 17 Feb, 2026 1 commit