neo4j 7.0.4 → 7.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b0b8205d2322d6d97fd8b5166cde4bbf98ff093
4
- data.tar.gz: b51fb31770c3337a6f99983256e85300f261c29f
3
+ metadata.gz: 787eaa00ba6db4457245d6b3719e958e72a5af4a
4
+ data.tar.gz: 9760d1d25f4bf24ee1032ad6482e6ceb63c5dc49
5
5
  SHA512:
6
- metadata.gz: 1cfe6d86b415d98ab51a69b4e46b11cc80f930b70ed1ac965f72bc5c4a6db20943202b20cd49b3216df9651670147dd9a89b6fdb64a32bbbf738d1b6362bedd5
7
- data.tar.gz: dce1ac9d7f1cbd73a8ce70a829e6d7fa927ade5a51185edfb6912e28a805cb0e8f9d0c82ece781d452d5c924c62e51e8947b4af00fca3c9e5078ea2dae50af98
6
+ metadata.gz: 784560630d3a8d94277c262f8e8f206e3d5cc20db89182f96319792c714e0410dc6f0c70cd642428a9b4d8fba508022c2ae0930abb058e4c0d133ff601ea61c5
7
+ data.tar.gz: a1bf228abe84f07b5c106ec9c5ee45f66a1f4299dee3f61529c81649220850dbb5a6635eebffd5f3bc173e5c6bb493ddab753a3b2d41a9a5feee73889b171dfc
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
3
3
  This file should follow the standards specified on [http://keepachangelog.com/]
4
4
  This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [7.0.5] - 05-06-2016
7
+
8
+ ### Fixed
9
+
10
+ - Added parens to delete_all query to support new required syntax in Neo4j 3.0
11
+
6
12
  ## [7.0.4] - 05-06-2016
7
13
 
8
14
  ### Fixed
@@ -105,7 +105,7 @@ module Neo4j
105
105
 
106
106
  # Deletes all nodes and connected relationships from Cypher.
107
107
  def delete_all
108
- self.neo4j_session._query("MATCH (n:`#{mapped_label_name}`) OPTIONAL MATCH n-[r]-() DELETE n,r")
108
+ self.neo4j_session._query("MATCH (n:`#{mapped_label_name}`) OPTIONAL MATCH (n)-[r]-() DELETE n,r")
109
109
  self.neo4j_session._query("MATCH (n:`#{mapped_label_name}`) DELETE n")
110
110
  end
111
111
 
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '7.0.4'
2
+ VERSION = '7.0.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.4
4
+ version: 7.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Ronge, Brian Underwood, Chris Grigg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-06 00:00:00.000000000 Z
11
+ date: 2016-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter