neo4j 9.2.0 → 9.2.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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/neo4j/active_node/query/query_proxy_methods.rb +2 -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: ed812d32cd486f6e304bccea02d2a17685f79da4
|
|
4
|
+
data.tar.gz: 0616013941019bcc60f521317099908829732f3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34da0e1129e009f65a828b70604542243bbb759ef6c90769eadc0d3082260cf53c76339e0ab4f93d776e3aa44ba3e5e2af0c6f5a6b57586c224ea698efef7867
|
|
7
|
+
data.tar.gz: 4428c77bd82200b118925452c26dbe0b5423bb43daedd4d2495fda4dea03258414b311c19ccf4751303453a7a43e7cee3ebc220508ba924be1aceea601e027da
|
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
|
+
## [9.2.1] 2018-04-01
|
|
7
|
+
|
|
8
|
+
## Fixed
|
|
9
|
+
|
|
10
|
+
- Fixed .first and .last methods for QueryProxyMethods (thanks @kopylovvlad / see #1494)
|
|
11
|
+
|
|
6
12
|
## [9.2.0] 2018-03-27
|
|
7
13
|
|
|
8
14
|
## Added
|
|
@@ -259,7 +259,8 @@ module Neo4j
|
|
|
259
259
|
[self.query.with(identity),
|
|
260
260
|
proc { |var| "#{func}(COLLECT(#{var})) as #{var}" }]
|
|
261
261
|
else
|
|
262
|
-
|
|
262
|
+
ord_prop = (func == LAST ? {order_property => :DESC} : order_property)
|
|
263
|
+
[self.order(ord_prop).limit(1),
|
|
263
264
|
proc { |var| var }]
|
|
264
265
|
end
|
|
265
266
|
query_with_target(target) do |var|
|
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: 9.2.
|
|
4
|
+
version: 9.2.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: 2018-
|
|
11
|
+
date: 2018-04-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|