forked from openlink/virtuoso-opensource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
8661 lines (4501 loc) · 207 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
2018-10-02 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.6-rc1
Fixed issue building with --debug-mtx
Moved binsrc/yacutia binsrc/conductor
Fixed missing variable declaration
2018-10-02 Patrick van Kleef <pkleef@openlinksw.com>
Revert "Fixed use TTLP_V"
This reverts commit 33568d4754b3d94b6049bb6bed38e9d30a7cb071.
2018-10-01 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/fct_fixes' into develop/7
Renamed binsrc/b3s to binsrc/fct
Updated VAD version
Fixed issue "Value of ANY type column too long" with long shapes
Fixed error handling
Fixed do counts separately instead of using UNION to avoid issue with expected/generated columns error
Fixed i18n issue
Fixed bad check
Fixed use TTLP_V
Disabled unwanted 'extra' decoding
Fixed bad URL encoding in tabs
Fixed URL encoding in pager
Fixed redirect URL encoding after sponging
Fixed missing call to onchange so page refreshes when Show x rows selector changes
Fixed typo
Added function urilbl_ac_init_state to reflect state of Entity Data generation
Fixed disable input fields to goto specific page if there is only a single page
Added check to make sure page is in range 0 .. last
Added guard against shortning already short URLs
Fixed issues loading insecure content into secure page
Fixed use https:// to work well with secure pages
Fixed issues with https in /describe content negotiation Alternates and Location headers
Fixed move usual proxyIRI-handling above embedded fragments
Fixed missing css
Added support for optionally tagging links as 'nofollow'
Added preview snippet for embedded content
Fixed issues with /describe page behind a (ssl) proxy
Fixed issues in b3s_get_types on weird data
Fixed issues using current prefixes for DBpedia in demos
Commented out debug lines
Fixed use RDFa instead of microdata
Commented out test code
Added statistics about users of IRI as subject or object in graph to Metadata page
Added support for IRIs from RDFviews
Fixed i18n issues in fct
Added timeout to the sparql query
Fixed types are always IRIs not a number or literal
Fixed fct_pretty_print could alter text inside strings leadign to mssing records in /sparql call
Fixed plink
Fixed show lang type in <small> font
Fixed show language if available
2018-09-29 Patrick van Kleef <pkleef@openlinksw.com>
Fixed compiler warning
Removed duplicate memset
Fixed wrong sizeof potentially resulting in read io overhead
Fixed handling of empty and invalid geometries in exporter of geo_t to geos::geom::Geometry and in DE9-IM relate()
2018-09-24 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/jdbc_cleanup' into develop/7
Rebuild JDBC drivers
Updated JDBC driver version
Files to ignore
Removed old ifdefs
Regenerated JDBC drivers
Updated JDBC driver version
Renamed default namespace from jdbc2 to jdbc4
Fixed spelling removing dangling quote e.g. cann't to cannot
Moved SSL support into the regular driver to save disk space
Removed support for JDK 1.1, 1.2, 1.3, 1.4 and 1.5
Fixed missign source file
2018-09-23 Sergey Malinin <smalinin@openlinksw.com>
Fix close() for PreparedStatement
2018-09-21 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue with LDP POST command
Fixed LDP folder content return (by GET)
2018-09-20 Patrick van Kleef <pkleef@openlinksw.com>
Fixed typos
Added new README.GeoSPARQL.md to documentation list
Added initial README for GeoSPARQL functionality
Added missing file
Merge branch 'feature/geosparql_port' into develop/7
Fixed order of libraries checked for tgetent to use with -ledit
Add plugin names to BUILD_OPTS when libraries check out
Fixed portability issues with testing features from libraries
Fixed portability
Added /usr/share/proj to allowed dirs for proj4 init
Fixed small issues building plugins
Added missing X509_STRING_DATE
Fixed indentation
Added stubs for single thread rwlock
Added more functions for plugin usage
Added option to pass extra include file to generated c code
Fixed conflict with GROUPING keyword and langinfo.h
2018-09-18 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/geosparql_plugins' into develop/7
Updated engine version to 3230
Added proj4, geos and shapefileio plugins to build environment
2018-09-18 Ivan Mikhailov <imikhailov@openlinksw.com>
Initial merge of GeoSPARQL functionaly into VOS
Fixed issues with C++ compiler
2018-09-18 Patrick van Kleef <pkleef@openlinksw.com>
Fixed namespace check for bif: and sql: and issues with system functions
Fixed issues using plugins with C++ compiler
Updated dict to use rwlock instead of mutex
Fixed issue building on windows
Merge branch 'feature/ssl' into develop/7
Fixed default cipher list
Fixed issues with SSL_CTX options
Fixed set default protocol to TLSv1.2 or newer when possible
Added support for Strict-Transport-Security header
Added check to make sure RPNG is properly seeded
Added support for Forward Secrecy using DH and ECDH
Fixed issue setting cipherlist on https ctx
2018-08-16 Patrick van Kleef <pkleef@openlinksw.com>
Merge tag 'v7.2.5.1' into develop/7
Tagged v7.2.5.1 for release
2018-08-16 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'hotfix/7.2.5.1' into stable/7
Fixed issue installing duplicate doc files
2018-08-15 Patrick van Kleef <pkleef@openlinksw.com>
Started new development cycle 7.2.6-dev
2018-08-15 Patrick van Kleef <pkleef@openlinksw.com>
Merge tag 'v7.2.5' into develop/7
Tagged version 7.2.5 as next stable release
2018-08-15 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'release/7.2.5' into stable/7
Updated changelog
Updated version to 7.2.5.3229 for stable release
Fixed layout of binary .tar.gz file
2018-08-15 Sergey Malinin <smalinin@openlinksw.com>
Fix VS projects
2018-08-15 Patrick van Kleef <pkleef@openlinksw.com>
Fixed Conductor VAD version
Fixed typo in variable
Removed TLSv1 from default protocol list
Fixed typo
Merge branch 'feature/markdown' into develop/7
Updated README files to markdown format for GitHub viewing
Removed deprecated file
Created symlinks for files that autoconf/automake check
Moved files to .md extension for GitHub viewing
Updated engine to 3229 for release
Updated NEWS for upcoming release
Updated ChangeLog for upcoming release
Fixed links
Added option for less verbose builds
Added better version checking for OpenSSL to configure
2018-08-12 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issue returing correct uiser after TLS login
Updated Conductor version
Fixed some compiler warnings for WebDAV browser
Fixed footer on WebDAV skin page
Added item creator as a field in the properties when not empty
Moved 'OAuth Service Binding' to 'Web Services'
Fixed clean up used files after build
Fixed selection of category in the database browser page
2018-08-11 Patrick van Kleef <pkleef@openlinksw.com>
Fixed initial fill of caches after server restart (closes issue #747)
Fixed increase cache size for language and datatype caches
Fixed bif_sprintf() in order to process string arguments that get long values but the format precision is small enough.
Added new function t_set_delete_nth()
Fixed check for infinite loop in SQL compiler
Fixed checking BIF names
Fixed issues with Mac OS X WebDAV mapping
Fixed issue with cast numeric to bool
Fixed issue on TTLP with flag 4096 if a namespace declaration is repeated twice
Added support for ttlp_triples_for_prefix
2018-07-10 Patrick van Kleef <pkleef@openlinksw.com>
Removed rwlock support from single thread library
Fixed missing files from distribution
Added defines for virtuoso odbc extension
Fixed issue with wchar_t check
Fixed small issues in odbcsdk header files
2018-07-09 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.5-rc2
Updated Conductor VAD version
Fixed issues in properties, locks and mkcol using Litmus testsuite
Fixed selection to use a RES_FULL_PATH instead a procedure.
Fixed missing PL for /sparql?nsdecl
2018-07-09 Ted Thibodeau Jr <tthibodeau@openlinksw.com>
Fixed grammar
2018-07-06 Patrick van Kleef <pkleef@openlinksw.com>
Remove TLSv1 protocol from default protocol list
As the TLSv1 protocol is vunerable against certain attacks, it should not be in the default list for
server side connectivity.
It can still be turned on by the dba, should this protocol be needed for legacy browsers and/or devices.
2018-07-03 Andrei Meliș <andrei.melis@eaudeweb.ro>
Fix a typo
backup_dump instead of backup-dump
2018-07-03 Patrick van Kleef <pkleef@openlinksw.com>
Rebuild providers
Fixed issue with MALLOC_DEBUG
Fixed allocation hook
Fixed spelling
Fixed compiler warnings
Updated Conductor VAD version
Fixed bug with PROPFIND and bad XML (without correct namespace) as body
Updated WebDAV tests to support RDF 4918 specification
Added option to delete locked files by admin users
Fixed issues related to the LITMUS testsuite for DAV
Fixed readability of SHOW command
2018-07-03 Patrick van Kleef <pkleef@openlinksw.com>
Fixed use varchar(64) for name of det in order to keep smaller row limit
This is only done for new databases, to avoid unwanted warnings on startup.
2018-07-03 Patrick van Kleef <pkleef@openlinksw.com>
Optimized RDF meta data extractor
Fixed issues related to S3 DET folder definition
2018-07-03 Ted Thibodeau Jr <tthibodeau@openlinksw.com>
Fixed spelling, grammar and punctuation
2018-06-27 Patrick van Kleef <pkleef@openlinksw.com>
Fixed file permissions
Merge branch 'feature/2018_06_22_fix_vs2017_build' into develop/7
2018-06-27 Sergey Malinin <smalinin@openlinksw.com>
Fix Dktypes.h defines for VS2017
Fix SQL_FILES_DAV in sqlcode.bat
Add new file git_head.c to wi.vcproj
Fix for properly compile with VS2017
Fix version info for virtodbc
Fix VS2017 compile errors
Fix issues with VS2017
2018-06-26 Patrick van Kleef <pkleef@openlinksw.com>
Fixed show all ABORTED and FAILED tests
Fixed link order of iODBC libraries
Fixed checking for installed versions of iODBC development headers and libraries
2018-06-26 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issues checking header files
Checking header files on many systems requires the use of the C compiler and not the standalone cpp program.
Compiling the virtuoso JDBC drivers does require the standalone cpp program.
2018-06-22 Patrick van Kleef <pkleef@openlinksw.com>
Fixed extra ']' chars on configure --help
2018-06-13 Patrick van Kleef <pkleef@openlinksw.com>
Added options for SPARQL endpoint and Faceted browser in left menu
2018-06-07 Patrick van Kleef <pkleef@openlinksw.com>
Updated version to 7.2.5-rc1
Fixed rewrite rule export format
Fixed check for installed VAD package
Fixed encoding of URL when using describe or about links
Fixed SPARQL DELETE for quads did not delete booleans and other inlined RDF boxes that have non-default dt twobytes but not stored in RDF_OBJ
2018-06-06 Patrick van Kleef <pkleef@openlinksw.com>
Fixed no not read uninitialized and unused tail of result dc
Small code cleanup for MALLOC_DEBUG
Fixed GPF when there is no result qst on error condition
Fixed possible memory leak
Fixed assert when using SIGNAL_DEBUG
Added support for both return values as well as scalar expressions
Fixed compiler warnings
Added support for X-Forwarded-Proto
Fixed memory leak
Fixed check PL compilation for errors
Fixed return success or fail
Added support for application/n-triples mime type
Fixed IRIs with utf-8-encoded punctutation in local part should not printed as ns:local, but as <...>
Fixed memory leak in imap and pop3
Fixed portability issue
Added support for modifying size of SQL compiler cache
Fixed memory leak passing error codes up the execution chain
Added additional checks for memory leaks and other debugging checks
Fixed readability of short iri names in explain output
2018-06-05 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issue with DAV authentication
Fixed upgrading DAV tables with new field
2018-05-18 Patrick van Kleef <pkleef@openlinksw.com>
Code cleanup and removed some dependencies from ODS Framework
Removed stubs
Added better owner/group entity identification for filelist UI
2018-05-17 Patrick van Kleef <pkleef@openlinksw.com>
Fixed DAV graph permissions
Removed old code
2018-05-16 Patrick van Kleef <pkleef@openlinksw.com>
Added MALLOC_DEBUG check
Fixed documentation
Fixed compiler warnings
Fixed compiler warnings on PACKAGE_* and VERSION defines
Added new function strexpect_cs for case sensitive checks
Fixed output of mem_leaks to match format of mem_all_in_use
Fixed issues with query and signal logs
Fixed a missing CA chain does not mean .p12 file is bad
Merge branch 'feature/conductor_fixes' into develop/7
Fixed issue editing properties of doc in briefcase
Added default options for application by redirection
Fixed OAuth definitions
Added Cartridge ACL mode selection to UI
Optimized calls to some APIs using user/password properties
Added support for LDP DET
Merge branch 'feature/dav_fixes' into develop/7
Fixed indendation
Fixed DAV ACL permisssion
Added graph security for LDP RDF data
Fixed procedures for checking permissions
2018-05-15 Patrick van Kleef <pkleef@openlinksw.com>
Reformatted and small optimizations for CatFolder DET and related API functions
Fixed issue extracting license properties used by CatFolder DET
Fixed issue with LDP protocol using 'Slug' header value
Removed stubs
2018-05-14 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/2018_04_14_fix_github738' into develop/7
Rebuild RDF4J provider
Updated version of RDF4J provider
2018-05-14 Sergey Malinin <smalinin@openlinksw.com>
Fix for github738 (baseURI parameter not handled properly by RDF4J provider)
2018-04-15 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issues with HTTP PATCH command changing resource permissions
2018-04-05 Patrick van Kleef <pkleef@openlinksw.com>
Merge branch 'feature/2018_04_04_fix_bug18232' into develop/7
Rebuild JDBC drivers
Updated version of JDBC driver
2018-04-04 Sergey Malinin <smalinin@openlinksw.com>
Fix bugzilla#18232
String values must be sent ad DV_STRING or DV_SHORT_STRING_SERIAL
2018-03-25 Patrick van Kleef <pkleef@openlinksw.com>
Fixed use http://..../KEY/VAL#this for RML uri template generation
Fixed version and usage information for isql tool
Fixed new API calls for sponger
Fixed namespaces
Fixed issues with PATCH not returning an error after a SPARQL error
Updated GET command to support new redirection options
Fixed issue with spaces in WebDAV directory names
Fixed Conductor UI issue for specific doc types
Updated WebDAV browser to support new redirection options
Updated Conductor UI to support new redirection options
Fixed Conductor UI for specific doc types
2018-03-23 Sergey Malinin <sergmalinin@gmail.com>
Merge pull request #722 from jhdulaney/develop/7
Fixes to libsrc/JDBCDriverType4/virtuoso/jdbc2/Makefile.am
2018-03-22 Patrick van Kleef <pkleef@openlinksw.com>
Fixed missing struct members when configured with --with-debug
2018-03-03 John Dulaney <jdulaney@fedoraproject.org>
Fixes to libsrc/JDBCDriverType4/virtuoso/jdbc2/Makefile.am
2018-02-27 Patrick van Kleef <pkleef@openlinksw.com>
Added initial documentation on building VOS on Mac OS X
2018-02-26 Patrick van Kleef <pkleef@openlinksw.com>
Added support for pthread_rwlock library
Fixed issue generating files needed for tutorials
Added support for timeout on socket connect
Fixed use variable number of threads of AQ
Fixed issue building with SEM_DEBUG
Fixed issue with DAV headers
Added distinctive error message for each RDF loader
Fixed GPF replaying table rename due to deref NULL result
Fixed error message
Fixed bad check for type of name before comparing with __grouping
Fixed use __SQL_STATE and __SQL_MESSAGE
Fixed issue with activitystreams
2018-02-26 Patrick van Kleef <pkleef@openlinksw.com>
Fixed for DAV browser
* Fixed owned lost ability to edit properties of doc in Briefcase
* Fixed LDP procedure recovery
* Fixed issue with LDP files/folders
2018-02-26 Patrick van Kleef <pkleef@openlinksw.com>
Fixed missing response header for briefcase LDP Container Accept-Post:
Fixed issues sponging content in the LDI DET
Fixed always build the wiki plugins
Fixed path to find local imagemagick.pc via pkg-config
2018-02-12 Patrick van Kleef <pkleef@openlinksw.com>
Removed artifact
2018-02-07 Patrick van Kleef <pkleef@openlinksw.com>
Rebuild JDBC providers
Updated version of JDBC driver
2018-02-07 Sergey Malinin <smalinin@openlinksw.com>
Fixed handling for timezoned date values from sparql queries
Fixes github #709
2018-02-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed use %pure-parser to avoid deprecation warning on later versions of bison
Fixed handling of Accept header with activitystreams profile
Fixed procedure for parsing 'Accept' HTTP header
Added overwrite flag for DynaRes creation
Fixed Turtle 1.1 permits multiple semicolons without predicate-object pairs between them
Fixed issues with QUERY_DEBUG
Fixed merged query log and error report log into one
Fixed memleak with composit boxes
Fixed LDP related issues
Fixed response code to 204 for PATCH command
2018-02-07 Patrick van Kleef <pkleef@openlinksw.com>
Updated DynaRes DET
* Added support for renaming DynaRes resource
* Added option to allow overwriting DynaRes resource
* Fixed authentication
2018-02-07 Patrick van Kleef <pkleef@openlinksw.com>
Fixed issues relating to set and update LDP related data
Fixed initial DB.DBA.RDF_DEFAULT_USER_PERMS_SET for user 'nobody' so /sparql endpoint can query all graphs without any performance penalty.
Fixed return code for WebDAV PATCH command
Updated response of the OPTIONS command for WebDAV virtual path
Fixed return 406 if no matching Accept header found
Update and optimize the import of resources in the RDF store
Added separate function to create SPARQL file for LDI folders
Fixed folder copying in briefcase should be recursive
Fixed issue with TAGs text index
Enable user id as group id
2018-02-06 Patrick van Kleef <pkleef@openlinksw.com>
Updated Conductor VAD version
Fixed issue changing a mime type without changing the extension
All filter/search UI should always show a page with results
Fixed issues with LDP
Fixed UI for ACL and ACI definitions
Fixed 'Dynamic Resource' folder creation
Added 'Activity' option for LDI DET folders
Fixed UI needs user-settable options for filesize display
Fixed number of small issues with sync
Updated WebDAV API functions
Fixed 'Create Link' page after request
Fixed label
2018-01-25 Patrick van Kleef <pkleef@openlinksw.com>
Rebuild Jena3 provider
Added missing source file
Updated version of Jena3 provider
2018-01-25 Sergey Malinin <smalinin@openlinksw.com>
Fix issue github #687
Add set/getIsolationLevel to VirtDataset
2018-01-22 Jerven Bolleman <jerven.bolleman@isb-sib.ch>
Travis CI setup to test with multiple C compilers and config options allowing the opensource version branches to be tested automatically.
2018-01-18 Sergey Malinin <smalinin@openlinksw.com>
Fixed XMLA service to select TIMESTAMP, XML_ENTITY, IRI_ID columns
2018-01-02 Patrick van Kleef <pkleef@openlinksw.com>
Updated Copyright to include 2018
2017-12-21 VOS Maintainer <vos.admin@openlinksw.com>
Rebuild providers
Updated version of JDBC, Jena, RDF4j and Sesame drivers
2017-12-21 Sergey Malinin <smalinin@openlinksw.com>
Fix: github #701 xsd:boolean literals returned as xsd:string literals
2017-12-21 Sergey Malinin <smalinin@openlinksw.com>
Fix github #702
The new versions of providers Jena/RDF4J set/getNamespaces in global cache, prev versions worked with connection cache.
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Merge branch 'feature/backport' into develop/7
Fixed prototypes
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue pred_gen_1 should be inside cond gen with preceding GENERATE_CONTROL_EXP
(closes issue 693)
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Added option to explicitly set required security level (digest vs basic auth)
Fixed bad url http:/ -> http://
Fixed missing patch
Fixed issue tracking wrong datastruct
Added extra debug events for compiled queries
Fixed issue with file system applications
Fixed DB.DBA.XML_URI_GET() to handle 'file:path', 'file:/path', 'file://path', and 'file:///path'
Fixed missing POP_QR_RESET
Fixed allocation size of box
Fixed GPF performing strlen of a DV_DB_NULL box
Fixed bounds check
Initial support for non-ASCII IRI format strings
Fixed functions which can return multiple types should use bt_any
Fixed issue
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue with shcompo cache size
When limit on population of shcompo_cache is much smaller than
number of buckets of cache hashtable then removal of random redundand
entry costs a lot, bigger limit is better.
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Fixed GPF in log_query_event when qr is NULL
Set default value for ThreadCleanupInterval and ResourceCleanupInterval to 1
Fixed commented out call to dk_check_tree_mp_or_plain()
Fixed issue with dc_values shared between two freeable state slots
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Updated RDF_MAKE_S_O_FROM_PARTS_AND_FLAGS_C() etc
* Added support for flags 0x100 and 0x200
* Fixed issue with Jena object values that are URLs
* Fixed several small issue
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Fixed various bugs
Fixed handling of Accept q params
Fixed Conductor's RDF View wizard now supports table and column names with more weird characters (@, `, ~, 8-bit)
Fixed RDB2RDF VAD version
Fixed typo
Fixed support of weird column names in R2RML
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Updated imagemagick plugin
* Added error information from ImageMagick when failing to read blob
* Replaced deprecated API functions
* Fixed issue resizing/cropping gif with transparent background
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Fixed MTX_DEBUG in mutex_enter for Windows
Fixed http_cli_get_doc_str() to return either long or short url based on protocol and proxy settings
Fixed overflow in bif_atoi()
Added support for DV_RDF boxes in bif_isnumeric()
Fixed calls to sec_tb_check and sec_proc_check got U_ID and G_ID swapped
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Added new bif functions
* substr()
* rdf_is_literal_impl()
* is_plain_bnode_iri_id()
* iri_id_to_blank_nodeid(),
* all_allocs_at_line() and new_allocs_after() for MALLOC_DEBUG
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Fixed missing restore of saved value
Added bif_callstack_dump()
Added support for RDF boxes and NVARCHAR in bif_sprintf and the like
Added sequence_next_inc_and_log()
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Added new function bif_one_of_these()
This function accepts vectors of variants as arguments and
different representations of strings now "match" each other more
naturally
2017-12-05 VOS Maintainer <vos.admin@openlinksw.com>
Fixed string_to_file() must flush file-resident string sessions before obtaining the session length
Merge branch 'feature/explain' into develop/7
Fixed readability and indentation of EXPLAIN output
Backported constants uname_nodeID_ns_0 and uname_nodeID_ns_8192
Merge branch 'feature/conductor' into develop/7
Updated Conductor VAD version
Added insert option after searching RDF prefixes
Added supoort for JSON and JSON-LD in rewrite rules for SPARQL query output
2017-12-04 VOS Maintainer <vos.admin@openlinksw.com>
Fixed bad URL http:/www.purl.org/ -> http://purl.org/
Closes github #669
2017-11-30 VOS Maintainer <vos.admin@openlinksw.com>
Fixed st_contains and other geo predicates
they were tried on O by geo node without trying on __ro2lo(O) as plain BIFs for final accurate result
2017-11-09 VOS Maintainer <vos.admin@openlinksw.com>
Fixed issue with generating msdtc plugin
2017-11-08 VOS Maintainer <vos.admin@openlinksw.com>