neo4j 6.0.0.rc.2 → 6.0.0.rc.3

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: 90acb999a96277731963ebee171a24b1a4db1160
4
- data.tar.gz: 95ba1d616f1a1d443fe7a3bc25364e60107b9c4b
3
+ metadata.gz: a368b8e7698dd496af998cec008f840f72189d41
4
+ data.tar.gz: c5824e67f413eca465fabc7d3e8e085e2d9cf77e
5
5
  SHA512:
6
- metadata.gz: 0fc5d9d4c7957a1b0bcbeaf30e8378dbf52e1f4def9e10d6322fdda144d739516ed7ed1ba13bbf0230686c9055d348084a15a6c6c0df0bea0a226d5a75022d58
7
- data.tar.gz: 7515a0e4d43875a7b26cef00a0a8025e0bf40921cf029b05d2ae79b22a991895b85d4a82a50789b4b30f727231556897c00a8d67250ce3ecf9a9f7a5e10782cb
6
+ metadata.gz: 5c86442c25312819beec71a6ed84205da136c2fb5807893757f9296d49e7e125f8c8b682f9e5f4456319cd6e18358ee2cad60b8152b189ba0d308fb3ea7ee0ee
7
+ data.tar.gz: f8ae5f61f2b32470ef0f4efa7e794bf158ff859d1e38352739d006122f008897520c12dc01955b88f55defd683b0df69cd18d47cd3b45b8461ad5557b8ce9f8e
data/CHANGELOG.md CHANGED
@@ -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.0.0.rc.3] - 11-18-2015
7
+
8
+ ### Fixed
9
+
10
+ - Removed extra `MATCH` which occurs from `proxy_as` calls
11
+
6
12
  ## [6.0.0.rc.2] - 11-17-2015
7
13
 
8
14
  ### Changed
@@ -61,7 +67,7 @@ This release contains no changes since the last alpha. Below are all modificatio
61
67
 
62
68
  ### Changed
63
69
  - `_classname` property has been completely removed, officially dropping support for Neo4j < 2.1.5.
64
- - `ActiveRel#creates_unique` and the `:unique` Association option take arguments to control how the query is built. See https://github.com/neo4jrb/neo4j/pull/1038.
70
+ - `ActiveRel#creates_unique` and the `:unique` Association option take arguments to control how the query is built. See https://github.com/neo4jrb/neo4j/pull/1038.
65
71
 
66
72
  ### Added
67
73
  - Optional three-argument signature for `ActiveRel#create` and `#create!`, just like `initialize`.
@@ -107,7 +107,7 @@ module Neo4j
107
107
  (_association_query_start(chain_var) & _query).break.send(@match_type,
108
108
  "#{chain_var}#{_association_arrow}(#{var}#{_model_label_string})")
109
109
  else
110
- starting_query ? (starting_query & _query_model_as(var, with_labels)) : _query_model_as(var, with_labels)
110
+ starting_query ? starting_query : _query_model_as(var, with_labels)
111
111
  end
112
112
  end
113
113
 
data/lib/neo4j/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '6.0.0.rc.2'
2
+ VERSION = '6.0.0.rc.3'
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.rc.2
4
+ version: 6.0.0.rc.3
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-17 00:00:00.000000000 Z
11
+ date: 2015-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter