Release v1.1.0 - #41
Merged
Merged
Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (21)
📝 WalkthroughWalkthroughThe PR prepares the 1.1.0 release, adds dynamic application version resolution, updates API version reporting, narrows reporter error handling, and applies typing, import, and lint cleanup. ChangesRelease and runtime updates
Estimated code review effort: 3 (Moderate) | ~20 minutes Sequence Diagram(s)sequenceDiagram
participant FastAPI
participant get_version
participant PackageMetadata
participant pyproject.toml
FastAPI->>get_version: Resolve application version
get_version->>PackageMetadata: Read installed distribution version
PackageMetadata-->>get_version: Return version or unavailable
get_version->>pyproject.toml: Read project version as fallback
pyproject.toml-->>get_version: Return declared version
get_version-->>FastAPI: Set APP_VERSION
FastAPI-->>FastAPI: Use version in metadata and health response
Possibly related PRs
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
CoreyLeath-code
marked this pull request as ready for review
August 19, 2026 00:21
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.
Release preparation
agent,api, andsrc.main.Local evidence
pytest tests -v --cov=api --cov=src --cov=agent --cov-report=term-missing: 53 passed, 4 skipped.ruff check api agent src tests streamlit_app.py: passed.python -m benchmarks.autonomy_runtime --iterations 200 --warmup 20: completed locally; no generated measurement was committed.python -m build: produced the 1.1.0 sdist and wheel.agent.version,api, andsrc; distribution metadata resolved to 1.1.0.Cut the tag after this PR is merged
git checkout main git pull --ff-only origin main git tag -a v1.1.0 -m "v1.1.0" git push origin v1.1.0The pushed tag triggers the HelixAgent Release workflow. It validates the newly created annotated semantic-version tag and exact commit, runs required checks and security/SBOM generation, attaches the deterministic source archive, SHA-256 checksum, CycloneDX SBOM, and reproduction instructions to the GitHub Release, then publishes the validated GHCR image.
No tag, GitHub Release, or container image has been created by this PR.
Summary by CodeRabbit
New Features
Documentation
Maintenance