The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
############################################################################
## Changes for RDF-Endpoint ################################################
############################################################################

RDF-Endpoint
============

Created:      2010-06-19
Home page:    <http://search.cpan.org/dist/RDF-Endpoint/>
Bug tracker:  <http://rt.cpan.org/Dist/Display.html?Queue=RDF-Endpoint>
Maintainer:   Gregory Todd Williams <mailto:gwilliams@cpan.org>

0.05 [2012-05-28]
 - (Update) Added use of Plack::Builder and Plack::Middleware::AccessLog in
   default configuration.
 - (Update) Added Service Description resultFormat triples for SPARQL XML
   and JSON Results.
 - (Update) Renamed Service Description sd:defaultDatasetDescription
   property to sd:defaultDataset.
 - (Update) Croak when unable to open file handles
 - (Update) Updated see also link to SPARQL Protocol (1.1).
 - (Update) Improved HTTP error status code messages.
 - (Addition) Use a default in-memory store if no config file is available.
 - (Addition) Let RDF_ENDPOINT_FILE env variable override the Config::JFDI
   default.
 - (Update) Require a recent version (0.99) of Plack::Request with support
   for logging.
 - (Update) Fixed bug in handling of update requests.
 - (Update) Improved conformance with SPARQL 1.1 Protocol spec.
 - (Update) Removed custom logging code (should be done with Plack
   middleware).

0.04 [2011-07-19]
 - (Addition) Added RDFa serialization tests (from KjetilK).
 - (Update) Require RDF::RDFa::Generator 0.102 (fixes RDFa service
   description serialization bug).
 - (Update) Fixed bug introduced by commit 3fb5e48 causing query results to
   disappear from HTML results page.
 - (Update) Allow the service description default graph to be a URI or a
   blank node (based on config value).

0.03 [2011-06-07]
 - (Update) Removed duplicated, hard-coded HTML to allow better
   customization of HTML (from nichtich).
 - (Update) Add merging of namespace hashes (from kjetilk).
 - (Update) Updated service description RDF to use sd:endpoint instead of
   sd:url (tracking updates in the SD spec).
 - (Update) style element must go in head (from kjetilk).
 - (Update) Actually dereference correctly endpoint_path, and make the test
   use root (from kjetilk).
 - (Update) Make endpoint path configurable (from kjetilk).
 - (Update) Replace new_with_string with new and change docs (from
   kjetilk).

0.02 [2011-04-16]
 - (Update) Service description is now cached in the RDF::Endpoint object.
 - (Update) Changes to align with SPARQL Protocol 1.1.
 - (Update) Moved endpoint-specific configuration variables into top-level
   'endpoint' hash.
 - (Update) Fixed caching bug in which browsers would use cached results
   across endpoint instantiations.
 - (Addition) Added support for POSTing queries and updates directly using
   the appropriate media types.
 - (Addition) Added ETag support for query results, varying based on Accept
   and Accept-Encoding headers, and query string.
 - (Update) Updated endpoint.psgi to move config parsing and endpoint
   object construction outside of the request handler.
 - (Update) Updated RDF::Endpoint to use a persistent model object across
   run() calls.
 - (Update) Updated content negotiation quality values.
 - (Addition) Added CodeMirror files for syntax highlighting SPARQL query
   form markup.
 - (Update) Updated tests to test functionality directly via PSGI.

0.01 [2010-07-14]
 - (Addition) First release.