-
Notifications
You must be signed in to change notification settings - Fork 27
/
ChangeLog
13861 lines (9173 loc) · 455 KB
/
ChangeLog
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
===================== 2024-09-04 Version 5.8.3 Released =====================
===================== Changes Since Version 5.8.2 ===========================
commit 38b407b353131b74032892e6eb0269731d00145f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Sep 4 09:49:06 2024 +0200
pkg/kamailio: version set 5.8.3 for rpms and alpine
commit 6b0e0e0dd0415077371a45a63dc00b13f9611d7e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Sep 4 09:47:28 2024 +0200
Makefile.defs: version set to 5.8.3
commit abedff80d532b3b9896ff46fd28e1c9a68da0702
Author: Kamailio Dev <[email protected]>
Date: Wed Sep 4 09:46:17 2024 +0200
modules: readme files regenerated - modules ... [skip ci]
commit 4f891e5343ba74b4ca459285438c2a064a363a60
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Sep 3 18:08:44 2024 +0200
secsipid: docs update about libsecsipid installation
(cherry picked from commit 7abbc93d8db807077ca2afc10b026be0835f4b65)
commit 60423dbe90d3603fa98e0aaf161b7bef7f8b2a23
Author: Victor Seva <[email protected]>
Date: Fri Aug 30 12:52:46 2024 +0200
http_client: clang-format
(cherry picked from commit fde8bd21dca9c8b45b314b04b21f742363f028b1)
commit 6ee9bc2f34f9b20b576510e2e81a96bbfcc5a3be
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Aug 30 11:36:29 2024 +0200
sca: remove function name from log message
(cherry picked from commit 4a57efa0f7ed2560420e10d0fe70037a14a12c12)
commit d86350ea9078b89677323ac86053b0f37b7d1722
Author: Victor Seva <[email protected]>
Date: Wed Sep 4 09:30:26 2024 +0200
pkg/kamailio/deb: set version to 5.8.3
commit 9e0f6acc23313f5b25300660b6a4b75aab5bd168
Author: Michel Pelletier <[email protected]>
Date: Wed Aug 28 12:49:46 2024 -0600
app_python3: Fixes Kemi TypeError thrown when latency_limit_action is exceeded.
Replace PyBytes_AsString(..) calls with calls to PyUnicode_AsUTF8(..) in the PY_VERSION_HEX >= 0x030B0000 block of apy_kemi.c.
The PyBytes_AsString expects a Bytes value but receives a Unicode value instead, thus causing the TypeError exception.
(cherry picked from commit 6cae3661419d8d79fc8fb0463f6787b06911fa9d)
commit 661b2670168530c21ee4dd23fcb29abf8b5bc3ba
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Aug 28 10:51:44 2024 +0200
usrloc: mark contacts with keepalive sent
- properly detect if the contact record has to be expired or not
(cherry picked from commit 6502872d35d9bd7043bf54cd1d640dd64ae87115)
commit 2dbc8b5bf3353fdd3b05f265075e6a3cac8c02d4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Aug 27 14:30:17 2024 +0200
core: use defined type for flags inside build_req_buf_from_sip_req()
- partial backport from 9ff1080cc6452343e6bc2de00350b2f7bcecf6d2
commit a9769ca3692f11fe36e86b29af37d94f9f0fc4c6
Author: Andrii Pogrebennyk <[email protected]>
Date: Wed Aug 21 11:17:40 2024 +0200
pua_reginfo: free pkg memory after getting the content of each XML attribute
- free the memory from the state XML attribute that was returned and immediately
used in another function call without freeing leaving one small mem leak;
- add comments but keep the dead code regarding parsed but unused attrs.
(cherry picked from commit ed6730aa64e0e7c1580584d6f808e76a665e5882)
commit 6a22677e281de00dc0088ad23d7c7a5ca6e69f84
Author: Victor Seva <[email protected]>
Date: Thu Aug 22 11:20:17 2024 +0200
pua_dialoginfo: reformat exported structures more human friendly
(cherry picked from commit 748da56717800c36c43bb6fe3739011f3d3105e0)
commit b2bfdd8eb6b40b1e70a2876cee46890813a0c699
Author: Victor Seva <[email protected]>
Date: Thu Aug 22 11:06:47 2024 +0200
pua_dialoginfo: add section ID's to documentation
(cherry picked from commit aba56a5aa3b8fa4f07d0c52cd7fd2d56103ca56c)
commit f32d67f1b4b08a8cc8dbae917e1a2d0c08adeb93
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Aug 17 17:08:31 2024 +0200
msilo: removed duplicatred exported function
(cherry picked from commit b712ddc4db9a9c1bb30b236a0a86082108b23f07)
commit ee5853b4eab6553821113ff64e9eed24a5c9d6b7
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Aug 17 16:30:21 2024 +0200
msilo: added fixup free functions to exports structure
(cherry picked from commit b6dea98ada293a3bbad004aa1b194d4bf44a60ab)
commit e9d5d37271e03cdec6cf87647e488c3b4f175258
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Aug 14 18:37:06 2024 +0200
phonenum: add fixup free functions to exports structure
(cherry picked from commit 7d2fd09103680454aaaba30f5e46f83b362513eb)
commit 92e999228eb75856911386d280ab48389aeb7d3f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Aug 13 21:01:51 2024 +0200
phonenum: export match_cn() to kemi
(cherry picked from commit e9dd041ce6af9ee4b9cc2e29b4417787a8056776)
commit 57b9c66cb7811c045caceb2f61047e07a108aabc
Author: Morten Tryfoss <[email protected]>
Date: Mon Aug 5 12:14:04 2024 +0200
cdp: Error log caused crash
(cherry picked from commit 4aaaca60ef2207100dd3f4e16ae63428aadc7dc5)
commit a024fb3c028b8df18a9b855fff99bcddc3a61ef2
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 30 09:07:36 2024 +0200
corex: switch to unsigned long long for iflag lookup
(cherry picked from commit 072c44330297c653675b5078fb0facdc399a5ab4)
commit d102f40856512d2c51707bf5ec5a6c949c550890
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 30 08:55:08 2024 +0200
corex: proper check for iflag lookup return code
(cherry picked from commit fdb0ef987ca2b013104b06ece006f67bf8ae07d3)
commit e14522cab01eba9c5fa636a7c0f6ed40200c6871
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 30 08:44:03 2024 +0200
corex: small formatting of iflag list
(cherry picked from commit 70606e3ea575228b3ccc662d6f9048aa0eb899ce)
commit 2e4920fd292b6f1d064a75503dd3be3ca27fdeb5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jul 29 10:07:43 2024 +0200
cplc: use long long constants for operations
(cherry picked from commit 49a9c0a0f391c2e9fc45dff7c37a087dde0f7ba3)
commit bc8ea1022718c94fbdf9bb93c35759e1a6ce3cde
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jul 28 18:44:45 2024 +0200
core: tcp - use long long constants for operations
(cherry picked from commit fc2f34e8bab022b0c99e8313aee3e4a87c1f2e52)
commit 1eb7db2f18724b91d18c6b30b529b51117d176b0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jul 27 18:16:40 2024 +0200
db_berkeley: buffer size set to the argument of strftime()
(cherry picked from commit e86d6ee30227a3fc5cff98e7983d4a80f0c42c4b)
commit dfc2531cf7db70e315613b3242d1b5b41ac20857
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 26 19:49:57 2024 +0200
core: cfg select - check res when getting the variable
(cherry picked from commit 3333611a3ef9078cbcb9867db88921f0c48fce1b)
commit bbfb24d3cb841b37e6e1b84892b68daf6c237c46
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 26 19:00:29 2024 +0200
xprint: return on mod init error case
(cherry picked from commit 660a019263b81d318700c205531bf4e042c912cf)
commit f8201e6d4848081a2dd564e0d5b216fca47ef3f0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 25 10:58:40 2024 +0200
janssonrpcc: free new servers list on error
(cherry picked from commit b4efe7725728392d0c8921c006d6fbc6455e9b8f)
commit 61eb4fe44e66a952ba14e39e1c664878ef52919d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 25 08:44:15 2024 +0200
core: cfg select - check res before initializing
(cherry picked from commit a6c415713bb209b03ff110d4ae891173d04ac471)
commit 5baf49a179194ba0eaa5e7f4caba613c72859b0c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 24 10:43:18 2024 +0200
jsonrpcc: declare variables are the beginning of function
(cherry picked from commit 7ba313f6f96ffa6042c163027c0c7bb65106fef7)
commit c447bf60d528d8fdc1f5aee52a796ed5f77b2f5a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 24 10:37:21 2024 +0200
jsonrpcc: free allocated pkg buffer on error
(cherry picked from commit 796bcc038d7885e01dbad34abc68bf612062c533)
commit f57accd1820b26b40f14d420465402188cb13df1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 23 11:57:48 2024 +0200
erlang: init xavps for safety destroy on error
(cherry picked from commit 29510872607deb3238411b358c422d004fb307b7)
commit e016d1ada08edca0adacd42ffa67ffd3c8c2c384
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jul 22 11:01:16 2024 +0200
utils: jump to error on pkg allocation failure
(cherry picked from commit 34749ab13b31504358761c964f794b283931394c)
commit dd4d5e44a60a658772e8288d94193596f7a982a7
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jul 21 22:41:45 2024 +0200
tls: check lenght when parsing pv alt name
(cherry picked from commit 79a668b8bdb0e085adb3581d718e5fd5ae73e2e4)
commit 4732a4a88df9f4cbd2260564b94269157b3c0647
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jul 21 22:23:29 2024 +0200
tls: remove uselss pv format parsing in pv_parse_alt_name()
(cherry picked from commit 7c06997a1b6e77ae0642d369f532219dc35ef8e0)
commit e006c2c53d6b013253f6a95b96c0f81f016bc440
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jul 20 20:02:07 2024 +0200
xprint: check to avoid double free
(cherry picked from commit 5a1f80f266069dbc453b44a856f225c254e7c050)
commit fa8f0a401980f5dccdfe35983fb5b55040ef9e9c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 19 19:59:20 2024 +0200
topoh: 0-init alocated structures
(cherry picked from commit dc71c0a5791ebc1306648b5ed338613050e32f5c)
commit 39d4d48abf9e3e2e1edd2f22780fb1bf233c9697
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 19 19:53:47 2024 +0200
core: removed unnecessary destroy
(cherry picked from commit 20f2096d314253e7e74688da664de2830289a276)
commit 445659c38bd54e26d085d8c5b07bfb8edba7762e
Author: Dennis Yurasov <[email protected]>
Date: Thu Jul 18 13:48:42 2024 +0300
tcpops: fix memory leak in $tcp(conid)
- reference counter to tcp session not decremented, so shm for session never free
(cherry picked from commit acf50d86b502af36e3635d61745feaa5c577231d)
commit 7ca33c475b52703216f7d8d4e6c78530a8d7e723
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 18 12:29:05 2024 +0200
core: remove unnecessary check after using the structure
(cherry picked from commit 84ea36b4b79c07c4fc0a8c9e119184433353764e)
commit d69e65fa4e9448701729ac8f41b069dad294a51e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 18 12:17:10 2024 +0200
core: set digit 0 in the md5 buffer in case of error inside char_msg_val()
(cherry picked from commit 15b2a5467f11e009ae4efad1ee29af860326095f)
commit 92a3cc4549073d70b1b229149b29017e3a9cf06f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 18 12:00:47 2024 +0200
core: init res inside select_cfg_var()
(cherry picked from commit a471d34d6162387a1427f5d0c5b3c6079a2b0bdc)
commit b307c7eb8e58b43dca41deb3493b0888ec7e9aa4
Author: emvondo <[email protected]>
Date: Thu Jul 18 09:10:33 2024 +0100
siprepo: fix int params and wrong copy data in siprepo_msg_async_pull (#3919)
* siprepo: fix int params and wrong copy data in siprepo_msg_async_pull
---------
Co-authored-by: emvondo <[email protected]>
(cherry picked from commit a3a63655dbcbf1bc8067f34c36f4a7295b2a1745)
commit 0ffd281b77ac48f24c04655cd962b4870ee00ba3
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 17 13:56:30 2024 +0200
dispatcher: remove reference to MI in comments
(cherry picked from commit 8c3b5ab3818c86b90b02e20aa4631654e0b51745)
commit fc29c81bbc6e3fb0709e3367e2f1d803b2bf0669
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 16 08:27:42 2024 +0200
core: remove unnecessary cleanup when locating a module
(cherry picked from commit eda03789f693bb72ec4ee05a8b2b4723e5080504)
commit 89339b1fa6f08024a44d898ed9877f08911e4f68
Author: Dragos Vingarzan <[email protected]>
Date: Fri Jul 12 13:30:41 2024 +0200
nathelper: fixed handle_ruri_alias() for alias being an IPv6
(cherry picked from commit 52ab6f3dcf5ad8d967be8bdecaa64ef31cbfbe33)
commit 743ebe918b89a42ce94b10fb9dc2fe2a807eb88b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jul 14 09:00:01 2024 +0200
evrexec: remove unnecessary safety exit loop
(cherry picked from commit d5076b557728b3f9d80df391ae71e2eab2c896dc)
commit ffa4eeded62507f15e4e9b26aa5b3ba519fa6513
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 12 12:05:40 2024 +0200
pua: use long for time value diff operation
(cherry picked from commit fc8bee5b87e95e43bda2635e65457b2025eab6f9)
commit a3f40f3c407d34b25717416b3ac500e61f9300cb
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 12 11:49:10 2024 +0200
rls: remove unnecessary assignment
(cherry picked from commit c97145862119e9001874cd07de9b20ad8e96ff54)
commit e11c132cbf57ea1ae6289e734f601104ba83fc25
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 12 08:06:36 2024 +0200
stun: check message len for response
(cherry picked from commit 87e1a4a7f5d565a59a362f22e9372697f2f2f2af)
commit 164d1ecca7e94beba24013f31276bdc1f2ee04a1
Author: Victor Seva <[email protected]>
Date: Thu Jul 18 17:26:33 2024 +0200
sipcapture: add missing headers for inet_ntop()
fixes #3927
(cherry picked from commit fe505c9654541ec60f14e5a50896bb11751e61e4)
commit 685f45c4adf911ac41c14b55ad36dd4b8b51897c
Author: Victor Seva <[email protected]>
Date: Thu Jul 18 13:40:24 2024 +0200
dialplan: remove pcre2_free() warning
related to #3851
(cherry picked from commit 70563ca0629a8de5aa5427b003f441e6c3a40c6a)
commit 64a01ebec255ece59be3683bab421b35505d745d
Author: Victor Seva <[email protected]>
Date: Thu Jul 18 13:38:10 2024 +0200
lcr: remove pcre2_free() warning
related to #3851
(cherry picked from commit 310b631007082f553117d126b6b9bd915be596ac)
commit 1946e35c4d144fba3067d3fee5d1bd030dc4a609
Author: Victor Seva <[email protected]>
Date: Thu Jul 18 13:36:09 2024 +0200
regex: remove pcre2_free() warning
related to #3851
(cherry picked from commit b86030cfbd66ba95f33f312595edae29e2b5cde0)
commit dbe51dc4ee53f6e4f00450745db709a9d741c481
Author: S-P Chan <[email protected]>
Date: Tue Jul 9 10:53:07 2024 +0800
db_mysql: fix check for enum MYSQL_OPT_SSL_CA for CentOS 7/5.5.x
- MYSQL_OPT_SSL_CA is an enum not a macro
- base check on MYSQL_VERSION_ID - 50568 used in CentOS 7
Addresses #3910
(cherry-picked from commit 92cfedaaffb034db536f3bcf68695b433db92706)
commit 3161964efba19e5e7bd730bf656d019cac2c6ed8
Author: Kamailio Dev <[email protected]>
Date: Mon Jul 1 09:16:18 2024 +0200
modules: readme files regenerated - modules ... [skip ci]
commit ca3d4b3515024732805038509dd0d9f0b60ab273
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jun 27 10:07:11 2024 +0200
cnxcc: check if final pulse is 0
- avoid dividing with it in such case
- GH #3859
(cherry picked from commit 7061a79fe64066dd5a6598e38d714bd40bf2eabc)
commit f59f980d03b884f2494892eb4d007293b7ad4e34
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 26 07:22:38 2024 +0200
core: dns cache - check warnings made debug
(cherry picked from commit 754f9ae28c9a731fc0bfd6d08411bf0913a7dbfc)
commit 4fa5fc10370d81d534d75b034322a6250c7e2557
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jun 24 10:22:25 2024 +0200
core: removed duplicated break
(cherry picked from commit 588b9c710b6555371bc8bbee21e474466bb099dd)
commit 70cf3ebd2b52c341a90c9b9b6149985667a6b96c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jun 22 17:52:34 2024 +0200
textopsx: docs - note about @hf_value2 select
(cherry picked from commit d13c741d90c3887cdf144a9094a78c0c7cb9856d)
commit 7bf787d00f9f7ed8a2d758219d6d1413b2b5c975
Author: Dragos Vingarzan <[email protected]>
Date: Fri Jun 21 10:54:36 2024 +0200
textopx/doc: fixed hard-to-read documentation for textopsx
- was missing line-wraps in examples list, hence very hard to read
(cherry picked from commit 48d97c1941f660aa396b5ef100584611cf92ad21)
commit 4c75991aa662bddc1bbe65c83f7861cb72a65a61
Author: Victor Seva <[email protected]>
Date: Wed Jun 19 15:00:12 2024 +0200
db_mysql: switch warn to dbg for log messages for opt_ssl_ca option
fixes #3884
(cherry picked from commit be5172a84b02a1ab4fc7e97e7dc0813056302bdd)
commit ec27c0207a364fd4f563707b740877ab77bfb5a5
Author: Victor Seva <[email protected]>
Date: Wed Jun 19 10:12:10 2024 +0200
rabbitmq: don't try to use ssl_socket functions to a tcp_socket
fixes #3883
(cherry picked from commit 3a803770d4fb80347ba70dac94625b0e9aeab44d)
commit e430a7b5eac9311cde1ea6a4d6f9fddacebe7302
Author: Kamailio Dev <[email protected]>
Date: Wed Jun 19 11:16:19 2024 +0200
modules: readme files regenerated - modules ... [skip ci]
commit 7360ab7fbe672259c7433b1a5199467d24183d79
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 19 10:43:12 2024 +0200
db_mysql: switch warn to dbg for log messages for opt_ssl_mode
- GH #3884
(cherry picked from commit 8f98317e92da61160a1c416e0da45938a205d358)
commit 1a6907f11b1c8455c14cd24f3a55aff7a3aa0184
Author: H.Yavari <[email protected]>
Date: Tue Jun 11 13:21:32 2024 -0700
ims_usrloc_pcscf: Update the module document
- Fixing the db_url param value from int to string in admin document.
(cherry picked from commit 04e065af3d46e4b0def5ed3de6502442466f04bc)
commit 9cbe3176f5c8c298956ed2d4b83818ceb64af528
Author: H.Yavari <[email protected]>
Date: Tue Jun 11 13:05:00 2024 -0700
ims_icscf: add missing documents for database params
- Adding missing ims_icscf database parameters to admin documents.
- Change the default value for ims_icscf db_url to Kamailio default db_url value.
(cherry picked from commit 57087e42f1b1cae86132c558aa9497f4839af7e0)
commit c73ea949c046697916fd86eaf614b59075264b73
Author: herlesupreeth <[email protected]>
Date: Tue Jun 4 10:44:34 2024 +0200
ims_ipsec_pcscf: update security params of newly created ipsec tunnel in contact
(cherry picked from commit bf863877f666dd8350e855bf933270b2fd8ad0fd)
commit f861301003d96fec599bef936c2e1f181b170d9f
Author: herlesupreeth <[email protected]>
Date: Tue Jun 4 10:43:52 2024 +0200
ims_registrar_pcscf: fix typo in comments
(cherry picked from commit d17b97a864585782e03eedada6d226550630f7bb)
commit 2606c4e07e598ea41cb5a8814e3587bf49f94c1e
Author: Dennis Yurasov <[email protected]>
Date: Thu May 2 12:28:11 2024 +0300
siptrace: add SND_F_FORCE_SOCKET flag if send_sock_name/send_sock_address config parameters are used
- send_sock_name/send_sock_address is ineffective for tcp based transports if SND_F_FORCE_SOCKET flag is not set
(cherry picked from commit 1b97a0271b27794263b3eff61f4acfa81e66069f)
commit be76a51422df3294c533accae1b6a621ee9d3a7d
Author: Victor Seva <[email protected]>
Date: Wed Jun 12 10:13:56 2024 +0200
tls: remove confusing error message when trying to print socket for <default> server
> CRITICAL: <core> [core/ip_addr.c:232]: ip_addr2sbuf(): unknown address family 0
> NOTICE: tls [tls_domain.c:1176]: ksr_tls_fix_domain(): registered server_name callback handler for socket [:0], server_name='<default>' ...
(cherry picked from commit 87c8290ab934fd27f8baebabaf66d1fb4168ba72)
commit bdb3f32991f756b852d4bc695dc44e634e5ffc6c
Author: Victor Seva <[email protected]>
Date: Thu Jun 13 18:21:47 2024 +0200
pkg/kamailio/deb: refresh fix for tls_wolfssl
commit 65873cd2cdd390ce10ec99888fb35b0095a90c65
Author: Victor Seva <[email protected]>
Date: Thu Jun 13 17:01:36 2024 +0200
pkg/kamailio/deb: fix tls_wolfssl packaging
* packages can't have '_' in name
* distinguish grp module and deb module name
'_' => '-' so tls_wolfssl => tls-wolfssl
(cherry picked from commit 1d82805ef084d90e5ea14e4894f3e5076e29e2f3)
commit 8a027b99cf8dc4f7e889aa7644f1f7699c7cb08e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 12 16:21:34 2024 +0200
core: tcp - change log levels for failing to set source for tcp connections
- it is not possible always and it can fill the logs
(cherry picked from commit 15403a543d83e337ee578ad37dc1d84316e4cf16)
===================== 2024-06-12 Version 5.8.2 Released =====================
===================== Changes Since Version 5.8.1 ===========================
commit 5a090532b2e702ae758b384b54550fed5ddddfdb
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 12 10:02:55 2024 +0200
Makefile.defs: version set to 5.8.2
commit 2ce09cbd669753266bba8659073320af6f53664b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 12 09:40:58 2024 +0200
pkg: deb specs updated for v5.8.2
commit f3daac3024c6a623fa9021d92f77daf2cf866c8d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 12 08:57:25 2024 +0200
pkg/kamailio: version set 5.8.2 for rpms and alpine
commit 955c6e02ed0e31a4c7f148518bf44edb12c37a07
Author: Kamailio Dev <[email protected]>
Date: Sat Jun 8 20:31:20 2024 +0200
modules: readme files regenerated - modules ... [skip ci]
commit 8ef8db05dbc3a4cf5246354ce31dff18180a8e12
Author: Xenofon Karamanos <[email protected]>
Date: Fri Jun 7 14:00:43 2024 +0000
pua_dialoginfo: Fix ruri length
(cherry picked from commit 2c7c2d215ec9277fa706053579a38f058f15ae85)
commit ed0cdf3a3c85a8d05aacec8917fe35a24dcdd62e
Author: Bastian Triller <[email protected]>
Date: Fri Jun 7 13:24:17 2024 +0200
ims_ipsec_pcscf: Fix typo
(cherry picked from commit 16e1b38fcc1593ad09eb03d86cd056ab8ff7f7f7)
commit 5571ea0ff8877a8a19b3fb76030af19b59f141db
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jun 4 16:29:50 2024 +0200
dmq_usrloc: reformat exported structures
(cherry picked from commit e94812149c6f2867a5b23f1218a9af139590bf51)
commit e8dc8506dbc4d8964e02c3be175d7f18f5fe69a4
Author: Xenofon Karamanos <[email protected]>
Date: Tue Jun 4 09:37:01 2024 +0000
nathelper: remove magic constant
(cherry picked from commit 3d187336f22e30800acefd28e4d0f98e0f677a49)
commit eb4ec6f9305e334d9749e1fd56ad195c383cef77
Author: codenot <[email protected]>
Date: Wed May 29 10:10:28 2024 +0800
nathelper: fixed handle_ruri_alias_mode(1) cannot proper handle multi alias
(cherry picked from commit 8e0b2e4b6450fa50bd573fa013dc888aaaccd2bf)
commit 5999529be9ac2187dad465518bea3dee1b06d0f7
Author: Xenofon Karamanos <[email protected]>
Date: Fri May 24 08:03:49 2024 +0000
core/resolve: Check dns_cache_init and choose appropriate functions
(cherry picked from commit 06d583e356351ae9d8a559c9f5de3e57fb128a38)
commit eb4a8e326b10d0c3e922cc524d8f46d2ba7e6eff
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jun 2 21:28:19 2024 +0200
iims_registrar_scscf: include header for common c functions
- GH #3855
(cherry picked from commit b508ef253cf996a5efd8bf13ded0c804f3557ada)
commit 54f9adb03ebbacf35eb0785dc46b55ce5dd00deb
Author: Bastian Triller <[email protected]>
Date: Mon Jun 3 08:48:40 2024 +0200
geoip2: Reload database before accessing it
Re-add reloading of database.
GH #3861
Fixes: 293193c55c ("geoip2: clang format module file")
(cherry picked from commit 51dcab019a42e5b1f3b81247ca71ffcaf46180de)
commit c27094b8288b7a949fbfc766eb9223c0085340ef
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jun 2 04:58:23 2024 +0200
geoip2: clang format module file
(cherry picked from commit 293193c55caaf5d0c39dc456babe92f574b58b3b)
commit 45f2e2670a3eac768b97b58eeec228b06273050a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jun 2 04:51:33 2024 +0200
geoip2: keep global structure per process
- parsing db file allocates private memory
- reworked reload to rely on a global counter
- GH #3861
(cherry picked from commit baccbe0298f9fa46db285505bc4386f997de5a47)
commit ae3be6af4ea8d50c29fe8e523c9548217956849a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jun 1 07:50:45 2024 +0200
geoip2: rename global lock variable
(cherry picked from commit 4bd619d3517f129362de3ce50eed2620d5002b42)
commit 2cc901e8be63791432a49f87d434eeb009e48d28
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jun 1 07:39:54 2024 +0200
geoip2: do not close global MMDB_s on destroy
- GH #3861
(cherry picked from commit e066613cac308d1129baebc47d7c245b36eba4b0)
commit 614b5601170578c2d0eb79e7e5c64e68d80d885b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri May 31 19:23:41 2024 +0200
geoip2: init MMDB_s global pointer and check on destroy
(cherry picked from commit 8ba4ee4e00798ca015adc48542d0e4de8ed9daad)
commit 5c9c13080be2b15252492dca388777d06915045c
Author: Victor Seva <[email protected]>
Date: Thu May 30 16:24:03 2024 +0200
regex: fix pcre2 migration
instead of reserving an array in pkg_mem and later
copy the pointers to shm_mem just use shm_mem in
the first place.
fixes #3812
(cherry picked from commit d89333748662c0e7c72e3579d41fd14ef05c0fee)
commit ebc8acef7617a69dcc06b163c47e88a99d835f9e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 29 10:18:44 2024 +0200
siputils: free head of params list for get_uri_param()
- GH #3857
(cherry picked from commit 8363208fff7c101a2779ff64783e5b7dbf8ffd7c)
commit 833b93563f43fa95e4bfdd175b144670b66a11cd
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 29 10:15:21 2024 +0200
siputils: free head of params list for get_uri_param()
- GH #3857
(cherry picked from commit d72a3fbc903da02ae3b26f3aae2ea228c9f8b255)
commit f4eea76a15b220b15337b60a77f7978b0694b0fd
Author: Bastian Triller <[email protected]>
Date: Tue May 28 14:17:58 2024 +0200
rtpengine: Fix extra process in pkg.stats
When DTMF events socket is not configured, pkg.stats RPC method returns
an empty entry.
{
entry: 13
pid: 0
rank: -128
used: 0
free: 0
real_used: 0
total_size: 67108864
total_frags: 0
desc:
}
Fixes: 26f6e57c8f ("Register a new worker process for dtmf event listener")
(cherry picked from commit e67f6048f4883d446df2d88fe7a7d7f2ff6daf8c)
commit 7087ce6aa496de9b6015e5054d8fd70bf2e055b3
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue May 28 11:45:37 2024 +0200
htable: error on not finding htable in pv get
(cherry picked from commit 24b27214231166366cceb88fcb3724298cc53b32)
commit 9a7e3e54f1c52ee69c68b1165de115894c2afc55
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon May 27 09:11:48 2024 +0200
htable: error on not finding htable in pv set
(cherry picked from commit 82cfea317fd8d02a6c94347bc1be18c8a06e580f)
commit deb11ee814e1591698d120a113630aa7a9791ad7
Author: Rick Barenthin <[email protected]>
Date: Thu Apr 25 19:16:58 2024 +0200
usrloc: delete location_attrs in db_only mode on delete_urecord
When calling delete_urecord in DB_ONLY mode the location_attrs are not deleted.
This fix makes sure to delete location_attrs when calling db_delete_urecord is called.
(cherry picked from commit 6b8f6d3b5d563d91234b8d4b7e155b7e74b9d313)
commit d53843c75da9115a9c3cb6b1b909fd3827b6c437
Author: Sergey Safarov <[email protected]>
Date: Sat May 11 17:45:08 2024 +0300
db_mysql: fixed build on CentOS 7
(cherry picked from commit 767b3faee3af450d6482b919c81431ea6d707807)
commit 5c4f687d0ed06d6c7a5696917982b1cf03f9c8bd
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri May 10 12:45:25 2024 +0200
sipcapture: use local static buffers for ip address and port
- GH #3835
(cherry picked from commit d1f377ff23f491bfd5162cb7bf510759440dd8e5)
commit f9bd2c5a4341913ac3e887e0324a19d5cd071a12
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 9 08:17:15 2024 +0200
tcpops: reformat exported structures
(cherry picked from commit 9b087fd618ab6c5cbd6a29c352b09c7198f1b594)
commit c8e4fe87985a413dfe6871463c31375750d3a6f2
Author: Victor Seva <[email protected]>
Date: Thu May 30 14:59:05 2024 +0200
dialplan: don't call free on empty pcre pointer
fixes #3851
(cherry picked from commit 630a6f2c11c10c4f3be3570553d86486942d60fe)
commit c1c8c066b29798189a50dd9b4f27c5af574d991d
Author: Xenofon Karamanos <[email protected]>
Date: Mon Apr 29 13:37:24 2024 +0000
db_cluster: Update log levels
(cherry picked from commit 467dbf3e1be16d5a760178d0801834ac67bad888)
commit 3a34b468ad93904c507bd0fc7ef592b25321807f
Author: Juha Heinanen <[email protected]>
Date: Mon May 20 11:41:42 2024 +0300
tm: add mandatory Max-Forwards header to local AC
commit ba7a4901268493f5432d5efd59d6dbd7b422742f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 8 06:58:13 2024 +0200
etc/kamailio.cfg: remove executable flag
commit 191aec6ef644024741c23776c35fc712aa82a6b5
Author: Kamailio Dev <[email protected]>
Date: Tue May 7 21:16:19 2024 +0200
modules: readme files regenerated - modules ... [skip ci]
commit 29ef69b8807023e082d7c9880c63bee11d4f3b30
Author: Henning Westerholt <[email protected]>
Date: Tue May 7 16:14:46 2024 +0000
sipcapture: fix default DB URL docs
(cherry picked from commit aeeeb0c2f46c2575639dd725bef78fac64219a07)
commit c3f424bd6c0f8b9a2557cd58a3e3f5ac586d8c99
Author: Kamailio Dev <[email protected]>
Date: Tue May 7 19:46:19 2024 +0200
modules: readme files regenerated - modules ... [skip ci]
commit 383a81bb9d81e06ab9da99cdaa3def3b63028040
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue May 7 19:32:39 2024 +0200
tcpops: note about execution of event routes by TCP main process
(cherry picked from commit be9af338e3afdab1045cdd7c30a72a9ecddcb680)
commit 1ee553a6f406af5eb4838a8c46a992c4099dd30b
Author: Kamailio Dev <[email protected]>
Date: Tue May 7 17:31:19 2024 +0200
modules: readme files regenerated - modules ... [skip ci]
commit b5eb4f5ca037239f2ec1d99a16a71af0383f737e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue May 7 16:55:24 2024 +0200
ctl: info log on ECONNRESET (connection reset by peer)
- not a type of error that can be controlled by kamailio
(cherry picked from commit 446c75e0e2194b6e42d768d2e3c79b5f0222905f)
commit 24e43d27544bdfa1acfce7ebb8b6e3ba7841fc13
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue May 7 16:49:49 2024 +0200
ctl: removed level and function names from log messages
(cherry picked from commit 65bafaffd6bcfebc508b774cfbb78120e68bb3f0)
commit 11f0cfec4d2fc6043d282cdb2258520559f0fcd1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat May 4 20:18:18 2024 +0200
core: parse/contact: jump to error on too many contacts
(cherry picked from commit f69b22d44cb5abc803c2b58790dd33f2310c1c59)
commit d75dba611808322356fc8d1ebc9f8c30b4124a15
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri May 3 14:57:47 2024 +0200
core: parser/contact - basic validation tests for contact uri
(cherry picked from commit fc52a54370c085d6fa951da876eee99580677922)
commit 5b97d29f1bbac2656eba506c7fd94b412dfb9b7f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri May 3 14:36:29 2024 +0200
core: parser/contact - add limit for max number of contacts
- defined to 256
(cherry picked from commit d6b0beb5a219ae57a62e9e7201a6ec1fe66e5a96)
commit 244319c67a191cf1f093b2220fa1a8579179d734
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 2 09:27:41 2024 +0200
pua: check if local requests are dropped and free the param