-
Notifications
You must be signed in to change notification settings - Fork 343
/
Copy pathchanges.xml
4345 lines (3461 loc) · 90.1 KB
/
changes.xml
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
<?xml version="1.0" ?>
<!DOCTYPE change_log SYSTEM "changes.dtd" >
<change_log title="unit">
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10 unit-python3.11
unit-python3.12 unit-python3.13
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18
unit-jsc19 unit-jsc20 unit-jsc21
unit-wasm"
ver="1.35.0" rev="1"
date="" time=""
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.35.0.
</para>
</change>
</changes>
<changes apply="unit" ver="1.35.0" rev="1"
date="" time=""
packager="Nginx Packaging <nginx-packaging@f5.com>">
</changes>
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10 unit-python3.11
unit-python3.12 unit-python3.13
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18
unit-jsc19 unit-jsc20 unit-jsc21
unit-wasm"
ver="1.34.0" rev="1"
date="2024-12-19" time="18:00:00 +0000"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.34.0.
</para>
</change>
</changes>
<changes apply="unit" ver="1.34.0" rev="1"
date="2024-12-19" time="18:00:00 +0000"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change type="feature">
<para>
initial OpenTelemetry (OTEL) support. (Disabled by default).
</para>
</change>
<change type="feature">
<para>
support for JSON formatted access logs.
</para>
</change>
<change type="bugfix">
<para>
tweak the Perl language module to avoid breaking scripts in some
circumstances.
</para>
</change>
</changes>
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10 unit-python3.11
unit-python3.12
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18
unit-jsc19 unit-jsc20 unit-jsc21
unit-wasm"
ver="1.33.0" rev="1"
date="2024-09-17" time="18:00:00 +0000"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.33.0.
</para>
</change>
</changes>
<changes apply="unit" ver="1.33.0" rev="1"
date="2024-09-17" time="18:00:00 +0000"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change type="feature">
<para>
make the number of router threads configurable.
</para>
</change>
<change type="feature">
<para>
make the listen(2) backlog configurable.
</para>
</change>
<change type="feature">
<para>
add Python application factory support.
</para>
</change>
<change type="feature">
<para>
add experimental chunked request body support. (Disabled by default).
</para>
</change>
<change type="feature">
<para>
add fuzzing via oss-fuzz.
</para>
</change>
<change type="feature">
<para>
add "if" option to the "match" object.
</para>
</change>
<change type="feature">
<para>
show list of loaded language modules in the /status endpoint.
</para>
</change>
<change type="feature">
<para>
Unit ships with a new Rust based CLI application "unitctl".
</para>
</change>
<change type="feature">
<para>
the wasm-wasi-component language module now inherits the processes
environment.
</para>
</change>
<change type="change">
<para>
under systemd unit runs in forking mode (once again).
</para>
</change>
<change type="change">
<para>
if building with njs, version 0.8.3 or later is now required.
</para>
</change>
<change type="change">
<para>
Unit now builds with -std=gnu11 (C11 with GNU extensions).
</para>
</change>
<change type="change">
<para>
Unit now creates the full directory path for the PID file and control socket.
</para>
</change>
<change type="change">
<para>
build system improvements, including pretty printing the make output and
enabling various make variables to influence the build process (see:
make help).
</para>
</change>
<change type="change">
<para>
better detection of available runnable CPUs on Linux.
</para>
</change>
<change type="change">
<para>
default listen(2) backlog on Linux now defaults to Kernel default.
</para>
</change>
<change type="bugfix">
<para>
don't modify REQUEST_URI.
</para>
</change>
<change type="bugfix">
<para>
fix a crash when interrupting a download via a proxy.
</para>
</change>
<change type="bugfix">
<para>
wasm-wasi-component application process hangs after receiving restart signal
from the control endpoint.
</para>
</change>
<change type="bugfix">
<para>
njs variables accessed with a JS template literal should not be cacheable.
</para>
</change>
<change type="bugfix">
<para>
properly handle deleting arrays of certificates.
</para>
</change>
<change type="bugfix">
<para>
don't create the $runstatedir directory which triggered an Alpine packaging
error.
</para>
</change>
</changes>
<changes apply="unit-jsc21" ver="1.32.0" rev="1"
date="2023-10-17" time="16:00:00 -0700"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
Initial release of Java 21 module for NGINX Unit.
</para>
</change>
</changes>
<changes apply="unit-python3.12" ver="1.32.0" rev="1"
date="2023-10-17" time="16:00:00 -0700"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
Initial release of Python 3.12 module for NGINX Unit.
</para>
</change>
</changes>
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10 unit-python3.11
unit-python3.12
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18
unit-jsc19 unit-jsc20 unit-jsc21
unit-wasm"
ver="1.32.0" rev="1"
date="2024-02-27" time="18:00:00 +0000"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.32.0.
</para>
</change>
</changes>
<changes apply="unit" ver="1.32.0" rev="1"
date="2024-02-27" time="18:00:00 +0000"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change type="feature">
<para>
WebAssembly Components using WASI interfaces defined in wasi:http/proxy@0.2.0.
</para>
</change>
<change type="feature">
<para>
conditional access logging.
</para>
</change>
<change type="feature">
<para>
njs variables access.
</para>
</change>
<change type="feature">
<para>
$request_id variable contains a string that is formed using random data and
can be used as a unique request identifier.
</para>
</change>
<change type="feature">
<para>
options to set control socket permissions.
</para>
</change>
<change type="feature">
<para>
Ruby arrays in response headers, improving compatibility with Rack v3.0.
</para>
</change>
<change type="feature">
<para>
Python bytearray response bodies for ASGI applications.
</para>
</change>
<change type="bugfix">
<para>
router could crash while sending large files. Thanks to rustedsword.
</para>
</change>
<change type="bugfix">
<para>
serving static files from a network filesystem could lead to error.
</para>
</change>
<change type="bugfix">
<para>
"uidmap" and "gidmap" isolation options validation.
</para>
</change>
<change type="bugfix">
<para>
abstract UNIX socket name could be corrupted during configuration validation.
Thanks to Alejandro Colomar.
</para>
</change>
<change type="bugfix">
<para>
HTTP header field value encoding could be misinterpreted in Python module.
</para>
</change>
<change type="bugfix">
<para>
Node.js http.createServer() accepts and ignores the "options" argument,
improving compatibility with strapi applications, among others.
</para>
</change>
<change type="bugfix">
<para>
ServerRequest.flushHeaders() implemented in Node.js module to make it compatible
with Next.js.
</para>
</change>
<change type="bugfix">
<para>
ServerRequest.httpVersion variable format in Node.js module.
</para>
</change>
<change type="bugfix">
<para>
Node.js module handles standard library imports prefixed with "node:", making it
possible to run newer Nuxt applications, among others.
</para>
</change>
<change type="bugfix">
<para>
Node.js tarball location changed to avoid build/install errors.
</para>
</change>
<change type="bugfix">
<para>
Go module sets environment variables necessary for building on macOS/arm64
systems.
</para>
</change>
</changes>
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10 unit-python3.11
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18
unit-jsc19 unit-jsc20
unit-wasm"
ver="1.31.1" rev="1"
date="2023-10-19" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.31.1.
</para>
</change>
</changes>
<changes apply="unit" ver="1.31.1" rev="1"
date="2023-10-19" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change type="feature">
<para>
allow to set the HTTP response status in Wasm module.
</para>
</change>
<change type="feature">
<para>
allow uploads larger than 4GiB in Wasm module.
</para>
</change>
<change type="bugfix">
<para>
application process could crash while rewriting URLs with query strings.
</para>
</change>
<change type="bugfix">
<para>
requests larger than about 64MiB could cause error in Wasm module.
</para>
</change>
<change type="bugfix">
<para>
when using many headers in Java module some of them could be
corrupted due to memory realocation issue.
</para>
</change>
<change type="bugfix">
<para>
ServerRequest.destroy() implemented in Node.js module to make it compatible
with some frameworks that might use it.
</para>
</change>
<change type="bugfix">
<para>
chunk argument of ServerResponse.write() can now be a Uint8Array to improve
compatibility with Node.js 15.0.0 and above.
</para>
</change>
<change type="bugfix">
<para>
Node.JS unit-http NPM module now has appropriate default paths for macOS/arm64
systems.
</para>
</change>
<change type="bugfix">
<para>
build on musl libc with clang.
</para>
</change>
</changes>
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10 unit-python3.11
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18
unit-jsc19 unit-jsc20
unit-wasm"
ver="1.31.0" rev="1"
date="2023-08-31" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.31.0.
</para>
</change>
</changes>
<changes apply="unit" ver="1.31.0" rev="1"
date="2023-08-31" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change type="change">
<para>
if building with njs, version 0.8.0 or later is now required.
</para>
</change>
<change type="feature">
<para>
technology preview of WebAssembly application module.
</para>
</change>
<change type="feature">
<para>
"response_headers" option to manage headers in the action and fallback.
</para>
</change>
<change type="feature">
<para>
HTTP response header variables.
</para>
</change>
<change type="feature">
<para>
ASGI lifespan state support. Thanks to synodriver.
</para>
</change>
<change type="bugfix">
<para>
ensure that $uri variable is not cached.
</para>
</change>
<change type="bugfix">
<para>
deprecated options were unavailable.
</para>
</change>
<change type="bugfix">
<para>
ASGI applications inaccessible over IPv6.
</para>
</change>
</changes>
<changes apply="unit-wasm" ver="1.31.0" rev="1"
date="2023-08-14" time="15:00:00 -0700"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
Initial release of WASM module for NGINX Unit.
</para>
</change>
</changes>
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10 unit-python3.11
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18
unit-jsc19 unit-jsc20"
ver="1.30.0" rev="1"
date="2023-05-10" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.30.0.
</para>
</change>
</changes>
<changes apply="unit-jsc20" ver="1.30.0" rev="1"
date="2023-05-03" time="15:00:00 -0700"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
Initial release of Java 20 module for NGINX Unit.
</para>
</change>
</changes>
<changes apply="unit" ver="1.30.0" rev="1"
date="2023-05-10" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change type="change">
<para>
remove Unix domain listen sockets upon reconfiguration.
</para>
</change>
<change type="feature">
<para>
basic URI rewrite support.
</para>
</change>
<change type="feature">
<para>
njs loadable modules support.
</para>
</change>
<change type="feature">
<para>
per-application logging.
</para>
</change>
<change type="feature">
<para>
conditional logging of route selection.
</para>
</change>
<change type="feature">
<para>
support the keys API on the request objects in njs.
</para>
</change>
<change type="feature">
<para>
default values for 'make install' pathnames such as prefix;
this allows to './configure && make && sudo make install'.
</para>
</change>
<change type="feature">
<para>
"server_version" setting to omit the version token from "Server" header field.
</para>
</change>
<change type="bugfix">
<para>
request header field values could be corrupted in some cases; the bug had
appeared in 1.29.0.
</para>
</change>
<change type="bugfix">
<para>
PHP error handling (added missing 403 and 404 errors).
</para>
</change>
<change type="bugfix">
<para>
Perl applications crash on second responder call.
</para>
</change>
</changes>
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10 unit-python3.11
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18
unit-jsc19"
ver="1.29.1" rev="1"
date="2023-02-28" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.29.1.
</para>
</change>
</changes>
<changes apply="unit" ver="1.29.1" rev="1"
date="2023-02-28" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change type="bugfix">
<para>
stop creating world-writeable directories.
</para>
</change>
<change type="bugfix">
<para>
memory leak related to njs.
</para>
</change>
<change type="bugfix">
<para>
path parsing in PHP applications.
</para>
</change>
<change type="bugfix">
<para>
enabled UTF-8 for Python config by default to avoid applications failing
in some cases.
</para>
</change>
<change type="bugfix">
<para>
using asyncio.get_running_loop() instead of asyncio.get_event_loop()
when it's available to prevent errors in some Python ASGI applications.
</para>
</change>
<change type="bugfix">
<para>
applications that make use of various low level APIs such as pthreads could
fail to work correctly.
</para>
</change>
<change type="bugfix">
<para>
websocket endianness detection for obscure operating systems.
</para>
</change>
</changes>
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10 unit-python3.11
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18
unit-jsc19"
ver="1.29.0" rev="1"
date="2022-12-15" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.29.0.
</para>
</change>
</changes>
<changes apply="unit-jsc19" ver="1.29.0" rev="1"
date="2022-11-18" time="15:00:00 +0400"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
Initial release of Java 19 module for NGINX Unit.
</para>
</change>
</changes>
<changes apply="unit-python3.11" ver="1.29.0" rev="1"
date="2022-12-15" time="08:00:00 -0800"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
Initial release of Python 3.11 module for NGINX Unit.
</para>
</change>
</changes>
<changes apply="unit" ver="1.29.0" rev="1"
date="2022-12-15" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change type="change">
<para>
removed $uri auto-append for "share" when loading configuration.
</para>
</change>
<change type="change">
<para>
prefer system crypto policy instead of hardcoding a default.
</para>
</change>
<change type="feature">
<para>
njs support with the basic syntax of JS template literals.
</para>
</change>
<change type="feature">
<para>
support per-application cgroups on Linux.
</para>
</change>
<change type="feature">
<para>
the $request_time variable contains the request processing time.
</para>
</change>
<change type="feature">
<para>
"prefix" option in Python applications to set WSGI "SCRIPT_NAME"
and ASGI root-path variables.
</para>
</change>
<change type="feature">
<para>
compatibility with Python 3.11.
</para>
</change>
<change type="feature">
<para>
compatibility with OpenSSL 3.
</para>
</change>
<change type="feature">
<para>
compatibility with PHP 8.2.
</para>
</change>
<change type="feature">
<para>
compatibility with Node.js 19.0.
</para>
</change>
<change type="feature">
<para>
Ruby Rack v3 support.
</para>
</change>
<change type="bugfix">
<para>
fix error in connection statistics when using proxy.
</para>
</change>
<change type="bugfix">
<para>
fix HTTP cookie parsing when the value contains an equals sign.
</para>
</change>
<change type="bugfix">
<para>
PHP directory URLs without a trailing '/' would give a 503 error (fixed with
a 301 re-direct).
</para>
</change>
<change type="bugfix">
<para>
missing error checks in the C API.
</para>
</change>
<change type="bugfix">
<para>
report the regex status in configure summary.
</para>
</change>
</changes>
<changes apply="unit-php
unit-python unit-python2.7
unit-python3.4 unit-python3.5 unit-python3.6 unit-python3.7
unit-python3.8 unit-python3.9 unit-python3.10
unit-go
unit-perl
unit-ruby
unit-jsc-common unit-jsc8 unit-jsc10 unit-jsc11 unit-jsc13
unit-jsc14 unit-jsc15 unit-jsc16 unit-jsc17 unit-jsc18"
ver="1.28.0" rev="1"
date="2022-09-13" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change>
<para>
NGINX Unit updated to 1.28.0.
</para>
</change>
</changes>
<changes apply="unit" ver="1.28.0" rev="1"
date="2022-09-13" time="18:00:00 +0300"
packager="Nginx Packaging <nginx-packaging@f5.com>">
<change type="change">
<para>
increased the applications' startup timeout.
</para>
</change>
<change type="change">
<para>
disallowed abstract Unix domain socket syntax in non-Linux systems.
</para>
</change>
<change type="feature">
<para>
basic statistics API.
</para>
</change>
<change type="feature">
<para>
customizable access log format.
</para>