neo4j 7.2.1 → 7.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91e47692140fbc42f1ea66a6c85668588413b66a
4
- data.tar.gz: d1861bd332dda7948b46d2e9b0778375bfaeb57c
3
+ metadata.gz: b065d9a9a1a020b3e22d60929810dbbeac668b16
4
+ data.tar.gz: de1e818193848a85a1d0a365e8c4b1d931d7864e
5
5
  SHA512:
6
- metadata.gz: a14812665bd191291167714cd3e732afc8b19a855f34d9e836c31cd7eefc4e963bab0f808fecec35d389df2d41c7d2574440366d655c555acc740096a7b8ce85
7
- data.tar.gz: 295a298bbf3c81ca578cb2339e4f3be70555d42359f0b2d69b9837e02c7fa633b7b24d0875aaa2507065d148a44a4fd4b80bef4ae47006662abfb2887b107ccf
6
+ metadata.gz: 4ad879f1b5732b414220795458a9c8d8135c38d291127b06bf4f3ba7cde395f6654574faa1cdb3841f946899e1a6a209428afbb359b67b6a4e7ce31475eee4f9
7
+ data.tar.gz: e6d398bfe6b8495a6abce1196328cc1b12c0aa707f0a0c2ede82387c1f0c3dd634b1f16e9404ae64934a87e6a67cd42da087f086fe00c60b2f6319b20ed19665
@@ -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.2.2] - 09-22-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.2.1] - 09-19-2016
7
13
 
8
14
  ### Fixed
@@ -15,6 +21,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
15
21
 
16
22
  - Backporting #1245 to 7.x versions. It implements the [`ForbiddenAttributesProtection` API](http://edgeapi.rubyonrails.org/classes/ActionController/StrongParameters.html) from ActiveRecord.
17
23
 
24
+ ## [7.1.4] - 09-20-2016
25
+
26
+ ### Fixed
27
+
28
+ - `where` clause with question mark parameter and array values only using the first element (see #1247 #1290)
29
+
18
30
  ## [7.1.3] - 08-18-2016
19
31
 
20
32
  ### Changed
@@ -40,6 +52,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
40
52
  - Gemspec dependency requirements were modified where ActiveModel, ActiveSupport, and Railties are concerned. The gem now requires >= 4.0, < 5.1.
41
53
  - `ActiveModel::Serializers::Xml` is only included if supported if available.
42
54
 
55
+ ## [7.0.16] - 09-20-2016
56
+
57
+ ### Fixed
58
+
59
+ - `where` clause with question mark parameter and array values only using the first element (see #1247 #1290)
60
+
43
61
  ## [7.0.15] - 08-18-2016
44
62
 
45
63
  ### Changed
@@ -12,7 +12,11 @@ module Neo4j
12
12
  end
13
13
 
14
14
  def args(var, rel_var)
15
- @arg.respond_to?(:call) ? @arg.call(var, rel_var) : [@arg, @args].flatten
15
+ if @arg.respond_to?(:call)
16
+ @arg.call(var, rel_var)
17
+ else
18
+ [@arg] + @args
19
+ end
16
20
  end
17
21
 
18
22
  class << self
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '7.2.1'
2
+ VERSION = '7.2.2'
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: 7.2.1
4
+ version: 7.2.2
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-09-19 00:00:00.000000000 Z
11
+ date: 2016-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter
@@ -216,8 +216,10 @@ dependencies:
216
216
  - - "~>"
217
217
  - !ruby/object:Gem::Version
218
218
  version: 0.34.0
219
- description: |
220
- A Neo4j OGM (Object-Graph-Mapper) for use in Ruby on Rails and Rack frameworks heavily inspired by ActiveRecord.
219
+ description: 'A Neo4j OGM (Object-Graph-Mapper) for use in Ruby on Rails and Rack
220
+ frameworks heavily inspired by ActiveRecord.
221
+
222
+ '
221
223
  email: andreas.ronge@gmail.com, brian@brian-underwood.codes, chris@subvertallmedia.com
222
224
  executables:
223
225
  - neo4j-jars
@@ -350,9 +352,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
350
352
  version: '0'
351
353
  requirements: []
352
354
  rubyforge_project: neo4j
353
- rubygems_version: 2.4.5.1
355
+ rubygems_version: 2.5.1
354
356
  signing_key:
355
357
  specification_version: 4
356
358
  summary: A graph database for Ruby
357
359
  test_files: []
358
- has_rdoc: true