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

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ding113/claude-code-hub
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: zo0043/claude-code-hub
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 4 commits
  • 28 files changed
  • 1 contributor

Commits on Oct 26, 2025

  1. feat: 实现build.sh --all一键部署功能

    主要变更:
    - 新增完整的构建脚本(build.sh, build.bat)支持一键构建+镜像+服务启动
    - 添加Dockerfile和docker-compose.full.yaml实现完整容器化部署
    - 实现端口冲突检测和清理机制
    - 添加服务健康检查和重试机制
    - 优化错误处理和用户反馈
    
    技术改进:
    - 支持预拉取Docker镜像避免网络超时
    - 集成Drizzle数据库迁移文件到Docker镜像
    - 完善的故障排查建议和手动操作指导
    - 实现优雅的错误处理,构建失败不中断整体流程
    
    数据库变更:
    - 新增allowed_models字段支持供应商模型限制
    - 添加相应的验证schema和UI表单更新
    
    现在可通过`./build.sh --all`一键启动完整服务栈
    zo0043 committed Oct 26, 2025
    Configuration menu
    Copy the full SHA
    07760ff View commit details
    Browse the repository at this point in the history
  2. fix: 添加PostgreSQL客户端工具支持数据库状态检查

    主要变更:
    - 在Dockerfile中安装postgresql-client包
    - 确保运行时镜像包含pg_isready等PostgreSQL工具
    - 解决应用容器中数据库状态检查失败的问题
    
    技术改进:
    - 在deps和runner阶段都安装postgresql-client
    - 支持数据库健康检查和状态API功能
    - 修复"database_status_connection_unavailable"警告
    
    现在数据库状态API可以正常工作,管理界面将显示正确的数据库连接状态
    zo0043 committed Oct 26, 2025
    Configuration menu
    Copy the full SHA
    aad338d View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2025

  1. feat: 添加 JSON 数据导入导出功能并修复 TypeScript 错误

    主要功能:
    - 新增 JSON 格式数据导出功能(完整导出、仅结构、仅数据、选择性导出)
    - 新增 JSON 格式数据导入功能(完整导入、仅数据、选择性导入)
    - 支持表级别选择和敏感数据过滤
    - 实现批量导入导出和进度反馈
    - 添加数据验证和冲突处理机制
    
    技术改进:
    - 修复所有 TypeScript 类型错误
    - 优化 build.sh 脚本使用 Docker Compose 管理服务
    - 改进错误处理和用户体验
    
    API 端点:
    - POST /api/admin/database/export-json
    - POST /api/admin/database/import-json
    
    前端组件:
    - DatabaseExportJson(导出配置界面)
    - DatabaseImportJson(导入配置界面)
    zo0043 committed Oct 27, 2025
    Configuration menu
    Copy the full SHA
    cd7cf96 View commit details
    Browse the repository at this point in the history
  2. refactor: 清理未使用的导入和变量

    - 注释未使用的 logger 导入以优化代码结构
    - 移除未使用的 CardDescription 导入
    - 修复 session-manager.ts 中未使用的 keyId 参数
    - 清理 response-handler.ts 中未使用的变量
    - 移除 provider-chain-formatter.ts 中的未使用变量
    - 保持代码整洁并减少不必要的内存占用
    
    [skip ci]
    zo0043 committed Oct 27, 2025
    Configuration menu
    Copy the full SHA
    55bbdb7 View commit details
    Browse the repository at this point in the history
Loading