Skip to content

Latest commit

 

History

History
75 lines (56 loc) · 2.66 KB

File metadata and controls

75 lines (56 loc) · 2.66 KB

v0.5.1-vnext-preview Tag Plan

Purpose

Cut the first public pre-release tag for the Alice vNext preview without replacing the stable v0.5.1 public release line.

Tag Target

  • preview tag: v0.5.1-vnext-preview
  • target branch: main after accepted vNext preview release-packaging merge
  • release type: GitHub pre-release
  • stable release line: v0.5.1

Required Inputs

  • passing vNext public release checklist: docs/release/vnext-public-release-checklist.md
  • release notes: docs/release/v0.5.1-vnext-preview-release-notes.md
  • changelog entry: CHANGELOG.md
  • current build and review evidence: BUILD_REPORT.md and REVIEW_REPORT.md

Tag Procedure

  1. Confirm the vNext release checklist is complete.
  2. Confirm main contains the accepted vNext preview release-packaging merge.
  3. Create the annotated tag:
git checkout main
git pull origin main
git tag -a v0.5.1-vnext-preview -m "Alice v0.5.1 vNext public preview"
git push origin v0.5.1-vnext-preview
  1. Publish GitHub release notes as a pre-release without replacing the latest stable release:
gh release create v0.5.1-vnext-preview \
  --repo samrusani/AliceBot \
  --title "Alice v0.5.1 vNext Preview" \
  --notes-file docs/release/v0.5.1-vnext-preview-release-notes.md \
  --prerelease \
  --latest=false \
  --verify-tag

Release Notes Scope

  • local-first vNext memory kernel
  • vNext source capture, retrieval/context packs, queue/artifacts, brain workflows, graph/contradiction/belief/project/open-loop workflows
  • deterministic connector payload ingestion for Telegram, browser clipper, PDF, DOCX, CSV, screenshot OCR, and voice transcripts
  • fixture-backed /vnext workspace
  • deterministic synthetic eval harness and baseline metrics
  • public-preview docs and release checklist

Explicitly Deferred

  • hosted SLA or managed cloud launch
  • live connector OAuth, polling, browser extension actions, OCR model execution, or transcription model execution
  • automatic promotion of generated artifacts into trusted memory
  • production scheduler for daily/weekly generation
  • live-backed expansion of the /vnext UI
  • model-backed or human-rated eval scoring

Rollback

  • Keep v0.5.1 as the stable public release line.
  • If the preview release must be withdrawn before immutable release protections apply, delete the GitHub pre-release and remote preview tag:
gh release delete v0.5.1-vnext-preview --repo samrusani/AliceBot --yes
git push origin :refs/tags/v0.5.1-vnext-preview
git tag -d v0.5.1-vnext-preview
  • For local runtime rollback, check out v0.5.1 and use a database snapshot or disposable preview database that predates 20260510_0067_vnext_memory_kernel_schema.py.