Manual / Infrastructure / GitHub / Issues, Projects, Milestones, and Releases
Cloudberrie Business & Operations Manual

Issues, Projects, Milestones, and Releases

Track work consistently and publish traceable software versions.

Document: INF-109Type: Guide / SOPStatus: ApprovedOwner: Engineering OperationsVersion: 4.2.0Updated: 2026-07-17

Issue Types

TypeUse
BugIncorrect behavior
FeatureNew capability
EnhancementImprovement to existing capability
DocumentationManual, README, or operating knowledge
SecurityPrivate handling required; do not disclose sensitive details publicly

Recommended Project Workflow

Backlog → Ready → In Progress → Review → Testing → Done

Each item should have an owner, priority, target product, expected outcome, and acceptance criteria.

Labels

Use a small, consistent label set: bug, feature, documentation, security, priority:high, status:blocked, and product labels such as product:studio-board.

Release Process

  1. Confirm all included work is merged and tested.
  2. Update version and changelog.
  3. Create an annotated Git tag, for example v3.2.0.
  4. Create the GitHub Release from the tag.
  5. Summarize additions, changes, fixes, known issues, and rollback notes.
  6. Attach approved release artifacts only when needed.
  7. Verify deployment and record the release in the Manual.
git checkout main git pull --ff-only git tag -a v3.2.0 -m "Cloudberrie Manual v3.2.0" git push origin v3.2.0