neo4j 7.2.1 → 7.2.2
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 +18 -0
- data/lib/neo4j/active_node/query/query_proxy_link.rb +5 -1
- data/lib/neo4j/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b065d9a9a1a020b3e22d60929810dbbeac668b16
|
|
4
|
+
data.tar.gz: de1e818193848a85a1d0a365e8c4b1d931d7864e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ad879f1b5732b414220795458a9c8d8135c38d291127b06bf4f3ba7cde395f6654574faa1cdb3841f946899e1a6a209428afbb359b67b6a4e7ce31475eee4f9
|
|
7
|
+
data.tar.gz: e6d398bfe6b8495a6abce1196328cc1b12c0aa707f0a0c2ede82387c1f0c3dd634b1f16e9404ae64934a87e6a67cd42da087f086fe00c60b2f6319b20ed19665
|
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.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
|
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.2.
|
|
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-
|
|
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
|
-
|
|
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.
|
|
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
|