packages feed

haskell-neo4j-client 0.3.0.6 → 0.3.0.7

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Database.Neo4j: data NodePath
- Database.Neo4j: data RelPath
+ Database.Neo4j: NodePath :: Text -> NodePath
+ Database.Neo4j: RelPath :: Text -> RelPath
+ Database.Neo4j: newtype NodePath
+ Database.Neo4j: newtype RelPath
+ Database.Neo4j: runNodePath :: NodePath -> Text
+ Database.Neo4j: runRelPath :: RelPath -> Text

Files

haskell-neo4j-client.cabal view
@@ -1,5 +1,5 @@ name:                haskell-neo4j-client-version:             0.3.0.6+version:             0.3.0.7 synopsis:            A Haskell neo4j client description:              Library to interact with Neo4j databases. 
src/Database/Neo4j.hs view
@@ -24,11 +24,11 @@         setProperty, deleteProperties, deleteProperty,      -- * Managing nodes     Node, getNodeProperties, createNode, getNode, deleteNode, nodeId, nodePath, runNodeIdentifier, NodeIdentifier(..),-    NodePath,+    NodePath(..),     -- * Managing relationships     Relationship, Direction(..), RelationshipType, createRelationship, getRelationship, deleteRelationship,         getRelationships, relId, relPath, allRelationshipTypes, getRelProperties, getRelType, runRelIdentifier,-        getRelationshipFrom, getRelationshipTo, RelIdentifier(..), RelPath,+        getRelationshipFrom, getRelationshipTo, RelIdentifier(..), RelPath(..),     -- * Managing labels and getting nodes by label     EntityIdentifier(..), Label, allLabels, getLabels, getNodesByLabelAndProperty, addLabels, changeLabels,     removeLabel,