neo4j 6.0.0.rc.1 → 6.0.0.rc.2
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/lib/neo4j/active_node/has_n/association/rel_factory.rb +1 -1
- data/lib/neo4j/active_rel/persistence.rb +1 -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: 90acb999a96277731963ebee171a24b1a4db1160
|
4
|
+
data.tar.gz: 95ba1d616f1a1d443fe7a3bc25364e60107b9c4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fc5d9d4c7957a1b0bcbeaf30e8378dbf52e1f4def9e10d6322fdda144d739516ed7ed1ba13bbf0230686c9055d348084a15a6c6c0df0bea0a226d5a75022d58
|
7
|
+
data.tar.gz: 7515a0e4d43875a7b26cef00a0a8025e0bf40921cf029b05d2ae79b22a991895b85d4a82a50789b4b30f727231556897c00a8d67250ce3ecf9a9f7a5e10782cb
|
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
|
+
## [6.0.0.rc.2] - 11-17-2015
|
7
|
+
|
8
|
+
### Changed
|
9
|
+
|
10
|
+
- `QueryProxy#<<` and `#create`, when `rel_class` option is set, will use `RelClass.create!` instead of `create` to alert the user of failed rel creations.
|
11
|
+
|
6
12
|
## [6.0.0.rc.1] - 11-13-2015
|
7
13
|
|
8
14
|
This release contains no changes since the last alpha. Below are all modifications introduced in alpha releases.
|
@@ -28,7 +28,7 @@ module Neo4j::ActiveNode::HasN
|
|
28
28
|
def _create_relationship_with_rel_class
|
29
29
|
Array(other_node_or_nodes).each do |other_node|
|
30
30
|
node_props = _nodes_for_create(other_node, :from_node, :to_node)
|
31
|
-
association.relationship_class.create(properties.merge(node_props))
|
31
|
+
association.relationship_class.create!(properties.merge(node_props))
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
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: 6.0.0.rc.
|
4
|
+
version: 6.0.0.rc.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: 2015-11-
|
11
|
+
date: 2015-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: orm_adapter
|