neo4j 6.1.6 → 6.1.7

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: 638962213a8d5eab5d30064bc56b0c1144bf0a29
4
- data.tar.gz: b4e1666949e6f065a38d653e413cc0ead3eadecd
3
+ metadata.gz: 10c09e4ff54f888c7c2bc9fa95fdcca78f866bd7
4
+ data.tar.gz: 3a5ad3bc884ee07e33c3a96ef6b66f88d840e32e
5
5
  SHA512:
6
- metadata.gz: 29faddc490ad08ae876f80856158496c7daa5b53f648ffca5cacff13f4c687e64f9049d4c6aa44503b4e71956daaaab97b92c75696497a7213c1f8f3cad8d3b6
7
- data.tar.gz: 652d119b06f5df0e563e890d6c71fa1b5b6467e6d710fb7df9b37ee6372fe8811a1e75f2b923008f9c57541d2eb1c891e02ce14dbccf67e8c85b9e754b984082
6
+ metadata.gz: 8d83adda4ee9db5f70bb7d85f16c8c4ee4167d6607658d3d27d96c6b275add208b126d12363f6f2f8f1fe3a8b58cad06990a535b3fc8707fada775581f6b510b
7
+ data.tar.gz: 677b2a9e0a145ede07697b95cb363498d8b3d3a7b92b61af05487c1d2fe39aeb909e1583da881dc81199d3ab68932c847e6df39027c18b91b8679f9d0f371764
@@ -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 relationshp can be created. This class does not know or care about
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.join(':').to_sym => graph_object.props_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
 
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '6.1.6'
2
+ VERSION = '6.1.7'
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: 6.1.6
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-03 00:00:00.000000000 Z
11
+ date: 2016-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter