neo4j 8.2.4 → 8.2.5

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: 460b4490ba973c04eb800f32a095b7132587a21b
4
- data.tar.gz: b016ef259799a5653e96b0c22e20e229082698a0
3
+ metadata.gz: f6571dc4f35c6315818c2a17920398060c0baf54
4
+ data.tar.gz: f24369d3e379ba9b04c5c1c309c2a27055343a47
5
5
  SHA512:
6
- metadata.gz: 6b117cd2ef0bae8dcd308bfb9f44c0620ced63749c6a7a0cd9c866e224ac64e88130fb21c5df2118ee8e980781f3fd4921089793318083894e217687b24cf9b3
7
- data.tar.gz: e7602f3a2b185f1d0d65f4adf2e83d5faeaf68c1c989ab8c0ff14bdaa2cdf4437ccb24aa0ec75bc54a93b44e8047733131d4e9473acefadb45ad00d962200b33
6
+ metadata.gz: d42a83906f06bcf2c7aa384340a08b360caf8ac59654343bcf69b15886e659076df2542ef96132d421db00438a9d588a58733c3e723aae90ae4ac82dccf9522f
7
+ data.tar.gz: df87e790c5173b90423badd8380be156a1590ecee6a70e1de9b4d0f728c6d469bd4b875c1442d8f102297af54f2df634814b820b0c29c2c4872f17a61e0f2de3
@@ -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 ? model.id_property_name : key
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)
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '8.2.4'
2
+ VERSION = '8.2.5'
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: 8.2.4
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-20 00:00:00.000000000 Z
11
+ date: 2017-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter