feat: migrate backend to uv package manager#952
Merged
Conversation
fix: incorrect password format
Refactor webui
additional Reverse proxy
Update proxy.md Reverse proxy
fix: Resolve issue #679
fix: rss.parser set to default value when subscribe Bangumi
# Conflicts: # webui/src/components/ab-add-rss.vue
Fix typo in docs/home
docs: fix jellyfin hyperlink
fix: subtitle file rename failure in collection
Update WebUI
fix: program restart error
fix: program start error
- Add passkey login as alternative authentication method - Support multiple passkeys per user with custom names - Backend: WebAuthn service, auth strategy pattern, API endpoints - Frontend: passkey management UI in settings, login option - Fix: convert downloader check from sync requests to async httpx to prevent blocking the event loop when downloader unavailable Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Replace pip + requirements.txt with uv for dependency management. - Multi-stage Dockerfile using ghcr.io/astral-sh/uv builder image - CI updated to use astral-sh/setup-uv@v4 - Ruff config moved to [tool.ruff.lint] (fixes deprecation) - Transitive deps removed, missing direct deps added (requests, PySocks, urllib3) - Database layer migrated to async (AsyncSession + aiosqlite) - Tests updated to match async database interface Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
58c3d40 to
9c5474d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ghcr.io/astral-sh/uvbuilder image for smaller, faster buildsastral-sh/setup-uv@v4instead of pip[tool.ruff.lint]Test plan
cd backend && uv sync --group devinstalls cleanlycd backend && uv run pytest src/test -vpassescd backend && uv run ruff check srcruns without crashesdocker build -t auto_bangumi:test .🤖 Generated with Claude Code