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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/neo4j/shared/declared_properties.rb +3 -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: b65f9411fbf1531dae1b15581c8679f14bec490e
|
4
|
+
data.tar.gz: 5eb9fe63a7623b1597cbafa8b0bfd754780ab56b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12d00dc87fce1483d04cb08b3dd04902336696c5663976f34615770b505b6a18af39eaeed0fdc32d378965b85347e4eca030947695a5556c310b9f35f2cb6565
|
7
|
+
data.tar.gz: b1de3d322a4ab7fbf4c3c99e1fb2f3af4512d6d9355bc04800355d88fce05553a2a98439ab9cc09101f88de250205e5d54e75d1dc38c68ae8e21e50f80c866d2
|
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.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
|
-
|
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)
|
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.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
|
11
|
+
date: 2016-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|