[SCM] librdf-trine-perl Debian packaging annotated tag, rdf-trine-0.108, created. rdf-trine-0.108

Gregory Todd Williams greg at evilfunhouse.com
Fri Jun 7 14:21:05 UTC 2013


The annotated tag, rdf-trine-0.108 has been created
        at  984ca8ae375fa70afabaffc9cbfcc64c777a6f81 (tag)
   tagging  bac5acf0e8403702907c5e7b00c85242f01c3b7b (commit)
  replaces  rdf-trine-0.107
 tagged by  Gregory Todd Williams
        on  Mon Jul 14 15:44:28 2008 -0400

- Shortlog ------------------------------------------------------------
RDF::Trine 0.108.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (Darwin)

iD8DBQBIe6z/hPK6VMqoyC0RAsMZAKCmg/OMKSebH2iym57CQs/ycOcVsgCdHKSc
P6T4LadKcAVPFiTr+5XQ6FE=
=JV5V
-----END PGP SIGNATURE-----

Gregory Todd Williams (66):
      - Moved federation code to new RDF::Query::Federate class.
      - Added a RequestedInterruptError exception class.
      - Added debugging information when RDFQUERY_THROW_ON_SERVICE is in effect.
      - Added XML::Parser to list of required modules.
      - Added support for Postgres storage.
      - Added code to count (and warn) the rate of false positives from a bloomjoin.
      - Added support to compile normalized UNION (can only be the top-level node or a child of another UNION) patterns to SQL.
      - Fixed variable ordering bug in UNION to SQL handling by forcing a sorted projection order.
      - Fixed bug in RDF::Trine::Store::DBI::mysql (calling _mysql_hash() without qualifying it in the superclass).
      - Parsing service descriptions now more forgiving in the face of missing values.
      - Cleaned up debugging in RDF::Query::Federate.
      - DBI temporary stores now use an in-memory SQLite database.
      - Improved use of temporary RDF::Trine stores in RDF::Query tests.
      - Mysql store schema now adds indexes.
      - Added support to the DBI store for filters for equality tests.
      - Allow equality test and disjunction filters in patterns that can be compiled to SQL.
      - Updated tests that started failing after the previous commit (affecting SQL-compilation).
      Merge branch 'master' into federation
      - Added initial code to perform query logging (for keeping execution statistics).
      - Fixed autovivification code in RDF::Query::Logger.
      - RDF::Query constructor now doesn't create a logger object by default.
      - Cleaned up debugging code.
      - Fixed argument list for RDF::Query::Algebra::Service::_names_for_node called from bloom function.
      - Cleaned up federation tests.
      - Commented out StatementFilter model use in RDF::Endpoint.
      - Added POD to RDF::Trine::Promise.
      - RDF::Endpoint now uses the streaming print_xml iterator methods to output XML.
      - RDF::Query::Federate now defaults to SPARQLP parser.
      - Fixed unnecessary result limitting in Template Toolkit (with $Template::Directive::WHILE_MAX).
      - Fixed Accept mime-type whitespace handling in RDF::Endpoint.
      - Fixed bug in delaying XML serialization for identity hints header computation.
      - Added new bloom:filter variant that doesn't use identity reasoning.
      - Fixes to deferring XML serialization for SPARQL bindings.
      - Removed use of "DISTINCT" queries in SERVICE calls (for pipelining).
      - Added unicode escaping to Literal and Resource sse serialization.
      - Fixed POD in NTriples serializer.
      - Fixed RDF/XML parser for nodeID, sequence, reification, and base URI handling.
      - Fixed COLLECTION support in RDF/XML parser.
      - Updated Turtle grammar to accept uppercase language tags.
      - Removed redland-based RDF/XML parser tests.
      - Removed unused redland fallback code from RDF::Query::Model::RDFTrine.
      - Removed now unused redland-based RDF/XML test data.
      Fixed unicode escaping by replacing Unicode::Escape calls to hand-rolled code in RDF::Trine::Node.
      - Updated MANIFEST for 0.108 candidate release.
      - Updated SIGNATURE for 0.108 candidate release.
      - Added POD to RDF::Query::Federate.
      - Updated VERSION numbers for RDF::Trine modules.
      - Fixed use of pre-binding in execution of RDF::Trine optimized BasicGraphPatterns.
      - Updates to SPARQLP parser to support FeDeRate BINDINGS keyword.
      - Fixed bindings_count so it doesn't pull a result from the stream (basing the count on binding_names).
      - Updated args to roqet call in failing_earl_tests.sh.
      - Fixed Turtle parser to properly keep '+' on integer literals.
      - Fixed use of RDFQUERY_NETWORK_TESTS in 31-service.t.
      - Made SERVICE work again by rolling back streaming socket work (now commented out).
      - Bloom filter use is now only attempted on SERVICE blocks that don't immediately contain a FILTER.
      - Updated logging of algebra execution to use SPARQL serialization as logging key.
      - Added tabular as_string serialization of ::Iterator::Bindings objects.
      - Updated VERSION numbers for RDF::Trine for 0.108_02 candidate release.
      - Added XML::SAX::Expat as a prerequisite (because XML::SAX::PurePerl can't handle some RDF/XML that uses unicode).
      - Added FeDeRate BINDINGS to the list of supported extensions.
      - Cleaned up ::Iterator::Bindings::as_string serialization code.
      - Updated VERSION numbers for RDF::Trine for 0.108_03 candidate release.
      - Updated RDF::Query to require version 0.108 of RDF::Trine.
      - Replaced use of splice() with shift() in ::Iterator::SAXHandler::pull_result.
      - Updated VERSION numbers for RDF::Trine for 0.108_04 candidate release.
      - Updated docs and SIGNATURE for 0.108 release.

Gregory Williams (22):
      - Fixed bitrotted livejournal example script to work with new 2.000 API.
      - Added support for computed statement generators (like ARQ's computed property support [e.g. list:member]).
      - Added RDF::Query::ServiceDescription for parsing DARQ-style service descriptions.
      - RDF::Endpoint now defaults to SPARQLP parser.
      - ServiceDescription now only runs sofilter if ?subject/?object are bound.
      Merge branch 'master' into federation
      Merge branch 'master' into federation
      - RDF::Query::Algebra::Triple::new now adds RDF::Query::Node::Variable objects for undefined nodes.
      Merge branch 'master' into federation
      - Started work on a more holistic approach to supporting service descriptions (instead of using add_computed_statement_generator()).
      - Added support for sparql:pattern in service description parsing.
      - Added sparql:pattern data to test service descriptions.
      - Moved initial federated service code into RDF::Query::fixup and ::algebra_fixup.
      - Added optional restriction argument to ::Algebra::subpatterns_of_type.
      - Added initial tests for algebra subsumes method.
      - Added labels and common patterns to service description template.
      - ::Algebra::Service now defers loading of content until the first result is requested.
      - ServiceDescription parsing now gets entire sparql:patterns and not just arcs to depth one.
      - Fixed RDF::Query::algebra_fixup to ignore service capabilities that would result in empty BGPs.
      - Added more example capabilities and patterns to the test service descriptions.
      - Added more logic and debugging to aggregating triples into BGPs for SERVICE calls.
      Merge branch 'master' into federation

-----------------------------------------------------------------------

-- 
librdf-trine-perl Debian packaging



More information about the Pkg-perl-cvs-commits mailing list