neo4j 7.0.15 → 7.0.16
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/bin/rake +17 -0
- data/lib/neo4j/active_node/query/query_proxy_link.rb +5 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c519c8df13d5f5cbb5a82596b394ae421ab36eb4
|
4
|
+
data.tar.gz: 4646b6989dc25cdb11fb0372b0513ebe96cef302
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77819a19c9a8fc298769758769a818983f92ba3d0560d1fdb3ab8c1f2d7bbcfab4b2fe1bd2d6c937851659648fcced3e3bd0fc9b64fb1abbe2992ac277ec7047
|
7
|
+
data.tar.gz: 2bb1ce43554404df1e49680586fd70b43580a919eb7930f91e5288ab25b90b549ed3d482b146d5ae90d593d95804ba24baee1cc4e8f9c71853205dae8cf0636f
|
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
|
+
## [7.0.16] - 09-20-2016
|
7
|
+
|
8
|
+
### Fixed
|
9
|
+
|
10
|
+
- `where` clause with question mark parameter and array values only using the first element (see #1247 #1290)
|
11
|
+
|
6
12
|
## [7.0.15] - 08-18-2016
|
7
13
|
|
8
14
|
### Changed
|
data/bin/rake
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
#
|
4
|
+
# This file was generated by Bundler.
|
5
|
+
#
|
6
|
+
# The application 'rake' is installed as part of a gem, and
|
7
|
+
# this file is here to facilitate running it.
|
8
|
+
#
|
9
|
+
|
10
|
+
require 'pathname'
|
11
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
12
|
+
Pathname.new(__FILE__).realpath)
|
13
|
+
|
14
|
+
require 'rubygems'
|
15
|
+
require 'bundler/setup'
|
16
|
+
|
17
|
+
load Gem.bin_path('rake', 'rake')
|
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: 7.0.
|
4
|
+
version: 7.0.16
|
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: 2016-
|
11
|
+
date: 2016-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|
@@ -214,6 +214,7 @@ files:
|
|
214
214
|
- Gemfile
|
215
215
|
- README.md
|
216
216
|
- bin/neo4j-jars
|
217
|
+
- bin/rake
|
217
218
|
- config/locales/en.yml
|
218
219
|
- config/neo4j/add_classnames.yml
|
219
220
|
- config/neo4j/config.yml
|
@@ -337,4 +338,3 @@ signing_key:
|
|
337
338
|
specification_version: 4
|
338
339
|
summary: A graph database for Ruby
|
339
340
|
test_files: []
|
340
|
-
has_rdoc: true
|