neo4j 7.0.7 → 7.0.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: 214bb0b66d0b3fa649214373da3e8923e6f36f87
4
- data.tar.gz: 0548874119a1a6ea09ae1daa725b3867bea93cfa
3
+ metadata.gz: bb334c3e772bfb0c0bca091009fe778786ef0668
4
+ data.tar.gz: 127831e77020be6f3fce11c1befddc2f8152c2e9
5
5
  SHA512:
6
- metadata.gz: 41e2e9cce3410653abcf032e5afd1a33e3105edeb4c0c1129b8c0672f82f005b3765552b962237a35de61188b699aaf21679b3431fdf6df303ee5127f565b484
7
- data.tar.gz: 88536c0d94cbc7245ac33b57b3b372d0b8d2b02722b043844847bf3fd0d7401048c49354236dc765fde0801020c3528e732b129c570dc8699d25fae4fa414de7
6
+ metadata.gz: 6004a2946bb8183b14c3c790dfe51fa53c3727d0734243d6553e3c713432e7dbbe152d0e68b2e005cebac0d4b69d33576e259cefe850058cca51c0b4e9928d3a
7
+ data.tar.gz: 96ee5176b8e70b46805ee0f55009138ffc534ed61dd36842b2a60d02b3bad218e328ebec48957b6af9c168bd962e1217240ffce9ef9e090dc7f354f1d3604747
data/CHANGELOG.md CHANGED
@@ -3,7 +3,13 @@ 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
- ## [7.0.6] - 05-26-2016
6
+ ## [7.0.8] - 05-27-2016
7
+
8
+ ### Fixed
9
+
10
+ - Fix to `find_in_batches` (thanks to ProGM / see #1208)
11
+
12
+ ## [7.0.7] - 05-26-2016
7
13
 
8
14
  ### Fixed
9
15
 
@@ -115,6 +121,12 @@ No changes from `rc.7`
115
121
  - All `call` class methods from Type Converters. Use `to_ruby` instead.
116
122
  - `Neo4j::ActiveNode::Labels::InvalidQueryError`, since it's unused.
117
123
 
124
+ ## [6.1.12] - 05-27-2016
125
+
126
+ ### Fixed
127
+
128
+ - Fix to `find_in_batches` (thanks to ProGM / see #1208)
129
+
118
130
  ## [6.1.11] - 05-25-2016
119
131
 
120
132
  ### Fixed
@@ -200,6 +212,12 @@ No changes from `rc.7`
200
212
  - `config/neo4j.yml` now renders with an ERB step (thanks to mrstif via #1060)
201
213
  - `#increment`, `#increment!` and `#concurrent_increment!` methods added to instances of ActiveNode and ActiveRel (thanks to ProGM in #1074)
202
214
 
215
+ ## [6.0.9] - 05-27-2016
216
+
217
+ ### Fixed
218
+
219
+ - Fix to `find_in_batches` (thanks to ProGM / see #1208)
220
+
203
221
  ## [6.0.8] - 03-14-2016
204
222
 
205
223
  ### Fixed
@@ -4,7 +4,7 @@ module Neo4j
4
4
  module QueryProxyFindInBatches
5
5
  def find_in_batches(options = {})
6
6
  query.return(identity).find_in_batches(identity, @model.primary_key, options) do |batch|
7
- yield batch.map(&:identity)
7
+ yield batch.map(&identity)
8
8
  end
9
9
  end
10
10
 
data/lib/neo4j/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '7.0.7'
2
+ VERSION = '7.0.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: 7.0.7
4
+ version: 7.0.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-05-26 00:00:00.000000000 Z
11
+ date: 2016-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter