neo4j 6.0.0.rc.2 → 6.0.0.rc.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/lib/neo4j/active_node/query/query_proxy.rb +1 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a368b8e7698dd496af998cec008f840f72189d41
|
4
|
+
data.tar.gz: c5824e67f413eca465fabc7d3e8e085e2d9cf77e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 ?
|
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
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.
|
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-
|
11
|
+
date: 2015-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|