-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathChangeLog
More file actions
11028 lines (7332 loc) · 359 KB
/
ChangeLog
File metadata and controls
11028 lines (7332 loc) · 359 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
===================== 2026-03-04 Version 6.1.1 Released =====================
===================== Changes Since Version 6.1.0 ===========================
commit 7a920ed8d2600e15f9a3ba5c7d9a5a897cbf9207
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Mar 4 20:04:44 2026 +0100
src: version set to 6.1.1
commit 5f02ed54a24e08b0ebbf9816f15c80213f3b666d
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Mar 4 17:33:54 2026 +0100
db2_ldap: cmake - link libldap
(cherry picked from commit ce7c002c6ccf6f7b0a369c73a66c25b566080420)
commit 2bfbac1574692ff54e9647159ee9473ee95bc7d1
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Mar 4 17:25:01 2026 +0100
kazoo: cmake - link with libevent
(cherry picked from commit 6b51a80f70a524eaadd2d52fc13594006d41d1bb)
commit 78a3b9c22a6212ab619c3e20ee0513a3d43b90fe
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Mar 4 17:23:45 2026 +0100
jsonrpcc: cmake - link with libevent
(cherry picked from commit 69b4b70f38ec0458dd58f3c9fe1f522daad57279)
commit 43014286810a7777dd6cedb61586056861c3ff2a
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Mar 4 17:23:20 2026 +0100
db2_ldap: cmake - define OPENLDAP23
(cherry picked from commit 88df34e4aa711140f63dfec6db1d185459fdd1aa)
commit ee3fd8976daa30fa02e43decbbfc8326775108e2
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Mar 4 16:49:08 2026 +0100
src: pvtpl and ims_qos_npn added to modules groups
(cherry picked from commit 443fefa91001c4d26cd73f2b621834aa67074a72)
commit 1910d07f5235209d7e559b72b8e5f2d6994921ee
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Mar 4 16:45:28 2026 +0100
src: added siprepo to modules groups
(cherry picked from commit 449e57126fce3d4e95a4b519dbf7e2d0efcca34e)
commit 9ea8ab74f5a681059c2f4f1dfa2352138502b741
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Mar 4 16:36:31 2026 +0100
src: added peerstate and ptimer to modules groups
(cherry picked from commit 1eb09224d7cd6a6734c0a8bf2b62dd9c2364178a)
commit 61cac26fe18b195029b31d0c946f7be6ab37473e
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Wed Mar 4 09:13:12 2026 +0000
phonenum: cmake: Add missing cpp files for compilation
(cherry picked from commit a5a63fdca5a676b4317a21b95214ebed262f9b14)
commit aea091e3e9b8adf04b70d827ca55cc43d2e50dc0
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Mar 4 10:45:22 2026 +0100
pkg/kamailio: version set to 6.1.1 for rpms and alpine [skip ci]
commit 93bad4a3efcf7c09e55c2dff4c24cf64b0a05876
Author: JiangHai2011 <haij2011@sina.com>
Date: Wed Mar 4 09:07:41 2026 +0100
tls: check SSL_set_app_data return value and handle the error
(cherry picked from commit 072e948b41d5633bf5d824141460d72307826d0b)
commit 727c9d52bd4bb6d6fc1b645f695c86e76f56baed
Author: Victor Seva <vseva@sipwork.pro>
Date: Wed Mar 4 09:00:43 2026 +0100
pkg/kamailio/deb: version set 6.1.1 [skip ci]
commit 876553de11aae0f50f4da5dbea0218c684ef2a74
Author: Kamailio Dev <kamailio.dev@kamailio.org>
Date: Wed Mar 4 07:31:18 2026 +0100
modules: readme files regenerated - modules ... [skip ci]
commit 0a3db968d0c816235d45db5c3a7c2493225d8471
Author: Henning Westerholt <hw@gilawa.com>
Date: Tue Mar 3 15:34:58 2026 +0000
registrar: fix wrong example for default_expires_range
(cherry picked from commit 5f7aeeddb91a7eee57a1640d08ea5c367062c7d2)
commit 1ab4d31158030138c933a8d74b55ad2b2e78bd14
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Mar 2 12:45:52 2026 +0100
core: adjust bufsize filed for event route message received
(cherry picked from commit c2639123993febc5b59f0127c2d97d79520a2928)
commit 4076b32435b32205460e4d5fbcbef3ed8500e8c7
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sun Mar 1 22:55:21 2026 +0100
core: tcp read - check coontent lenght for max int limit
(cherry picked from commit 2c47fe1625b57e04252230e0e783ba4182afbebb)
commit 4a6c201910a84bb2a296df7ee489350be5f91f7d
Author: herlesupreeth <herlesupreeth@gmail.com>
Date: Thu Feb 26 19:23:14 2026 +0000
ims_qos: fix incrementing of SDP stream number
(cherry picked from commit 6fc2102ca771f5a64bd058eee08dd537f6b804e0)
commit 95a51ee7b098ced29ed372ba1ba05973a73223a3
Author: herlesupreeth <herlesupreeth@gmail.com>
Date: Fri Feb 20 19:27:11 2026 +0000
ims_qos: fix in-dialog requests by removing comparison of SDP stream number and direction
(cherry picked from commit 2faeae906b182b9f2bf0e79dd073e3de99a3f3cc)
commit 398a3d4a9c467ad82ba2fdd51f575946d3776947
Author: Richard Fuchs <rfuchs@sipwise.com>
Date: Wed Feb 25 09:23:42 2026 -0400
rtpengine: add "directional" flag
Closes #4599
(cherry picked from commit a02f07ecf24564b7f0eb555cce0bdf88727ebdd3)
commit a666c77b3ab18b98db5328d2f5409667ecce2fea
Author: Victor Seva <vseva@sipwork.pro>
Date: Fri Feb 27 12:46:18 2026 +0100
pkg/kamailio/deb: restore jwt module missing from cmake-components [skip ci]
(cherry picked from commit 5abcf292345c124fa449755c1ca1871fabb533b2)
commit 4efd743e0d9e209428fdcf934a5859d3ea6b3b7d
Author: Victor Seva <vseva@sipwork.pro>
Date: Thu Feb 26 14:45:47 2026 +0100
app_python3s: cmake link python3 lib
fixes #4605
(cherry picked from commit 67e891d0c6a9d538c6ba646b7db12db4c0ddcc1e)
commit 71b8248a13b9efe1ec33625931e62cee7da3af01
Author: Kamailio Dev <kamailio.dev@kamailio.org>
Date: Thu Feb 26 14:01:19 2026 +0100
modules: readme files regenerated - modules ... [skip ci]
commit 422449360dd6b83f7847a942364665b5b3650ce8
Author: Victor Seva <vseva@sipwork.pro>
Date: Thu Feb 26 13:53:16 2026 +0100
async: fix typo on use example of async_task_group_data cmd [skip ci]
related #4606
(cherry picked from commit 6f29228e07eddf155a97a403b66c60dbcf2e051e)
commit 59799ab4c3d337e64cddbe4c87ea08c8a38cf9a4
Author: Victor Seva <vseva@sipwork.pro>
Date: Thu Feb 26 13:49:15 2026 +0100
async: fix processing of 3rd parameter of async_task_group_data cmd
fixes #4606
(cherry picked from commit 9ae78f8bb918324f4303f769ba79c6e2910d2eab)
commit 8d702d7e912aba45e6fd2a3ad76bac1a936b6633
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Feb 25 08:15:17 2026 +0100
pv: extended $rcv(...) variable for event_route[core:msg-received]
- aliased to $recv(...) to be able to avoid collisions in some cases
with return code
(cherry picked from commit 93ba4a9e3c37904d564e75e8802cd70e94491ae9)
commit 4ed2c55c4cfc8bd8d66b352775d9c5f1f0252ef7
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Tue Feb 24 18:06:23 2026 +0100
pv: extended string transformation with charat and byteat
(cherry picked from commit df1f5c02c003c77d0a902e6e4ba1115caa096ff3)
commit 6204721ab081d63022b9b37c6702dff8c6d2fa50
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Tue Feb 24 13:14:51 2026 +0100
core: extended the execution of event_route[core:msg-received]
- option to be executed when data is read from network
(cherry picked from commit 454e897f153736aac53776517a9ecfa260ce910a)
commit 4960e787fe95fa52c07b959af157232bfc1697fa
Author: Alexey Volokitin <alexey.v@didww.com>
Date: Thu Feb 19 23:31:11 2026 +0200
outbound: parse Expires header to prevent crash
(cherry picked from commit bf135ccbdcf2bdb607c95952c92bd96972e65413)
commit 35c48f4fbb5fc70371cdfccbe80c23c888a7efa3
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Feb 23 09:02:00 2026 +0100
rtpengine: exported start_/stop_forwarding() to kemi
- GH #4598
(cherry picked from commit fd75abf30ae80bd3243cd5942f071457fb4bc0aa)
commit e6f010c553df6499b9d85ee621312d77307c2617
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Feb 23 08:37:07 2026 +0100
core: parameter tcp_accept_protocols to control active protocols
(cherry picked from commit 96ebc009544b7e3c5efa88708cfe71df8e7d5989)
commit c92362ee8674dc98388674b44d99befd23c04d36
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sun Feb 22 11:21:36 2026 +0100
cfg_rpc: compliant response for rpc cfg.help
- it was overwriting a single string value for jsonrpc and standard rpc
response structure, switched to structure with two fields for
description and type
(cherry picked from commit a8e9cd99b56e455ed8c21d2454f9d3286701b118)
commit 3cc921f1c41da0bacbbb5e10d920f6b41897dbaa
Author: Alex Hermann <gaaf@gmx.net>
Date: Fri Feb 20 16:22:04 2026 +0100
dispatcher: Fix overly verbose logging
(cherry picked from commit ad98a3ec9fa76fdf85254d96458245641084614c)
commit 7c56584d90f7efa6dcef65ddb318b1583d02b8f6
Author: Morten Tryfoss <morten@tryfoss.no>
Date: Mon Feb 23 21:23:19 2026 +0100
auth_ephemeral: Add link to OpenSSL in CMakeLists
(cherry picked from commit 3fd1afe60fe37e0ed87fe3b3c5acb6da9dd613f0)
commit 2e63fb3f707c0976b9c5e48fb280c613fb55f95a
Author: Morten Tryfoss <morten@tryfoss.no>
Date: Mon Feb 23 21:00:24 2026 +0100
geoip2: Fix typo in CMakeLists
(cherry picked from commit 2c9e3138d2e5ada1b52e8e66af7df0dae4dce0f8)
commit 16edcfdbc95db427babf47fb2a9bd052258cc34a
Author: Federico Cabiddu <federico.cabiddu@gmail.com>
Date: Tue Feb 24 08:22:45 2026 +0100
pkg/kamailio/deb: add back db_text module [skip ci]
(cherry picked from commit bb3b8fe6e0bb648b40bd7c2ec15ed9407bb2a3ae)
commit a64fd75c148ab1e224587da9b60ed048366d208a
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Fri Feb 20 06:58:22 2026 +0100
core: tcp read - checks for MSRP first line
(cherry picked from commit 045bf283c095d72e69986403c5835afeca9af4f1)
commit c3fd3592257edbb2bd4d74cb438e6576cac7a079
Author: Norm Brandinger <n.brandinger@gmail.com>
Date: Fri Feb 13 15:00:33 2026 -0500
dialog: fix race condition in link_dlg_profile
Move link_profile() call inside the dialog entry lock in
link_dlg_profile(). Without this, a linker added to the dialog's
profile list becomes visible to destroy_linkers() before it is
inserted into the profile hash table. If destroy_linkers() runs in
that window, it sees hash_linker.next as NULL, skips the hash table
unlink, and frees the linker. The subsequent link_profile() call
then operates on freed memory, corrupting the profile hash table.
This causes SIGSEGV in get_profile_size() (NULL pointer in hash
chain traversal) or an infinite loop when hash buckets become
cross-linked.
GH #2923
(cherry picked from commit c958cc7a1dcad00c4bb36f79d539bbb96f135642)
commit f7e7d8917dcc56b1023ff6574faab83281d4adc2
Author: Henning Westerholt <hw@gilawa.com>
Date: Wed Feb 18 10:07:21 2026 +0000
dmq_usrloc: remove comments about function exit status
(cherry picked from commit 70c1964854fea7cbd4c3990e0e3aef0e9ee3243c)
commit 450caa3548a4840778c7eafd9320a01fd40a299c
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Feb 18 11:08:03 2026 +0100
===================== 2026-02-18 Version 6.1.0 Released =====================
===================== Changes Since Version 6.0.0 ===========================
commit 2cc923a0f7a4640853a0483d34ef8b3c5d7112ed
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Feb 18 10:52:22 2026 +0100
src: version set to 6.1.0
commit a564d2da4007d80698b123e74382268f721fca78
Author: Stefan Mititelu <stefan.mititelu@net2phone.com>
Date: Tue Feb 17 11:31:56 2026 +0200
dmq_usrloc: improve return codes checking on add contact
If no shm available when at dmq_ul.insert_urecord(),
will cause a crash when trying to dmq_ul.insert_ucontact().
(cherry picked from commit 26a84c938641aa1aed30a368c1415adc5aff39ed)
commit a1e357dc9032524fff6c1a96614bcbc4fd8fcb88
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Feb 18 10:47:20 2026 +0100
pkg/kamailio: version set to 6.1.0 for rpms and alpine
commit 9ed6af4482439d04ebb2cd4f0e986b30f4cc8dea
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Feb 18 10:46:09 2026 +0100
pkg/kamailio/deb: version set to 6.1.0 for spec files
commit 1ea74e75d5eee3c76343329855447bdd8f7e14a6
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Feb 18 09:40:22 2026 +0100
etc/kamailio.cfg: updated version in comment
commit 5182a677a078dd89f16dd85fb0941577a6e7f3a4
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Fri Feb 13 09:59:11 2026 +0100
pv: manage if changing uri to from/to needs enclosing
(cherry picked from commit b29086966d6ab8b69c0fada8b6b379a0b3268bbb)
commit e8a43d551523e232c90214cc05929b35e5898d20
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Fri Feb 13 08:46:28 2026 +0100
tls_wolfssl: replace asserts with error logs
- do not crash, try to run further
- GH #4391
(cherry picked from commit 8239d541503ce43c58d7f7ab54ba8ee70f557821)
commit f3a00a3051b709580d7df75e8c91a438c195060c
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Thu Feb 12 20:23:42 2026 +0100
uac: replace - enclose new uri if needed
(cherry picked from commit d9e6bb39cabc963468326731d99423eaa65da278)
commit 966d92ff34a892757aec7036dba0085abae3ff12
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Thu Feb 12 10:42:28 2026 +0000
uac: Fix 2 spaces when replacing empty display name
(cherry picked from commit 1018ff6934879658ec045a6c2165e412c711a2c7)
commit e4a1693906780e1c7141cec228f5ee1e5172f212
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Tue Feb 10 22:09:15 2026 +0100
core: parser - field to keep the style of the to_body
- enclosed URI or quoted display
(cherry picked from commit b1f0091b17707c5e04e7cc370ceb52d84bbd1aae)
commit 66d0781e3c8243c6f92093efb4b70beea7079c77
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Feb 16 20:24:00 2026 +0100
kamctl: regenerated db schema
commit db39588047aa73d72c88f543603d7207e51fb2a0
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Mon Feb 9 08:17:03 2026 +0000
cmake: netsnmp: Use correct option for discovering linking libraries
(cherry picked from commit 92540376d1ab794802f7a047389f68a079a23021)
commit 4664a6ed29b715a22e32f039c6861230c5f66b70
Author: Victor Seva <vseva@sipwork.pro>
Date: Thu Feb 12 14:25:49 2026 +0100
ims_usrloc_scscf: print string value of ucontact->state
This helps a bit while debugging
(cherry picked from commit fe0af365ad603527f4e97144dfaec852bbf954a3)
commit eb8b4ff5d29a02c05c54b999f9300255dc4f7cdc
Author: Victor Seva <vseva@sipwork.pro>
Date: Tue Feb 10 12:04:40 2026 +0100
ims_usrloc_pcscf: print string value of reg_state
This helps a bit while debugging
(cherry picked from commit 2a0e90f4e645934f0646b29047c25cee9ccf0110)
commit f0bcf13c7ed9571849bb879f2c2e2d4a65d44953
Author: Victor Seva <vseva@sipwork.pro>
Date: Tue Feb 10 11:36:44 2026 +0100
ims_registrar_scscf: print string value of ucontact->state
This helps a bit while debugging
(cherry picked from commit 1d54c7db52185981a3fa4ec19df9e7376de40427)
commit 206c7bc8c04ff68435bc040e211e97af21af1f57
Author: Victor Seva <vseva@sipwork.pro>
Date: Tue Feb 10 10:38:39 2026 +0100
ims_registrar_pcscf: fix small typo in debug log
(cherry picked from commit b4d38643209b8876345b2120994fb8860313b325)
commit 5a11efbb1c5661c4c4b8d7faa4e4a1eae00ab264
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sun Feb 8 15:45:06 2026 +0100
core: free dst earlier inside shm_str_dup_mode()
(cherry picked from commit 4015c6c47d6e4189788331757663fcd7ff988db2)
commit 68f5ce8457edd238b55a27394793c83f621c71cb
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sun Feb 8 15:36:08 2026 +0100
tls: store server name and id in tcp connection
- to be available for tls multi-threading with tcp_main_threads=1
- related to GH #4583
(cherry picked from commit 2c70fe352ee13f638a0f21e6fe406aa3a8fc58cd)
commit f234e2c6fda97fc7a35278125f42250a9db96b80
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sun Feb 8 13:19:45 2026 +0100
core: tcp - added fields for server name and id in connection info
(cherry picked from commit 78c475d03c94067aaa064ba1cdba6d27807fd4c9)
commit be2392a87e77c0ee7ffb5984cfbb3e827912f02b
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sun Feb 8 12:35:21 2026 +0100
core: resolve - added missing headers file for str shm dup
(cherry picked from commit 733482c6565b7dd3a14ba84ca268267ca2f6879d)
commit 784402b31d9f962047adc3f10964150eb8c053b7
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sun Feb 8 12:31:41 2026 +0100
core: macros to duplicate/update str in shm
- added the update variant, based on former duplicate function
(cherry picked from commit 75187b6e931b2980811abb7a4ea78ceb21866202)
commit ab8ba5bd2199a1ce0f4d845c5651588eadb92926
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sun Feb 8 09:16:17 2026 +0100
core: tcp - relocated definition of ksr_coninfo_t
- related to tcp connections
(cherry picked from commit 20409ba57735434b12fbc8a7e0c26739d7eac140)
commit 41dbb84befbb84e26c58b326a1247ac387a44a87
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Feb 4 20:07:10 2026 +0100
app_lua: search first for newer liblua versions
(cherry picked from commit ed7bd2519a54995abf153e231ac4bd76a66b1842)
commit b9701628d67452ef8e94ab8542c7896e19bf0aa7
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Feb 4 11:04:00 2026 +0100
app_lua: option to take the module name from defined id
(cherry picked from commit 2a2b58c986b6eae70a2cedf9d13ad2f1d95bc496)
commit b3c38a88b2c7d6021b81f457f2b1e0e39ad8fcfb
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Feb 4 07:44:38 2026 +0100
kamcmd: buffer size for jsonrpc response made cli option
(cherry picked from commit 05bac070e1f04113817baff1fa7b676b5de92b65)
commit 25099a1f9e3f3ebb5b3c19ca51e4d5c5fdc6a0c8
Author: eddie2072 <eddie2072@icloud.com>
Date: Wed Feb 4 19:44:33 2026 +0800
rtpengine: avoid use-after-free when logging duplicate hash entry
(cherry picked from commit 94ce539038df5565e88bfa8105cfc289575105cd)
commit 150ddb0caf3e0283d92de656ead44a7d63eaefa5
Author: Victor Seva <vseva@sipwork.pro>
Date: Fri Jan 30 11:18:44 2026 +0100
pkg/kamailio/deb: build documentation [skip ci]
related #4573
(cherry picked from commit f7101e99f7594519bd5cf5b46bc7428f3a44ff3a)
commit 2022ce03055cd49d5f5ca7aed6d37cf62e4a5543
Author: Victor Seva <vseva@sipwork.pro>
Date: Fri Jan 30 11:16:53 2026 +0100
pkg/kamailio/deb: docbook-xsl dependency for building docs [skip ci]
(cherry picked from commit 724db55111c589acc22b257323fe1789172897f2)
commit b201b785aa26884bb5d7ad497e7eceb5e14eddb0
Author: Victor Seva <vseva@sipwork.pro>
Date: Wed Jan 28 09:51:19 2026 +0100
pkg/kamailio/deb: add lynx as dependency [skip ci]
(cherry picked from commit 642e68ae69407b0752b0e1be9eb313404725256b)
commit 45a938c1c33989b43a36d6ee700baed1b6f6c7e0
Author: Victor Seva <vseva@sipwork.pro>
Date: Tue Jan 27 17:18:00 2026 +0100
pkg/kamailio/deb: build dbschema manually
(cherry picked from commit aa38076f3dfb5b331871029e9bc5e01bc4e51726)
commit eec89862f4b6330ffa0cf17f465b7295fbf3fc01
Author: Victor Seva <vseva@sipwork.pro>
Date: Fri Jan 30 11:33:15 2026 +0100
cmake: Adjust passing env variable, take two
follow up of 3cda0c0040e7f0e50eed588248d513bbf8f1610a
(cherry picked from commit 4aa8c3426d79399a76d9e61ca63ce30d4c46a47d)
commit d3e54ae7da28294624219bee97d209797700575f
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Wed Jan 28 14:28:29 2026 +0000
cmake: Remove unused dependency for docs
- docbook was never used
(cherry picked from commit 67e1d577849ce3487f2acce161597e8cf1e0785e)
commit ddd7ca8116b43b68274f9e54c7e7e2c3a3a40738
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Wed Jan 28 12:01:13 2026 +0000
cmake: Remove man pages for modules
- Outdated.
(cherry picked from commit e44596f00145a7bb053f9a56974cdbfc412ed3af)
commit 1e1f50fb77dd9017cfb245a613ecb3e31a4c6de5
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Wed Jan 28 10:29:37 2026 +0000
cmake: Adjust passing env variable
- CMake was double quote if containing spaces or special shell characters breaking the build.
- Pass env with cmake tool
(cherry picked from commit 3cda0c0040e7f0e50eed588248d513bbf8f1610a)
commit cd09efe8467489041a662124e2e89044e6f07fba
Author: Kamailio Dev <kamailio.dev@kamailio.org>
Date: Sun Feb 1 11:01:28 2026 +0100
modules: readme files regenerated - modules ... [skip ci]
commit 7f3a78052f5bbe01ab9e92d3846fde4c5ed4718c
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sun Feb 1 10:40:13 2026 +0100
peerstate: the folder with documentation has to be doc/
(cherry picked from commit 06f9f71db2f9103ad68ade2ebe83671f05d50fa5)
commit 5d2b63f58bd7670e64e693dcc8be3d9187ab42f0
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sat Jan 31 21:26:26 2026 +0100
jsonrpcs: docs - small type [skip ci]
(cherry picked from commit 91635499da9a2eebd2ca392718c333d965eeaf74)
commit 59d2e4b5434e57f5974771350b96fa470cac0377
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Fri Jan 30 13:11:09 2026 +0100
websocket: CMakeLists.txt - add macports paths
- GH #4576
(cherry picked from commit 106b0aa376e5c1dd1dc29373c1e0c7ac3579053c)
commit 3be386ab915a7b7d59d624917fab2e6209f1cbb5
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Fri Jan 30 09:17:42 2026 +0100
core: atomic - remove compile warnings for darwin
(cherry picked from commit 6c196e18649d90d6bcda2d2c21247f8797966ecb)
commit 8e811f80ff8e569c67222e34de5f5a85f3a97f1b
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Fri Jan 30 09:08:42 2026 +0100
core: atomic - match also __CPU_arm64 as alternative for __CPU_aarch64
(cherry picked from commit 388f9a1e43f3b1f4878028b1671e136fea788106)
commit 9e49c71a3526ef86132724765bb6138420126fb8
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Fri Jan 30 09:04:55 2026 +0100
cmake: match clang and appleclang for aarch64
(cherry picked from commit b08e92c07deb69b155c7a6b6ea6259d8485206c5)
commit 7ad2cf699a76015c44816772c2edf239cc7f251f
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Thu Jan 29 20:57:57 2026 +0100
Makefile.defs: define CC_GCC_LIKE_ASM for arch arm64
(cherry picked from commit 92b6e416c7735938bc329212d67e42c23bb98b18)
commit 7eb607cfcf5e4d80a037b2e90f1a9e826a448fd1
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Thu Jan 29 20:53:19 2026 +0100
cmake: defs.cmake - match CMAKE_C_COMPILER_ID with AppleClang
(cherry picked from commit 34d8d793a6f4cb926bec77241c2ba951478cec18)
commit eab2dda5a7b6b70ee9e99129b563e87a13630b38
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Thu Jan 29 20:17:36 2026 +0100
core: reformat compile flags
(cherry picked from commit 60a22341de1453b12ae4a7a48f1d345979e96b51)
commit 811459eb023297b68dafab2cd9b2d6dc9732bb0a
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Jan 28 10:57:14 2026 +0100
Makefile.defs: skip -Wl,-Bsymbolic-functions for darwin
(cherry picked from commit 9a19fa4ea5082307706401f447a38bfb1fae0f77)
commit 4b61f8366d0ef6bafdd7329d6c39d69e12db4ae9
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Jan 28 10:54:58 2026 +0100
core: atomic ops - silent compile warning for darwin
- when falling back to atomic unknown, typically used for development
(cherry picked from commit 67d16d697c318af22b619030c080aacb8e1e9df4)
commit 23477f512a2121e020cc741cd4d23d4410a8efdd
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Jan 28 10:19:53 2026 +0100
kamcmd: updated version in makefiles
(cherry picked from commit b3835ab135e7aa36f4555b54e9a785068923b504)
commit 15db838436f8ff7ac09c98e96c5d2af1eae98dc7
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Wed Jan 28 10:15:19 2026 +0100
kamcmd: format structures
(cherry picked from commit 2293abdbb58cc6c9504c87fd1f7d85cef84e39b0)
commit 8b3872b7ddb9653e59e627cbd2e4399813b71abc
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Tue Jan 27 14:20:31 2026 +0100
xcap_client: check return for curl_easy_init()
(cherry picked from commit 7ebb826040d63b4d55f11fb685a6c201739cd4b2)
commit 57880e059d16c64fecb5814c477ade3b0758a014
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Tue Jan 27 13:29:45 2026 +0100
ptimer: free in case of error
(cherry picked from commit 288d009b1dcda37b6b116578e623cea25fe241af)
commit e96b51fb988b43d7050669c9b598790ee577701e
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Tue Jan 27 13:25:20 2026 +0100
xcap_client: check the return for curl_global_init()
(cherry picked from commit 898cdbb4e37f8451c19b7be676d49e3aacd404a2)
commit 64b5887fb3915529fc54beaf08da8d6d54078920
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Tue Jan 27 13:18:24 2026 +0100
core: init locals in copy_reply_lump_list()
(cherry picked from commit b3cf61d106d5ffc34fc338f34bc1193bd5bb5b3e)
commit f8dde3f7fa22934728329ac054b6f107efd93f3e
Author: Federico Cabiddu <federico.cabiddu@gmail.com>
Date: Wed Jan 28 04:59:27 2026 +0100
uac: copy uac_flag to transaction's uas request in replace_callback
(cherry picked from commit 3da94a1920f0dfafc553c0d7519fd9733ce00899)
commit de30323188419285a30787c9622534311267c050
Author: Kamailio Dev <kamailio.dev@kamailio.org>
Date: Fri Jan 30 12:46:15 2026 +0100
modules: readme files regenerated - modules ... [skip ci]
commit 4dc9f981d20cb530daee41cc2bb5b57000ea5095
Author: Victor Seva <vseva@sipwork.pro>
Date: Thu Jan 29 08:56:07 2026 +0100
ims_ipsec_pcscf: document needed permissions for non-root execution
related #4420
(cherry picked from commit a2ff40c6a7df4511012a3b130a1d3e8eb33ed83e)
commit 76f6c079e44e3771c89acccbf8b4e8f3c7541fd9
Author: Kamailio Dev <kamailio.dev@kamailio.org>
Date: Fri Jan 30 12:31:19 2026 +0100
modules: readme files regenerated - modules ... [skip ci]
commit bbd698b2e591e6b70337911d93d0385329cffa76
Author: Victor Seva <vseva@sipwork.pro>
Date: Fri Jan 30 11:52:45 2026 +0100
nats: fix typo at nats_url example [skip ci]
(cherry picked from commit cc0362dc78eedd8f88d546d3d4e58555717d8088)
commit 18fd837b78e07d9b61c56901d96eb212102e5dbf
Author: Victor Seva <vseva@sipwork.pro>
Date: Tue Jan 27 09:34:54 2026 +0100
github: set 6.1 branch for devcontainer and main workflows
commit 0c4e11a536897676c60cfe178793f79821e8af60
Author: Victor Seva <vseva@sipwork.pro>
Date: Tue Jan 27 09:30:33 2026 +0100
pkg/kamailio/deb: version set 6.1.0~rc0
commit cf8b616a8825328699821fb144e000f1e08d0322
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Tue Jan 27 09:06:48 2026 +0100
src: version set to 6.1.0-rc0
- branch 6.1 created for release series 6.1.x
commit 36c67dfc27efbca9e960af8ef71af551c67a8e7e
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Tue Jan 27 08:57:30 2026 +0100
src: version set to 6.1.0-pre1
commit f00a9491e489bc1fc3f1d07bb0c659aad6b1f18a
Author: Victor Seva <vseva@sipwork.pro>
Date: Tue Jan 27 08:28:07 2026 +0100
pkg/kamailio/deb: libsecp256k1-dev >=0.5 only on trixie and sid [skip ci]
commit 4b93311ed9b960133dfd08806168d3bce6a9b4e8
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Jan 26 22:19:08 2026 +0100
kamcmd: set default jsonrpc socket
commit 839d452c2a470ecb3fe98335d96821d86bdee89e
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Jan 26 22:02:10 2026 +0100
kamcmd: version set to 1.6
commit dc00c95f0a652d4dc70f737439b176da2ad9bc43
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Jan 26 21:55:01 2026 +0100
kamcmd: helper function to append string-z
commit eccdf9637e4e9851c28d680fc507009a237cc3db
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Jan 26 21:40:36 2026 +0100
core: srjson - array pretty-printing similar to structure alignment
commit 0fcc7d183d5611ae92729de33b9cd81ce687723a
Author: Victor Seva <vseva@sipwork.pro>
Date: Mon Jan 26 13:48:23 2026 +0100
pkg/kamailio/deb: add auth_blockchain modules package [skip ci]
commit 637ea00e99c400020a9b2a2c20474ef080cfaccb
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Mon Jan 26 17:45:07 2026 +0000
auth_arnacon: cmake: Use pkg-config
commit e728b7b8ec58cbd4c322fac076ef24572e895d0a
Author: herlesupreeth <herlesupreeth@gmail.com>
Date: Mon Jan 26 13:25:04 2026 +0000
ims_ipsec_pcscf: reuse IPSec tunnel params only if Ck and Ik stays the same
commit 85cdbe99f173a6f360d6b7300302313a8888ceb9
Author: Victor Seva <vseva@sipwork.pro>
Date: Mon Jan 26 18:22:28 2026 +0100
kamcmd: fix missing declaration of _kamcmd_read_timeout
introduced at 857fe0152ff821a41e1809e0a1c8b656650a8e1b
commit 4a55264c95da12399a37e583cf8b97c617430dab
Author: Kamailio Dev <kamailio.dev@kamailio.org>
Date: Mon Jan 26 13:31:13 2026 +0100
modules: readme files regenerated - topos ... [skip ci]
commit fb72db05efbcc2f47d4212e028fe110a933a20a3
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Mon Jan 26 09:01:31 2026 +0000
topos: docs: Add docs for new param
- methods_update_time
commit 965fce08ecb94b3303c46c4b5d22dfe09e2cf4a7
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Mon Jan 26 08:38:58 2026 +0000
core: Fix brief doc for parse_methods
commit a2878889eb983798b2991e883011f1863ac363fe
Author: Xenofon Karamanos <xk@gilawa.com>
Date: Mon Jan 12 15:36:21 2026 +0000
topos: Add new modparam for updating rectime on RE-INVITE
- Allow disabling updates by providing empty modparam
- Remove direction for subscribe
- Allow any method provided to update the value
commit 857fe0152ff821a41e1809e0a1c8b656650a8e1b
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Jan 26 13:15:30 2026 +0100
kamcmd: added timeout parameter for jsonrpc response read
commit f450ae7917d2c31695d4dd82fb9c9beb13a6db29
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Jan 26 12:57:12 2026 +0100
kamcmd: example in hel message for jsonrpc
commit 3c1f401b99b4d94fce465243f146594f49560c68
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Mon Jan 26 12:46:53 2026 +0100
kamcmd: basic support for jsonrpc
commit 34f3ec9078e367c8da79760bc9c0d92a9a89b45c
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Sat Jan 24 18:10:55 2026 +0100
kamcmd: removed unused function
commit 412dcbfc9e2079c16ca23e423beb12b867ab4709
Author: Nathan Bruning <nathan.bruning@gmail.com>
Date: Fri Jan 23 12:10:36 2026 +0100
core: qm: fix bookkeeping of used and real_used in case of fragment split
commit 621143cbb243eee02ffcb616c142480331ea33bc
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Fri Jan 23 08:53:23 2026 +0100
kamctl: version set to 6.1.0
commit 9c6606d335a92b2ef75e106ee958e43cd9c2aff1
Author: Henning Westerholt <hw@gilawa.com>
Date: Thu Jan 22 12:06:07 2026 +0000
db_text: fix conflicting comment about db_mode
commit 8247b56401401f258995ade7edd8602937a96b19
Author: Victor Seva <linuxmaniac@torreviejawireless.org>
Date: Thu Jan 22 11:41:25 2026 +0100
core: avoid unpredictable parsing behavior on platorms where char is signed
* cast unsigned char before calling isalnum(), isdigit(), tolower()
fixes #4563
commit e8607dd84fe0216c98822854e1776dc9a6070907
Author: Victor Seva <linuxmaniac@torreviejawireless.org>
Date: Thu Jan 22 11:22:46 2026 +0100
devcontainer: switch to trixie [skip ci]
commit 716c67777347b1b46eadc2127b9a160681db6552
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Thu Jan 22 09:04:28 2026 +0100
rtpengine: return true instead of config exit for subscribe/unsubscribe
- GH #4564
commit 373ff32c53b9ea1ce56854aa3e51ab485856adb7
Author: Daniel-Constantin Mierla <miconda@gmail.com>
Date: Thu Jan 22 08:51:43 2026 +0100