-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG.html
More file actions
3959 lines (3955 loc) · 182 KB
/
CHANGELOG.html
File metadata and controls
3959 lines (3955 loc) · 182 KB
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="generator" content="FaasJS Custom SSG" />
<style>
:root {
--vp-c-bg: #fff;
}
[data-theme='dark'] {
--vp-c-bg: #1b1b1f;
}
html,
body {
background-color: var(--vp-c-bg);
}
</style>
<script>
try {
const useChoice = localStorage.getItem('vuepress-color-scheme');
const systemStatus =
'matchMedia' in window
? window.matchMedia('(prefers-color-scheme: dark)').matches
: false;
if (useChoice === 'light') {
document.documentElement.dataset.theme = 'light';
} else if (useChoice === 'dark' || systemStatus) {
document.documentElement.dataset.theme = 'dark';
}
} catch {}
</script>
<link rel="icon" href="/logo.jpg" />
<title>Changelog | FaasJS</title>
<meta name="description" content="A Rails-inspired, curated full-stack TypeScript framework for database-driven React business applications." />
<link rel="stylesheet" href="/assets/style.css" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-0049636498302507" crossorigin="anonymous"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143006612-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-143006612-1');
</script>
</head>
<body>
<div id="app">
<div class="vp-theme-container external-link-icon no-sidebar">
<header class="vp-navbar" vp-navbar>
<div class="vp-toggle-sidebar-button" title="toggle sidebar" aria-expanded="false" role="button" tabindex="0">
<div class="icon" aria-hidden="true"><span></span><span></span><span></span></div>
</div>
<span>
<a class="route-link" href="/"><span class="vp-site-name" aria-hidden="true">FaasJS</span></a>
</span>
<div class="vp-navbar-items-wrapper"><nav class="vp-navbar-items vp-hide-mobile" aria-label="site navigation"><div class="vp-navbar-item"><a class="auto-link route-link" href="/" aria-label="Home">Home</a></div><div class="vp-navbar-item"><div class="vp-navbar-dropdown-wrapper"><button class="vp-navbar-dropdown-title" type="button" aria-label="Learn"><span class="title">Learn</span><span class="arrow down"></span></button><button class="vp-navbar-dropdown-title-mobile" type="button" aria-label="Learn"><span class="title">Learn</span><span class="right arrow"></span></button><ul class="vp-navbar-dropdown"><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/guide/" aria-label="Guide">Guide</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/doc/" aria-label="Documents">Documents</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link external-link" href="https://github.com/faasjs/faasjs/tree/main/templates" aria-label="Templates" rel="noopener noreferrer" target="_blank">Templates</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link route-link-active" href="/CHANGELOG.html" aria-label="Changelog">Changelog</a></li><li class="vp-navbar-dropdown-item"><h4 class="vp-navbar-dropdown-subtitle"><span>Ecosystem</span></h4><ul class="vp-navbar-dropdown-subitem-wrapper"><li class="vp-navbar-dropdown-subitem"><a class="auto-link route-link" href="/doc/images/" aria-label="Docker Images">Docker Images</a></li></ul></li></ul></div></div><div class="vp-navbar-item"><div class="vp-navbar-dropdown-wrapper"><button class="vp-navbar-dropdown-title" type="button" aria-label="Community"><span class="title">Community</span><span class="arrow down"></span></button><button class="vp-navbar-dropdown-title-mobile" type="button" aria-label="Community"><span class="title">Community</span><span class="right arrow"></span></button><ul class="vp-navbar-dropdown"><li class="vp-navbar-dropdown-item"><a class="auto-link external-link" href="https://github.com/faasjs/faasjs/" aria-label="Github" rel="noopener noreferrer" target="_blank">Github</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/CONTRIBUTING.html" aria-label="Contributing">Contributing</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link external-link" href="https://github.com/sponsors/faasjs" aria-label="Sponsor" rel="noopener noreferrer" target="_blank">Sponsor</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/SECURITY.html" aria-label="Security">Security</a></li></ul></div></div><div class="vp-navbar-item"><div class="vp-navbar-dropdown-wrapper"><button class="vp-navbar-dropdown-title" type="button" aria-label="English"><span class="title">English</span><span class="arrow down"></span></button><button class="vp-navbar-dropdown-title-mobile" type="button" aria-label="English"><span class="title">English</span><span class="right arrow"></span></button><ul class="vp-navbar-dropdown"><li class="vp-navbar-dropdown-item"><a class="auto-link route-link route-link-active" href="/CHANGELOG.html" aria-label="English">English</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/zh/" aria-label="简体中文">简体中文</a></li></ul></div></div></nav></div>
</header>
<div class="vp-sidebar-mask"></div>
<aside class="vp-sidebar" vp-sidebar><nav class="vp-navbar-items" aria-label="site navigation"><div class="vp-navbar-item"><a class="auto-link route-link" href="/" aria-label="Home">Home</a></div><div class="vp-navbar-item"><div class="vp-navbar-dropdown-wrapper mobile"><button class="vp-navbar-dropdown-title" type="button" aria-label="Learn"><span class="title">Learn</span><span class="arrow down"></span></button><button class="vp-navbar-dropdown-title-mobile" type="button" aria-label="Learn"><span class="title">Learn</span><span class="right arrow"></span></button><ul class="vp-navbar-dropdown"><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/guide/" aria-label="Guide">Guide</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/doc/" aria-label="Documents">Documents</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link external-link" href="https://github.com/faasjs/faasjs/tree/main/templates" aria-label="Templates" rel="noopener noreferrer" target="_blank">Templates</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link route-link-active" href="/CHANGELOG.html" aria-label="Changelog">Changelog</a></li><li class="vp-navbar-dropdown-item"><h4 class="vp-navbar-dropdown-subtitle"><span>Ecosystem</span></h4><ul class="vp-navbar-dropdown-subitem-wrapper"><li class="vp-navbar-dropdown-subitem"><a class="auto-link route-link" href="/doc/images/" aria-label="Docker Images">Docker Images</a></li></ul></li></ul></div></div><div class="vp-navbar-item"><div class="vp-navbar-dropdown-wrapper mobile"><button class="vp-navbar-dropdown-title" type="button" aria-label="Community"><span class="title">Community</span><span class="arrow down"></span></button><button class="vp-navbar-dropdown-title-mobile" type="button" aria-label="Community"><span class="title">Community</span><span class="right arrow"></span></button><ul class="vp-navbar-dropdown"><li class="vp-navbar-dropdown-item"><a class="auto-link external-link" href="https://github.com/faasjs/faasjs/" aria-label="Github" rel="noopener noreferrer" target="_blank">Github</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/CONTRIBUTING.html" aria-label="Contributing">Contributing</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link external-link" href="https://github.com/sponsors/faasjs" aria-label="Sponsor" rel="noopener noreferrer" target="_blank">Sponsor</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/SECURITY.html" aria-label="Security">Security</a></li></ul></div></div><div class="vp-navbar-item"><div class="vp-navbar-dropdown-wrapper mobile"><button class="vp-navbar-dropdown-title" type="button" aria-label="English"><span class="title">English</span><span class="arrow down"></span></button><button class="vp-navbar-dropdown-title-mobile" type="button" aria-label="English"><span class="title">English</span><span class="right arrow"></span></button><ul class="vp-navbar-dropdown"><li class="vp-navbar-dropdown-item"><a class="auto-link route-link route-link-active" href="/CHANGELOG.html" aria-label="English">English</a></li><li class="vp-navbar-dropdown-item"><a class="auto-link route-link" href="/zh/" aria-label="简体中文">简体中文</a></li></ul></div></div></nav></aside>
<main class="vp-page">
<div vp-content>
<div id="content"><div class="theme-default-content"><h1 id="changelog" tabindex="-1">Changelog</h1>
<p>FaasJS use <a href="https://semver.org/" target="_blank" rel="noopener noreferrer" class="external-link">Semantic Versioning</a>.</p>
<h2 id="unreleased" tabindex="-1">Unreleased</h2>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Feature] Document colocated test layout as the recommended convention and keep scaffolded tests next to the code or slice they cover instead of under catch-all <code>__tests__</code> folders.</li>
<li>[Break] Remove the stale Jobs design memo from published docs; use the Jobs guide as the supported source of truth.</li>
<li>[Fix] Remove stale code-comment guidance around workaround, TODO/FIXME, and deprecated annotations.</li>
</ul>
</li>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Break] Remove the in-process <code>CronJob</code> APIs and stop mounting background work from <code>Server.listen()</code> / <code>Server.close()</code>.</li>
<li>[Break] Stop falling back to the original HTTP params object when <code>structuredClone()</code> fails.</li>
<li>[Break] Stop reading the generic <code>x-request-id</code> request header; use <code>x-faasjs-request-id</code> for request id propagation.</li>
<li>[Break] Stop re-exporting <code>z</code> from <code>@faasjs/core</code>; import Zod directly from <code>zod</code> in APIs and templates.</li>
<li>[Break] Stop copying <code>NODE_ENV</code> into <code>FaasEnv</code> during <code>Server</code> construction; set <code>FaasEnv</code> explicitly when selecting a stage.</li>
<li>[Break] Stop probing <code>src/tsconfig.json</code> next to the server root; keep runtime path aliases in the project <code>tsconfig.json</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/jobs</code></p>
<ul>
<li>[Break] Remove the <code>autoStart</code> option from job worker and scheduler startup helpers; use <code>JobWorker</code> or <code>JobScheduler</code> directly for manual polling/ticking.</li>
<li>[Break] Remove the injected <code>client</code> from job events and handler data; call <code>getClient()</code> inside job handlers when database access is needed.</li>
<li>[Break] Stop using <code>NODE_ENV</code> as the job registry staging fallback; pass <code>staging</code> or set <code>FaasEnv</code> explicitly.</li>
<li>[Break] Stop probing <code>src/tsconfig.json</code> when loading job modules; keep runtime path aliases in the project <code>tsconfig.json</code>.</li>
<li>[Feature] Add PostgreSQL-backed <code>.job.ts</code> background jobs with <code>defineJob</code>, <code>enqueueJob</code>, schema-inferred <code>params</code>, <code>startJobWorker</code>, <code>startJobScheduler</code>, retries, leases, idempotency keys, and cron enqueue dedupe.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Break] Require config-driven plugins to export a matching named lifecycle class, and remove default-export plugin constructor fallback.</li>
<li>[Break] Remove the obsolete <code>detectNodeRuntime()</code> helper and <code>NodeRuntime</code> type; Node utilities now assume the supported Node ESM runtime.</li>
<li>[Feature] Add reusable Zod schema parsing helpers for FaasJS boundary validation.</li>
<li>[Break] Make <code>loadPackage()</code> return only the default export and remove its <code>defaultName</code> and <code>options</code> parameters; use <code>registerNodeModuleHooks()</code> for explicit root, tsconfig, or version overrides.</li>
<li>[Break] Stop resolving imports such as <code>./config.json</code> to shadow files such as <code>./config.json.ts</code>; use extensionless imports or the exact source filename.</li>
<li>[Break] Stop resolving the removed <code>@faasjs/http</code> plugin package alias to <code>@faasjs/core</code>; use plugin type <code>http</code> instead.</li>
<li>[Break] Stop inferring logger silence from <code>npm_config_argv --silent</code>; control logging explicitly with logger options and FaasJS log env vars.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Break] Remove the <code>faas run</code> cwd fallback for resolving <code>@faasjs/node-utils/register-hooks</code>; the command now requires the CLI package path to resolve cleanly.</li>
<li>[Break] Require <code>ApiTester</code> and <code>testApi()</code> to receive a FaasJS API instance directly, and expose that wrapped instance as <code>api</code>.</li>
<li>[Break] Make <code>ApiTester</code> use <code>development</code> as its default staging when <code>FaasEnv</code> is not set.</li>
</ul>
</li>
<li>
<p><code>@faasjs/pg-dev</code></p>
<ul>
<li>[Break] Require <code>VITEST_POOL_ID</code> for PgVitest worker database lookup and remove <code>VITEST_WORKER_ID</code> / worker <code>1</code> fallbacks.</li>
<li>[Break] Drop old Node worker-count and package shim fallbacks from the Vitest plugin runtime.</li>
<li>[Break] Remove the legacy <code>./typed-pg-vitest-setup</code> and <code>./typed-pg-vitest-global-setup</code> subpath exports; use <code>PgVitestPlugin()</code> instead.</li>
<li>[Break] Stop reusing the first PgVitest database URL when the current worker id is missing; missing worker mappings now fail explicitly.</li>
<li>[Break] Rename the Vitest integration from <code>TypedPgVitestPlugin()</code> / <code>setupTypedPgVitest()</code> / <code>TypedPgVitestSetupRuntime</code> to <code>PgVitestPlugin()</code> / <code>setupPgVitest()</code> / <code>PgVitestSetupRuntime</code>, and remove the old typed-pg virtual module and context names.</li>
</ul>
</li>
<li>
<p><code>@faasjs/pg</code></p>
<ul>
<li>[Break] Rename the migration history table from <code>typed_pg_migrations</code> to <code>faasjs_pg_migrations</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/types</code></p>
<ul>
<li>[Break] Remove the <code>faasjsActionsPlaceholder</code> member from <code>FaasActions</code>; route declarations now come only from module augmentation.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.25...v8.0.0-beta.26" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.26 (2026-04-24)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Remove the discontinued <code>vscode/faasjs-snippets</code> VS Code snippets extension from the repo, docs navigation, and devcontainer example.</li>
</ul>
</li>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Break] Require <code>.api.ts</code> modules loaded by <code>Server</code> to export their FaasJS API instance as <code>default</code>, and stop resolving the named <code>func</code> export.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Break] Stop accepting <code>{ func }</code> module objects in <code>ApiTester</code> and <code>testApi()</code>. Pass the API instance itself or a module object with <code>default</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/pg-dev</code></p>
<ul>
<li>[Break] Remove the <code>TypedPgVitestPlugin()</code> options object and the <code>TypedPgVitestPluginOptions</code> export. Keep PG-backed tests in Node Vitest projects; browser-like projects are skipped automatically.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Break] Require <code>loadApiHandler()</code> callers to load API modules that export their FaasJS API instance as <code>default</code>, and remove the named <code>func</code> fallback from tests and examples.</li>
</ul>
</li>
<li>
<p><code>@faasjs/react</code></p>
<ul>
<li>[Feature] Add polling-backed background refresh support to <code>useFaas</code>, <code>useFaasStream</code>, and <code>FaasDataWrapper</code>, with a separate <code>refreshing</code> state so automatic refreshes do not toggle the blocking <code>loading</code> state.</li>
</ul>
</li>
<li>
<p><code>@faasjs/types</code></p>
<ul>
<li>[Break] Limit <code>InferFaasApi<TModule></code> to modules with a <code>default</code> FaasJS API export.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.24...v8.0.0-beta.25" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.25 (2026-04-22)</code></a></p>
<ul>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Break] Remove the deprecated <code>parseFuncFilenameFromStack()</code> alias. Use <code>parseApiFilenameFromStack()</code> directly.</li>
<li>[Feature] Load the project <code>.env</code> automatically when <code>Server</code> starts from a FaasJS app root, and warn without blocking startup when the file is unreadable.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Break] Remove the <code>test()</code> helper plus deprecated <code>FuncWarper</code> and <code>isTypegenSourceFile()</code> aliases, keep <code>testApi()</code> as the only callable JSON test helper, use <code>ApiTester</code> as the only public tester class, and keep <code>isTypegenInputFile()</code> as the only public typegen watcher helper.</li>
<li>[Feature] Load the project <code>.env</code> automatically when <code>viteFaasJsServer()</code> starts, and warn without blocking startup when the file is unreadable.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Break] Remove the deprecated <code>loadFunc()</code> alias. Use <code>loadApiHandler()</code> directly.</li>
</ul>
</li>
<li>
<p><code>@faasjs/types</code></p>
<ul>
<li>[Break] Remove the deprecated <code>InferFaasFunc<TModule></code> alias. Use <code>InferFaasApi<TModule></code> directly.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.23...v8.0.0-beta.24" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.24 (2026-04-21)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Rename application API entry files from <code>.func.ts</code> to <code>.api.ts</code>, update fallback routing filenames to <code>index.api.ts</code> and <code>default.api.ts</code>, and make <code>export default defineApi(...)</code> the canonical authoring pattern across scaffolds, templates, and docs.</li>
<li>[Feature] Add API-first migration aliases including <code>loadApiHandler</code>, <code>ApiTester</code>, <code>InferFaasApi</code>, <code>parseApiFilenameFromStack</code>, and <code>isTypegenInputFile</code>, while keeping <code>loadFunc</code>, <code>FuncWarper</code>, <code>InferFaasFunc</code>, <code>parseFuncFilenameFromStack</code>, and <code>isTypegenSourceFile</code> as deprecated migration-release aliases.</li>
</ul>
</li>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Break] Stop auto loading <code>.env</code> during <code>Server</code> initialization. Load env files explicitly in your entrypoint when needed.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Break] Stop auto loading <code>.env</code> for <code>faas run</code> and <code>faas types</code>. Scripts that depend on dotenv files must load them explicitly.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Break] Remove the <code>loadEnvFileIfExists</code> helper. Use Node's built-in <code>loadEnvFile()</code> directly in bootstrap code instead.</li>
</ul>
</li>
<li>
<p><code>create-faas-app</code></p>
<ul>
<li>[Feature] Scaffold <code>server.ts</code> to call Node's built-in <code>loadEnvFile()</code> explicitly and warn without blocking startup when loading fails.</li>
</ul>
</li>
<li>
<p><code>@faasjs/pg</code></p>
<ul>
<li>[Break] Rename the <code>@faasjs/pg</code> CLI command from <code>typed-pg</code> to <code>faasjs-pg</code>.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.22...v8.0.0-beta.23" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.23 (2026-04-19)</code></a></p>
<ul>
<li>
<p><code>@faasjs/pg</code></p>
<ul>
<li>[Feature] Bring the former <code>typed-pg</code> package into the FaasJS monorepo as <code>@faasjs/pg</code>, including the PostgreSQL query builder, schema builder, migrator, and <code>typed-pg</code> CLI.</li>
</ul>
</li>
<li>
<p><code>@faasjs/pg-dev</code></p>
<ul>
<li>[Feature] Bring the former <code>typed-pg-dev</code> package into the FaasJS monorepo as <code>@faasjs/pg-dev</code>, including <code>TypedPgVitestPlugin</code> and the PGlite-backed Vitest test helpers.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.21...v8.0.0-beta.22" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.22 (2026-04-19)</code></a></p>
<ul>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Fix] Block static file and server route traversal outside configured roots before loading files from user-controlled paths.</li>
<li>[Fix] Return HTTP 400 with an explicit invalid-JSON error when an <code>application/json</code> request body cannot be parsed, instead of silently falling back to partial params handling.</li>
<li>[Fix] Stop documenting unused <code>HttpConfig</code> route and deploy keys in <code>@faasjs/core</code>, and keep the public HTTP plugin config focused on the fields the current runtime actually consumes.</li>
<li>[Fix] Stop silently generating ephemeral HTTP session secrets when <code>cookie.session.secret</code> is missing, and fail session initialization explicitly so misconfiguration shows up before restart-driven logouts.</li>
<li>[Fix] Only call <code>Server.middleware()</code>'s <code>next()</code> callback when FaasJS leaves the request unhandled, avoiding duplicate dispatch after FaasJS has already written a response.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Feature] Add <code>isPathInsideRoot</code> to normalize root containment checks, including symlink-aware validation for root-scoped file access.</li>
</ul>
</li>
<li>
<p><code>create-faas-app</code></p>
<ul>
<li>[Feature] Generate a unique random <code>cookie.session.secret</code> in scaffolded <code>src/faas.yaml</code> instead of shipping the shared placeholder value.</li>
</ul>
</li>
<li>
<p><code>@faasjs/react</code></p>
<ul>
<li>[Break] Remove the <code>@faasjs/react</code> routing and bootstrap helpers, including the <code>routing</code>, <code>auto-pages</code>, and <code>client-entry</code> subpath exports.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.20...v8.0.0-beta.21" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.21 (2026-04-08)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Require jsdom/browser tests to use the <code>.ui.test.*</code> suffix, rename the shared UI test setup file to <code>vitest.ui.setup.ts</code>, and update the related contributor/testing docs.</li>
<li>[Feature] Reorganize the docs site into guidelines and specs, publish matching English and Chinese pages, and add documentation-sync guidance for contributors.</li>
<li>[Fix] Exclude <code>packages/**/template/**</code> from test coverage collection.</li>
</ul>
</li>
<li>
<p><code>@faasjs/react</code></p>
<ul>
<li>[Feature] Refactor <code>useFaas</code> and <code>useFaasStream</code> onto shared request lifecycle logic to improve retry, abort, reload, debounce/skip handling, and error management.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Feature] Let <code>FuncWarper.JSONhandler</code> infer <code>event.path</code> from the wrapped function filename by default, and document that <code>path</code> maps to the request URL pathname without the query string while still allowing an explicit <code>path</code> override in tests.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.19...v8.0.0-beta.20" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.20 (2026-04-06)</code></a></p>
<ul>
<li>
<p>[Break] Remove cjs exports.</p>
</li>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Break] Remove <code>useFunc</code>, <code>usePlugin</code>, and <code>useHttp</code>. Create functions with <code>new Func({ plugins, handler })</code> or <code>defineApi(...)</code> instead, and attach HTTP support with <code>new Http(...)</code>.</li>
<li>[Break] Stop setting and logging the <code>FaasMode</code> environment variable during <code>Server</code> initialization.</li>
<li>[Feature] Support loading plugins from <code>file://</code> module types when resolving named class exports in <code>defineApi</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Break] Remove the <code>FaasMode=remote</code> logger behavior and rely on terminal capability detection by default, while still allowing <code>FaasLogMode</code>, <code>FORCE_COLOR</code>, and <code>NO_COLOR</code> to override the output mode.</li>
<li>[Feature] Resolve relative <code>file://</code> plugin <code>type</code> values in <code>faas.yaml</code> from the directory of the <code>faas.yaml</code> file.</li>
<li>[Feature] Export <code>parseYaml</code> as a public API for parsing the supported <code>faas.yaml</code> YAML subset in custom Node.js tooling.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.18...v8.0.0-beta.19" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.19 (2026-03-31)</code></a></p>
<ul>
<li><code>@faasjs/dev</code>
<ul>
<li>[Feature] Add <code>faas run <file></code> to execute local TypeScript files with <code>@faasjs/node-utils/register-hooks</code> preloaded and auto load <code>.env</code>.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.17...v8.0.0-beta.18" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.18 (2026-03-29)</code></a></p>
<ul>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Break] Split generic helpers out of <code>@faasjs/node-utils</code> into <code>@faasjs/utils</code>, and stop exporting <code>deepMerge</code>, <code>streamToString</code>, <code>streamToObject</code>, <code>stringToStream</code>, and <code>objectToStream</code> from <code>@faasjs/node-utils</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/utils</code></p>
<ul>
<li>[Feature] Add a new cross-runtime utility package and export <code>deepMerge</code>, <code>streamToString</code>, <code>streamToObject</code>, <code>stringToStream</code>, and <code>objectToStream</code>.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.16...v8.0.0-beta.17" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.17 (2026-03-27)</code></a></p>
<ul>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Break] Remove <code>FaasPluginEventMap</code> and related <code>InferPluginEvent</code> utilities, and move HTTP request helpers from the <code>Http</code> instance to injected handler fields via <code>DefineApiInject</code>.</li>
<li>[Feature] Export <code>HttpResponseBody</code>, <code>HttpSetBody</code>, <code>HttpSetContentType</code>, <code>HttpSetHeader</code>, and <code>HttpSetStatusCode</code> for typed HTTP handler injections.</li>
<li>[Fix] Isolate HTTP request state per invocation so concurrent requests do not leak params, cookies, sessions, or response mutations.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Feature] Add test helpers back to <code>@faasjs/dev</code>, including <code>test</code>, <code>FuncWarper</code>, typed <code>JSONhandler</code>, cookie/session mocking, and compressed <code>ReadableStream</code> decoding.</li>
</ul>
</li>
<li>
<p><code>@faasjs/react</code></p>
<ul>
<li>[Break] Remove <code>Form</code> component.</li>
</ul>
</li>
<li>
<p><code>@faasjs/ant-design</code></p>
<ul>
<li>[Break] Replace <code>Form</code>'s old <code>submit.to</code> request API with a dedicated <code>faas</code> prop, and keep <code>submit</code> focused on built-in submit button options such as <code>text</code> and <code>buttonProps</code>.</li>
<li>[Feature] Add <code>FormFaasProps</code> with <code>transformValues</code>, functional <code>params</code>, and <code>onSuccess</code> / <code>onError</code> / <code>onFinally</code> lifecycle hooks for the built-in submit flow.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.14...v8.0.0-beta.16" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.16 (2026-03-24)</code></a></p>
<ul>
<li>
<p><code>@faasjs/types</code></p>
<ul>
<li>[Fix] Fix response type.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Break] Remove built-in <code>faas lint</code> command for now because the Vite lint toolchain is still unstable.</li>
</ul>
</li>
<li>
<p><code>@faasjs/ant-design</code></p>
<ul>
<li>[Fix] Fix <code>useApp</code> type.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.13...v8.0.0-beta.14" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.14 (2026-03-12)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Remove built-in Knex support, including <code>@faasjs/core</code> Knex APIs, <code>faas knex</code> CLI, Knex-based examples, scaffolded migration defaults, and related active docs/snippets.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Fix] Resolve relative imports with existing suffixes to <code>.ts</code> files when the exact target is missing.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Feature] Add TypeScript type checking to <code>faas lint</code> via <code>tsc --noEmit</code>.</li>
<li>[Feature] Add oxfmt to <code>faas lint</code>.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.12...v8.0.0-beta.13" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.13 (2026-03-01)</code></a></p>
<ul>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Feature] Add <code>registerNodeModuleHooks</code> to install module-resolve hooks before startup imports.</li>
<li>[Feature] Add <code>@faasjs/node-utils/register-hooks</code> preload entry for <code>node --import</code>.</li>
</ul>
</li>
<li>
<p><code>create-faas-app</code></p>
<ul>
<li>[Feature] Scaffold <code>start</code> script with <code>node --import @faasjs/node-utils/register-hooks server.ts</code>.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.11...v8.0.0-beta.12" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.12 (2026-02-27)</code></a></p>
<ul>
<li><code>@faasjs/core</code>
<ul>
<li>[Fix] Fix knex type.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.10...v8.0.0-beta.11" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.11 (2026-02-25)</code></a></p>
<ul>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Feature] Add <code>DefineApiInject</code> so plugins can augment <code>defineApi</code> handler data fields.</li>
<li>[Feature] Add typed <code>cookie</code> and <code>session</code> fields to <code>defineApi</code> handler data.</li>
<li>[Feature] Use tsconfig-aware runtime loading in <code>Server</code> to support path aliases and extensionless imports.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Break] <code>faas types</code> now generates API type declarations only (no <code>FaasEvents</code> output).</li>
<li>[Feature] Restart Faas server on source changes in Vite with module-version cache busting.</li>
<li>[Feature] Improve <code>FuncWarper</code> generics so <code>JSONhandler</code> body infers from function params.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Feature] Add <code>LoadPackageOptions</code> (<code>root</code>, <code>tsconfigPath</code>, <code>version</code>) to <code>loadPackage</code>.</li>
<li>[Feature] Add tsconfig-aware ESM resolving, extensionless import support, and version-token cache busting in <code>loadPackage</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/types</code></p>
<ul>
<li>[Break] Remove <code>FaasEvents</code>, <code>FaasEventPaths</code>, and <code>FaasEvent</code>.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.9...v8.0.0-beta.10" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.10 (2026-02-22)</code></a></p>
<ul>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Feature] Add <code>CronJob</code> feature.</li>
<li>[Feature] Auto mount CronJob when server listen.</li>
<li>[Feature] Auto load <code>.env</code> when initializing <code>Server</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Feature] Auto load <code>.env</code> for <code>faas types</code>, <code>faas knex</code>, and <code>faas lint</code> commands.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Feature] Add <code>loadEnvFileIfExists</code> helper for loading <code>.env</code> from a target root.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.8...v8.0.0-beta.9" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.9 (2026-02-20)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Merge <code>@faasjs/lint</code> to <code>@faasjs/dev</code>.</li>
<li>[Break] Remove <code>@faasjs/request</code>.</li>
<li>[Break] Merge <code>@faasjs/func</code>, <code>@faasjs/http</code>, <code>@faasjs/knex</code> to <code>@faasjs/core</code>.</li>
<li>[Break] Merge <code>@faasjs/logger</code> to <code>@faasjs/node-utils</code>.</li>
<li>[Break] Merge <code>@faasjs/browser</code> to <code>@faasjs/react</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Feature] All cli tools be merged in <code>faas</code> cli.</li>
<li>[Feature] New linter and formatter based on <code>oxlint</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/core</code></p>
<ul>
<li>[Break] Rename <code>defineFunc</code> to <code>defineApi</code>.</li>
<li>[Break] <code>defineApi</code> required <code>http</code> config.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.7...v8.0.0-beta.8" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.8 (2026-02-16)</code></a></p>
<ul>
<li><code>@faasjs/knex</code>
<ul>
<li>[Feature] Add <code>KnexSchema</code> for db migration.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.6...v8.0.0-beta.7" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.7 (2026-02-15)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Remove <code>@faasjs/load</code> and <code>@faasjs/deep_merge</code>, and merge their APIs into <code>@faasjs/node-utils</code>.</li>
<li>[Break] Remove <code>faasjs</code>, all tsconfig files moved to <code>@faasjs/types</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/node-utils</code></p>
<ul>
<li>[Feature] Add Node-side utility package with <code>deepMerge</code>, load helpers, and stream helpers (<code>streamToText</code>, <code>streamToObject</code>, <code>streamToString</code>).</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Break] Remove PGlite helpers (<code>createPgliteKnex</code>, <code>mountFaasKnex</code>, <code>unmountFaasKnex</code>).</li>
<li>[Feature] Re-export stream helpers from <code>@faasjs/node-utils</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/knex</code></p>
<ul>
<li>[Break] Move PGlite helpers from <code>@faasjs/dev</code> to <code>@faasjs/knex</code>.</li>
<li>[Break] <code>client: pglite</code> only accepts <code>connection</code> as string (when provided) and rejects <code>connection_*</code> env fragments.</li>
<li>[Feature] Add native <code>client: pglite</code> support.</li>
<li>[Feature] Default <code>client: pglite</code> to in-memory when <code>connection</code> is missing, ignore <code>pool</code>, and create parent directories automatically for path connections.</li>
</ul>
</li>
<li>
<p><code>create-faas-app</code></p>
<ul>
<li>[Feature] Scaffold knex defaults with <code>production: pg</code>, <code>development: pglite</code> (persisted at <code>./.pglite_dev</code>), and <code>testing: pglite</code> in-memory.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.5...v8.0.0-beta.6" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.6 (2026-02-13)</code></a></p>
<ul>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Break] Read local server config from <code>faas.yaml</code> (<code><staging>.server</code>) and remove custom <code>viteFaasJsServer</code> options.</li>
<li>[Break] Remove <code>faas types</code> CLI options <code>--src</code>, <code>--output</code>, and <code>--staging</code>.</li>
<li>[Feature] Add <code>generateFaasTypes</code> and <code>faas types</code> CLI to generate action/event types from <code>.func.ts</code> routes and <code>faas.yaml</code>.</li>
<li>[Feature] Add <code>types</code> option to <code>viteFaasJsServer</code> with startup generation and watched regeneration for <code>.func.ts</code> and <code>faas.yaml</code>.</li>
<li>[Fix] Fix knex exporter.</li>
</ul>
</li>
<li>
<p><code>@faasjs/load</code></p>
<ul>
<li>[Feature] Validate <code>faas.yaml</code> key structure when loading config and reject removed <code>types</code> config.</li>
</ul>
</li>
<li>
<p><code>create-faas-app</code></p>
<ul>
<li>[Feature] Add default <code>server</code> section to scaffolded <code>src/faas.yaml</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/func</code></p>
<ul>
<li>[Feature] Add <code>FaasPluginEventMap</code> and <code>InferPluginEvent</code> type utilities for plugin-driven event inference.</li>
</ul>
</li>
<li>
<p><code>@faasjs/http</code></p>
<ul>
<li>[Feature] Export <code>SessionContent</code> type.</li>
<li>[Feature] Register <code>http</code> plugin event shape via <code>FaasPluginEventMap</code> augmentation.</li>
</ul>
</li>
<li>
<p><code>@faasjs/types</code></p>
<ul>
<li>[Feature] Add <code>FaasEvents</code>, <code>FaasEventPaths</code>, and <code>FaasEvent</code> for event type inference.</li>
</ul>
</li>
<li>
<p><code>@faasjs/react</code></p>
<ul>
<li>[Feature] Export <code>FormInput</code> and related helper types (<code>FormInputProps</code>, <code>InferFormInputProps</code>, <code>InferRuleOption</code>, <code>StateSetters</code>, <code>StatesWithSetters</code>).</li>
</ul>
</li>
<li>
<p><code>@faasjs/request</code></p>
<ul>
<li>[Feature] Export <code>Mock</code> type for <code>setMock</code> handler signatures.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.4...v8.0.0-beta.5" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.5 (2026-02-12)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Remove <code>@faasjs/cloud_function</code> package.</li>
<li>[Break] Rename <code>@faasjs/vite</code> to <code>@faasjs/dev</code>.</li>
<li>[Break] Remove <code>@faasjs/test</code> package and merge it into <code>@faasjs/dev</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/func</code></p>
<ul>
<li>[Feature] Add <code>defineFunc</code> to define business logic directly and auto-load plugins from <code>func.config.plugins</code>.</li>
<li>[Fix] Normalize <code>.func.ts</code> filename parsing from stack.</li>
</ul>
</li>
<li>
<p><code>@faasjs/dev</code></p>
<ul>
<li>[Break] Rename <code>@faasjs/vite</code> to <code>@faasjs/dev</code>.</li>
<li>[Feature] Add PGlite helpers for testing and development database setup.</li>
<li>[Feature] Merge testing helpers (<code>test</code>, <code>FuncWarper</code>, <code>streamToString</code>) from <code>@faasjs/test</code>.</li>
</ul>
</li>
<li>
<p><code>create-faas-app</code></p>
<ul>
<li>[Break] Replace scaffold dependency from <code>@faasjs/vite</code> to <code>@faasjs/dev</code>.</li>
<li>[Break] Replace scaffold dependency from <code>@faasjs/test</code> to <code>@faasjs/dev</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/http</code></p>
<ul>
<li>[Break] Remove <code>useHttpFunc</code>.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.3...v8.0.0-beta.4" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.4 (2026-02-10)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Remove <code>@faasjs/cli</code> package.</li>
</ul>
</li>
<li>
<p><code>create-faas-app</code></p>
<ul>
<li>[Break] Switch scaffold to SPA-first structure with <code>vite.config.ts</code>, <code>server.ts</code> and <code>src/pages/**</code>.</li>
<li>[Feature] Scaffold example page, API and test files aligned with zero-mapping route convention.</li>
</ul>
</li>
<li>
<p><code>@faasjs/vite</code></p>
<ul>
<li>[Break] Remove <code>command</code> and <code>port</code> options from <code>viteFaasJsServer</code>, keep <code>root</code> and <code>base</code>.</li>
<li>[Feature] Run Faas API in-process with <code>@faasjs/server</code> during Vite development.</li>
<li>[Fix] Normalize base-path routing before handing requests to FaasJS server.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.2...v8.0.0-beta.3" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.3 (2026-01-29)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Remove <code>@faasjs/redis</code> package.</li>
</ul>
</li>
<li>
<p><code>@faasjs/browser</code></p>
<ul>
<li>[Feature] Support stream response with <code>stream</code> option.</li>
<li>[Feature] <code>setMock</code> support response as argument directly.</li>
</ul>
</li>
<li>
<p><code>@faasjs/react</code></p>
<ul>
<li>[Break] Remove <code>whyDidYouRender</code> from components.</li>
<li>[Feature] Add <code>useFaasStream</code> hook to handle streaming response.</li>
</ul>
</li>
<li>
<p><code>@faasjs/ant-design</code></p>
<ul>
<li>[Break] Remove <code>whyDidYouRender</code> from components.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.1...v8.0.0-beta.2" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.2 (2026-01-27)</code></a></p>
<ul>
<li>
<p><code>@faasjs/http</code></p>
<ul>
<li>[Break] Replace 201 status code with 204 for empty response body.</li>
</ul>
</li>
<li>
<p><code>@faasjs/logger</code></p>
<ul>
<li>[Fix] Disable Transport in vitest.</li>
</ul>
</li>
<li>
<p><code>@faasjs/vite</code></p>
<ul>
<li>[Fix] Disable in vitest.</li>
</ul>
</li>
<li>
<p><code>@faasjs/test</code></p>
<ul>
<li>[Feature] Export <code>streamToString</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/server</code></p>
<ul>
<li>[Refactor] Simplify Response body handling logic.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v8.0.0-beta.0...v8.0.0-beta.1" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.1 (2026-01-25)</code></a></p>
<ul>
<li>
<p><code>@faasjs/http</code></p>
<ul>
<li>[Feature] Add ReadableStream support to response body.</li>
</ul>
</li>
<li>
<p><code>@faasjs/test</code></p>
<ul>
<li>[Feature] Support auto read stream and decompress for http response.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v7.0.4...v8.0.0-beta.0" target="_blank" rel="noopener noreferrer" class="external-link"><code>v8.0.0-beta.0 (2026-01-24)</code></a></p>
<ul>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Break] Remove <code>@faasjs/ts-transform</code> package.</li>
<li>[Break] Remove Bun support from documentation and examples.</li>
<li>[Break] Remove <code>images/bun</code> Docker image.</li>
</ul>
</li>
<li>
<p><code>@faasjs/types</code></p>
<ul>
<li>[Break] Remove <code>ReactServerAction</code> type and related Server Actions support.</li>
<li>[Fix] Update biome ignore comment for empty interface.</li>
<li>[Fix] Remove Server Actions tests.</li>
</ul>
</li>
<li>
<p><code>@faasjs/browser</code></p>
<ul>
<li>[Break] Remove Server Actions handling logic.</li>
</ul>
</li>
<li>
<p><code>@faasjs/react</code></p>
<ul>
<li>[Break] Remove Server Actions support from feature list.</li>
<li>[Break] Upgrade react version to 19.</li>
<li>[Feature] Export <code>FaasActionUnionType</code> type.</li>
<li>[Refactor] Simplify <code>FaasReactClientInstance</code> type definitions using <code>typeof</code>.</li>
<li>[Fix] Update type definitions to use <code>FaasActionUnionType</code> consistently.</li>
<li>[Fix] Change <code>reload</code> return type from <code>Response<T></code> to <code>FaasData<T></code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/ant-design</code></p>
<ul>
<li>[Fix] Upgrade antd version to 6.</li>
<li>[Break] Remove <code>StyleProvider</code> support from <code>App</code> component.</li>
<li>[Fix] Fix type casting in <code>Description</code> component.</li>
</ul>
</li>
<li>
<p><code>@faasjs/server</code></p>
<ul>
<li>[Break] Remove <code>.func.tsx</code> file support.</li>
<li>[Fix] Update documentation to remove tsx references.</li>
</ul>
</li>
<li>
<p><code>@faasjs/load</code></p>
<ul>
<li>[Break] Remove <code>tsx</code> file support.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v7.0.3...v7.0.4" target="_blank" rel="noopener noreferrer" class="external-link"><code>v7.0.4 (2026-01-19)</code></a></p>
<ul>
<li>
<p><code>@faasjs/cli</code></p>
<ul>
<li>[Fix] Lock commander version to >=14.0.0.</li>
</ul>
</li>
<li>
<p><code>create-faas-app</code></p>
<ul>
<li>[Fix] Lock commander version to >=14.0.0.</li>
</ul>
</li>
<li>
<p><code>@faasjs/logger</code></p>
<ul>
<li>[Fix] Allow message's type to be unknown.</li>
</ul>
</li>
<li>
<p><code>@faasjs/vite</code></p>
<ul>
<li>[Fix] Fix server base path.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v7.0.2...v7.0.3" target="_blank" rel="noopener noreferrer" class="external-link"><code>v7.0.3 (2026-01-18)</code></a></p>
<ul>
<li><code>@faasjs/ant-design</code>
<ul>
<li>[Fix] Upgrade antd to 6.x.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v7.0.1...v7.0.2" target="_blank" rel="noopener noreferrer" class="external-link"><code>v7.0.2 (2025-10-14)</code></a></p>
<ul>
<li><code>@faasjs/react</code>
<ul>
<li>[Fix] Fix <code>equal</code> compare function.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v7.0.0...v7.0.1" target="_blank" rel="noopener noreferrer" class="external-link"><code>v7.0.1 (2025-06-28)</code></a></p>
<ul>
<li><code>@faasjs/lint</code>
<ul>
<li>[Fix] Fix <code>@faasjs/lint</code> to use <code>@biomejs/biome</code> v2.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v6.12.3...v7.0.0" target="_blank" rel="noopener noreferrer" class="external-link"><code>v7.0.0 (2025-05-11)</code></a></p>
<ul>
<li>
<p><code>@faasjs/jest</code></p>
<ul>
<li>[Break] Remove <code>@faasjs/jest</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/next</code></p>
<ul>
<li>[Break] Remove <code>@faasjs/next</code>.</li>
<li>[Feature] Add next.js example to <a href="https://github.com/faasjs/faasjs/blob/a10f193bc925b84c8627f95722df768cf8145b62/examples/nextjs" target="_blank" rel="noopener noreferrer" class="external-link">examples/nextjs</a>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/vite</code></p>
<ul>
<li>[Feature] New <code>@faasjs/vite</code> for improved development experience and integration with Vite.</li>
</ul>
</li>
<li>
<p><code>@faasjs/server</code></p>
<ul>
<li>[Break] All header names are lowercase.</li>
<li>[Break] 3rd of middleware argument changes to <code>MiddlewareContext</code>.</li>
<li>[Feature] Enhanced port binding notifications.</li>
<li>[Feature] Add <code>beforeHandle</code> to <code>Server</code>.</li>
<li>[Feature] The <code>staticHandler</code>'s <code>notFound</code> option supports string path as fallback path.</li>
</ul>
</li>
<li>
<p><code>@faasjs/cli</code></p>
<ul>
<li>[Feature] Add <code>faas dev</code> command to start a development server.</li>
</ul>
</li>
<li>
<p><code>@faasjs/cloud_function</code></p>
<ul>
<li>[Fix] Support <code>export const func = useFunc(...)</code> syntax.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v6.11.1...v6.12.3" target="_blank" rel="noopener noreferrer" class="external-link"><code>v6.12.3 (2025-04-06)</code></a></p>
<ul>
<li><code>@faasjs/ant-design</code>
<ul>
<li>[Feature] Using Ant Design's message component as the default error notification when API calls fail, providing a consistent and user-friendly error feedback mechanism.</li>
<li>[Fix] Fix styleProviderProps defaults.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v6.11.0...v6.11.1" target="_blank" rel="noopener noreferrer" class="external-link"><code>v6.11.1 (2025-04-04)</code></a></p>
<ul>
<li><code>@faasjs/server</code>
<ul>
<li>[Fix] Fix <code>middleware</code> to handle option request.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v6.10.0...v6.11.0" target="_blank" rel="noopener noreferrer" class="external-link"><code>v6.11.0 (2025-04-02)</code></a></p>
<ul>
<li>
<p><code>@faasjs/server</code></p>
<ul>
<li>[Feature] Add <code>middleware</code> to <code>Server</code>.</li>
</ul>
</li>
<li>
<p><code>faasjs</code></p>
<ul>
<li>[Fix] Fix <code>tsconfig.react.json</code>.</li>
</ul>
</li>
<li>
<p><code>@faasjs/react</code></p>
<ul>
<li>[Fix] Fix reload error.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v6.9.0...v6.10.0" target="_blank" rel="noopener noreferrer" class="external-link"><code>v6.10.0 (2025-03-30)</code></a></p>
<ul>
<li><code>@faasjs/server</code>
<ul>
<li>[Feature] Add <code>getRouteFiles</code> to get all route files.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v6.8.0...v6.9.0" target="_blank" rel="noopener noreferrer" class="external-link"><code>v6.9.0 (2025-03-23)</code></a></p>
<ul>
<li>
<p>Remove unused dependencies: lodash, typescript.</p>
</li>
<li>
<p><code>@faasjs/logger</code></p>
<ul>
<li>[Feature] Add <code>FaasLogTransport</code> environment variable to enable/disable transports.</li>
</ul>
</li>
</ul>
<p><a href="https://github.com/faasjs/faasjs/compare/v6.7.0...v6.8.0" target="_blank" rel="noopener noreferrer" class="external-link"><code>v6.8.0 (2025-03-09)</code></a></p>