allframe 0.1.28

Complete Rust web framework with built-in HTTP/2 server, REST/GraphQL/gRPC, compile-time DI, CQRS - TDD from day zero
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Changelog - AllFrame</title>
    <meta name="description" content="AllFrame changelog - Track all releases, features, and improvements to the composable Rust API framework.">
    <meta name="keywords" content="rust, web framework, changelog, releases, allframe">
    <link rel="canonical" href="https://all-source-os.github.io/all-frame/changelog.html">

    <!-- Open Graph -->
    <meta property="og:title" content="Changelog - AllFrame">
    <meta property="og:description" content="Track all releases, features, and improvements to AllFrame.">
    <meta property="og:type" content="website">
    <meta property="og:url" content="https://all-source-os.github.io/all-frame/changelog.html">

    <link rel="stylesheet" href="style.css">
    <style>
        .container { max-width: 1000px; }
        .page-header { padding: 48px 0 32px; border-bottom: 1px solid var(--border); }
        .page-header h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 8px; }
        .page-header p { color: var(--text-muted); font-size: 1.1rem; }

        .timeline { padding: 40px 0; }

        .release { display: flex; gap: 32px; position: relative; padding-bottom: 48px; }
        .release:last-child { padding-bottom: 0; }

        .release-meta {
            width: 140px;
            flex-shrink: 0;
            position: sticky;
            top: 100px;
            align-self: flex-start;
        }

        .release-date { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }

        .release-version {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 56px;
            height: 40px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0 10px;
        }

        .release-content { flex: 1; position: relative; padding-left: 32px; }

        .release-content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            bottom: -48px;
            width: 1px;
            background: var(--border);
        }

        .release:last-child .release-content::before { bottom: 0; }

        .release-content::after {
            content: '';
            position: absolute;
            left: -5px;
            top: 8px;
            width: 11px;
            height: 11px;
            background: var(--primary);
            border-radius: 50%;
        }

        .release-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
        .release-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

        .section { margin-bottom: 24px; }

        .section-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .section ul { list-style: none; padding: 0; }

        .section li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            color: var(--text);
        }

        .section li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--text-muted);
            border-radius: 50%;
        }

        .section li strong { color: var(--text); }

        @media (max-width: 768px) {
            .release { flex-direction: column; gap: 16px; }
            .release-meta { width: 100%; position: static; display: flex; align-items: center; gap: 16px; }
            .release-content { padding-left: 0; }
            .release-content::before, .release-content::after { display: none; }
        }
    </style>
</head>
<body>
    <header>
        <nav class="container">
            <a href="index.html" class="logo"><span>All</span>Frame</a>
            <div class="nav-links">
                <a href="index.html">Home</a>
                <a href="https://docs.rs/allframe">API Docs</a>
                <a href="https://github.com/all-source-os/all-frame">GitHub</a>
                <a href="https://crates.io/crates/allframe">crates.io</a>
            </div>
        </nav>
    </header>

    <main>
        <div class="page-header">
            <div class="container">
                <h1>Changelog</h1>
                <p>All notable changes to AllFrame. See <a href="https://github.com/all-source-os/all-frame/releases">GitHub Releases</a> for full details.</p>
            </div>
        </div>

        <div class="timeline">
            <div class="container">

                <!-- v0.1.19 -->
                <div class="release">
                    <div class="release-meta">
                        <div class="release-date">March 18, 2026</div>
                        <div class="release-version">0.1.19</div>
                    </div>
                    <div class="release-content">
                        <h2 class="release-title">Streaming Handler Support</h2>
                        <div class="release-tags">
                            <span class="tag new">New</span>
                            <span class="tag feature">Streaming</span>
                            <span class="tag feature">Tauri</span>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Added</h3>
                            <ul>
                                <li><strong>Streaming Handlers</strong> -- <code>StreamSender</code> with bounded channel backpressure, <code>CancellationToken</code> auto-cancelled on receiver drop, both callback and <code>impl Stream</code> patterns</li>
                                <li><strong>Tauri IPC Bridge</strong> -- <code>allframe_stream</code> / <code>allframe_stream_cancel</code> commands with per-stream UUID event channels and <code>ActiveStreams</code> cancellation tracking</li>
                                <li><strong>TypeScript Streaming Codegen</strong> -- <code>StreamObserver</code>, <code>StreamSubscription</code> interfaces, <code>callStreamHandler</code> helper with auto-cleanup</li>
                                <li><strong>RxJS Adapter</strong> -- <code>toObservable()</code> with lazy <code>import("rxjs")</code>, zero hard dependency</li>
                                <li><strong><code>#[tauri_compat(streaming)]</code></strong> -- Macro variant for streaming handler migration</li>
                                <li><strong><code>HandlerKind</code> enum</strong> -- <code>allframe_list</code> reports request_response vs streaming for each handler</li>
                                <li><strong><code>register_stream*</code></strong> -- Bridge <code>futures::Stream</code> to channel-based <code>StreamSender</code></li>
                            </ul>
                        </div>
                    </div>
                </div>

                <!-- v0.1.18 -->
                <div class="release">
                    <div class="release-meta">
                        <div class="release-date">March 2026</div>
                        <div class="release-version">0.1.18</div>
                    </div>
                    <div class="release-content">
                        <h2 class="release-title">Tauri Migration Ergonomics</h2>
                        <div class="release-tags">
                            <span class="tag new">New</span>
                            <span class="tag feature">Tauri</span>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Added</h3>
                            <ul>
                                <li><strong><code>#[tauri_compat]</code> macro</strong> -- Keep function signatures, swap the attribute for mechanical migration from Tauri</li>
                                <li><strong>Typed return values</strong> -- Handlers return <code>impl Serialize</code>, framework serializes via <code>IntoHandlerResult</code> trait</li>
                                <li><strong>TypeScript client codegen</strong> -- Auto-generate typed TS functions from handler registrations</li>
                                <li><strong><code>IntoHandlerResult</code> trait</strong> -- Extensible handler return types (<code>String</code>, <code>Json&lt;T&gt;</code>, <code>Result&lt;T, E&gt;</code>)</li>
                            </ul>
                        </div>
                    </div>
                </div>

                <!-- v0.1.15 - v0.1.17 -->
                <div class="release">
                    <div class="release-meta">
                        <div class="release-date">Feb - Mar 2026</div>
                        <div class="release-version">0.1.15-17</div>
                    </div>
                    <div class="release-content">
                        <h2 class="release-title">Offline-First Architecture</h2>
                        <div class="release-tags">
                            <span class="tag new">New</span>
                            <span class="tag feature">Offline</span>
                            <span class="tag feature">Desktop</span>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Added</h3>
                            <ul>
                                <li><strong>SQLite event store backend</strong> -- WAL mode, zero network deps</li>
                                <li><strong>Offline circuit breaker</strong> -- Operation queuing and replay</li>
                                <li><strong>Store-and-forward pattern</strong> -- Intermittent connectivity support</li>
                                <li><strong>Bidirectional projection sync</strong> -- Pluggable conflict resolution</li>
                                <li><strong>Lazy DI initialization</strong> -- Concurrent warm-up</li>
                                <li><strong>Saga compensation</strong> -- File snapshots and SQLite savepoints</li>
                                <li><strong>Embedded MCP server</strong> -- Local-only LLM tool dispatch</li>
                                <li><strong><code>allframe-tauri</code> crate</strong> -- Tauri 2.x desktop integration</li>
                                <li><strong><code>offline</code> feature flag</strong> -- Zero network dependencies verified by CI</li>
                                <li><strong>Typed handler args and DI state injection</strong></li>
                            </ul>
                        </div>
                    </div>
                </div>

                <!-- v0.1.12 -->
                <div class="release">
                    <div class="release-meta">
                        <div class="release-date">December 15, 2025</div>
                        <div class="release-version">0.1.12</div>
                    </div>
                    <div class="release-content">
                        <h2 class="release-title">MCP Server Debuggability</h2>
                        <div class="release-tags">
                            <span class="tag new">New</span>
                            <span class="tag fix">Fixed</span>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Added</h3>
                            <ul>
                                <li><strong>MCP Server Debuggability</strong> -- Production-ready stdio transport with comprehensive debugging</li>
                                <li><strong>Environment Variables for MCP Debugging</strong></li>
                                <li><strong>Claude Code Setup Guide</strong> -- Comprehensive documentation for Claude Code CLI</li>
                            </ul>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Fixed</h3>
                            <ul>
                                <li><strong>AllSource Core Re-enabled</strong> -- <code>cqrs-allsource</code> features now work</li>
                            </ul>
                        </div>
                    </div>
                </div>

                <!-- v0.1.9 -->
                <div class="release">
                    <div class="release-meta">
                        <div class="release-date">December 13, 2025</div>
                        <div class="release-version">0.1.9</div>
                    </div>
                    <div class="release-content">
                        <h2 class="release-title">Protocol-Agnostic Routing Complete</h2>
                        <div class="release-tags">
                            <span class="tag new">New</span>
                            <span class="tag feature">Authentication</span>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Added</h3>
                            <ul>
                                <li><strong>Protocol-Agnostic Routing Complete</strong> -- Full multi-protocol support across 5 phases</li>
                                <li><strong>MCP Server (Zero-Bloat)</strong> -- Separate crate for LLM tool integration</li>
                                <li><strong><code>KeyedCircuitBreaker&lt;K&gt;</code></strong> -- Generic keyed circuit breaker for per-resource isolation</li>
                                <li><strong><code>resilience-redis</code> feature</strong> -- Redis-backed distributed rate limiting</li>
                                <li><strong>Layered Authentication</strong> -- Zero-bloat, feature-gated auth infrastructure (JWT, Axum, gRPC)</li>
                            </ul>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Changed</h3>
                            <ul>
                                <li>Total test count now 455+ (was 361+)</li>
                                <li>Upgraded <code>thiserror</code> from 1.0 to 2.0</li>
                            </ul>
                        </div>
                    </div>
                </div>

                <!-- v0.1.8 -->
                <div class="release">
                    <div class="release-meta">
                        <div class="release-date">December 09, 2025</div>
                        <div class="release-version">0.1.8</div>
                    </div>
                    <div class="release-content">
                        <h2 class="release-title">Graceful Shutdown Utilities</h2>
                        <div class="release-tags">
                            <span class="tag new">New</span>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Added</h3>
                            <ul>
                                <li><strong>Graceful Shutdown Utilities</strong> -- <code>ShutdownAwareTaskSpawner</code>, <code>GracefulShutdownExt</code>, <code>ShutdownExt</code> trait</li>
                                <li><strong>Examples</strong> -- <code>graceful_shutdown.rs</code> and <code>shutdown_patterns.rs</code> with 5 common patterns</li>
                            </ul>
                        </div>
                    </div>
                </div>

                <!-- v0.1.7 -->
                <div class="release">
                    <div class="release-meta">
                        <div class="release-date">December 08, 2025</div>
                        <div class="release-version">0.1.7</div>
                    </div>
                    <div class="release-content">
                        <h2 class="release-title">Resilience and Security Modules</h2>
                        <div class="release-tags">
                            <span class="tag new">New</span>
                            <span class="tag feature">Resilience</span>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Added</h3>
                            <ul>
                                <li><strong>Resilience module</strong> -- RetryExecutor, CircuitBreaker, RateLimiter, AdaptiveRetry, RetryBudget (~1,000+ lines)</li>
                                <li><strong>Security module</strong> -- URL/credential obfuscation, <code>Sensitive&lt;T&gt;</code>, <code>#[derive(Obfuscate)]</code></li>
                                <li><strong>Proc macros</strong> -- <code>#[retry]</code>, <code>#[circuit_breaker]</code>, <code>#[rate_limited]</code></li>
                            </ul>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Changed</h3>
                            <ul>
                                <li><code>health</code> feature now optional (hyper/hyper-util gated behind it)</li>
                                <li>Added <code>cqrs-allsource</code>, <code>cqrs-postgres</code>, <code>cqrs-rocksdb</code> feature flags</li>
                                <li><code>grpc-tls</code> deprecated in favor of <code>router-grpc-tls</code></li>
                            </ul>
                        </div>
                    </div>
                </div>

                <!-- v0.1.3 - v0.1.6 -->
                <div class="release">
                    <div class="release-meta">
                        <div class="release-date">Dec 05-06, 2025</div>
                        <div class="release-version">0.1.3-6</div>
                    </div>
                    <div class="release-content">
                        <h2 class="release-title">Initial crates.io Publishing</h2>
                        <div class="release-tags">
                            <span class="tag new">New</span>
                            <span class="tag feature">CQRS</span>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Highlights</h3>
                            <ul>
                                <li><strong>First crates.io publish</strong> -- <code>cargo install allframe</code> now works</li>
                                <li><strong>Scalar UI integration</strong> -- Modern OpenAPI 3.1 docs (10x smaller than Swagger)</li>
                                <li><strong>Binary size monitoring</strong> -- All binaries under 2MB, CI-enforced</li>
                                <li><strong>GraphiQL playground</strong> -- Interactive GraphQL documentation</li>
                                <li><strong>Contract testing</strong> -- Automatic test generation from router</li>
                                <li><strong>CQRS Phases 1-5 complete</strong> -- CommandBus (90% reduction), ProjectionRegistry (90%), Event Versioning (95%), Saga Orchestration (75%)</li>
                                <li><strong>Zero-warning templates</strong> -- <code>allframe ignite</code> generates clean projects</li>
                                <li><strong>allsource-core upgrade</strong> -- Updated CQRS backend, fixed event trait bounds</li>
                            </ul>
                        </div>
                    </div>
                </div>

                <!-- Pre-0.1.3 -->
                <div class="release">
                    <div class="release-meta">
                        <div class="release-date">2024 - Nov 2025</div>
                        <div class="release-version">0.1.0-2</div>
                    </div>
                    <div class="release-content">
                        <h2 class="release-title">Foundation</h2>
                        <div class="release-tags">
                            <span class="tag feature">Core</span>
                        </div>
                        <div class="section">
                            <h3 class="section-title">Milestones</h3>
                            <ul>
                                <li><strong>v0.1</strong> -- <code>allframe ignite</code> CLI + project scaffolding</li>
                                <li><strong>v0.2</strong> -- Compile-time DI + Auto OpenAPI 3.1</li>
                                <li><strong>v0.3</strong> -- OpenTelemetry tracing support</li>
                            </ul>
                        </div>
                    </div>
                </div>

            </div>
        </div>
    </main>

    <footer>
        <div class="container">
            <div class="links">
                <a href="index.html">Home</a>
                <a href="https://github.com/all-source-os/all-frame">GitHub</a>
                <a href="https://docs.rs/allframe">API Docs</a>
                <a href="https://crates.io/crates/allframe">crates.io</a>
            </div>
            <p>AllFrame -- One frame. Infinite transformations. Built with TDD, from day zero.</p>
        </div>
    </footer>
</body>
</html>