Skip to content

Commit

Permalink
updated CHANGELOG and README.
Browse files Browse the repository at this point in the history
  • Loading branch information
okram committed Nov 17, 2011
1 parent 90edf8e commit 4ad0328
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
11 changes: 6 additions & 5 deletions CHANGELOG.textile
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@ h3. Version 1.1 (Blueprints -- NOT RELEASED YET)
<dependency>
<groupId>com.tinkerpop.blueprints</groupId>
<artifactId>blueprints-core</artifactId>
<version>1.1</version>
<version>1.1-SNAPSHOT</version>
</dependency>
```

* Fixed index consistency issue in @OrientGraph@
* Added @Neo4jHaGraph@ allowing a more direct way to utilize Neo4j High Availability mode.
* General API consistency improvements
** Graphs attempt to create directories structures for graph persistence.
** GetVertex/Edge throw IllegalArgumentException if passed a null identifier as a parameter.
** GetVertex/Edge return null if the element cannot be found, if the identifier does not match the expected format of the underlying graph database or if the underlying graph database throws exceptions during the lookup.
* RexsterGraph utilizes the @application/vnd.rexster.typed+json@ custom mime type.
* The EventGraph addEdge method now properly fires the onEdgeAdded event with improved test cases.
** GetVertex/Edge throw @IllegalArgumentException@ if passed a null identifier as a parameter.
** GetVertex/Edge return @null@ if the element cannot be found, if the identifier does not match the expected format of the underlying graph database or if the underlying graph database throws exceptions during the lookup.
* @RexsterGraph@ utilizes the @application/vnd.rexster.typed+json@ custom mime type.
* The @EventGraph.addEdge()@ method now properly fires the @onEdgeAdded@ event with improved test cases.
* Added @WrappedGraph@ as a template for how to build stackable graph implementations

==<hr/>==

Expand Down
7 changes: 4 additions & 3 deletions README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ Blueprints is a "property graph model interface":http://github.com/tinkerpop/gre
* Implementations:
** "TinkerGraph":http://wiki.github.com/tinkerpop/gremlin/tinkergraph in-memory graph
** "Neo4j":http://neo4j.org/ graph database
**** "Neo4j High Availability":http://docs.neo4j.org/chunked/stable/ha-setup-tutorial.html support
**** "Neo4j Batch Inserter":http://docs.neo4j.org/chunked/stable/indexing-batchinsert.html support
** "OrientDB":http://www.orientechnologies.com/ graph database
** "DEX":http://www.sparsity-technologies.com/dex graph database
** "Rexster":http://rexster.tinkerpop.com RESTful graph shell
** "Rexster":http://rexster.tinkerpop.com graph server
** "Sesame 2.0":http://www.openrdf.org compliant RDF stores
**** "MemoryStore":http://www.openrdf.org/doc/sesame2/users/ch08.html#d0e705, "NativeStore":http://www.openrdf.org/doc/sesame2/users/ch08.html#d0e746, "LinkedDataSail":http://code.google.com/p/ripple/wiki/LinkedDataSail
* Ouplementations:
Expand All @@ -17,8 +18,8 @@ Blueprints is a "property graph model interface":http://github.com/tinkerpop/gre
* Supporting utilities:
** "GraphML Reader/Writer":http://graphml.graphdrawing.org/ utility
** "GraphJSON":http://www.json.org/ Reader/Writer utility
** ReadOnlyGraph wrapper
** EventGraph wrapper
** @ReadOnlyGraph@ wrapper
** @EventGraph@ wrapper
** Various helper utilities

The documentation for Blueprints can be found at this "location":http://blueprints.tinkerpop.com. Finally, please visit "TinkerPop":http://tinkerpop.com for other software products.

0 comments on commit 4ad0328

Please sign in to comment.