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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/neo4j/active_node/labels.rb +1 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 787eaa00ba6db4457245d6b3719e958e72a5af4a
|
4
|
+
data.tar.gz: 9760d1d25f4bf24ee1032ad6482e6ceb63c5dc49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 784560630d3a8d94277c262f8e8f206e3d5cc20db89182f96319792c714e0410dc6f0c70cd642428a9b4d8fba508022c2ae0930abb058e4c0d133ff601ea61c5
|
7
|
+
data.tar.gz: a1bf228abe84f07b5c106ec9c5ee45f66a1f4299dee3f61529c81649220850dbb5a6635eebffd5f3bc173e5c6bb493ddab753a3b2d41a9a5feee73889b171dfc
|
data/CHANGELOG.md
CHANGED
@@ -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
|
|
data/lib/neo4j/version.rb
CHANGED
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
|
+
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-
|
11
|
+
date: 2016-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|