chore(release): finalize v0.7.0 - #120
Conversation
- Bump version 0.6.0 -> 0.7.0 across 8 components
- Promote CHANGELOG entries from [Unreleased] to [0.7.0] - 2026-07-18
(new endpoints: GET /documents/{id}/chunks, DELETE /index-versions/{version};
removed config: VEKTRA_PARENT_CHILD_LEVELS, VEKTRA_RERANK_TOP_K;
fixes: DEBT-033/034 error envelope, BUG-023/024/025/026,
DEBT-028/029/030/031/032, INFRA-007 GHCR publish)
- Refresh uv.lock for the version change
Prepares the develop -> main release PR for v0.7.0.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Signed-off-by: Francesco Vadicamo <f.vadicamo@gmail.com>
|
Warning Review limit reached
Next review available in: 30 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
📝 WalkthroughWalkthroughThe release metadata updates add a 0.7.0 changelog heading dated 2026-07-18 and bump all workspace package versions from 0.6.0 to 0.7.0. ChangesRelease metadata
Estimated code review effort: 1 (Trivial) | ~3 minutes Possibly related PRs
Suggested labels: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 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 |
There was a problem hiding this comment.
Code Review
This pull request bumps the version of all Vektra platform components (vektra-admin, vektra-analytics, vektra-app, vektra-core, vektra-index, vektra-ingest, vektra-learn, and vektra-shared) from 0.6.0 to 0.7.0, and adds a corresponding release entry in the CHANGELOG.md. There are no review comments, and I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@vektra-analytics/pyproject.toml`:
- Line 3: Align each package’s runtime version constant with the 0.7.0 metadata,
preferably deriving it from package metadata: update the version constant in
vektra-analytics/src/vektra_analytics/__init__.py from 0.4.0-dev,
vektra-app/src/vektra_app/__init__.py from 0.6.0, and
vektra-shared/src/vektra_shared/__init__.py from 0.4.0-dev. The existing
metadata entries require no direct change in vektra-analytics/pyproject.toml:3,
vektra-app/pyproject.toml:3, or vektra-shared/pyproject.toml:3.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 3db95f4a-e233-45d1-bc4a-096726c8dad0
⛔ Files ignored due to path filters (1)
uv.lockis excluded by!**/*.lock,!**/*.lock
📒 Files selected for processing (9)
CHANGELOG.mdvektra-admin/pyproject.tomlvektra-analytics/pyproject.tomlvektra-app/pyproject.tomlvektra-core/pyproject.tomlvektra-index/pyproject.tomlvektra-ingest/pyproject.tomlvektra-learn/pyproject.tomlvektra-shared/pyproject.toml
CodeRabbit (PR #120, comment 3607913835) flagged three package __version__ constants left behind by the pyproject-only bump: - vektra-app: 0.6.0 -> 0.7.0 — feeds app.state.version and the OpenAPI `version` field (main.py:558, 690), so /health and /openapi.json would otherwise report 0.6.0 for a 0.7.0 build - vektra-analytics: 0.4.0-dev -> 0.7.0 - vektra-shared: 0.4.0-dev -> 0.7.0 Kept as manual constants (matching the v0.6.0 release); did not adopt the importlib.metadata derivation suggestion, to keep the change minimal. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: Francesco Vadicamo <f.vadicamo@gmail.com>
What
0.6.0 -> 0.7.0across the 8 workspace components; refreshuv.lock[Unreleased]CHANGELOG entries to[0.7.0] - 2026-07-18with a fresh empty[Unreleased]block on topWhy
Prepares the
develop -> mainrelease PR for v0.7.0. This is a minor release: it adds new public endpoints and removes two config variables, so it is not just hardening. Headline contents of the release:GET /api/v1/documents/{id}/chunks;DELETE /api/v1/index-versions/{version}reclaims superseded index versions and refuses to delete the live one (DEBT-032,ERR-INDEX-001/ 409)VEKTRA_PARENT_CHILD_LEVELS(DEBT-027),VEKTRA_RERANK_TOP_K(DEBT-013); newVEKTRA_RERANK_FETCH_Ktop_kbounded 1..100 on/query+/learn/query(BUG-026); namespace binding onDELETE /documents/{id}and the chunk endpoints; every Qdrant chunk path routed through theVectorStoreProviderProtocol (BUG-023); startup traceback fixed (BUG-025); sparse provider registration (BUG-024); emptyVEKTRA_LLM_PROVIDERrejected at startup; DEBT-028/029/030/031; Qdrant healthcheck;CMD_TARGET=migrateghcr.io/vektralabs/vektra:{version}+:{version}-ocron tag push (INFRA-007); guard that fails when a test suite is executed by nothing (DEBT-031)Excluded from this release: PR #99 (TECH-005 textbook eval, ground truth pending review) — orthogonal eval material, not a backend blocker.
Checklist
[Unreleased]uv.lockrefreshed (only the 8 workspace version pins changed)make lintclean (ruff + ruff format + mypy 77 files + import-linter 8/8 contracts)make testpassing (800 passed, 3 skipped, 52 integration deselected)Signed-off-by+Co-Authored-BytrailersFollow-up (after merge to develop)
develop -> mainrelease PRv0.7.0onmain— this triggerspublish.yml(GHCR image publish)🤖 Generated with Claude Code
Summary by CodeRabbit