neo4j 6.0.0 → 6.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5e75b34e6d901afdd9e426ecdb467541b6d89c28
4
- data.tar.gz: ddc468292508fcfff1ad7371977503ec7a0274ae
3
+ metadata.gz: 91dd023b7f43dc892cb966e66275bd42baf0183f
4
+ data.tar.gz: 5e5f5a5308fe51e39ab2c58aa2305db685f0b073
5
5
  SHA512:
6
- metadata.gz: 9cb421908fc3da97ba84eb9a7c5254a3f5d6568dd1bd9cdeadae15fdea333881113327a7710b1eb1094a2cb32a37330005653c97be07689ea194d64780add3bb
7
- data.tar.gz: 8542d356502f221d0e054e913608aa1eb4134999495b309c589473f9c6850d4012096ef8c331f61c4c7880925b7634ecf525af1982d5160557b30f6ae07add9a
6
+ metadata.gz: 8d8eb71692c87e8820f1eded620a30cf097572b934b6f3edcb74b2af2cacba093623322f5146457f52faa322d368de6d8c555e186030f48ec1caf1a8e5a0903f
7
+ data.tar.gz: 7a6f466e3fdcacdfcb955341117187ef6bf4f72e821eefc1f8c62b78db34cf5fef9703100b74251efdc33abb31a51dfb4914f31cab9cc7abf603aa9b0075da2f
@@ -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
- ## [Unreleased]
6
+ ## [6.0.1] - 11-27-2015
7
+
8
+ ### Fixed
9
+
10
+ - `#with_associations` should use multiple `OPTIONAL MATCH` clauses instead of one so that matches are independent (behavior changed in Neo4j 2.3.0) (forward ported from 5.2.15)
11
+
12
+ ## [6.0.0] - 11-24-2015
7
13
 
8
14
  ### Fixed
9
15
 
@@ -181,6 +187,12 @@ This release contains no changes since the last alpha. Below are all modificatio
181
187
  - Certain actions that were intended as once-in-the-app's-lifetime events, notably schema operations, will only occur immediately upon the first session's establishment.
182
188
  - Context now set for Model.all QueryProxy so that logs can reflect that it wasn't just a raw Cypher query
183
189
 
190
+ ## [5.2.15] - 11-27-2015
191
+
192
+ ### Fixed
193
+
194
+ - `#with_associations` should use multiple `OPTIONAL MATCH` clauses instead of one so that matches are independent (behavior changed in Neo4j 2.3.0)
195
+
184
196
  ## [5.2.13] - 10-26-2015
185
197
 
186
198
  ### Fixed
@@ -45,6 +45,7 @@ module Neo4j
45
45
 
46
46
  query.optional_match("#{identity}#{association.arrow_cypher}#{association_name}")
47
47
  .where(association.target_where_clause)
48
+ .break
48
49
  end
49
50
  end
50
51
  end
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '6.0.0'
2
+ VERSION = '6.0.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: 6.0.0
4
+ version: 6.0.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: 2015-11-24 00:00:00.000000000 Z
11
+ date: 2015-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter