Conversation
Contributor
Reviewer's GuideThe PR migrates backend dependency management and execution from Hatch/pip to uv, introducing a committed lockfile and dependency groups, updating CI, containers, documentation, and release automation, while lazily loading optional integrations and supplying a bson-free ObjectId fallback. Sequence diagram for uv-based backend testingsequenceDiagram
actor Developer
participant UV as uv
participant Backend as Backend environment
participant Pytest as pytest
Developer->>UV: run pytest
UV->>Backend: resolve dependencies from pyproject.toml and uv.lock
Backend->>Pytest: execute test suite
Pytest-->>Developer: test results
Developer->>UV: run pytest with coverage options
UV->>Pytest: execute coverage-enabled pytest
Pytest-->>Developer: coverage reports
Sequence diagram for uv-based release versioningsequenceDiagram
actor Maintainer
participant ReleaseScript as make-release.sh
participant UV as uv
participant Backend as backend project
participant Git as Git
Maintainer->>ReleaseScript: make-release.sh VERSION
ReleaseScript->>UV: uv version --short --project backend
UV-->>ReleaseScript: current version
ReleaseScript->>UV: uv version VERSION --project backend
UV->>Backend: update pyproject.toml and uv.lock
ReleaseScript->>Backend: update OpenAPI and frontend versions
ReleaseScript->>Git: git add versioned files
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1120 +/- ##
==========================================
+ Coverage 87.42% 87.44% +0.02%
==========================================
Files 63 63
Lines 3737 3745 +8
Branches 697 698 +1
==========================================
+ Hits 3267 3275 +8
Misses 262 262
Partials 208 208
Continue to review full report in Codecov by Harness.
🚀 New features to boost your workflow:
|
mshriver
force-pushed
the
uv-migration
branch
from
September 9, 2026 12:06
a573ff9 to
21650bc
Compare
Contributor
Author
|
mshriver
force-pushed
the
uv-migration
branch
4 times, most recently
from
September 9, 2026 15:50
c0ab6a6 to
bcc9297
Compare
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Claude <noreply@anthropic.com>
mshriver
force-pushed
the
uv-migration
branch
from
September 9, 2026 16:05
bcc9297 to
ee84834
Compare
Co-authored-by: Claude <noreply@anthropic.com>
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 by Sourcery
Migrate backend development, CI, container builds, and release workflows from Hatch and pip to uv.
Enhancements:
Build:
CI:
Deployment:
Documentation: