From 6ce3f92c74d57eec14fc705003641b855152cd5d Mon Sep 17 00:00:00 2001 From: Estrella Pan Date: Sun, 25 Jan 2026 11:50:32 +0100 Subject: [PATCH] chore: bump version to 3.2.0-beta.7 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ backend/pyproject.toml | 2 +- docs/changelog/3.2.md | 8 ++++++++ 3 files changed, 37 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14d029da..649db9dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +# [3.2.0-beta.7] - 2026-01-25 + +## Backend + +### Features + +- 数据库迁移自动填充 NULL 值为模型默认值 + +### Fixes + +- 修复下载器连接检查添加最大重试次数 +- 修复添加种子时的网络瞬态错误,添加重试逻辑 + +## Frontend + +### Features + +- 重新设计搜索面板,新增模态框和过滤系统 +- 重新设计登录面板,采用现代毛玻璃风格 +- 日志页面新增日志级别过滤功能 + +### Fixes + +- 修复日历页面未知列宽度问题 +- 统一下载器页面操作栏按钮尺寸 + +--- + # [3.2.0-beta.6] - 2026-01-25 ## Backend diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 943741eb..af2e2d0a 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "auto-bangumi" -version = "3.2.0-beta.6" +version = "3.2.0-beta.7" description = "AutoBangumi - Automated anime download manager" requires-python = ">=3.10" dependencies = [ diff --git a/docs/changelog/3.2.md b/docs/changelog/3.2.md index 3313bd35..dded5c18 100644 --- a/docs/changelog/3.2.md +++ b/docs/changelog/3.2.md @@ -25,6 +25,7 @@ - Network requests migrated from `requests` to `httpx` (AsyncClient) - Backend migrated to `uv` package manager (pyproject.toml + uv.lock) - Server startup uses background tasks to avoid blocking (fixes #891, #929) +- Database migration auto-fills NULL values with model defaults ### Changes @@ -38,6 +39,8 @@ ### Bugfixes +- Fixed downloader connection check with max retry limit +- Fixed transient network errors when adding torrents with retry logic - Fixed `aaguid` type error (now `str` in py_webauthn 2.7.0, no longer `bytes`) - Fixed missing `credential_backup_eligible` field (replaced with `credential_device_type`) - Fixed `verify_authentication_response` receiving invalid `credential_id` parameter causing TypeError @@ -78,6 +81,9 @@ - Added downloader management page - Added Bangumi card hover overlay (showing title and tags) - Added `resolvePosterUrl` utility function for unified external URL and local path handling (fixes #934) +- Redesigned search panel with modal and filter system +- Redesigned login panel with modern glassmorphism style +- Added log level filter in log view - Redesigned LLM settings panel (fixes #938) - Redesigned settings, downloader, player, and log page styles - New mobile-first responsive design @@ -116,6 +122,8 @@ - UnoCSS added `sm: 640px` breakpoint - `ab-input` mobile full-width + increased touch target styling - Layout uses `dvh` units instead of `vh`, supports safe-area-inset +- Fixed calendar page unknown column width +- Unified action bar button sizes in downloader page ## CI/Infrastructure