neo4j 4.0.0.rc.4 → 4.0.0

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: d79cf5cc18db9fb5569ea5a2c096dcc5f29c7ead
4
- data.tar.gz: 4e7b425de4468af56386de2c3f663498835b100c
3
+ metadata.gz: 6f576c543973dba1fb67e8c000487496014fdf85
4
+ data.tar.gz: 46a1e8b4d8f7fcc2c388f4791fecea6bf6fec6c9
5
5
  SHA512:
6
- metadata.gz: cbf9baeb9097961b6e60526ebc9619ee468f5000d64a22c5d0ec278127a50d016c8610ec4a5d5b80ebaebc6afd27b7566fb8dfdf11cf03df3120257e46eaf0d7
7
- data.tar.gz: d47ad8ee3c67efd987867335a8a71a73ade28e3fe4e7ce72835d0aba76276d4b25fdb3bfd520a59a669f86b6ac73f07ad125b9f50980a847e9baf252925916c9
6
+ metadata.gz: 844a3cd13ec87c091166cf8aef59e4ea5876b8a18b6552167ff5f61aed62f8d04abcb2ba33b303d8c9285c6cd1251427af866b48b6ea72bcbaa62ca5dedfca31
7
+ data.tar.gz: 3824b4d1fd649f99f2eaf8f6bc93289008388ce578375b865d10372f56f5e35dd5430d2a5f5b0bb7ab80a8b1314a2773515fc16909b7fa1ed4c45c0d42439845
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ == 4.0.0
2
+ * Change neo4j-core dependency from 3.1.0 to 4.0.0.
3
+
1
4
  == 4.0.0.rc.4
2
5
  * _classname property is disabled by default for ActiveRel! It had been disabled for ActiveNode, this just evens the score.
3
6
  * Fixes a bug to create better `result` labels in Cypher.
@@ -9,8 +12,8 @@ Released minutes after rc.2 to catch one late addition!
9
12
 
10
13
  == 4.0.0.rc.2
11
14
  This release builds on features introduced in the first RC. We are releasing this as another RC because the API may be tweaked before release.
12
- * New `proxy_as` for Core::Query to build QueryProxy chains onto Core::Query objects!
13
- * Using `proxy_as`, new `optional` method in QueryProxy to use the `OPTIONAL MATCH` Cypher function.
15
+ * New `proxy_as` for Core::Query to build QueryProxy chains onto Core::Query objects!
16
+ * Using `proxy_as`, new `optional` method in QueryProxy to use the `OPTIONAL MATCH` Cypher function.
14
17
  * `match_to` and methods that depend on it now support arrays of nodes or IDs.
15
18
  * New `rels_to`/`all_rels_to` methods.
16
19
  * New `delete` and `destroy` methods in QueryProxy to easily remove relationships.
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = "4.0.0.rc.4"
2
+ VERSION = "4.0.0"
3
3
  end
@@ -31,7 +31,7 @@ A Neo4j OGM (Object-Graph-Mapper) for use in Ruby on Rails and Rack frameworks h
31
31
  s.add_dependency("activesupport", "~> 4")
32
32
  s.add_dependency("railties", "~> 4")
33
33
  s.add_dependency('active_attr', "~> 0.8")
34
- s.add_dependency("neo4j-core", "~> 3.1.0")
34
+ s.add_dependency("neo4j-core", "~> 4.0.0")
35
35
 
36
36
  if RUBY_PLATFORM =~ /java/
37
37
  s.add_dependency("neo4j-community", '~> 2.0')
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: 4.0.0.rc.4
4
+ version: 4.0.0
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: 2014-12-23 00:00:00.000000000 Z
11
+ date: 2015-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 3.1.0
89
+ version: 4.0.0
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 3.1.0
96
+ version: 4.0.0
97
97
  description: |
98
98
  A Neo4j OGM (Object-Graph-Mapper) for use in Ruby on Rails and Rack frameworks heavily inspired by ActiveRecord.
99
99
  email: andreas.ronge@gmail.com, brian@brian-underwood.codes, chris@subvertallmedia.com
@@ -186,12 +186,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
186
186
  version: 1.9.1
187
187
  required_rubygems_version: !ruby/object:Gem::Requirement
188
188
  requirements:
189
- - - ">"
189
+ - - ">="
190
190
  - !ruby/object:Gem::Version
191
- version: 1.3.1
191
+ version: '0'
192
192
  requirements: []
193
193
  rubyforge_project: neo4j
194
- rubygems_version: 2.4.3
194
+ rubygems_version: 2.4.5
195
195
  signing_key:
196
196
  specification_version: 4
197
197
  summary: A graph database for Ruby