neo4j 9.6.0 → 9.6.1

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
  SHA256:
3
- metadata.gz: 43e2766ba1ce0e8a8f3a87d750f2b162b5dbf3428cf1be8f564323a499e1701a
4
- data.tar.gz: 05cf66caefa84395b4e5a1c24b81b65aa9a1cd1f519a681ee6b43cd18dfc7005
3
+ metadata.gz: a6e88125cea7de8e3d8bcbf895b42ace3cc5ec6b73cbe7be3c443a0002e7129c
4
+ data.tar.gz: 5aaf29694f97c215b6359627847f4e1d28ab2f09471534bc964f6ec0693ac9a6
5
5
  SHA512:
6
- metadata.gz: a1d7a3986d18fb877ccd4defc85cd2b98d1b5bf2f3907cc8098825209226c3417610c7fe7d4f9a0df5725d1fbf844ac5d3e275047650e8ddb7ff93762260f79d
7
- data.tar.gz: 233023315b80577975f7239fe5ac1e69b2b0506786ed062f027f13fdb5f376873ccca86d0f4b10e9e6da8b1142c1a1f0f7c4a5f2fc32a7836197e044351930e0
6
+ metadata.gz: 90451a7ba7cc61dd59bd80ccdb3384edf74ea050e9917303512dd45a0143d5fb258b8c0dc8f5306dfc0f162d010bbc2d30cc9784f4a90f0a5c85f8b89f9b5781
7
+ data.tar.gz: a4de282130c9975655fb6e8a7fee7e7621b9ac071319d8594cb68f29cec977b7c88f7508cc84364bf164ae91aa1d1edae4b950d0cdc222705631b5930d96fdb1
@@ -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
+ ## [9.6.1] 2019-12-18
7
+
8
+ ## Fixed
9
+
10
+ - Fixed duplicate records with with_associations on QueryProxy. (#1576)
11
+
6
12
  ## [9.6.0] 2019-09-3
7
13
 
8
14
  ## Added
@@ -103,7 +103,7 @@ module Neo4j::ActiveNode
103
103
 
104
104
  def add_to_cache(object, rel = nil)
105
105
  (@cached_rels ||= []) << rel if rel
106
- (@cached_result ||= []) << object
106
+ (@cached_result ||= []).tap { |results| results << object unless results.include?(object) }
107
107
  end
108
108
 
109
109
  def rels
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '9.6.0'
2
+ VERSION = '9.6.1'
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: 9.6.0
4
+ version: 9.6.1
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: 2019-09-03 00:00:00.000000000 Z
11
+ date: 2019-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -222,7 +222,7 @@ dependencies:
222
222
  version: '0'
223
223
  description: 'A Neo4j OGM (Object-Graph-Mapper) for Ruby heavily inspired by ActiveRecord.
224
224
 
225
- '
225
+ '
226
226
  email: andreas.ronge@gmail.com, public@brian-underwood.codes, chris@subvertallmedia.com
227
227
  executables:
228
228
  - neo4j-jars
@@ -382,7 +382,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
382
382
  version: '0'
383
383
  requirements: []
384
384
  rubyforge_project: neo4j
385
- rubygems_version: 2.7.8
385
+ rubygems_version: 2.7.6
386
386
  signing_key:
387
387
  specification_version: 4
388
388
  summary: A graph database for Ruby