11# Relica Roadmap
22
33> ** Current Version** : v0.8.0 (Released: December 16, 2025)
4- > ** Previous Release** : v0.7.0 (Released: January 25 , 2025)
4+ > ** Previous Release** : v0.7.0 (Released: November 24 , 2025)
55> ** Production Ready** : v1.0.0 (Target: Q3-Q4 2026)
66
77---
@@ -116,18 +116,21 @@ Relica is a **query builder**, NOT an ORM. We will **NEVER** add:
116116
117117## 📊 Feature Comparison
118118
119- | Feature | v0.1.2 | v0.2.0 | v0.3.0 | v1.0.0 | GORM | sqlc |
120- | ---------| --------| --------| --------| --------| ------| ------|
121- | ** CRUD** | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
122- | ** Expression API** | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
123- | ** JOIN** | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ |
124- | ** Aggregates** | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ |
125- | ** Subqueries** | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ |
126- | ** Window Functions** | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ |
127- | ** Relations** | ❌ | ❌ | ❌ | ❌ | ✅ | ❌ |
128- | ** Zero Dependencies** | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ |
129- | ** Type Safety** | ✅ | ✅ | ✅ | ✅ | Partial | ✅✅ |
130- | ** Dynamic Queries** | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
119+ | Feature | v0.8.0 | v1.0.0 | GORM | sqlc |
120+ | ---------| --------| --------| ------| ------|
121+ | ** CRUD** | ✅ | ✅ | ✅ | ✅ |
122+ | ** Expression API** | ✅ | ✅ | ✅ | ❌ |
123+ | ** JOIN** | ✅ | ✅ | ✅ | ✅ |
124+ | ** Aggregates** | ✅ | ✅ | ✅ | ✅ |
125+ | ** Subqueries** | ✅ | ✅ | ✅ | ✅ |
126+ | ** Window Functions** | ✅ | ✅ | ✅ | ✅ |
127+ | ** Model API** | ✅ | ✅ | ✅ | ❌ |
128+ | ** Named Placeholders** | ✅ | ✅ | ❌ | ❌ |
129+ | ** Transactional Helper** | ✅ | ✅ | ✅ | ❌ |
130+ | ** Relations** | ❌ | ❌ | ✅ | ❌ |
131+ | ** Zero Dependencies** | ✅ | ✅ | ❌ | ❌ |
132+ | ** Type Safety** | ✅ | ✅ | Partial | ✅✅ |
133+ | ** Dynamic Queries** | ✅ | ✅ | ✅ | ❌ |
131134
132135---
133136
@@ -145,17 +148,17 @@ Relica is a **query builder**, NOT an ORM. We will **NEVER** add:
145148
146149## 📈 Performance Goals
147150
148- | Metric | v0.1.2 | v0.2.0 Actual | v0.3 .0 Actual | v1.0.0 Target |
149- | --------| --------| --------------- | -------- -------| ---------------|
150- | ** Statement Cache Hit** | <60ns | <60ns ✅ | <60ns ✅ | <50ns |
151- | ** Batch INSERT (100 rows)** | 327ms | 327ms ✅ | 327ms ✅ | <200ms |
152- | ** N+1 Query Reduction** | N/A | 3-18x ✅ | 3-18x ✅ | Maintained |
153- | ** Pagination Memory** | N/A | 100x reduction ✅ | 100x ✅ | Maintained |
154- | ** Aggregate Memory** | N/A | 2,500,000x reduction ✅ | 2,500,000x ✅ | Maintained |
155- | ** EXISTS vs IN** | N/A | N/A | 5x faster ✅ | Maintained |
156- | ** UNION ALL vs UNION** | N/A | N/A | 2-3x faster ✅ | Maintained |
157- | ** Test Coverage** | 87.4% | 88.9% ✅ | 89.5% ✅ | >90% |
158- | ** Dependencies** | 0 | 0 ✅ | 0 ✅ | 0 |
151+ | Metric | v0.8 .0 Actual | v1.0.0 Target |
152+ | --------| ---------------| ---------------|
153+ | ** Statement Cache Hit** | <60ns ✅ | <50ns |
154+ | ** Batch INSERT (100 rows)** | 327ms ✅ | <200ms |
155+ | ** N+1 Query Reduction** | 3-18x ✅ | Maintained |
156+ | ** Pagination Memory** | 100x reduction ✅ | Maintained |
157+ | ** Aggregate Memory** | 2,500,000x reduction ✅ | Maintained |
158+ | ** EXISTS vs IN** | 5x faster ✅ | Maintained |
159+ | ** UNION ALL vs UNION** | 2-3x faster ✅ | Maintained |
160+ | ** Test Coverage** | 85%+ ✅ | >90% |
161+ | ** Dependencies** | 0 ✅ | 0 |
159162
160163---
161164
@@ -197,7 +200,7 @@ Relica is a **query builder**, NOT an ORM. We will **NEVER** add:
197200- ** v0.4.1-beta** (2025-10-26) - Convenience methods (Select, Insert, Update, Delete)
198201- ** v0.5.0** (2025-11-14) - Enterprise security, query optimizer, comprehensive documentation
199202- ** v0.6.0** (2025-11-24) - Struct operations (InsertStruct, Model API)
200- - ** v0.7.0** (2025-01-25 ) - Model() API parity (auto-populate ID, selective fields)
203+ - ** v0.7.0** (2025-11-24 ) - Model() API parity (auto-populate ID, selective fields)
201204- ** v0.8.0** (2025-12-16) - Named placeholders, quoting, Row/Column, Transactional, Distinct, AndWhere/OrWhere
202205- ** v1.0.0** (Target: Q3-Q4 2026) - Production stable release
203206
0 commit comments