haskell-neo4j-client 0.3.0.13 → 0.3.0.14
raw patch · 2 files changed
+8/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
haskell-neo4j-client.cabal view
@@ -1,5 +1,5 @@ name: haskell-neo4j-client-version: 0.3.0.13+version: 0.3.0.14 synopsis: A Haskell neo4j client description: Library to interact with Neo4j databases. @@ -13,7 +13,10 @@ -Batch calls for CRUD operations. . .- All code has been tested with Neo4j versions 2.0.3, 2.1.5 and 2.1.7+ All code has been tested with Neo4j versions 2.0.3, 2.1.5, 2.1.7 and 2.2.0++ 2.2.0 added authentication to the API this driver uses, this is not supported yet by this driver but will be soon+ in the meantime you will have to disable it. (see http://neo4j.com/docs/stable/security-server.html#security-server-auth) homepage: https://github.com/asilvestre/haskell-neo4j-rest-client license: MIT license-file: LICENSE
tests/IntegrationTests.hs view
@@ -1482,8 +1482,9 @@ M.fromList [("age", TC.newparam (78 :: Int64)), ("props", TC.ParamProperties $ M.fromList["age" |: (99 :: Int64)])] neo4jBool $ not $ TC.isSuccess res- neo4jEqual (Left ("Neo.ClientError.Statement.InvalidSyntax",- "Invalid input 'i': expected <init> (line 1, column 1)\n\"i\"\n ^")) res+ neo4jEqual (Left ("Neo.ClientError.Statement.InvalidSyntax", "")) (procRes res)+ where procRes r@(Right _) = r+ procRes r@(Left (err, _))= Left (err, "") -- | Test a cypher rollback transaction case_cypherTransactionRollback :: Assertion