7deae286ca
- 新增 ias-db crate,集中管理 PostgreSQL 连接池和 SQLx 迁移
- 迁移 ias-service/migrations 到 ias-db/migrations
- ias-main 改用 ias_db::connect_db(),ias-service 只接 PgPool
- 新增操作日志 HTTP 查询接口 (GET /v1/logs, GET /v1/logs/{id})
- 新增操作日志 Web 前端页面,支持按级别/模块/关键词筛选
- 消息队列关键节点增加操作日志写入
- ias-mail 新增 mark_remote_message_seen,IMAP 已读同步
- 工作流配置加载改为文件级容错 (load_configs_with_warnings)
- ias-context 工具调用说明更新为 query_api_docs + call_http_api
- 新增高德地图地理编码 HTTP 能力配置
模块版本: ias-db 0.1.0, ias-ai 0.1.14, ias-context 0.1.6, ias-http 0.1.15, ias-mail 0.1.16, ias-service 0.1.25, ias-main 0.2.27
35 lines
1.4 KiB
SQL
35 lines
1.4 KiB
SQL
INSERT INTO ias_upgrade_logs (
|
|
version,
|
|
released_at,
|
|
title,
|
|
description,
|
|
changes,
|
|
modules
|
|
) VALUES (
|
|
'0.2.24',
|
|
'2026-07-08T00:00:00+08:00',
|
|
'HTTP YAML 能力加载文件级容错',
|
|
'HTTP YAML 能力加载改为文件级容错,单个配置解析失败只会跳过该文件并返回 warning,不再影响其它 HTTP 能力展示和调用。',
|
|
'[
|
|
"HTTP YAML 能力加载改为文件级容错:单个 YAML 配置读取或解析失败时只跳过该文件并返回 warning,不再导致其它 HTTP 能力全部为空。",
|
|
"query_capabilities 会继续展示成功加载的 HTTP 能力,并在 warnings 中标明被跳过的配置文件和错误原因,便于定位坏配置。",
|
|
"call_capability 调用 HTTP YAML 能力时同样继承文件级容错,坏配置不会影响其它可用 YAML 能力执行。",
|
|
"数据库无结构变化;已验证 cargo fmt 和 cargo test。"
|
|
]'::jsonb,
|
|
'{
|
|
"ias-common": "0.1.2",
|
|
"ias-ai": "0.1.13",
|
|
"ias-wechat": "0.1.1",
|
|
"ias-context": "0.1.5",
|
|
"ias-http": "0.1.13",
|
|
"ias-mail": "0.1.15",
|
|
"ias-service": "0.1.21",
|
|
"ias-main": "0.2.24"
|
|
}'::jsonb
|
|
) ON CONFLICT (version) DO UPDATE SET
|
|
released_at = EXCLUDED.released_at,
|
|
title = EXCLUDED.title,
|
|
description = EXCLUDED.description,
|
|
changes = EXCLUDED.changes,
|
|
modules = EXCLUDED.modules;
|