neo4j 8.2.4 → 8.2.5
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_node/query/query_proxy_link.rb +5 -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: f6571dc4f35c6315818c2a17920398060c0baf54
|
|
4
|
+
data.tar.gz: f24369d3e379ba9b04c5c1c309c2a27055343a47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d42a83906f06bcf2c7aa384340a08b360caf8ac59654343bcf69b15886e659076df2542ef96132d421db00438a9d588a58733c3e723aae90ae4ac82dccf9522f
|
|
7
|
+
data.tar.gz: df87e790c5173b90423badd8380be156a1590ecee6a70e1de9b4d0f728c6d469bd4b875c1442d8f102297af54f2df634814b820b0c29c2c4872f17a61e0f2de3
|
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
|
+
## [8.2.5] 2017-09-23
|
|
7
|
+
|
|
8
|
+
### Fixes
|
|
9
|
+
|
|
10
|
+
- Error when using `pluck(:id)` on an association which has an array argument for `model_class` (thanks @thefliik / see #1426)
|
|
11
|
+
|
|
6
12
|
## [8.2.4] 2017-09-20
|
|
7
13
|
|
|
8
14
|
### Fixes
|
|
@@ -115,7 +115,11 @@ module Neo4j
|
|
|
115
115
|
end
|
|
116
116
|
|
|
117
117
|
def converted_key(model, key)
|
|
118
|
-
key.to_sym == :id
|
|
118
|
+
if key.to_sym == :id
|
|
119
|
+
model ? model.id_property_name : :uuid
|
|
120
|
+
else
|
|
121
|
+
key
|
|
122
|
+
end
|
|
119
123
|
end
|
|
120
124
|
|
|
121
125
|
def converted_value(model, key, value)
|
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: 8.2.
|
|
4
|
+
version: 8.2.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: 2017-09-
|
|
11
|
+
date: 2017-09-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: orm_adapter
|