neo4j 6.1.11 → 6.1.12

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: 24479c7254a9b490b1b321e25b61c6a8d5b01729
4
- data.tar.gz: 49a11431ab61452edf90f3f921f1ba80ba1309f7
3
+ metadata.gz: 7cdaac2ed51c1376e2fd9cfba0e3dd46065ce1ab
4
+ data.tar.gz: 4ae2e390db76490a98c42e2719d8416c7da0194c
5
5
  SHA512:
6
- metadata.gz: e96b0e032983d7b83baa19468d380443324fd16c08f9a5303aad49d2d790c1495ba97fefd6cafaa1a8e1aedce0585f2516475d71033e5116d49eb55576a6a372
7
- data.tar.gz: ad29072f6b50740753bd8dcceb64904f3bcb18003cb46a5c97f97de8c948fbf25639ea14a2a11450528fe2a4c98ca580da828f16c8441fe142730dc743eecc90
6
+ metadata.gz: ae1bded3ab39626e16264cefa89bd00f9ceafc64d9284a98b6a09403341abde2f09f3a5ef9105589199a1c36976d4994278a4ca3c01816c514e936d9f0df39d3
7
+ data.tar.gz: 9e2c5859d7e47eefc8135ca5bc54ae08047f07fca167da657631bbe05ad592e6b946f1d548f66ae79c88694ec9fd37a50ffde3857617842d488a7d6d69c64e3c
@@ -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.12] - 05-27-2016
7
+
8
+ ### Fixed
9
+
10
+ - Fix to `find_in_batches` (thanks to ProGM / see #1208)
11
+
6
12
  ## [6.1.11] - 05-25-2016
7
13
 
8
14
  ### Fixed
@@ -88,6 +94,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
88
94
  - `config/neo4j.yml` now renders with an ERB step (thanks to mrstif via #1060)
89
95
  - `#increment`, `#increment!` and `#concurrent_increment!` methods added to instances of ActiveNode and ActiveRel (thanks to ProGM in #1074)
90
96
 
97
+ ## [6.0.9] - 05-27-2016
98
+
99
+ ### Fixed
100
+
101
+ - Fix to `find_in_batches` (thanks to ProGM / see #1208)
102
+
91
103
  ## [6.0.8] - 03-14-2016
92
104
 
93
105
  ### 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
 
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '6.1.11'
2
+ VERSION = '6.1.12'
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.11
4
+ version: 6.1.12
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-25 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