Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@ data/
.DS_Store
Thumbs.db

# Database & backup
*.db
*.bak

# Flutter
.gradle/
*.iml
.metadata
src/studio/build/
src/studio/.dart_tool/

# Terraform
.terraform/
terraform/terraform.tfstate
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/zh-CN/1.0.0/).

## [0.2.0] - 2026-06-16

### Human

- `src/provider/` 人力资源模块 Provider API
- 邮件拉取与 AI 智能分类管道(飞书集成)
- 候选人管道管理(8 阶段状态机)
- 待确认队列(人工审核 → 自动入队)
- AI 配置管理(OpenAI 兼容 API)

### Added

- `src/provider/` 新增全量测试覆盖(health, pipeline, queue, recruitments, candidates)
- `CHANGELOG-human.md`:人力资源模块独立变更日志

### Fixed

- `src/provider/app/__main__.py`:修复 CORS 配置(移除与通配符 origin 不兼容的 `allow_credentials=True`)
- `src/provider/app/__main__.py`:裸异常块补充日志记录

## [0.1.0] - 2026-05-09

### Studio
Expand Down
Loading