neo4j 6.1.7 → 6.1.8

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: 10c09e4ff54f888c7c2bc9fa95fdcca78f866bd7
4
- data.tar.gz: 3a5ad3bc884ee07e33c3a96ef6b66f88d840e32e
3
+ metadata.gz: b65f9411fbf1531dae1b15581c8679f14bec490e
4
+ data.tar.gz: 5eb9fe63a7623b1597cbafa8b0bfd754780ab56b
5
5
  SHA512:
6
- metadata.gz: 8d83adda4ee9db5f70bb7d85f16c8c4ee4167d6607658d3d27d96c6b275add208b126d12363f6f2f8f1fe3a8b58cad06990a535b3fc8707fada775581f6b510b
7
- data.tar.gz: 677b2a9e0a145ede07697b95cb363498d8b3d3a7b92b61af05487c1d2fe39aeb909e1583da881dc81199d3ab68932c847e6df39027c18b91b8679f9d0f371764
6
+ metadata.gz: 12d00dc87fce1483d04cb08b3dd04902336696c5663976f34615770b505b6a18af39eaeed0fdc32d378965b85347e4eca030947695a5556c310b9f35f2cb6565
7
+ data.tar.gz: b1de3d322a4ab7fbf4c3c99e1fb2f3af4512d6d9355bc04800355d88fce05553a2a98439ab9cc09101f88de250205e5d54e75d1dc38c68ae8e21e50f80c866d2
@@ -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.8] - 2016-03-02
7
+
8
+ ### Fixed
9
+
10
+ - The `@attributes` hash of the first node of each class returned from the database would have have the wrong id property key. This did not appear to cause any problems accessing the value and would be normal for subsequent saves of the affected node as well as all other nodes.
11
+
6
12
  ## [6.1.7] - 2016-02-16
7
13
 
8
14
  ### Fixed
@@ -178,7 +178,9 @@ module Neo4j::Shared
178
178
  # node load performance.
179
179
  def string_map_id_property(key)
180
180
  return unless klass.id_property_name == key
181
- @_attributes_string_map = attributes_string_map.dup.tap { |h| h[key] = key.to_s }.freeze
181
+ key.to_s.tap do |string_key|
182
+ @_attributes_string_map = attributes_string_map.dup.tap { |h| h[key] = string_key }.freeze
183
+ end
182
184
  end
183
185
 
184
186
  def unregister_magic_typecaster(property)
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '6.1.7'
2
+ VERSION = '6.1.8'
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.7
4
+ version: 6.1.8
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-17 00:00:00.000000000 Z
11
+ date: 2016-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter