Added critical optimization #1 based on v0.10.0 release experience: **Issue**: git status doesn't show unpushed tags, leading to forgotten tag pushes **Impact**: v0.9.0 and v0.10.0 tags weren't pushed, plus older version tags **Solution**: Enhanced release status or git hook to show unpushed tags Total optimizations identified: 9 (was 8) - High Priority: 4 (added unpushed tags visibility) - Medium Priority: 3 - Low Priority: 2 Ready to implement all optimizations systematically.
369 lines
10 KiB
Markdown
369 lines
10 KiB
Markdown
# Release Process Optimization Assessment
|
|
|
|
**Date**: 2026-01-06
|
|
**Context**: Post v0.10.0 release analysis
|
|
**Completed**: Stages 1-2 (Critical Fixes + CHANGELOG Schema)
|
|
|
|
---
|
|
|
|
## Current Release Process Analysis
|
|
|
|
### What We Did (Manual Steps)
|
|
|
|
1. ✅ **Fixed version detection** (pyproject.toml)
|
|
2. ✅ **Created retroactive tag** (git tag -a v0.9.0)
|
|
3. ✅ **Updated CHANGELOG** (manual editing)
|
|
4. ✅ **Created CHANGELOG schema** (manual schema writing)
|
|
5. ✅ **Tagged release** (git tag -a v0.10.0)
|
|
6. ✅ **Built packages** (release build)
|
|
7. ⚠️ **Pushed commits** (git push) - but forgot tags!
|
|
8. ❌ **Push tags** - MISSING: Need `git push --tags` or `git push origin v0.9.0 v0.10.0`
|
|
|
|
### Issues Encountered
|
|
|
|
#### 1. Tag Push Not Automatic ⚠️
|
|
**Problem**: `git push` doesn't push tags by default
|
|
**Impact**: Release tags not on remote, packages can't be built from remote
|
|
**Current Workaround**: Remember to run `git push --tags` or `git push origin v0.9.0 v0.10.0`
|
|
**Optimization**: Automate tag pushing in release workflow
|
|
|
|
#### 2. Manual CHANGELOG Editing
|
|
**Problem**: Hand-editing CHANGELOG.md is error-prone
|
|
**Impact**:
|
|
- Risk of formatting errors
|
|
- Time-consuming section management
|
|
- No automatic version section creation
|
|
**Current Workaround**: Careful manual editing
|
|
**Optimization**: Automated CHANGELOG section generation
|
|
|
|
#### 3. Version Command Not Explicit
|
|
**Problem**: Only `markitect --version` works, no `markitect version` subcommand
|
|
**Impact**: Inconsistent CLI UX (other tools have `version` subcommand)
|
|
**Current Workaround**: Use --version flag
|
|
**Optimization**: Add explicit version subcommand (Stage 3 deferred work)
|
|
|
|
#### 4. No Pre-Release Validation
|
|
**Problem**: No automated checks before tagging
|
|
**Impact**: Could tag with:
|
|
- Uncommitted changes
|
|
- Unvalidated CHANGELOG
|
|
- Version-tag mismatches
|
|
**Current Workaround**: Manual verification
|
|
**Optimization**: Pre-release validation hook (Stage 3 deferred work)
|
|
|
|
#### 5. Schema Ingestion Manual
|
|
**Problem**: New schemas require manual `schema-ingest` command
|
|
**Impact**: Easy to forget, schema not in catalog
|
|
**Current Workaround**: Remember to run after creating schema
|
|
**Optimization**: Auto-detect and ingest schemas in build process
|
|
|
|
#### 6. Git Status Doesn't Show Unpushed Tags ⚠️
|
|
**Problem**: `git status` doesn't show tags that haven't been pushed to origin
|
|
**Impact**:
|
|
- Easy to forget to push tags after creating them
|
|
- No visibility into unpushed tags (v0.9.0, v0.10.0 weren't pushed until manually noticed)
|
|
- Tags from older versions also weren't pushed (discovered when pushing v0.10.0 tags)
|
|
**Current Workaround**: Manually check `git ls-remote --tags origin` vs `git tag -l`
|
|
**Optimization**: Enhanced git status or custom status command showing unpushed tags
|
|
|
|
---
|
|
|
|
## Optimization Opportunities
|
|
|
|
### High Priority (Would Have Helped v0.10.0)
|
|
|
|
#### 1. Git Status Enhancement for Unpushed Tags
|
|
**Current**:
|
|
```bash
|
|
git status
|
|
# On branch main
|
|
# Your branch is up to date with 'origin/main'.
|
|
# nothing to commit, working tree clean
|
|
# ^ No mention of unpushed tags!
|
|
```
|
|
|
|
**Optimized**:
|
|
```bash
|
|
release status
|
|
# OR: Enhanced git status via git hook
|
|
# Shows:
|
|
# - Current branch and commit status
|
|
# - Unpushed tags: v0.9.0, v0.10.0
|
|
# - Tags on origin vs local
|
|
# - Reminder to push tags
|
|
```
|
|
|
|
**Implementation Options**:
|
|
1. **Git post-commit hook**: Add .git/hooks/post-commit to check unpushed tags
|
|
2. **Enhanced `release status`**: Add tag comparison to release status command
|
|
3. **Git alias**: Create custom git alias for comprehensive status
|
|
|
|
**Estimated Effort**: 1 hour
|
|
**Impact**: Prevents forgotten tag pushes, immediate visibility
|
|
|
|
#### 2. Automated Tag Pushing
|
|
**Current**:
|
|
```bash
|
|
git tag -a v0.10.0 -m "..."
|
|
git push origin main
|
|
# Oops, forgot tags!
|
|
git push --tags
|
|
```
|
|
|
|
**Optimized**:
|
|
```bash
|
|
release tag v0.10.0
|
|
# Automatically pushes both commits AND tags
|
|
```
|
|
|
|
**Implementation**: Add `--push` flag to `release tag` command
|
|
**Estimated Effort**: 1 hour
|
|
**Impact**: Prevents forgotten tag pushes
|
|
|
|
#### 3. CHANGELOG Validation in Release Flow
|
|
**Current**: Manual validation
|
|
```bash
|
|
markitect validate CHANGELOG.md --schema changelog-schema-v1.0.md --semantic
|
|
```
|
|
|
|
**Optimized**:
|
|
```bash
|
|
release validate
|
|
# Automatically validates CHANGELOG with schema
|
|
# Checks version-tag consistency
|
|
# Reports any issues before tagging
|
|
```
|
|
|
|
**Implementation**: Integrate CHANGELOG validation into ReleaseManager (Stage 3)
|
|
**Estimated Effort**: 2 hours
|
|
**Impact**: Catches CHANGELOG errors before release
|
|
|
|
#### 4. Version-Tag Consistency Check
|
|
**Current**: Manual verification that CHANGELOG version matches tag
|
|
|
|
**Optimized**:
|
|
```bash
|
|
release validate
|
|
# Checks:
|
|
# - CHANGELOG has section for target version
|
|
# - Git tag matches CHANGELOG version
|
|
# - No version-tag mismatches
|
|
# - Unreleased section exists
|
|
```
|
|
|
|
**Implementation**: Add version consistency validator (Stage 3)
|
|
**Estimated Effort**: 1 hour
|
|
**Impact**: Prevents version confusion
|
|
|
|
### Medium Priority (Nice to Have)
|
|
|
|
#### 5. CHANGELOG Section Generation
|
|
**Current**: Manually create `## [X.Y.Z] - YYYY-MM-DD` section
|
|
|
|
**Optimized**:
|
|
```bash
|
|
release prepare v0.11.0
|
|
# Automatically:
|
|
# - Creates [0.11.0] - 2026-01-XX section
|
|
# - Moves Unreleased content to new section
|
|
# - Updates git describe version
|
|
# - Validates CHANGELOG format
|
|
```
|
|
|
|
**Implementation**: CHANGELOG editor utility
|
|
**Estimated Effort**: 3 hours
|
|
**Impact**: Reduces manual editing, prevents format errors
|
|
|
|
#### 6. Explicit Version Command
|
|
**Current**: `markitect --version`
|
|
|
|
**Optimized**:
|
|
```bash
|
|
markitect version
|
|
# Shows:
|
|
# - Current version (0.10.0)
|
|
# - Latest tag (v0.10.0)
|
|
# - Commits since tag (0)
|
|
# - Dirty/clean status
|
|
```
|
|
|
|
**Implementation**: Add version subcommand to CLI (Stage 3)
|
|
**Estimated Effort**: 30 minutes
|
|
**Impact**: Better UX, more detailed version info
|
|
|
|
#### 7. Release Summary Auto-Generation
|
|
**Current**: Manually created comprehensive summary
|
|
|
|
**Optimized**:
|
|
```bash
|
|
release summary v0.10.0
|
|
# Generates:
|
|
# - RELEASE_SUMMARY.md from CHANGELOG
|
|
# - Git statistics
|
|
# - Build artifacts info
|
|
# - Testing results
|
|
```
|
|
|
|
**Implementation**: Summary generator using CHANGELOG + git metadata
|
|
**Estimated Effort**: 2 hours
|
|
**Impact**: Consistent release documentation
|
|
|
|
### Low Priority (Future Enhancements)
|
|
|
|
#### 8. Schema Auto-Ingestion
|
|
**Current**: Manual `schema-ingest` after creating schema
|
|
|
|
**Optimized**: Automatically detect new/updated schemas during build
|
|
**Implementation**: Build hook that scans markitect/schemas/
|
|
**Estimated Effort**: 1 hour
|
|
**Impact**: Reduces manual steps
|
|
|
|
#### 9. Release Notes from CHANGELOG
|
|
**Current**: Copy CHANGELOG section manually
|
|
|
|
**Optimized**:
|
|
```bash
|
|
release notes v0.10.0
|
|
# Extracts CHANGELOG section for version
|
|
# Formats for GitHub/Gitea release
|
|
# Includes links to PRs/issues (if configured)
|
|
```
|
|
|
|
**Implementation**: CHANGELOG parser + formatter
|
|
**Estimated Effort**: 2 hours
|
|
**Impact**: Consistent release notes
|
|
|
|
---
|
|
|
|
## Stage 3 Deferred Work (from Workplan)
|
|
|
|
These were planned but deferred after v0.10.0 release:
|
|
|
|
### Task 3.1: CHANGELOG Validation in ReleaseManager
|
|
**Status**: Not implemented
|
|
**File**: `capabilities/release-management/src/release_management/validators/changelog_validator.py`
|
|
**Integration**: Update `release validate` command
|
|
**Estimated**: 1 hour
|
|
|
|
### Task 3.2: Version-Tag Consistency Check
|
|
**Status**: Not implemented
|
|
**Implementation**: Check CHANGELOG version matches git describe
|
|
**Estimated**: 1 hour
|
|
|
|
### Task 3.3: Explicit Version Command
|
|
**Status**: Not implemented
|
|
**File**: `markitect/cli.py`
|
|
**Command**: `markitect version`
|
|
**Estimated**: 30 minutes
|
|
|
|
**Total Stage 3 Effort**: ~2 hours
|
|
|
|
---
|
|
|
|
## Recommended Next Steps
|
|
|
|
### Option A: Complete Stage 3 (2 hours)
|
|
Implement deferred Stage 3 work:
|
|
1. CHANGELOG validation in release manager
|
|
2. Version-tag consistency checking
|
|
3. Explicit version command
|
|
|
|
**Benefits**:
|
|
- Catches errors before they become problems
|
|
- Completes release-management-optimization topic
|
|
- Ready for v0.11.0 with better tooling
|
|
|
|
**Timeline**: 1 session (2-3 hours)
|
|
|
|
### Option B: Targeted Quick Wins (1 hour)
|
|
Implement only high-priority optimizations:
|
|
1. Automated tag pushing (--push flag)
|
|
2. CHANGELOG validation command
|
|
|
|
**Benefits**:
|
|
- Solves immediate pain points
|
|
- Minimal time investment
|
|
- Can do Stage 3 later
|
|
|
|
**Timeline**: 1 session (1-2 hours)
|
|
|
|
### Option C: Move to Next Feature
|
|
Keep release process as-is, focus on new work
|
|
|
|
**Benefits**:
|
|
- Release process functional (just remember tags!)
|
|
- Can optimize later based on real pain points
|
|
- Move forward with new features
|
|
|
|
**Trade-offs**:
|
|
- Manual steps remain
|
|
- Risk of repeat mistakes
|
|
|
|
---
|
|
|
|
## Metrics
|
|
|
|
### Current Process Efficiency
|
|
|
|
**Time Breakdown (v0.10.0)**:
|
|
- Planning/Investigation: 30 min
|
|
- Stage 1 (Critical Fixes): 45 min
|
|
- Stage 2 (CHANGELOG Schema): 90 min
|
|
- Documentation: 20 min
|
|
- Package Building: 5 min
|
|
- **Total**: ~3 hours
|
|
|
|
**Manual Steps**: 8 steps
|
|
**Potential Automation**: 6 steps (tag status, tags, validation, version cmd, summary gen, schema ingest)
|
|
|
|
**Error Rate**:
|
|
- Forgot to push tags: 1 error
|
|
- Version detection bugs: 1 error (fixed in Stage 1)
|
|
- CHANGELOG format: 0 errors (schema caught issues)
|
|
- Unpushed tags visibility: 1 critical issue (no git status warning)
|
|
|
|
### With Stage 3 Optimizations
|
|
|
|
**Estimated Time Savings**: 15-20 min per release
|
|
- Pre-release validation: -5 min (automated)
|
|
- Tag pushing: -2 min (automated)
|
|
- Version consistency: -5 min (automated)
|
|
- CHANGELOG validation: -5 min (automated)
|
|
|
|
**Error Reduction**: ~80% (automated validation catches issues)
|
|
|
|
**Process Quality**: High consistency, repeatable
|
|
|
|
---
|
|
|
|
## Conclusion
|
|
|
|
### What Worked Well ✅
|
|
1. Staged workplan approach (clear phases)
|
|
2. CHANGELOG schema validation (caught format issues)
|
|
3. Comprehensive documentation (workplan, summary)
|
|
4. Build process smooth (release build worked perfectly)
|
|
|
|
### What Could Improve ⚠️
|
|
1. Tag pushing not automatic (forgot tags)
|
|
2. Manual CHANGELOG editing (time-consuming)
|
|
3. No pre-release validation (could miss errors)
|
|
|
|
### Recommendation
|
|
|
|
**Implement Option A: Complete Stage 3** (2 hours)
|
|
|
|
**Rationale**:
|
|
- Small time investment (2 hours)
|
|
- High impact (prevents errors, saves time)
|
|
- Completes release-management-optimization topic
|
|
- Ready for smooth v0.11.0 release
|
|
|
|
**Alternative**: If time-constrained, do Option B (1 hour) and defer remaining work
|
|
|
|
---
|
|
|
|
**Assessment Date**: 2026-01-06
|
|
**Next Review**: After v0.11.0 release
|
|
**Status**: Optimization opportunities identified, Stage 3 implementation recommended
|