-
Notifications
You must be signed in to change notification settings - Fork 211
/
ChangeLog
26490 lines (13711 loc) · 658 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-11-11 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.14
Updated ChangeLog
Updated NEWS.md
Fixed disable readline/editline for isqlw
2024-11-08 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.14-rc3
2024-11-08 Patrick van Kleef <pkleef@openlinksw.com>
Added notice to isqlw this application has been deprecated (fixes #1322)
There is no use shipping a broken tool. We have decided to have it return
a deprecation notice in case users upgrade an existing installation.
2024-11-08 Mitko Iliev <imitko@openlinksw.com>
Fixed int32 overflow when dbs_file_length unknown
2024-11-08 Mitko Iliev <imitko@openlinksw.com>
Added optional new algorithm to fix xte_sum64 collisions
For now we continue to use the old algorithm.
2024-11-08 Patrick van Kleef <pkleef@openlinksw.com>
Fixed compiler errors from -Werror=logical-not-parentheses
Updated FCT vad version
Removed <base> tag
Fixed recommendations from Lighthouse accessibility check
Removed deprecated charset on stylesheet links
Fixed issue with page selector on mobile devices
Removed link to W3C XHTML validator
Moved javascript to the end of the page
Changed DOCTYPE from XHTML to HTML5
2024-11-08 Patrick van Kleef <pkleef@openlinksw.com>
Removed support for AddThis
This service was terminated on May 31 2023
2024-11-08 Mitko Iliev <imitko@openlinksw.com>
Fixed issue generating short url on 404
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.14-rc2
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/gcc14-fixes' into develop/7
Fixes #1312
Closes #1324
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issue with pointer dereference
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issues compiling isqlw
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed wrong datatype
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed bad typedef
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed bad pointer indirection
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed compiler warnings for misleading indentation
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Mitko Iliev <imitko@openlinksw.com>
Fixed qi_set_batch_sz() signature
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issues with stat_desc_t data
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Mitko Iliev <imitko@openlinksw.com>
Fixed use separate macro for UST * data
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Mitko Iliev <imitko@openlinksw.com>
Fixed use separate macro for XT * data
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed initialization of different pointers
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed bad pointer type
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed bad variable declaration
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed bad cast using thr_get_error_code
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issue with function prototype
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed bad or missing casts
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed casts on mp_alloc and mp_alloc_box
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed missing server_func cast
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed bad argument cast in virt_mbsnrtowcs and virt_wcsnrtombs
This fixes errors reported by gcc 14 -Derror=incompatible-pointer-types
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed wrong ODBC datatype
2024-11-07 Mitko Iliev <imitko@openlinksw.com>
Fixed missing DB.DBA.SPARQL_BINDINGS_VIEW_C_0 for empty solution bindings
2024-11-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed compiler warnings from -Wmultistatement-macros
Renamed last_majflt to swap_guard_last_majflt
Fixed memory leak in X509 cert chain
Removed rbuf_test function
2024-10-28 Mitko Iliev <imitko@openlinksw.com>
Fixed arbitrary XML with CDATA having html tags has MIME re-placed with text/html
2024-10-28 Patrick van Kleef <pkleef@openlinksw.com>
Updated Conductor VAD version
2024-10-28 Mitko Iliev <imitko@openlinksw.com>
Fixed issue when filename starts with underscore
An underscore is a valid start character for visible files
2024-10-28 Patrick van Kleef <pkleef@openlinksw.com>
Fixed typo in generation of Transient view urls
2024-10-28 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with RSS menu not working on Firefox
Added support to handle 101 connection upgrade in http_client
Added flag to see if connection session is server or client
Fixed missing encode flag
Added WSOCK.DBA.WEBSOCKET_CONNECT() for client operations
Added flag to encode if API used as WSock client
2024-10-28 Mitko Iliev <imitko@openlinksw.com>
Fixed order of checking options and parameters
Options must be checked before parameters; params are for
execution only
2024-10-28 Patrick van Kleef <pkleef@openlinksw.com>
Fixed allow soap_boolean to accept null for nullable arguments
2024-10-28 Mitko Iliev <imitko@openlinksw.com>
Fixed errror state
A missing procedure should return 'not found' instead of 'internal error'
2024-10-28 Mitko Iliev <imitko@openlinksw.com>
Fixed check which options are handled by endpoint
Check defines on rest method for additional http methods allowed
2024-10-28 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with JSON registered REST services
JSON services should return JSON formatted error, not HTML body
2024-10-28 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with generated names longer than 100 characters
The GraphQL query generator may compose name over 100 chars, leading to
truncated and bad sql. Fixed by making part after 80 chars a sha256 sum.
2024-09-23 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.14-rc1
2024-09-23 Mitko Iliev <imitko@openlinksw.com>
Fixed DAV escape href should escape apos
Fixed issue when there are no more inits to skip
2024-09-04 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/backport' into develop/7
Updated FCT vad version
2024-09-04 Mitko Iliev <imitko@openlinksw.com>
Fixed make 'x_content > iframe' content resizable
Added support for WKT rendition
2024-09-04 Patrick van Kleef <pkleef@openlinksw.com>
Added new MaxTempDBPages setting to virtuoso.ini
This setting limits the maximum size of the TempDatabase file on disk to a
fixed amount of used pages. If the engine detects this limit has been
exceeded, the query that was filling up the TempDatabase will return an
error and its transaction is killed.
[TempDatabase]
MaxTempDBPages = 50G ; Limit size of the TempDatabase to 50GB on disk
Values ending in B, K, M, G will be converted to number of pages that
can fit into that size. Plain values are interpreted as number of pages.
For example 50G = (50 * 1024 * 1024 * 1024) / 8192 = 6553600 pages
The default value is 0 which means that the TempDatabase file can fill
up the whole disk partition it is located on.
2024-09-04 Mitko Iliev <imitko@openlinksw.com>
Added support for restricting the size of the tempdb
2024-09-04 Patrick van Kleef <pkleef@openlinksw.com>
Added temp space usage in db activity
Fixed distribution of vadpacker
2024-09-03 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issue re-initializing the pconfig struct
2024-09-03 Mitko Iliev <imitko@openlinksw.com>
Added put/delete http methods
Fixed key estimate on single only
2024-09-03 Patrick van Kleef <pkleef@openlinksw.com>
Added support for custom %T and %D http log format
The following format codes are added:
%T time to serve the request in seconds
%D time to serve the request in microseconds
%{s}T time to serve the request in seconds (same as %T)
%{ms}T time to serve the request in milliseconds
%{us}T time to serve the request in microseconds (same as %D)
%{rt}T time to serve the request using CPU timestamp counter
2024-09-03 Patrick van Kleef <pkleef@openlinksw.com>
Fixed use get_usec_real_time() for rate limiting
Fixed use usec for cli_start_time for custom %T and %D http log format
Added new function get_usec_real_time
2024-08-30 Patrick van Kleef <pkleef@openlinksw.com>
Updated Vadpacker to v1.10
2024-08-09 Mitko Iliev <imitko@openlinksw.com>
Fixed inc. estimate on transitive with unbound input
Fixed memory leak and error when service sets error status code
Fixed issue with user defined types (UDT)
Fixed issue with SN DETs errors
2024-08-09 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with {col}
When a single column is specified as IRI then do not escape,
e.g. {col} means an IRI string
2024-08-08 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with "Content-Encoding: gzip" (fixes #1308)
2024-06-26 Mitko Iliev <imitko@openlinksw.com>
Fixed issue when there are no parts to split
Fixed issue with GROUP BY/ORDER BY on LEFT OUTER JOIN
2024-06-24 Patrick van Kleef <pkleef@openlinksw.com>
Fixed tested building against openssl 3.3.x
2024-06-21 Ivan Mikhailov <imikhailov@openlinksw.com>
Added support for (a relatively small amount of) blank nodes in SPARQL INSERT DATA
Fixes #126
2024-06-18 Mitko Iliev <imitko@openlinksw.com>
Fixed issue calling concat(wide, utf8) (fixes 944)
A missing check for box_flags caused the result to be a broken wide
string.
2024-06-18 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with lenght calculation in rdf_encode_for_uri()
2024-06-18 Ted Thibodeau Jr <tthibodeau@openlinksw.com>
Fixed NEWS.md
2024-06-18 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.14-dev to mark the start of a new development cycle
2024-06-10 Patrick van Kleef <pkleef@openlinksw.com>
Merge tag 'v7.2.13' into develop/7
Tagged for release
2024-06-10 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'release/7.2.13' into stable/7
Updated NEWS.md and Changelog
Updated version to 7.2.13
Merge branch 'feature/vos-fixes' into develop/7
Updated version to 7.2.13-rc
Updated Changelog
Updated NEWS.md
2024-06-07 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.13 engine 3240
2024-06-07 Mitko Iliev <imitko@openlinksw.com>
Fixed issue reading large chunked data in SSE client
2024-06-07 Patrick van Kleef <pkleef@openlinksw.com>
Updated Conductor VAD version
2024-06-07 Mitko Iliev <imitko@openlinksw.com>
Fixed missing check for optional table
Fixed issue when initialization of snapshot fails
Fixed issue with wrong vad file path during vad install
Fixed save CORs via WS wizard duplicate cors options
2024-06-06 Mitko Iliev <imitko@openlinksw.com>
Fixed preserve qualifier when updating trigger
2024-06-06 Patrick van Kleef <pkleef@openlinksw.com>
Updated copyright
2024-06-04 Patrick van Kleef <pkleef@openlinksw.com>
Fixed use virtuoso_ini_item_value where appropriate
2024-06-04 Mitko Iliev <imitko@openlinksw.com>
Fixed issue calculating hash when target graph is null
2024-05-23 Patrick van Kleef <pkleef@openlinksw.com>
Fixed warning of invalid escape sequence
2024-05-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed typo and small cleanups
2024-05-07 Mitko Iliev <imitko@openlinksw.com>
Fixed missing checks for service and query arguments
2024-05-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issue with stack var clobbered by setjump/longjump
2024-05-07 Mitko Iliev <imitko@openlinksw.com>
Fixed MD5 context should be kept on connection global and not reused
This fixes #1287
2024-05-07 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/fuzzer-fixes' into develop/7
2024-05-07 Mitko Iliev <imitko@openlinksw.com>
Added testsuite entries for recently fixed issues
2024-05-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed use vsnprintf
2024-05-07 Mitko Iliev <imitko@openlinksw.com>
Fixed various missing BIF functions argument checks
This closes #1286, closes #1288, closes #1289, closes #1290, closes #1291,
closes #1292, closes #1293, closes #1294, closes #1295
2024-05-02 Patrick van Kleef <pkleef@openlinksw.com>
Fixed compiler warning
Added new test
2024-05-02 Mitko Iliev <imitko@openlinksw.com>
Backport from v8
For string buffers, round to next large size, see that there is 16 bytes
of margin after the last for sse string ops so no ref to unmapped at
end of strings
2024-05-02 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with hash in group by (fixes #1285)
2024-05-02 Patrick van Kleef <pkleef@openlinksw.com>
Fixed length calculation in REPEAT (fixes #1282)
2024-05-01 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/fuzzer-fixes' into develop/7
2024-04-30 Mitko Iliev <imitko@openlinksw.com>
Added new tests for recent cases
Fixed missing copy of parameter value (fixes #1284)
Fixed missing sz check (fixes #1283)
Fixed make sure position is 1-based
Fixed offset overflow (fixes #1281)
Fixed issue trying to normalize an invalid numeric (fixes #1279)
2024-04-29 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/2024_04_29_fix_jena3_4' into develop/7
Rebuild Jena 3/4 providers
2024-04-29 Sergey Malinin <smalinin@openlinksw.com>
Fixed missing properties during initialization of a new Model
VirtDataSet methods getDefaultModel()/getNamedModel() doesn't apply all
properties(like queryTimeout and etc) to the newly created Model
2024-04-09 Mitko Iliev <imitko@openlinksw.com>
Fixed vec input should be declared as boxed i.e. array (Fixes #1254)
2024-04-04 Mitko Iliev <imitko@openlinksw.com>
Fixed unfolded bifs have to have serial to distinguish separate calls (fixes #1276)
2024-04-02 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with transaction boundary
Fixed memory leak
2024-03-28 Patrick van Kleef <pkleef@openlinksw.com>
Upgraded sparql_demo build process to use vadpacker
Removed deprecated script
Upgraded bpel build process to use vadpacker
2024-03-26 Patrick van Kleef <pkleef@openlinksw.com>
Fixed missing condition for sponger settings
2024-03-25 Patrick van Kleef <pkleef@openlinksw.com>
Disabled unused filesystem vad packages
Updated DBpedia VAD version
Fixed encoding
2024-03-25 Patrick van Kleef <pkleef@openlinksw.com>
Added new prefixes
gold: <http://purl.org/linguistics/gold/>
ov: <http://open.vocab.org/terms/>
2024-03-25 Patrick van Kleef <pkleef@openlinksw.com>
Fixed set default for dbp_decode_iri to ON
Added initial support for /datatype
2024-03-25 Patrick van Kleef <pkleef@openlinksw.com>
Fixed installation scripts to remove need for dbpedia_init.sql
The dbpedia_pl.sql now contains the relevant PL code from
dbpedia_init.sql.
The dbpedia_del.sql removes all the old and sometimes confusing rewrite
rules etc., that added an unnecessary layer of complexety.
Moved the /void rules and vdirs to dbpedia_local.sql.
2024-03-25 Patrick van Kleef <pkleef@openlinksw.com>
Upgraded DBpedia build process to use vadpacker
Upgraded iSPARQL build process to use vadpacker
Upgraded Conductor build process to use vadpacker
Upgraded RDB2RDF build process to use vadpacker
Small cleanup for FCT vad building
Upgraded to vadpacker v1.8
2024-03-25 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with MaxMemPoolSize
Allow MaxMemPoolSize to be 0 (unlimited) or from 400M (default)
to INT64_MAX
2024-03-25 Mitko Iliev <imitko@openlinksw.com>
Fixed issue freeing n-way nic arrays
The n-way nic arrays are allocated a bin box, should free as such.
2024-03-22 Patrick van Kleef <pkleef@openlinksw.com>
Fixed 'Read/Write wait on column page...' should be debug messages
Merge branch 'feature/fuzzer-fixes' into develop/7
2024-03-22 Mitko Iliev <imitko@openlinksw.com>
Fixed geometry objects must be represented as strings (Fixes #1274)
Added new tests for recent cases
Fixed 64bit arith overflow (Fixes #1270)
Fixed missing check for star (Fixes #1269)
Fixed set dc type on grouping sets (Fixed #1268)
Fixed check num cols in union branches when subq non-terminal is used (Fixes #1267)
Fixed check for control exp over non-terminal not-allowed/can't be handled (Fixes #1266)
Fixed ft exp & similar not allowed in control exp (Fixes #1265)
Fixed negative column offset (Fixes #1264)
Fixed test for comma exp not allowed in arith exp (Fixes #1263)
Fixed cost on void geo function (Fixes #1262)
Fixed memcopy buffer overflow (Fixes #1259)
2024-03-22 Mitko Iliev <imitko@openlinksw.com>
Added stack overflow ck (Fixes #1258)
Also resolves #1271, resolves #1272
2024-03-22 Mitko Iliev <imitko@openlinksw.com>
Fixed alloc double dep on demand as as int (Fixes #1257)
Fixed ambiguous subq return (Fixes #1253)
2024-03-20 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with non-string copy (Fixes #1252)
Fixed non iri_id and non such as iri should be error
Added cumulative patch for cube/rollup and bad dt artithmetics
Added new tests for recent cases
Fixed missing check for const in predicate (fixed #1251)
2024-03-15 Mitko Iliev <imitko@openlinksw.com>
Added new tests for recent cases
Fixed const in predicate can be removed by optimiser (fixed #1250)
2024-03-14 Mitko Iliev <imitko@openlinksw.com>
Added test for vec param cast any/str/null
Fixed issue on any ssl w/h nulls (fixes #1249)
2024-03-12 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issues with clang 15 and newer compilers
Clang now throws an error on several constructions that previously
only returned a warning, such as:
* incompatible function pointer types
* incompatible integer to pointer conversion
This causes problems when building on the latest macOS XCode release as
well as the upcoming new Ubuntu 24.04
2024-03-11 Mitko Iliev <imitko@openlinksw.com>
Fixed TSV output to use SPARQL 1.1 TSV specification
See: https://www.w3.org/TR/2013/REC-sparql11-results-csv-tsv-20130321/#tsv-table
2024-03-08 Patrick van Kleef <pkleef@openlinksw.com>
Removed unused argument artifact
Fixed issues reported by link time optimizer (LTO)
2024-03-04 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/vos-fixes' into develop/7
Added missing tsuite entries
Updated Conductor VAD version
2024-03-04 Tim Haynes <thaynes@openlinksw.com>
Conductor: Inclusion.Engine Sites: constrain site-name field to non-space characters only
2024-03-04 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with join and order by on null result (fixes #1241)
Keep set control node together with outer sequence end node in both
left and right outer join
2024-03-04 Mitko Iliev <imitko@openlinksw.com>
Merged back safe logical_* bif names from v8
Fixed issue importing bad IRI pattern
Fixed issues with microdata parser
Fixed debug printf only in DEBUG modeF
Added optional alternative names for server X.509 certificate
Fixed issue getting client status during swapping or www maintenance
Fixed issue collecting ft stats during checkpoint
2024-02-29 Patrick van Kleef <pkleef@openlinksw.com>
Updated FCT vad version
Removed deprecated scripts
Fixed namespace of inference rules graphs
Fixed check for python executable
Upgraded FCT build process to use vadpacker
Added vadpacker tool
2024-02-20 Mitko Iliev <imitko@openlinksw.com>
Fixed issue on rehash if dict_put is used in select list
2024-02-15 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issue with basename on older machines
Fixed allow building against openssl 3.2.x
2024-02-15 Patrick van Kleef <pkleef@openlinksw.com>
Fixed small issues with sql_to_c.awk script (fixes #1244)
* Added version to header
* Fixed include lines
* Fixed warnings on unknown regexp operator
* Updated documentation that GNU awk versions 3.11 up to and including
5.3.0 have been validated
2024-02-15 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issue with bad index op ref in table dft (fixes #1245)
Moved check for dio_terms into the correct block.
This fixes an issue introduced by commit
fb0cf1cdd1ec20e226d8f0eb41710eaf8093437b
2024-02-14 Sergey Malinin <smalinin@openlinksw.com>
Fixed issue building Windows binaries
2024-02-14 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.13-dev to mark the start of a new development cycle
2024-02-13 Patrick van Kleef <pkleef@openlinksw.com>
Merge tag 'v7.2.12' into develop/7
Tagged for release
2024-02-13 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'release/7.2.12' into stable/7
Updated ChangeLog
Updated version to 7.2.12 engine 3239
Updated NEWS.md
Updated NEWS.md
Fixed portability issues
Updated version to 7.2.12-rc2
2024-02-13 Mitko Iliev <imitko@openlinksw.com>
Fixed dav URI esc should follow escapeURI char percent encoding rules
Revert dks_esc_uri table for %H compat
2024-02-12 Mitko Iliev <imitko@openlinksw.com>
Fixed issue catching error from chash_error
Fixed DAV URLs must encode following rules as for encodeURI
Fixed chars like ® are not encoded properly as URL
Fixed broken hrefs in dav folder listing
2024-02-09 Mitko Iliev <imitko@openlinksw.com>
Fixed issue optimizing left outer joins on sparql queries
See also:
Fixed issue with outerjoin when condition is always true or false
(fixes #1236)
2024-02-06 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.12-rc1
Set default value of ThreadCleanupInterval and ResourcesCleanupInterval to 1 for new installations
2024-02-06 Mitko Iliev <imitko@openlinksw.com>
Fixed complete table name before quoting
2024-02-06 Patrick van Kleef <pkleef@openlinksw.com>
Fixed wrong arguments to get_fieldProperty
2024-02-06 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with drop quad map graph
2024-02-06 Mitko Iliev <imitko@openlinksw.com>
Fixed issues in rdfview creation
* Added backup before rdf view creation
* Fixed mismatch of a URL parameter and control
2024-02-06 VOS maintainer <vos.admin@openlinksw.com>
Fixed rr:template by default is IRI unless column, dt or lang are given
2024-02-06 Mitko Iliev <imitko@openlinksw.com>
Fixed column CaSeMoDe
2024-02-06 Mitko Iliev <imitko@openlinksw.com>
Added quad map iri parameter
Do not use same name as r2rml physical graph as this confuses the
generation and maintenance
2024-02-06 Mitko Iliev <imitko@openlinksw.com>
Fixed case to ucase for case insensitive lookup
2024-02-05 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/fixes' into develop/7
2024-02-05 Mitko Iliev <imitko@openlinksw.com>
Added WSOCK.DBA.SEND_PING() and support to handle pong reply
2024-02-05 Mitko Iliev <imitko@openlinksw.com>
Fixed issue in ontology generation
Ontology generaties wrong ttl chunk if column is selected as label
2024-02-05 Mitko Iliev <imitko@openlinksw.com>
Fixed remove shadow variables from csv_vec_load()
Fixed issue importing CVS with missing EOL on last line
Fixed obj2xml() should be public
2024-02-05 Mitko Iliev <imitko@openlinksw.com>
Fixed issues with obj2json()
* Added option to indent the output
* Fixed serialization to use session instead of concat() on each piece
2024-02-02 Mitko Iliev <imitko@openlinksw.com>
Added HTTP CORS pattern support
2024-01-31 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with outer end in parallel
Fixed issue getting lock information for status()
Fixed issue with status for non dba user
Fixed compile with MTX_DEBUG
Added check for dc values ref
2024-01-31 Patrick van Kleef <pkleef@openlinksw.com>
Added uptime to status()
2024-01-31 Mitko Iliev <imitko@openlinksw.com>
Fixed issue with user agg and constant in group by
when you have a user agg in sparql it may have reduced iri in gby,
do not remove the gby as ua will not go as vec
2024-01-31 Mitko Iliev <imitko@openlinksw.com>
Fixed issue getting dtp in rdf box case
Fixed clear http method at session cleanup
2024-01-31 Patrick van Kleef <pkleef@openlinksw.com>
Added support for VMsize and page faults in status() output
2024-01-31 Mitko Iliev <imitko@openlinksw.com>
Added initial watchdog on VMsize (experimental)
Fixed issue sending Content-Length when not expected
2024-01-31 Mitko Iliev <imitko@openlinksw.com>
Fixed issue casting string to numeric