-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog
More file actions
11590 lines (6758 loc) · 548 KB
/
ChangeLog
File metadata and controls
11590 lines (6758 loc) · 548 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
2023-11-23 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated dependencies for ubuntu jammy
* [fix] Updated compat files Ubuntu Jammy
* [fix] Updated files for Ubuntu Jammy
2022-09-01 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Closing release 0.6.4
* [fix] Updated dates
2022-01-12 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Changelog updates
* [fix] Adding missing dist file
* [fix] Updated compilation files
2021-12-30 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] More corrections for debian bullseye
* [fix] Adding files to support debian bullseye
2021-04-30 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] More doc updates
* [fix] Updated references to hubtick.com
2020-12-16 Francis Brosnan Blázquez <francis@aspl.es>
core-admin: * [fix] Updated dependency for turbulence (libmysqlclient21)
2020-12-03 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Adding initial files to support Ubuntu focal
* [fix] copyright updates
2020-10-27 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated configure.ac to use get-python-config to adapt compilation to support python2.7 where python3.X is default
2020-10-26 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated version for next release
* [fix] Updated turbulence_ctx_exit to flag at the very beginning that the context is in the process of closing. Added some reporting to show what is closing (child or master process).
* [fix] Increased timeout to finish child process when found no connection to watch.
* [fix] Added code to detect if turbulence context is exiting before calling for profile
path selection after connection registration.
* [fix] Updated code for turbulence-ppath module to clean state freed, and additional code checking path mask selection.
* [fix] Updated mod_python code to report when it started to close module
2019-09-27 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated control file to include new version for debian buster
* [fix] Adding files to support debian buster
* [fix] Adding Changelog
core-admin: * [fix] Updated get-version.py to update LATEST-VERSION and ChangeLog
2019-09-20 Francis Brosnan Blázquez <francis@aspl.es>
core-admin: * [fix] Updated get-version.py
* [fix] Updated Turbulence Profile Path selection to setup max frame limit at connection level as connection is notified accepted.
2019-09-19 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Added some debugging code to show values loaded
2019-09-18 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated get-version.py to allow keeping on supporting very old releases (lenny and squeeze).
* [fix] Updated xenial/ubuntu files
core-admin: * [fix] Updated Changelog (bionic)
* [fix] Changed dependencies to libmariadbclient18 for mysql ubuntu/bionic
2019-07-11 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Fixed bionic control
* [fix] Adding files to support bionic packaging
2018-12-09 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated #Web references..
2018-11-21 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated documentation to add references to https://myqtthub.com
2018-08-21 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Adding packaging support for debian stretch.
2017-02-26 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Improved turbulence init.d script to avoid killing it self when calling to restart..
* [fix] Corrected libturbulence-mod-python descriptions for debian packages..
* [fix] Updated turbulence-conn-mgr module (proxy read code) to use try_read_pending API provided by vortex to do more read calls when detected pending code to read. Fixes interation with SSL+WebSocket+BEEP
2017-01-16 Francis Brosnan Blázquez <francis@aspl.es>
turbelence: * [fix] Updated web files..
2016-09-30 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Clear memory before calling read bytes from the wire inside turbulence conn mgr module (proxy mode).
2016-08-19 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated buildrpm.sh to catch error reported by rpmbuild..
* [fix] Minor configure.ac updates (centos7 support).
2016-08-12 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Making turbulence server to check vortex_support_pipe () to avoid starting in the case a failure is found. Without that API turbulence cannot work properly.
* [fix] Making master<->child link creation to report addresses, errno codes and indications when vortex_connection_new for master link fails..
* [fix] Several improvements inside turbulence_process_receive_socket function to better report errors during the process. Added especial case to detect loopback interface failures..
2016-07-19 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated init.d script for debian/ubuntu system to shorten waiting stop times..
2016-05-10 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Fixed get-version.py to avoid failing when additional output is found..
core-admin: * [fix] Updated control file..
* [fix] Fixed dependencies for debian jessie
* [fix] Added support for Jessie Debian 8.0
2016-05-06 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated turbulence code to add support for ubuntu 16.04 xenial
* [fix] Fixed compilation errors spotted by gcc (5.3.1)
2015-11-05 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updating turbulence revision to 0.6.3
2015-10-28 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Adding get-version.py script..
* [fix] Adding missing changelog.inc needed by buildrpm.sh
* [fix] Adding needed folder for buildrpm.sh script
* [fix] Adding directory test/test_15_datadir (with empty file so github.com allows to import it).
2015-10-27 Francis Brosnan Blázquez <francis@aspl.es>
Updating README
To update project webpage
* [fix] Updated mod_sasl_mysql to use ATTR_VALUE_TRANS when getting values from xml configuration so administrators can use xml escaped characters like (' apos).
2015-10-20 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Disabled noPoll log reporting at test_22_operations..
* [fix] Disable log reporting at test_01.c (test_22_operations)
* [fix] Updated mod-sasl-mysql extension library to allow implementing alternative auth locations with <get-password-alt> and <get-password-alt-cleanup>. This new feature is been used by Core-Admin to provide auto login features
2015-10-19 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated common-sasl.c code to define _GNU_SOURCE just if it is not defined..
* [fix] Finished support for crypt(3) API for mod-sasl and mod-sasl-mysql extension plugin. Now the module is able to auth old passwords and passwords crypted by crypt(3) API. Added regression test (test_03a) to check support introduced and added documentation to mod-sasl to explain how to use it.
* [fix] Updated mod-sasl source code to prepare support for crypt format passwords. Added new function to support checking these passwords:
- common_sasl_check_crypt_password
2015-09-17 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] New revision..
libvortex-1.1: * [fix] Applied some updates in vortex.h to avoid header redefinition warnings (reported by Ralf Konush).
2015-08-31 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated VERSION file..
libvortex-1.1: * [fix] Added code to detect Visual Studio 11 2012 and above to avoid errno redefinition.
libvortex-1.1: * [fix] Updated vortex.h to allow defining a VORTEX_SKIP_ERRNO_REDEF variable to avoid errno redefinition on windows (which seems to be causing problems in Visual Studio 12).
2015-08-28 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Fixed wrong web references..
libaxl: * [fix] Closed release 0.7.1.
libaxl: * [fix] Updated modules-version.txt for 0.7.1 release
libaxl: * [fix] Closing release 0.7.1
libaxl: * [fix] Adding release file..
2015-08-26 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated version file..
libvortex-1.1: * [fix] Fixed .def rebuilding at main Makefile.am causing compilation problems when optional modules like tls, web-socket or sasl aren't enabled.
2015-08-21 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Fixing references when websocket suppot is disabled.
2015-08-20 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated freebsd directories to avoid using :
libaxl: * [fix] Removing directory with :
libaxl: * [fix] Adding additional modifications to remove directories with : (semi colons) which seems to be causing problems on windows..
2015-08-19 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] updating VERSION..
libvortex-1.1: * [fix] Fixed various compilation warnings reported by clang..
2015-08-18 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] More updates to FreeBSD packaing..
libvortex-1.1: * [fix] Added more code to configure.ac to detect alternative locations for axl.pc
libvortex-1.1: * [fix] Finished initial working support to have FreeBSD packages for Vortex..
libvortex-1.1: * [fix] Added FreeBSD packaing support for python-vortex
libvortex-1.1: * [fix] Adding packaging support for xml-rpc modules for FreeBSD
libvortex-1.1: * [fix] Adding websocket packaging for FreeBSD..
libvortex-1.1: * [fix] Adding package descriptions for libvortex-1.1 (tunnel) extensions for FreeBSD
libvortex-1.1: * [fix] Adding packaging support for http, pull,sasl and tls modules for FreeBSD..
libvortex-1.1: * [fix] Adding initial files to support creating binary packages for FreeBSD 9.X
libaxl: * [fix] Adding helper script (freebsd/buildpackages.h) to help building packages..
libaxl: * [fix] Added additional files to implement packaging for FreeBSD..
libaxl: * [fix] Adding files to support axl-knife for freebsd..
2015-08-17 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] More updates applied to manifest-libaxl1..
libaxl: * [fix] Updated manifest-libaxl1..
libaxl: * [fix] Adding initial files to support FreeBSD pkgng packages..
2015-08-07 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Fixed regression test (vortex-regression-listener.c) to grab a reference to the connection to implement connection close checks for reg-test (test_15).
* [fix] Updated thread pool event removal handler to check ctx and
ctx->thread_pool references.
libvortex-1.1: * [fix] Removed call to freeaddrinfo() when getaddrinfo() fails. It is segfaulting application on FreeBSD.
* [fix] Updated configure.ac to fix pkg-config output which is broken on FreeBSD.
2015-08-06 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Updated configure.ac file to detect if bash is outside common location to detect those cases before continue.
libvortex-1.1: * [fix] Updated configure.ac file to detect if bash is outside common location to detect those cases before continue.
libvortex-1.1: * [fix] Updated configure.ac to find bash location
libaxl: * [fix] Updated configure.ac to fix freebsd support by helping python location.
libaxl: * [fix] fixing more options for freebsd..
libaxl: * [fix] Fixed configure.ac to work on FreeBSD 9.X
2015-07-22 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated web page to include license program option.
2015-07-19 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Minor documentation fix at axl_hash module.
* [new] Updated axl-knife to allow a new option (-r) which allows
to control if a carry return is added when content is added.
2015-07-09 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Adding references to libTML
2015-07-07 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] More autoconf updates..
libvortex-1.1: * [fix] More updates to detect nopoll headers..
libvortex-1.1: * [fix] Added several updates to support detecting nopoll, gsasl and axl even when pkg-config is not present..
2015-07-06 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Fixed args reference used at main module to have Vortex compiled for Android.
2015-07-02 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Fixed libaxl wrong version reference, moving it from 0.6.4 to 0.7.0 (repotted by Matthias Peter Wimmer).
* [fix] Updated hostname handling done by SASL module to make client
initiator to report and use HOSTNAME configured by the caller or the
value reported by vortex_sasl_get_server_name or vortex_sasl_get_host (),
instead of current local server name. Bug reported by fixed by Matthias Petter Wimmer).
libaxl: * [fix] Removed --Werror option from autogen.sh script (reported by Matthias Petter Wimmer).
libvortex-1.1: * [fix] Fixed errno variable references at vortex_errno.c module..
libvortex-1.1: * [fix] Making python-vortex support to be optional and to disable it automatically when python support is not found.
libaxl: * [fix] Several updates to make optional Python bindings..
2015-07-01 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Sevaral changes to improve installer builder for win32 to help control with files are included if they are present...
2015-06-30 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] More updates to include additional libraries used by GSASL and WebSocket extension for w32 installer.
libvortex-1.1: * [fix] Default template updates for W64 builder.
libvortex-1.1: * [fix] Updated vortex building process for w32 to better integrate gsasl and readline files.
libvortex-1.1: * [fix] Adding w32 configuration files (template) config.w32.mk
libvortex-1.1: * [fix] Several udpates on vortex-1.1.nsi for windows64 platform.
2015-04-30 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Updated web package references..
libaxl: * [fix] More web updates..
libaxl: * [fix] Updated axl web package..
libaxl: * [fix] Updated web package to show a better indication to list available packages for centos..
libaxl: * [fix] Closing 0.7.0 release.
libaxl: * [fix] Updated web to remove "Last modified" indications..
libaxl: * [fix] Several updates to prepare the web for the new release (0.7.0).
libaxl: * [fix] Adding missing image..
libaxl: * [fix] Adding release file..
libaxl: * [fix] Updated revision for 0.7.0 libaxl
2015-04-24 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated vortex-web-socket API to include an option to allow disabling certificate verification. API added:
- VORTEX_WEBSOCKET_CONF_CERT_VERIFY
* [fix] Disable certificate verification when connecting with wss:// (test_25) because certificate is self signed and noPoll now enables certificate verification by default.
* [fix] More updates..
* [fix] Reorganized test_22 () to properly find tls.conf file.
2015-04-15 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] More updates to include missing files into mod-tls packages..
* [fix] Added missing directory for centos packages..
* [fix] Added missing directory mods-enabled for turbulence centos packages..
2015-04-13 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Fixed references for mod_websocket.xml (missing directory).
jsVortex: * [fix] Updated buildrpm.sh...
* [fix] Adding missing buildrpm.sh
libvortex-1.1: * [fix] More updates on buildrpm.sh
libaxl: * [fix] Adding missing buildrpm.sh..
2015-04-11 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Fixed wrong memory allocation inside axl_factory while using axlStringFactory.
2015-04-10 Francis Brosnan Blázquez <francis@aspl.es>
tubulence: * [fix+ More updates for CentOs support.
* [fix] More updates on centos packages..
jsVortex: * [fix] More fixings to support Centos packages..
libvortex-1.1: * [fix] More improvements on CentOS packing..
libaxl: * [fix] More updates to have properly versioned CentOS packages..
2015-04-09 Francis Brosnan Blázquez <francis@aspl.es>
jsVortex: * [fix] added support for CentOS packages..
libvortex-1.1: * [fix] More updates on Centos packages support.
2015-04-08 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Fixed pid write when starting turbulence server.
* [fix] More updates applied to rpm build support.
libvortex-1.1: * [fix] More updates to centos building process
* [fix] Updated init.d script for turbulence server (rpm version).
* [fix] Added several modifications to have turbulence compiled and packaged for CentOS.
2015-04-07 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Adding initial support to create CentOS packages and additional modifications to fix gcc statck protector errors while compiling.
turbulen
libvortex-1.1: * [fix] Several updates to fix compile errores when enabling stack protector with gcc.
* [fix] Added initial working files to produce rpm packages.
libvortex-1.1: * [fix] Updated autogen.sh to allow supporting Centos packaging..
libaxl: * [fix] More updates to get packages compiled in axl.
2015-04-01 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] More updates for CentOS rpm packages..
libaxl: * [fix] Added support to create CentOS 63 packages.
2015-03-09 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Documentation updates..
2015-03-08 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Fixed vortex-client.c warning reported by clang.
libvortex-1.1: * [fix] Fixed reporting NULL instead of axl_false in __vortex_connection_new (reported by Robert Münch).
libvortex-1.1: * [fix] Added additional checks to avoid defining vsnprintf header when log is enabled on Mac/OSX (reported by Robert Münch).
2015-03-07 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Removed --Werror from building autogen.sh.
2015-03-05 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Adding some fixings into the building process to get python-axl compiled in centos.
2015-03-03 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Updated web references to downloads..
2015-02-17 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Closing release 0.6.9
2015-02-16 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Making vortex_connection_ref_internal to report connection->ref_count > 1 instead of axl_true. There are suspicions that some race may cause reporting true when in fact the reference isn't working.
2015-02-10 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Making vortex.tls.start_tls to allow threading (other python functions) when called.
libvortex-1.1: * [fix] Several updates to make vortex_tls module to notify additional information about timeout settings, when it was started, when stopped and what connection the message applies when a timeout is reached during sync TLS activation.
2015-02-03 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Improved waiting code to send all pending replies just after sending greeting after TLS handshake.
2015-01-09 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Added some additional checks inside axl_hash_string to clarify NULL key handling.
2015-01-08 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Making axl_hash_string to return 0 when received _key == NULL.
2014-11-18 Francis Brosnan Blázquez <francis@aspl.es>
af-arch: * [fix] Version updates..
2014-11-16 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Fixed axlHash deep copy support to have the capability to also force key destroy and data destroy functions to be used. API added:
- axl_hash_copy_full
Used this new support to fix those cases where a node is copied from
a document where it has more than 10 attributes causing internally to
use hash to store them. However, the source hash do not have key and
data destroy function causing a memory leak the copied node is released.
Added regression test 49. <<Bug reported by Maxime Mugard>>
2014-11-15 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Documentation updates on VortexTlsCertificateFileLocator and VortexTlsPrivateKeyFileLocator
2014-11-13 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Some cleanups at PyVortex to better handle wrong connection references received at channel pool creation.
2014-11-10 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Several updates to make mod-tls to preload certificates that are needed for the current child process started so they can be accessible even after changing child process running uid/gid.
* [fix] Fixed module loading error to avoid unmapping its address space.
* [fix] Updated turbulence child API to allow getting which serverName configuration
triggered current child created. API added:
- turbulence_child_get_serverName
2014-11-10 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Making more general certificate loaded by content at vortex_tls module.
libvortex-1.1: * [fix] Several updates to make libvortex-1.1 ssl API to allow loading certificates from a PEM certificate loaded from memory. Now this method is supported along with the previously one which is loading PEM certificates from files. Now it is possible to partially load a certicate and then use it at the right moment without having to have especial permissions.
libvortex-1.1: * [fix] Updated vortex_tls_log_ssl to avoid buffer overflow when not found openssl error format.
2014-10-20 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Fixed default tls.example.conf to avoid including a declaration that do not link to a certifiate.
2014-10-06 Francis Brosnan Blázquez <francis@aspl.es>
axl: * [fix] Web updates..
libvortex-1.1: * [fix] Updating files..
2014-09-12 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updating libvortex revision..
libvortex-1.1: * [fix] Fixed xml-rpc-gen-1.1 to produce Makefile.am files that separates headers from sources so headers are installed for client libraries.
* [fix] Fixed some unsused result warnings found at py-vortex module.
2014-09-04 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Added missing reference to hacha.png image..
2014-09-03 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Fixed xml-rpc-gen-1.1 references..
2014-09-01 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Several updates to make the vortex bundle for w32 to include libgcc_s_dw2-1.dll by default...
2014-08-12 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated references..
libvortex-1.1: * [fix] Adding references..
af-arch: * [fix] Updating releasing files..
2014-08-08 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Removed release prefix code..
libvortex-1.1: * [fix] Added missing declaration..
libvortex-1.1: * [fix] Closing release 1.1.14
libvortex-1.1: * [fix] Makefile.win updates to get it compiled on windows 64.
libvortex-1.1: * [fix] Fixed compilation error for windows 32 platform at the vortex-regression-client.c
libaxl: * [fix] Fixed exarg.c inside knife dir (windows32 problem).
2014-07-29 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Fixed typo in documentation.
2014-07-28 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Removed double parent declaration around 1437 causing Xcode to complain. Reported by Ralf Konush.
2014-07-25 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Added prefix support to libaxl linking library..
libaxl: * [fix] Added missing documentation to axl_casecmp..
2014-07-21 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [new] Updated change-prefix.py...
libvortex-1.1: * [fix] Updated change-prefix.py to apply some corrections.
libvortex-1.1: * [new] Added new tool to allow change library references to add prefixes to the library so the library name and SONAME symbol inside matches.
2014-07-07 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated library building support (autoconf) to support library prefix versioning. Now it it is possible to provide --enable-release-prefix option with the value for the release prefix.
2014-07-02 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Missing files..
2014-06-13 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Adding some references to new Python extension for TML/Sidex..
2014-05-25 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Fixed typo..
libaxl: * [fix] Fixed typo..
libexarg: * [fix] Fixed typo..
libvortex-1.1: * [fix] Documention updates..
libvortex-1.1: * [fix] Fixing a typo...
2014-04-15 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Added some initialization to test_02_c2 variables used at vortex-regression-listener.c
2014-03-28 Francis Brosnan Blázquez <francis@aspl.es>
jsVortex: * [fix] Updated web references..
* [fix] Adding web references..
libvortex-1.1: * [fix] Fixing some url references.
libaxl: * [fix] Adding some references to the web.
2014-03-14 Francis Brosnan Blázquez <francis@aspl.es>
jsVortex: * [fix] Adding missing release files..
2014-03-13 Francis Brosnan Blázquez <francis@aspl.es>
jsVortex: * [fix] Closing release 0.6.1
libvortex-1.1: * [fix] Updated web references..
* [fix] Updated references.
libaxl: * [fix] Updated web references..
2014-03-11 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated vortex sequencer and vortex channel module to initialize static data used and reply handling (avoids valgrind warnings).
2014-03-06 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Added references to core-admin at libaxl..
2014-02-28 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Updated axl doc documentation..
libvortex-1.1: * [fix] Fixed memory allocation error when vortex_listener creation fails.
libvortex-1.1: * [fix] Updated vortex connection freeaddrinfo code to fix a really really really odd behaviour while calling it directly on finalization. :-??
2014-02-27 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated vortex listener module to include more debug info when the listener fails.
libvortex-1.1: * [fix] Removed not needed windows header.
2014-02-21 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Additional modifications to make vortex-simple-client.c and vortex-simple-listener.c to compile on windows and to allow selecting IPv6 addresses from the command line.
2014-02-12 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] More modifications due to IPv6 support..
libvortex-1.1: * [fix] More modifications to have IPv6 working on windows...
libvortex-1.1: * [fix] Added new API functions to allow IPv6 only listeners. API added:
- vortex_listener_new6
- vortex_listener_new_full6
libvortex-1.1: * [fix] More modifications to make the library to support IPv6 on windows.
2014-02-11 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Added additional modifications to make IPv6 working on Linux/Unix. Added missing definitions that are now used.
libvortex-1.1: * [fix] Several modifications to make IPv6 support to work on windows. Still more work required.
2014-02-06 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Some fixings to have vortex working on windows.
2014-02-05 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Restoring back -ansi compilation flag. Updated vortex_connection_private.h to have some of the IPv6 resolution function prototypes so they are available during compilation even having -ansi enabled.
2014-02-05 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [new] Updated vortex engine to support IPv6. Nice! Now IPv4 and IPv6 are automatically supported on the previous IPv4 APIs and new specific APIs are provided to "force" IPv6 resolution/usage. New API function added:
- vortex_connection_new_full6
- vortex_connection_new6
-
Added new regression tests to check IPv6 support and to tests how it plays
with IPv4 API:
- test_02a3
- test_02a4
2014-01-22 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Adding some references to TML/SIDEX product..
2014-01-16 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Adding updates to the vortex's web page to include reference to barracuda ng firewall.
libvortex-1.1: * [fix] Fixed missing vortex_frame_unref at vortex-simple-client.c
2013-12-14 Francis Brosnan Blázquez <francis@aspl.es>
af-arch: * [fix] More release names..
2013-12-13 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated configure.ac to better notify when MySQL isn't detected. * [fix] Added support for ubuntu precise.
* [fix] Several updates into turbulence-log module and regression tests to fix compilation errors (reported by gcc 4.6.3).
libvortex-1.1: * [fix] Adding support to ubuntu precise..
2013-12-12 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Fixed README.Debian..
libaxl: * [fix] Adding files to compile libaxl on Ubuntu Precise Pangolin.
2013-11-29 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Adding missing release file..
* [fix] Closing release 0.6.1
2013-11-23 Francis Brosnan Blázquez <francis@aspl.es>
af-arch: * [fix] More release names..
af-arch: * [fix] Updating release names..
2013-11-22 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Fixed ALIVE when checks are done too quickly (check_period of 20000 and max_unreply_count set to 5). Updated documentation to explain limits.
2013-11-21 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated turbulence.svg images..
af-arch: * [fix] Updating modules-version.txt
libvortex-1.1: * [fix] Several updates into ALIVE implementation to check max unreply count x check period while waiting for creating the channel to ensure connection close event is triggered if that max period is reached. Also updated checking to trigger failure when max unreply count is reached instaed of exceeding it.
2013-11-14 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Improved reached complete frame limit log message so it can be more useful. Added information about the profile and connecting host and port.
2013-11-06 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Closing 1.1.13 release..
libvortex-1.1: * [fix] Fixed vortex_connection.c compilation error.
libvortex-1.1: * [fix] Several fixings (exposed by win64 compilation).
libvortex-1.1: * [fix] Adding config.win64.mk file version..
libvortex-1.1: * [fix] Removing config.mk to make it platform dependant.
libvortex-1.1: * [fix] Preparing Vortex Library 1.1.13 release..
2013-10-21 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Making vortex_channel_free to internally acquire the look associated to waiting msgno queue to release pending items inside it.
2013-10-20 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] fixed debian/control files to make turbulence-utils package to depend on libreadline5.
2013-09-18 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated control files..
2013-09-17 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Added initial support to have turbulence in wheezy.
libvortex-1.1: * [fix] Adding files to have libvortex-1.1 packages for wheezy.
libaxl: * [fix] Preparing libaxl for debian/wheezy.
libaxl: * [fix] Updated exarg.c code from libexarg.
libexarg: * [fix] Fixed wrong variable reference (not used really) and missing vasprintf error checking.
2013-09-12 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Fixed connection source address restoration at child processs.
libvortex-1.1: * [fix] Fixed unused variable error raised by newer gcc compilers..
* [fix] Several updates to remove unused variables..
2013-08-13 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated mod_sasl_mysql.c to enforce security checkings to avoid SQL-injections.
2013-06-29 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Minor changes into tbc-sasl-conf.c to get it compiled.
* [fix] Enabled by default SSP support for gcc.
libaxl: * [fix] Added SSP by default on linux and/or gcc based platforms.
libvortex-1.1: * [fix] Updated compilation process to include SSP by default (on linux, gcc compatible platforms..).
* [fix] Added new regression test to check header overflow (nothing found), but
test remains (test_01x).
2013-06-18 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] More updates into test_04 reg test (client side).
libvortex-1.1: * [fix] More updates to test 04 reg tests..
libvortex-1.1: * [fix] Updated test_04 reg test to implement a pause when started test with errno != 0.
libvortex-1.1: * [fix] More log information added to test_04 reg test.
libvortex-1.1: * [fix] Updated test_04-f to include additional information to track results.
libvortex-1.1: * [fix] Updated vortex reader module..
libvortex-1.1: * [fix] More error logs when test 04 fails..
libvortex-1.1: * [fix] Added additional error log in test_04 client reg test.
libvortex-1.1: * [fix] More adjustments to regression listener..
libvortex-1.1: * [fix] Updated vortex reader's detect-and-cleanup-wrong-file-descriptors to reset to 0 errno value before checking the fd, to avoid confusions about what of them is wrong indeed (fixes interaction between test_01y and test_02 under pressure).
2013-06-14 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Removed wrong memory access inside vortex_tunnel.c implementation while passing data from and to connected sessions.
libvortex-1.1: * [fix] Updated regression client..
libvortex-1.1: * [fix] Updated regression test to limit wait timeouts while waiting for replies at test 04-ab.
2013-06-13 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Fixed unused variable at vortex-regression-client.c
libvortex-1.1: * [fix] Fixed unused variables at vortex web-socket...
2013-06-13 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated web-socket module to use new nopoll_conn_set_on_close call to control when socket is closed at the noPoll layer to avoid closing it after at the vortex layer with the risk of closing a different socket but with the same value.
* [fix] Updated WebSocket connection API to include a new function to get
noPollCtx. API added:
- vortex_websocket_connection_get_ctx
* [fix] Updated vortex-regression-client.c to include more debug information about
errors found..
2013-06-13 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated vortex connection logging to also state what socket is being closed. Updated vortex frame factory to avoid issuing an additional connection close during frame reading if the connection is already broken.
2013-06-11 Francis Brosnan Blázquez <francis@aspl.es>
jsVortex: * [fix] Adding missing script..
2013-06-08 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] Updated vortex_tls (added some additional debug logs when certificate fails to be loaded).
libvortex-1.1: * [fix] Additional fixings to vortex_tls_verify_cert to detect more cases.
libvortex-1.1: * [fix] Updated vortex_tls module to include support for easy peer certificate verification (avoids forcing to use SSL post checks). API added:
- vortex_tls_verify_cert
2013-06-07 Francis Brosnan Blázquez <francis@aspl.es>
jsVortex: * [fix] More updates into the frame reading engine..
jsVortex: * [fix] Some changes to detect frame seqno mismatch..
jsVortex: * [fix] Making internal frame getter to return the current list of frames found when found not enough content to be keep on proceesing frames instead of returning null.
jsVortex: * [fix] Adding more debug information when found frame join failures..
2013-06-06 Francis Brosnan Blázquez <francis@aspl.es>
jsVortex: * [fix] Fixed support to receive incomplete BEEP frames and to retry later with safety.
jsVortex: * [fix] Fixed bug while reading several consolidated frames but where the last frame received in just a part of the header. Added code to save those bytes and retry later.
libaxl: * [fix] Closing release..
2013-06-05 Francis Brosnan Blázquez <francis@aspl.es>
libaxl: * [fix] Updated compilation process to allow having it for win64 and win32.
af-arch: * [fix] Updated modules-version.txt
libaxl: * [fix] Updating exarg.c
libaxl: * [fix] More files preparing release 0.6.8 (Waking up).
2013-06-04 Francis Brosnan Blázquez <francis@aspl.es>
jsVortex: * [fix] More adjustements to support reading BEEP frames with partial headers..
jsVortex: * [fix] New version..
jsVortex: * [fix] More changes to detect where was done the last header read inside the reading engine.
jsVortex: * [fix] Updated frame reading engine to detect missing header trailing \r\n not as a failure but instead saving read content waiting for more octets to come to complete the operation (but with a limit to avoid infinite header size).
* [fix] Making turbulence loop module to detect and discard broken/invalid watched descriptors to avoid interating over and over again.
2013-05-29 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated regression test to show current listener connections after failure found at test_websocket_listener_disabled.
2013-05-28 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Making child turbulence creation to timeout after 10 seconds.
2013-05-23 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Updated regression test to wait a bit more for the socket to be disabled after running websocket test..
2013-05-16 Francis Brosnan Blázquez <francis@aspl.es>
libvortex-1.1: * [fix] More fixings..
libvortex-1.1: * [fix] Updated regression client..
libvortex-1.1: * [fix] Updated regression client to show connection errors when test_15 fails to send block message.
libvortex-1.1: * [fix] Updated regression test (test_12) to remove parts of the code that were causing problems..
* [fix] Several fixings to make mod-python to compile with Python2.5.
2013-05-11 Francis Brosnan Blázquez <francis@aspl.es>
* [fix] Minor log level change at mod-sasl.
* [fix] Updated mod-python to acquire and release the python GIL in a different manner so first initialization lock is released using PyEval_SaveThread but the rest of the cases PyGILState_Ensure is used.