forked from openlink/virtuoso-opensource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
20422 lines (11053 loc) · 449 KB
/
ChangeLog
File metadata and controls
20422 lines (11053 loc) · 449 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
2013-07-22 VOS Maintainer <vos.admin@openlinksw.com>
* Updated NEWS
* Fixed missing files in make dist
* Added missing file to distribution
* Updated documentation
* Fixed issue for errors with typed rvrFixedValue-s
* Fixed support for untyped strings and xsd:string strings
* Fixed support for SPARQL ASSUME
* Fixed handling of constants in SPART_RVTR_FIXED rdf_value_range-s
* Fixed initialization of lock struct
* Updated version to 6.1.7 for final release
* Updated VAD version
* Updated VAD version
* Fixed creation of RSA SSE
* Fixed regression in URLs containing ?1
* Rebuild drivers
* Rebuild driver
* Updated driver version to 3.64
* Fixed backward compatibility version
* Added support for Java trusted certificate storage
* Added missing DISTINCT from catalog call
2013-07-19 VOS Maintainer <vos.admin@openlinksw.com>
* Small cleanups
* Added support for Apache Jena 2.10.1
* Fixed issue with count distinct
* Updated version numbers
* Updated version of provider
* Fixed reference to jdbc4 driver
* Updated Sesame2 provider
- Updated provider for using 3rd party connection pool managers
- Updated provider to use Sesame 2.7.3 API
- Updated provider to use JDK 1.6
- Updated provider to use virtjdbc4.jar
* Updated Jena classes for using 3rd party connection pool managers
* Updated driver version to 3.63
* Fixed issue with last record in batch
* Fixed issue with date conversion
2013-07-18 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issue building on windows
* Rebuild driver
* Fixed Sesame2 provider
- Fixed issue with too many open statements in new DB.TTLP call
- Fixed escape values
- Fixed timezone handling of date fields
* Regenerated driver
* Fixed Jena provider
- Use TTLP for batch inserts
- Fixed unicode escape handling
- Fixed timezone handling of date
2013-07-17 VOS Maintainer <vos.admin@openlinksw.com>
* Updated conductor VAD version
* FIxed conductor packaging
* Fixed support functions
* Updated support functions
- Added val hooks
- Fixed Index type
- Fixed labels
* Added new templates for WebDAV
* Updated WebDAV with common template from briefcase
* Added initial callback for facebook token
* Fixed labels
* Fixed label
* Added initial val hooks
* Removed lock esc from index view
* Fixed numer of rows for paging
* Added support for content management pages
* Added support to show new index types
* Added WebDAV skin based on common template
* Fixed style and icons on file_browser window
* Fixed auth layer
- Added hooks for VAL
- Changed WebID to NetID
- Fixed issue with invalid HTTPS listeners
- Fixed issue creating vhosts
- Fixed issue with issuerAltName
* Fixed encryption on server
* Fixed layout of logout box
* Fixed exception handling
* Optimized retrieve and list operations
2013-07-16 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed problem in the queue in the atomic mode
2013-07-12 VOS Maintainer <vos.admin@openlinksw.com>
- Added new images
* Updated DAV api
- Added proppath support for DET
- Added session-id handling
- Fixed calculation proper size
- Fixed subfolder creation and mime type for downloaded resources
* Fixed preserve order in dt across removal of no longer existent dts
2013-07-11 VOS Maintainer <vos.admin@openlinksw.com>
* Upgraded RDF views
- Updated to latest API
- Fixed issue with onclick on google chrome
- Fixed disable rdb2rdf triggers in vdb
* Upgraded to latest DAV api
* Fixed issue deleting large graphs
2013-07-09 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed clean dir only after successful build for debugging
* Merged Facet Browser
- Added support to shorten permalinks
- Fixed use carts label api to increase speed
- Fixed array check
- Fixed display largest graph first
- Fixed small bugs
* Fixed issue with tabid used outside its scope
* Added debug info if remap fails
* Fixed release qr text last for debugging purposes
* Added more metadata to date bif functions
* Fixed new databases can skip this check
2013-07-04 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed typos
2013-07-03 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed select where { service { select { }}} on a database with quad maps in use
* Merged code from V7 branch
* Added suppport for private sponge
* Added ldp links to http headers for DAV
2013-06-28 VOS Maintainer <vos.admin@openlinksw.com>
* Extended mp_check_tree to support circular structures in tree w/o hanging
* Updated codegen for literals with types and languages
* Updated code generation
* suppressing isiri_id(column) and similar checks if there's a good
* equality between a column and some other expression that is known
* to be iri_id
* Added new BIF function sum_rank
* Upgraded sparql
- Fixed scalibility of graph level security
- Added RDF_INSERT_QUADS and RDF_DELETE_QUADS
* to optimize sparql:
* insert { graph `iri(?:param1)` {...} graph `iri(?:param2)` {...}
* Upgraded file handing to use filedescriptors
* Upgraded S3 DET support
- Updated sse flag
- Reorganized procedures
- Fixed rename problem
- Fixed problem with retrieve correct MIME type
- Fixed subfolder creation
* Fixed problem with deleting DET folders containing items with ACLs
* Upgraded PROPPATH support for DET
2013-06-27 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed exception when parent node does not exist
* Fixed property name for VCard ontology
2013-06-25 VOS Maintainer <vos.admin@openlinksw.com>
* Upgraded DAV API
- Added basic ACL support
- Added support for new WebDAV skin action and templates
- Added scheduled interval for DETs
- Added activity log
- Added support for multiple threads in DAV queue
- Faster ETAG procedure
- Fixed text/turtle MIME support
- Fixed use of private graphs
2013-06-24 VOS Maintainer <vos.admin@openlinksw.com>
* Added new function box_hash_cut
* Merged back from v7 branch
* Fixed assignment order to align with v7 branch
* Fixed handling of global variables in rewriting of joins
* Fixed typo in commment
* Added missing function RDF_QM_DEFINE_LITERAL_CLASS_WITH_FIXED_LANG
* Fixed support of text/turtle MIME type
* Added initial support for TTLP_SNIFFER
* Fixed SPARQL_DEBUG build handling of BOP_NOT
* Fixed compilation of queries with deeply nested ?:globals
* Added initial support for SPARQL ASSUME
* Fixed handling of constants in SPART_RVR_FIXED
2013-06-21 VOS Maintainer <vos.admin@openlinksw.com>
* Moved function
* Fixed RDF FT initialization
* Fixed issue with application/xhtml.xml mime type
* Removed duplicate procedures
2013-06-20 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issue importing XMLLiteral from RDFa using dictionary
2013-06-19 VOS Maintainer <vos.admin@openlinksw.com>
* Merged from v7
* Fixed set recomp cli max rows to -1 to get correct sparql formatter
2013-06-18 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issue with dummy table
2013-06-05 VOS Maintainer <vos.admin@openlinksw.com>
* Added support for custom extension
2013-06-04 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed use proper type to avoid seeting a string for iri id
* Fixed indentation
2013-05-29 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed do not use .trx name to gen .ctp as audit trail changes its name
* Fixed use macro for v6
* Fixed set default RdfInferenceSampleCacheSize to 1000
2013-05-27 VOS Maintainer <vos.admin@openlinksw.com>
* Updated VAD version to 1.13.34
* Fixed handling of graph
* Fixed ssg_print_equiv_retval_expn() of a global parameter if needed and vative valmodes differ
* Fixed SPARQL codegen
- Better federation support for variables makde by 'AS'
- Better codegen for define output:valmode "LONG" SELECT DISTINCT
* Fixed issue executing multiple sparul statements without semicolon
* Fixed conversions in SELECT DISTINCT statements
2013-05-22 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed clean the relations hash else they keep refs to the MP which is free
* Fixed minor issue
* Fixed issue with no args on regex
2013-05-20 VOS Maintainer <vos.admin@openlinksw.com>
* Updated VAD version to 1.13.31
* Fixed show error in sponge
* Disabled fct max timeout
* Fixed labels
* Fixed visibility of aggregate links
* Fixed remove order by and distinct as they are irrelevant and kill performance
* Fixed labels
* Fixed issue with SPARQL AVG and integer values
* Fixed use constants instead of boxes
* Fixed issue with SPARQL 1.1 BIND and 1+ graph assigned to default graph
2013-05-16 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed divide by zero error on allocation of size 0
* Fixes for RDF graph security
- Added function for re-loading RDF graph security
- Added function for grouping cache
- Minor fixes
* Fixed support for mixed types in concatinate
* Added optimization for top
* Fixed issue with scalar
* Fixed write past end of buffer
* Fixed comment
* Fixed DB.DBA.RDF_DATATYPE_OF_xxx() procedures
* Fixed cmp_boxes_safe for combination of DV_STRING and DV_UNAME
* Fixed flush stdout
2013-05-09 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed bad compile of filter exp
2013-05-08 VOS Maintainer <vos.admin@openlinksw.com>
* Rebuild driver
* Added support for batched inserts
2013-05-01 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed handling of non-absolute IRIs in NICE TTL format
2013-04-26 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issue for dbpedia international chapters
2013-04-25 OpenLink Software <github@openlinksw.com>
* Merge pull request #30 from indeyets/filesize
* SPARQL. LOAD <…> INTO <…>. File size limit
2013-04-25 VOS Maintainer <vos.admin@openlinksw.com>
* Use MAKE environment variable in scripts
* Fixed isssue with NQUAD parser during validation
* Removed reference to old Tidy
* Fixed issue with content location setting in header
* Backported from v7
2013-04-24 Alexey Zakhlestin <indeyets@gmail.com>
* better error message for file-size limitation
2013-04-24 VOS Maintainer <vos.admin@openlinksw.com>
* Updated VAD version to 1.13.21
* Fixed display only if part of default quadmap
* Fixed labels
* Fixed show location
* Fixed use maximum of 200 marrs on grid
* Fixed url encoding
2013-04-23 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed id_to_iri and id_to_iri_nosignal to extend domain
* Added support for running rdb2rdf in parallel
* Fixed warning
2013-04-22 VOS Maintainer <vos.admin@openlinksw.com>
* Added new GC policy in RDF_QM_DEFINE_MAP_VALUE
* Improved codegen for RDF Views
* Fixed HTML5 microdata extraction
2013-04-18 VOS Maintainer <vos.admin@openlinksw.com>
* Set ShortenLongURIs by default to 1
2013-04-15 VOS Maintainer <vos.admin@openlinksw.com>
* Removed deprecated functions
* Added functions to export gate
* Fixed check for text index
* Fixed run of pure BIFs in sandbox
* Fixed error handling in sandbox for pure BIFs
* Added SPARQL optimizations
- IN is optimized to remove items of its right hand side vector
* that are in conflict with rvr of left hand argument
- If a null variable has no external/global origin, no GSPO uses
* and a single OPTIONAL subvalue then that OPTIONAL becomes plain
* group pattern
- scalar in (scalar1, scalar2, ..., scalarN) is now handled separately
* from say graph-scalar in (vector-of-authorized-graph-IRIs)
2013-04-09 VOS Maintainer <vos.admin@openlinksw.com>
* Updated DBpedia vad version to 1.4.23
* Added process info to footer
* Changed jsld to jsonld
* Added support for showing available memory on machine
* Fixed compiler warning
* Fixed portability issue on Windows
* Updated default value for prefetch rows to 2000
* Fixed possible overflow
* Fixed wrong variable
* Added alias MaxClientConnections for ServerThreads
* Fixed bad number of arguments
* Added support for negative year
2013-04-08 VOS Maintainer <vos.admin@openlinksw.com>
* Added optimization for faster (re)creation of RDF View
2013-04-05 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed extraction of equiv restrictions as filters
* Fixed missing initialization of variable
* Fixed support of triple patterns of subtype OPTIONAL_L
* Fixed issue with lost joings on rewriting of unions
- sparql_gp_detach_all_filters is extended with ability to extract
* detached filters from equivs
2013-04-04 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed suppress Content-Type header on json output
* Replaced top level @id with @graph in ld-json output
* Fixed variable should be initialized before used by sas_init
* Fixed missing check for jsld format
* Updated vad version to 1.4.18
* Fixed rewrite rules
- Added support for ld+json
- Added support for text/turtle
- Added alias for .rdf
* Fixed issue with /resource links
* Removed dead links
* Added wdrs namespace
2013-04-03 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issue with FILTER (isURI(?resourceUri)) code generation
* Fixed check for attempting to move graph to itself.
2013-04-01 VOS Maintainer <vos.admin@openlinksw.com>
* Rebuild driver
* Fixed "too many open statements" error in jena provider
* Fixed convert if arg is rdf box
2013-03-25 VOS Maintainer <vos.admin@openlinksw.com>
* Rebuild driver
* Rebuild driver
* Fixed "too many open statements" error in sesame providers
2013-03-22 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed project title
* Fixed issue installing conductor in new db
2013-03-20 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed VAD version number comparison functions
* Fixed VAD versionnumber comparison functions
2013-03-16 VOS Maintainer <vos.admin@openlinksw.com>
* Added support for SPARQL 1.1. Update protocol using /sparql?update=
2013-03-15 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed prettier ttl print
* Fixed issue with inx opt check needs inx path
2013-03-14 VOS Maintainer <vos.admin@openlinksw.com>
* Updated version to 6.1.7-rc1
* Added option to get pretty-print TTL from /sparql endpoint
* Temporary workaround
* Problem with turning join with union into union of joins of the
* original join contained an origin equiv of some external variable.
* Fixed search for origin of external var if origin is UNION or something
- Updated support for SPARQL 1.1 UPDATE/INSERT statements
2013-03-11 VOS Maintainer <vos.admin@openlinksw.com>
* Added function to push two items in one set
* Allow use of first key part instead of full name in index option
2013-03-07 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issue with bnode treshold
* Added new option 'none' to disable sponging
* Added new macro NO_ITC_DEBUG
2013-03-04 VOS Maintainer <vos.admin@openlinksw.com>
* Partial fix for issue with TRANSITIVE codegen
* Updated SPARQL
- Improved sparql_detalize
- Added support for STRBEFORE and STRAFTER
* Fixed crash if db exists and dba tries recovery
* Fixed sending cors headers
2013-02-26 VOS Maintainer <vos.admin@openlinksw.com>
* Added optimization to load rdf_quad meta data early during startup
* Fixed issue running pure bif function in sandbox
* Rollback of BMD_IS_PURE optimization for bif_repeat
2013-02-25 VOS Maintainer <vos.admin@openlinksw.com>
* Added support for setting the graph scope
* Rollback of BMD_IS_PURE optimization for bif_rand
2013-02-23 VOS Maintainer <vos.admin@openlinksw.com>
* Updated version number
* Fixed permalink
* Fixed position calculation
2013-02-22 VOS Maintainer <vos.admin@openlinksw.com>
* Rollback of BMD_IS_PURE optimization for bif_sprintf_xxx
* Fixed _cvt() to BMD_PURE
* Fixed missing define
* Fixed compiler warning
* Allow DB_DATETIME constants as leafs of ST tree
* Added optimization for BMD_PURE functions and CAST of constants
* Added digest param to csr function
* Fixed issue with insert over deleted row on partial distinct index
2013-02-20 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed missing tag
* Fixed type of bnode_t_treshold to iri_id_t
* Added new defines and fixed starting value for named bnodes
* Fixed support for "named bnodes" in 64-bit builds
2013-02-19 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed access permissions for disabled users
* Added support for CONSTRUCT WHERE {} + optimization of DELETE {GRAPH {}}
* Fixed search of 'known' variable names in GROUP BY (expn as ?X)
2013-02-18 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issues with i18n encoding
2013-02-15 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed vad version number
* Fixed set condition to equality if no op
* Fixed issues with focus
* Fixed use same_as for labels
* Fixed i18n issue
* Fixed bad order of ctx param
* Fixed issue with focus on class
* Added check for sponger ACL
* Added initial support for aggregates
* Added initial support for aggregates
* Fixed issue with transitivity
* Fixed issue with subquery table deps that can be refd from join
* Added support for use HREF for IRix in HTML output of SPARQL endpoint
2013-02-14 VOS Maintainer <vos.admin@openlinksw.com>
* Regenerated JDBC 4.0 and JDBC4.1 drivers
* Added initial support for Oracle JDK 1.7.x
* Added initial support for Oracle JDK 1.7.x
* Fixed reference to cvs
2013-02-14 OpenLink Software <github@openlinksw.com>
* Merge pull request #24 from eliasp/patch-1
* Replace CVS with git
2013-02-12 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed xslt skin for WebDAV
2013-02-07 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed printing of Host if present in body
* Merged latest documentation
* Increased aq max threads limit
* Fixed issue with IN option of SERVICE
* Added support for ?graph parameter in SPARQL 1.1 Graph Crud
2013-02-05 Will Daniels <mail@willdaniels.co.uk>
* Fixed SQLSetConnectOption interpretation of param value
2013-02-05 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed error diagnostic when graph missing from DELETE DATA
* Added uptime function
* Added support for handling Set-Cookie directives when redirecting
2013-02-01 VOS Maintainer <vos.admin@openlinksw.com>
* Support for full syntax of SPARQL 1.1 update language
- Added new 1.1 built-in functions
- Fixed support for external vars for subqueries
- Fixed codegen for retvals of SQL Selects
- Small fixes for DAWG testsuite
* Fixed issue with '|' operator at opt level of expression
* Added support for UUID build-in function SPARQL 1.1
* Fixed cost of pg card
2013-01-31 Elias Probst <mail@eliasprobst.eu>
* Replace CVS with git
* The README still mentioned CVS although git is used now. Fixed this.
2013-01-25 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed opl:sponge_time when sponging pure RDF sources
* Fixed constant
2013-01-21 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed ro2sql should not be allowed on 6 to execute on remotes inside qf
2013-01-13 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issue with content length
* If ContentLength is given we must take care of zero length.
* If ContentLength is not given and close is called, we wait for peer
* to drop connection.
2013-01-12 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issue with transitivity and cost of g & p cols
2013-01-10 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issuewith SQL transitive closure causing incorrect results
* Fixed issue with T_STEP in transitive query
* Fixed issue with T_STEP in transitive query
* Added support for 'define output:format "NICE_TTL"'
* Fixed proper support of bnodes in http_ttl_value
* Added support for _:vt syntax of bnodes in debugging
* Fixed missing symbol ref
* Fixed missing tests for checkpoint in progress
* Fixed issue with WebDAV methods
* Added bif_rowvector_obj_sort()
* Fixed composing of SPARQL for remote endpoints
* if the query contains transitive subqueries and the like, with bnodes in retval lists
* Fixed missing argument to error message
* Added support for nodeID://t... syntax
* Added support for nodeID://t... syntax
* Can be used for debugging in order to make more stable outputs
2013-01-08 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed deprecated macro
2013-01-04 VOS Maintainer <vos.admin@openlinksw.com>
* Updated copyright to include 2013
* Fixed select distinct graphs
2012-12-31 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed SPARQL internal error on free-text with score
* Fixed limit output to 20M else this code may overflow and abort
* Fixed use DV_NON_BOX so there is no lenght limit
2012-12-28 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed several issues in SPARQL
- Assign selids of gps at closing braces
- Assign selids of triples/vars at traversals
- Fixed decision making in printing equivs due to new
* _.var.restr_of_col field
* Fixed compiler warnings
2012-12-27 VOS Maintainer <vos.admin@openlinksw.com>
* Added initial support for SPARQL VALUES clause
* Fixed compare as int64
* Fixed issues with rdfxml
- Added protection from wrong calls to tf_triple/tf_triple_l
- Fixed double free
- Fixed compiler warnings
* Fixed behaviour of the 'Dynamic Resource' DET folder
* Fixed do not clear raised errors, so error pages can respond
* Added new get:strategy option no-sponge
* Added new function xenc_rsa_sha1_digest
2012-12-11 VOS Maintainer <vos.admin@openlinksw.com>
* Fix to reduce unreachable subjects in sponged RDF
* Merged repl stubs
* Rebuild driver
* Upgraded to Sesame2 version 2.6.10
2012-12-04 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed allocate sel out box for select node
2012-12-02 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed expansion of BINDs in scalar subqueries
* Fixed repl stubs
* Fixed repl stub
2012-11-29 VOS Maintainer <vos.admin@openlinksw.com>
* Added extra files to include
* Fixed guard against multiple inclusion
* Removed support for req_top.orig_retvals
2012-11-28 VOS Maintainer <vos.admin@openlinksw.com>
* Added function sys_stat_impl for use in plugins
* Fixed when freeing temp, unreg all itcs that were attached
* Fixed alignment to 8
2012-11-27 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed issue with MALLOC_DEBUG
* Added initial support for SPARQL BIND
* Fixed issues with DV_WIDE
- Added specific checks for MALLOC_DEBUG
- Added support for renaming of "array"
2012-11-26 VOS Maintainer <vos.admin@openlinksw.com>
* Export more functions via EXE_EXPORT
* Added support for identifying pure RDF source via MIME type
2012-11-23 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed rev link for /resource
* Fixed support for text/turtle
2012-11-22 VOS Maintainer <vos.admin@openlinksw.com>
* Added checks for trailing zeroes in DV_WIDE boxed in MALLOC_DEBUG
* Added support for exporting cert signature
* Fixed description on RTFM to be more polite
2012-11-20 VOS Maintainer <vos.admin@openlinksw.com>
* Fixed compiling transitive queries with SPRRQL_DEBUG enabled
* Fixed only print trace in debug mode
* Fixed issues in ftp client
- Added support for login without password
- Fixed return strses to client
* Updated documentation
2012-11-16 VOS Maintainer <vos.admin@openlinksw.com>
* Merged Framework VAD
- Added ACL rules validation
- Added API admin.client.add to add ODS clients for authentication
- Added API call admin.apikeys.new to add a new 3rd-party client key
- Added API to fetch client and key information for any third-party service from OAUTH.APP_REG
- Added API user.authenticate.webid
- Added API user.certificates.create to create new X.509 certs
- Added authentication, registration, and connection support for BrowserID
- Added authentication support for Foursquare
- Added better error handling in user.authenticate.callback
- Added better error messages when username or email are already in use
- Added Bitly authentication and registration support
- Added callback procedure for privat egraphs
- Added certificate expiration period
- Added Disqus OAuth support for authentication and registration
- Added import certificate
- Added Instagram support for authentication and registration
- Added login and connect support for Tumblr
- Added more ODS documentation
- Added multi-line tabs
- Added ODS API quickstart guide
- Added registration confirmation functionality
- Added SPARQL property for ACLs
- Added support for GitHub and DropBox OAuth authentication
- Added support for login/register with Yahoo via OAuth
- Added support for Wordpress login via user.authtenticate.authenticationUrl
- Added user session XML format for all authentication methods
- Added way of authentication via third-party services
- Add new public procedures for OpenID registration and authentication
- Updated documentation
- Allow things other than URIs as online account identifiers, like email
* address for Google