neo4j 6.1.6 → 6.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/neo4j/active_rel/persistence/query_factory.rb +1 -1
- data/lib/neo4j/shared/query_factory.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: 10c09e4ff54f888c7c2bc9fa95fdcca78f866bd7
|
|
4
|
+
data.tar.gz: 3a5ad3bc884ee07e33c3a96ef6b66f88d840e32e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d83adda4ee9db5f70bb7d85f16c8c4ee4167d6607658d3d27d96c6b275add208b126d12363f6f2f8f1fe3a8b58cad06990a535b3fc8707fada775581f6b510b
|
|
7
|
+
data.tar.gz: 677b2a9e0a145ede07697b95cb363498d8b3d3a7b92b61af05487c1d2fe39aeb909e1583da881dc81199d3ab68932c847e6df39027c18b91b8679f9d0f371764
|
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
|
+
## [6.1.7] - 2016-02-16
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- Bug related to creating subclassed nodes alongside rels in ActiveRel. (#1135. Thanks, brucek!)
|
|
11
|
+
|
|
6
12
|
## [6.1.6] - 2016-02-03
|
|
7
13
|
|
|
8
14
|
### Added
|
|
@@ -51,7 +51,7 @@ module Neo4j::ActiveRel::Persistence
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
# Each node must be either created or matched before the
|
|
54
|
+
# Each node must be either created or matched before the relationship can be created. This class does not know or care about
|
|
55
55
|
# how that happens, it just knows that it needs a usable Neo4j::Core::Query object to do that.
|
|
56
56
|
# This method is "iterative" because it creates one factory for each node but the second builds upon the first.
|
|
57
57
|
def iterative_query
|
|
@@ -69,7 +69,7 @@ module Neo4j::Shared
|
|
|
69
69
|
|
|
70
70
|
def create_query
|
|
71
71
|
return match_query if graph_object.persisted?
|
|
72
|
-
base_query.create(identifier => {graph_object.labels_for_create
|
|
72
|
+
base_query.create(identifier => {graph_object.labels_for_create => graph_object.props_for_create})
|
|
73
73
|
end
|
|
74
74
|
end
|
|
75
75
|
|
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: 6.1.
|
|
4
|
+
version: 6.1.7
|
|
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-02-
|
|
11
|
+
date: 2016-02-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: orm_adapter
|