neo4j 6.0.0.rc.3 → 6.0.0.rc.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/neo4j/active_node/query/query_proxy_methods.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: 3dc2eaadf6662bef798f4f7eabb1b32c39ded0fe
|
4
|
+
data.tar.gz: 07eea640b9818e8d77ef95f281be24fdbde658ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bd648f94fd9b1985d715576bd2568c878c3e34a8bfb07506e1dc38ea4a5b2d00a5f69f32f10689754e7263431356532cfb2869a088773209cf8cc970f0aab93
|
7
|
+
data.tar.gz: 51497e8c6a42bdd565a08ab8ad0dcc540f5fce691199df458db002bba7d2eb7cea2a6b463d40fcfb2aecbf24ae8fc5807c558cefe9d7c6f249849dc0bf9cac4a
|
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.4] - 11-19-2015
|
7
|
+
|
8
|
+
### Fixed
|
9
|
+
|
10
|
+
- Following a '#with' with a '#count' no longer causes issues with variables specified twice
|
11
|
+
|
6
12
|
## [6.0.0.rc.3] - 11-18-2015
|
7
13
|
|
8
14
|
### Fixed
|
@@ -58,7 +58,7 @@ module Neo4j
|
|
58
58
|
fail(InvalidParameterError, ':count accepts `distinct` or nil as a parameter') unless distinct.nil? || distinct == :distinct
|
59
59
|
query_with_target(target) do |var|
|
60
60
|
q = distinct.nil? ? var : "DISTINCT #{var}"
|
61
|
-
limited_query = self.query.clause?(:limit) ? self.query.with(var) : self.query.reorder
|
61
|
+
limited_query = self.query.clause?(:limit) ? self.query.break.with(var) : self.query.reorder
|
62
62
|
limited_query.pluck("count(#{q}) AS #{var}").first
|
63
63
|
end
|
64
64
|
end
|
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.4
|
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-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|